data(Database) Added passive data from Twitter post
This commit is contained in:
Binary file not shown.
@@ -92,7 +92,7 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.databaseItems {
|
.databaseItems {
|
||||||
height: 700px;
|
height: 900px;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
|
|||||||
@@ -10,6 +10,9 @@
|
|||||||
|
|
||||||
var production = passive.Production();
|
var production = passive.Production();
|
||||||
|
|
||||||
|
var requirements = passive.Requirements();
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
<b>Name:</b> @info.Name
|
<b>Name:</b> @info.Name
|
||||||
@@ -21,7 +24,7 @@
|
|||||||
@if (!info.Notes.Trim().Equals(""))
|
@if (!info.Notes.Trim().Equals(""))
|
||||||
{
|
{
|
||||||
<div>
|
<div>
|
||||||
<b>- Description:</b> @((MarkupString)info.Notes)
|
<b>- Notes:</b> @((MarkupString)info.Notes)
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
@@ -43,6 +46,19 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@if (requirements.Count > 0)
|
||||||
|
{
|
||||||
|
@foreach (var requirement in requirements)
|
||||||
|
{
|
||||||
|
var requirementModel = DATA.Get()[requirement.Id];
|
||||||
|
<div>
|
||||||
|
<span>
|
||||||
|
<b>@requirement.Requirement.Replace("_", " "):</b> @requirementModel.Info().Name
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -55,6 +71,9 @@
|
|||||||
var info = passive.Info();
|
var info = passive.Info();
|
||||||
|
|
||||||
var production = passive.Production();
|
var production = passive.Production();
|
||||||
|
|
||||||
|
var requirements = passive.Requirements();
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
@@ -67,9 +86,23 @@
|
|||||||
@if (!info.Notes.Trim().Equals(""))
|
@if (!info.Notes.Trim().Equals(""))
|
||||||
{
|
{
|
||||||
<div>
|
<div>
|
||||||
<b>Description:</b> @((MarkupString)info.Notes)
|
<b>Notes:</b> @((MarkupString)info.Notes)
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@if (requirements.Count > 0)
|
||||||
|
{
|
||||||
|
@foreach (var requirement in requirements)
|
||||||
|
{
|
||||||
|
var requirementModel = DATA.Get()[requirement.Id];
|
||||||
|
<div>
|
||||||
|
<span>
|
||||||
|
<b>@requirement.Requirement.Replace("_", " "):</b> @requirementModel.Info().Name
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if (production != null)
|
@if (production != null)
|
||||||
@@ -89,6 +122,7 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</EntityDisplayComponent>
|
</EntityDisplayComponent>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,11 +7,11 @@
|
|||||||
<div>
|
<div>
|
||||||
@foreach (var requirement in Requirements)
|
@foreach (var requirement in Requirements)
|
||||||
{
|
{
|
||||||
var replaced = DATA.Get()[requirement.DataType];
|
var requirementModel = DATA.Get()[requirement.Id];
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
<b>@requirement.Requirement.Replace("_", " "):</b> @replaced.Info().Name
|
<b>@requirement.Requirement.Replace("_", " "):</b> @requirementModel.Info().Name
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
<div>
|
<div>
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
<b>@requirement.Requirement.Replace("_", " "):</b> <EntityLabelComponent EntityId="@requirement.DataType"/>
|
<b>@requirement.Requirement.Replace("_", " "):</b> <EntityLabelComponent EntityId="@requirement.Id"/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
var productionBuilding = (from building in requirements
|
var productionBuilding = (from building in requirements
|
||||||
where building.Requirement == RequirementType.Production_Building
|
where building.Requirement == RequirementType.Production_Building
|
||||||
select building).First().DataType;
|
select building).First().Id;
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
var vanguard = entity.VanguardAdded();
|
var vanguard = entity.VanguardAdded();
|
||||||
var productionBuilding = (from building in requirements
|
var productionBuilding = (from building in requirements
|
||||||
where building.Requirement == RequirementType.Production_Building
|
where building.Requirement == RequirementType.Production_Building
|
||||||
select building).First().DataType;
|
select building).First().Id;
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
|||||||
[{"Id":1,"Name":"Database UX Patch","Date":"2022-03-13T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":2,"Name":"Thrum Stats Hotfix","Date":"2022-03-12T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":3,"Name":"Memory Tester Patch","Date":"2022-03-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":4,"Name":"Hide Pyre Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":5,"Name":"Stream Patch","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":6,"Name":"Agile UI Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":7,"Name":"Armor Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":8,"Name":"Home Page Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":9,"Name":"Mobile Menu Hotfix 2","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":10,"Name":"Mobile Menu Hotfix","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":11,"Name":"Mobile Menu Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":12,"Name":"0.0.6.8375a Patch","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":13,"Name":"Google Tracking Hotfix","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":14,"Name":"Privacy Policy Patch","Date":"2022-02-17T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":15,"Name":"Home Page Quick Hotfix","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":16,"Name":"Early Agile Patch","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":17,"Name":"Form Text Rendering Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":18,"Name":"Reducing Timing Interval Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":19,"Name":"Changelog Patch","Date":"2022-02-14T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":20,"Name":"SQL Patch","Date":"2022-03-26T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":21,"Name":"Stream Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":22,"Name":"0.0.6.8900a Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":23,"Name":"Database Links Patch","Date":"2022-04-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":24,"Name":"Open Source Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":25,"Name":"Stream Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":26,"Name":"Notes/Docs Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":27,"Name":"Stream Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":28,"Name":"enterName","Date":"2022-05-10T00:00:00","GitChangeModels":[],"Important":"False"}]
|
[{"Id":1,"Name":"Database UX Patch","Date":"2022-03-13T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":2,"Name":"Thrum Stats Hotfix","Date":"2022-03-12T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":3,"Name":"Memory Tester Patch","Date":"2022-03-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":4,"Name":"Hide Pyre Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":5,"Name":"Stream Patch","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":6,"Name":"Agile UI Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":7,"Name":"Armor Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":8,"Name":"Home Page Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":9,"Name":"Mobile Menu Hotfix 2","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":10,"Name":"Mobile Menu Hotfix","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":11,"Name":"Mobile Menu Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":12,"Name":"0.0.6.8375a Patch","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":13,"Name":"Google Tracking Hotfix","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":14,"Name":"Privacy Policy Patch","Date":"2022-02-17T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":15,"Name":"Home Page Quick Hotfix","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":16,"Name":"Early Agile Patch","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":17,"Name":"Form Text Rendering Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":18,"Name":"Reducing Timing Interval Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":19,"Name":"Changelog Patch","Date":"2022-02-14T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":20,"Name":"SQL Patch","Date":"2022-03-26T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":21,"Name":"Stream Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":22,"Name":"0.0.6.8900a Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":23,"Name":"Database Links Patch","Date":"2022-04-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":24,"Name":"Open Source Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":25,"Name":"Stream Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":26,"Name":"Notes/Docs Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":27,"Name":"Stream Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":28,"Name":"Passive Patch","Date":"2022-04-12T00:00:00","GitChangeModels":[],"Important":"True"}]
|
||||||
+581
-131
File diff suppressed because it is too large
Load Diff
@@ -49,7 +49,17 @@ public static class DataType
|
|||||||
public static string ISPELL_ConstructBloodWell = "07aee142-02dd-4804-878a-2d5c6881e8c8";
|
public static string ISPELL_ConstructBloodWell = "07aee142-02dd-4804-878a-2d5c6881e8c8";
|
||||||
public static string ISPELL_RedTithe = "57008163-5e3a-4b95-98f3-d00b54e18684";
|
public static string ISPELL_RedTithe = "57008163-5e3a-4b95-98f3-d00b54e18684";
|
||||||
public static string ISPELL_RainOfBlood = "792df385-c66a-4710-9f75-97731897a565";
|
public static string ISPELL_RainOfBlood = "792df385-c66a-4710-9f75-97731897a565";
|
||||||
public static string ISPELL_GreatHunt = "efa14586-33f0-487f-b691-1ed3bcd5b0e6";
|
|
||||||
|
public static string IPASSIVE_HealingGround = "3ec17526-8dc5-4592-9c15-ef1d9b1ca2f6";
|
||||||
|
public static string IPASSIVE_Expansionist = "b6cd4335-2165-44c3-b3dc-4500c0111870";
|
||||||
|
|
||||||
|
public static string IPASSIVE_MothersHunger = "382dc614-9228-4494-9a80-d1a72604a1ee";
|
||||||
|
public static string IPASSIVE_StalkersSense = "a3d255aa-94f2-4aed-bb44-e9becb736fca";
|
||||||
|
|
||||||
|
|
||||||
|
public static string ISPELL_MarkPrey = "8505419c-bb42-41fa-9c5b-fc0db280d7c0";
|
||||||
|
public static string ISPELL_TheGreatHunt = "efa14586-33f0-487f-b691-1ed3bcd5b0e6";
|
||||||
|
|
||||||
public static string TOWER_Citadel = "e4bb8fbd-9c42-449c-82a6-2f72504bd2b4";
|
public static string TOWER_Citadel = "e4bb8fbd-9c42-449c-82a6-2f72504bd2b4";
|
||||||
public static string TOWER_GroveGuardian = "ea772cd5-534b-4bb0-9d4b-36498b8a6c8f";
|
public static string TOWER_GroveGuardian = "ea772cd5-534b-4bb0-9d4b-36498b8a6c8f";
|
||||||
public static string BUILDING_Acropolis = "ee1498cf-3c8c-4793-8869-5e097fe4d372";
|
public static string BUILDING_Acropolis = "ee1498cf-3c8c-4793-8869-5e097fe4d372";
|
||||||
@@ -81,6 +91,11 @@ public static class DataType
|
|||||||
|
|
||||||
|
|
||||||
public static string DEFENSE_Aerovore = "b68307b7-4759-43a3-8679-d844ac3aa73f";
|
public static string DEFENSE_Aerovore = "b68307b7-4759-43a3-8679-d844ac3aa73f";
|
||||||
|
|
||||||
|
|
||||||
|
public static string UPGRADE_GreavesOfAhqar = "eac602b3-e3ae-4e36-aa14-28532e3485a7";
|
||||||
|
public static string UPGRADE_FortifiedIcons = "b16bdb3a-6c61-44da-89c5-5be37c7e9d66";
|
||||||
|
|
||||||
public static string UPGRADE_FaithCastBlades = "32087a66-900e-4f25-95f7-de56d5b424c7";
|
public static string UPGRADE_FaithCastBlades = "32087a66-900e-4f25-95f7-de56d5b424c7";
|
||||||
public static string UPGRADE_RelicOfTheWrathfulGaze = "e6fa5ded-53f5-4914-85bb-1fdff5f32b64";
|
public static string UPGRADE_RelicOfTheWrathfulGaze = "e6fa5ded-53f5-4914-85bb-1fdff5f32b64";
|
||||||
public static string UPGRADE_WindStep = "c263fe42-ebde-4145-8b7f-42e5d5d5d10c";
|
public static string UPGRADE_WindStep = "c263fe42-ebde-4145-8b7f-42e5d5d5d10c";
|
||||||
@@ -100,10 +115,52 @@ public static class DataType
|
|||||||
public static string UPGRADE_BloodPlague = "9c207e21-f595-49d0-967d-f30ca8cc3745";
|
public static string UPGRADE_BloodPlague = "9c207e21-f595-49d0-967d-f30ca8cc3745";
|
||||||
public static string UPGRADE_BirthingStorm = "0cb2f1a4-03b3-491b-9db3-d2d4590ede3a";
|
public static string UPGRADE_BirthingStorm = "0cb2f1a4-03b3-491b-9db3-d2d4590ede3a";
|
||||||
|
|
||||||
|
public static string PASSIVE_WraithBowRange = "196dd8a6-2044-44e1-aac4-fbaa40552699";
|
||||||
|
|
||||||
|
|
||||||
public static string PASSIVE_Respite = "607c39f4-a957-4a7a-8fc6-a239f9e570ec";
|
public static string PASSIVE_Respite = "607c39f4-a957-4a7a-8fc6-a239f9e570ec";
|
||||||
|
public static string PASSIVE_BastionPassives = "ea42b9cb-2456-4ed2-b490-fcfde12c6153";
|
||||||
|
public static string PASSIVE_HallowedWarrior = "fea43ced-33f3-4531-af7d-740c1789fec1";
|
||||||
|
public static string PASSIVE_GreavesOfAhqar = "3c408d75-7bee-4089-84c0-74620ac708b6";
|
||||||
|
public static string PASSIVE_FortifiedIcons = "35f3f02f-e22e-44be-b2ea-82972c383308";
|
||||||
|
|
||||||
|
public static string PASSIVE_Maledictions = "6cdc109c-157d-433a-b225-192e39c0b613";
|
||||||
|
public static string PASSIVE_HarvestAlloy = "84bacf5a-b106-455c-8cff-66c3998404f8";
|
||||||
|
public static string PASSIVE_RelicOfTheWrathfulGaze = "ccebc0c9-cfd5-465a-8a5d-2495bd745a83";
|
||||||
|
|
||||||
|
public static string PASSIVE_WingsOfTheKenLatir = "48909ff5-63db-4c99-b62f-d290e127e0bf";
|
||||||
|
|
||||||
|
public static string PASSIVE_ExecutionRites = "8d017a17-320f-4c2a-b139-d2d83bf7ecd0";
|
||||||
|
|
||||||
|
|
||||||
|
public static string PASSIVE_IconOfKhastEem = "7a211da6-4713-40f5-a171-1e3b6e02bf09";
|
||||||
|
public static string PASSIVE_FaithCastBlades = "da4f8c9c-1b22-4b3f-94fc-11bc12cde02d";
|
||||||
|
|
||||||
|
|
||||||
|
public static string PASSIVE_ThroneMovingShot = "699423ed-7410-4daf-8b07-9dc733a8bf55";
|
||||||
|
|
||||||
|
public static string PASSIVE_HallowingRites = "9c8ae47b-954e-4a17-8f35-f128c9114b61";
|
||||||
|
public static string PASSIVE_RegentsWrath = "f111f004-6548-4430-9d13-ef44ab108ae7";
|
||||||
|
public static string PASSIVE_PsalmOfFire = "d28f6b7c-d319-4fb8-bdd4-92ede40a0751";
|
||||||
|
public static string PASSIVE_Zeal = "62c4942b-5578-422d-8d4e-d1789f4efa68";
|
||||||
|
public static string PASSIVE_HallowedGround = "bdb28984-246f-4642-84ab-9e83c02b3e2e";
|
||||||
|
public static string PASSIVE_CastFromLife = "3cc734de-f8e7-4e69-9fa5-bdf725c4941b";
|
||||||
|
public static string PASSIVE_Rootway = "46768d4a-5047-4973-b5ca-995cda25ee8d";
|
||||||
|
public static string PASSIVE_QuitlStorage = "a210f109-d3ac-44d4-9724-601c795a2394";
|
||||||
|
public static string PASSIVE_QuitlStorage2 = "0b27b863-fce5-40e4-96c7-6df94bdd92b9";
|
||||||
|
public static string PASSIVE_Temporary = "940c04f1-df0b-4cf7-9514-09dfd9009554";
|
||||||
|
public static string PASSIVE_RadiantWard = "db1fc8bd-d86a-4eda-b83c-16e8d0ce4f81";
|
||||||
|
public static string PASSIVE_Stalk = "9c107bfd-0050-4670-91b8-f9a8d771225d";
|
||||||
|
public static string PASSIVE_Ambush = "9d0a9482-0303-4a15-bb88-972f6ae60a39";
|
||||||
|
|
||||||
|
public static string PASSIVE_FallenHarvest = "d209e13f-d631-40d7-90e1-d9845b51b8d4";
|
||||||
|
public static string PASSIVE_RestoreLifeblood = "fa213bc6-336c-4510-8a4b-db9ccfc54d62";
|
||||||
|
public static string PASSIVE_Transfusion = "e67a3d6d-f2bb-4622-9e4d-ea2a26af2f39";
|
||||||
|
|
||||||
|
public static string PASSIVE_HallowedRuin = "402b555a-eb8a-4065-bd25-465d190b30c7";
|
||||||
|
public static string PASSIVE_ExternalDigestion = "2563723b-4a75-4a17-a104-1f5ac3b79a06";
|
||||||
|
|
||||||
|
|
||||||
public static string PASSIVE_OssifyingSwarm = "b8897247-8393-416e-b246-409a6b3263c2";
|
public static string PASSIVE_OssifyingSwarm = "b8897247-8393-416e-b246-409a6b3263c2";
|
||||||
|
|
||||||
public static string PASSIVE_QuenchingScythes = "dbf07db4-e7b6-4f81-9f8e-e5391850eead";
|
public static string PASSIVE_QuenchingScythes = "dbf07db4-e7b6-4f81-9f8e-e5391850eead";
|
||||||
@@ -114,11 +171,10 @@ public static class DataType
|
|||||||
public static string PASSIVE_GodstoneBulwark = "482189ac-713d-4870-a960-d2930961c486";
|
public static string PASSIVE_GodstoneBulwark = "482189ac-713d-4870-a960-d2930961c486";
|
||||||
public static string PASSIVE_Invervention = "3a70d237-1530-455a-b4f8-a626d708334c";
|
public static string PASSIVE_Invervention = "3a70d237-1530-455a-b4f8-a626d708334c";
|
||||||
|
|
||||||
public static string PASSIVE_ThrumAttackSpeed = "356b6c33-a857-489c-8218-68c53d03db90";
|
public static string PASSIVE_BloodFrenzy = "356b6c33-a857-489c-8218-68c53d03db90";
|
||||||
|
|
||||||
public static string PASSIVE_MendingCommand = "25d94c3d-dba9-4f02-abf4-904269b539c6";
|
public static string PASSIVE_MendingCommand = "25d94c3d-dba9-4f02-abf4-904269b539c6";
|
||||||
public static string PASSIVE_StabilizeHallowedGround = "0bbbaf06-fd22-4f48-a888-cc1ab6af046e";
|
public static string PASSIVE_FireQuitl = "80f6b382-da1c-49a1-8235-1ea37983ea54";
|
||||||
public static string PASSIVE_SpawnQuitl = "80f6b382-da1c-49a1-8235-1ea37983ea54";
|
|
||||||
public static string PASSIVE_XacalDamage = "69928f20-5332-418f-ada3-694da3f7b199";
|
public static string PASSIVE_XacalDamage = "69928f20-5332-418f-ada3-694da3f7b199";
|
||||||
|
|
||||||
public static string ABILITY_BladesOfTheGodhead = "000154ac-faf5-483d-b0bd-e84335891a27";
|
public static string ABILITY_BladesOfTheGodhead = "000154ac-faf5-483d-b0bd-e84335891a27";
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ namespace Model.Entity.Parts;
|
|||||||
public class EntityRequirementModel : IEntityPartInterface
|
public class EntityRequirementModel : IEntityPartInterface
|
||||||
{
|
{
|
||||||
public string Type { get; set; } = "EntityRequirementModel";
|
public string Type { get; set; } = "EntityRequirementModel";
|
||||||
public string DataType { get; set; }
|
public string Id { get; set; }
|
||||||
public string Requirement { get; set; } = RequirementType.Production_Building;
|
public string Requirement { get; set; } = RequirementType.Production_Building;
|
||||||
}
|
}
|
||||||
@@ -26,4 +26,7 @@ public static class DescriptiveType
|
|||||||
public static string Summon = "Summon";
|
public static string Summon = "Summon";
|
||||||
public static string Upgrade = "Upgrade";
|
public static string Upgrade = "Upgrade";
|
||||||
public static string Ability = "Ability";
|
public static string Ability = "Ability";
|
||||||
|
|
||||||
|
public static string Passive = "Passive";
|
||||||
|
public static string Applies_Debuff = "Applies_Debuff";
|
||||||
}
|
}
|
||||||
@@ -201,7 +201,7 @@ public class BuildOrderService : IBuildOrderService
|
|||||||
from requiredEntity in entitiesAtInterval.Value
|
from requiredEntity in entitiesAtInterval.Value
|
||||||
where requestedInterval > entitiesAtInterval.Key +
|
where requestedInterval > entitiesAtInterval.Key +
|
||||||
(requiredEntity.Production() == null ? 0 : requiredEntity.Production().BuildTime)
|
(requiredEntity.Production() == null ? 0 : requiredEntity.Production().BuildTime)
|
||||||
where requiredEntity.DataType == requirement.DataType
|
where requiredEntity.DataType == requirement.Id
|
||||||
select requiredEntity;
|
select requiredEntity;
|
||||||
|
|
||||||
var entitiesAlreadyMorphed = from entitiesAtInterval in buildOrder.Orders
|
var entitiesAlreadyMorphed = from entitiesAtInterval in buildOrder.Orders
|
||||||
@@ -218,7 +218,7 @@ public class BuildOrderService : IBuildOrderService
|
|||||||
from requiredEntity in entitiesAtInterval.Value
|
from requiredEntity in entitiesAtInterval.Value
|
||||||
where requestedInterval > entitiesAtInterval.Key +
|
where requestedInterval > entitiesAtInterval.Key +
|
||||||
(requiredEntity.Production() == null ? 0 : requiredEntity.Production().BuildTime)
|
(requiredEntity.Production() == null ? 0 : requiredEntity.Production().BuildTime)
|
||||||
where requiredEntity.DataType == requirement.DataType
|
where requiredEntity.DataType == requirement.Id
|
||||||
select requiredEntity;
|
select requiredEntity;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user