Browse Source

fix(Data): Maledictions is probably an unreleased PASSIVE not ability

main
Jonathan McCaffrey 4 years ago
parent
commit
0b6e1b0780
  1. 12
      Model/Entity/Data/DATA.cs
  2. 2
      Model/Entity/Data/Ids_Entity.cs

12
Model/Entity/Data/DATA.cs

@ -827,7 +827,7 @@ public class DATA
{
Name = "Dervish", Descriptive = DescriptiveType.Harrier,
Description =
"Skirmisher (Ground Unit) - Swift unit used to harrass enemy outposts. Can only attack ground."
"Skirmisher (Ground Unit) - Swift unit used to harass enemy outposts. Can only attack ground."
})
.AddPart(new EntityTierModel { Tier = 2 })
.AddPart(new EntityHotkeyModel { Hotkey = "R", HotkeyGroup = "Z" })
@ -919,7 +919,7 @@ public class DATA
.AddPart(new EntityWeaponModel
{ Damage = 8, Range = 500, AttacksPerSecond = 1.429f, Targets = TargetType.Ground })
.AddPart(new EntityIdUpgradeModel { Id = DataType.UPGRADE_RelicOfTheWrathfulGaze })
.AddPart(new EntityIdAbilityModel { Id = DataType.ABILITY_Maledictions })
.AddPart(new EntityIdAbilityModel { Id = DataType.PASSIVE_Maledictions })
.AddPart(new EntityIdPassiveModel { Id = DataType.PASSIVE_RelicOfTheWrathfulGaze })
},
{
@ -2504,12 +2504,12 @@ public class DATA
},
{
DataType.ABILITY_Maledictions,
new EntityModel(DataType.ABILITY_Maledictions, EntityType.Ability)
DataType.PASSIVE_Maledictions,
new EntityModel(DataType.PASSIVE_Maledictions, EntityType.Passive)
.AddPart(new EntityInfoModel
{
Name = "Maledictions", Descriptive = DescriptiveType.Ability,
Description = @"Stun ground unit? With Maledictions spell.",
Name = "Maledictions", Descriptive = DescriptiveType.Passive,
Description = @"Stun ground units? With Maledictions passive.",
Notes = "Not implemented"
})
.AddPart(new EntityFactionModel { Faction = DataType.FACTION_QRath })

2
Model/Entity/Data/Ids_Entity.cs

@ -202,7 +202,7 @@ public static class DataType
public static string ABILITY_RadiantWard = "db1fc8bd-d86a-4eda-b83c-16e8d0ce4f81";
public static string ABILITY_Maledictions = "6cdc109c-157d-433a-b225-192e39c0b613";
public static string PASSIVE_Maledictions = "6cdc109c-157d-433a-b225-192e39c0b613";
public static string ABILITY_BladesOfTheGodhead = "000154ac-faf5-483d-b0bd-e84335891a27";
public static string ABILITY_Windstep = "a410b296-39f7-42e0-87c8-6cef11eb967c";

Loading…
Cancel
Save