open source update. Fixed Database filters, added docs page

This commit is contained in:
2022-04-03 13:13:59 -04:00
parent 932b3b9e16
commit 73cc82709c
17 changed files with 273 additions and 37 deletions
+23
View File
@@ -1562,6 +1562,18 @@ public class DATA {
},
// Passives
// Aru Passives
//PASSIVE_ThrumAttackSpeed
{
DataType.PASSIVE_ThrumAttackSpeed,
new EntityModel(DataType.PASSIVE_ThrumAttackSpeed, EntityType.Passive)
.AddPart(new EntityInfoModel {
Name = "Thrum Attack Speed Boost", Descriptive = DescriptiveType.Ability,
Description =
@"Thrums gain more attack speed for a short duration when a near by allied Thrum kills an enemy unit"
})
.AddPart(new EntityFactionModel { Faction = FactionType.Aru })
},
{
DataType.PASSIVE_XacalDamage,
new EntityModel(DataType.PASSIVE_XacalDamage, EntityType.Passive)
@@ -1743,6 +1755,17 @@ public class DATA {
},
// Abilities
// Aru
{
DataType.ABILITY_MobilizeAru,
new EntityModel(DataType.ABILITY_MobilizeAru, EntityType.Ability)
.AddPart(new EntityInfoModel {
Name = "Mobilize Aru", Descriptive = DescriptiveType.Ability,
Description =
@"Mobilize all deployed Aru units."
})
.AddPart(new EntityHotkeyModel { Hotkey = "F", HotkeyGroup = "D" })
.AddPart(new EntityFactionModel { Faction = FactionType.Aru })
},
{
DataType.ABILITY_Offering,
new EntityModel(DataType.ABILITY_Offering, EntityType.Ability)
+5 -2
View File
@@ -1,4 +1,6 @@
namespace Model.Immortal.Entity.Data;
using System;
namespace Model.Immortal.Entity.Data;
public static class EntityType {
public static string None = "None";
@@ -7,12 +9,13 @@ public static class EntityType {
public static string Family = "Family";
public static string Faction = "Faction";
public static string Command = "Command";
public static string Worker = "Worker";
public static string Army = "Army";
public static string Building = "Building";
public static string Building_Upgrade = "Building_Upgrade";
public static string Immortal = "Immortal";
public static string Pyre_Spell = "Pyre_Spell";
public static string Pyre_Spell = "Spell";
public static string Pyre_Event = "Pyre_Event";
public static string Ability = "Ability";
public static string Tech = "Tech";