Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added SmartHunter.v12.suo
Binary file not shown.
6 changes: 6 additions & 0 deletions SmartHunter/Game/Config/LocalizationConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,12 @@ public class LocalizationConfig
{ "LOC_STATUS_EFFECT_RAGE", "Rage" },
{ "LOC_STATUS_EFFECT_STAMINA", "Stamina" },
{ "LOC_STATUS_EFFECT_FATIGUE", "Fatigue" },

{ "LOC_WEAKNESS_DRAGON", "Dragon" },
{ "LOC_WEAKNESS_FIRE", "Fire" },
{ "LOC_WEAKNESS_ICE", "Ice" },
{ "LOC_WEAKNESS_THUNDER", "Thunder" },
{ "LOC_WEAKNESS_WATER", "Water" },
};

public LocalizationConfig()
Expand Down
4 changes: 3 additions & 1 deletion SmartHunter/Game/Config/MonsterConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ public class MonsterConfig
public float BaseSize;
public float ScaleModifier = 1f;
public MonsterCrownConfig Crowns;
public string Weakness;
public bool isElder = false;

public MonsterConfig(string nameStringId, MonsterPartConfig[] parts, float baseSize, MonsterCrownConfig crowns, bool elder = false)
public MonsterConfig(string nameStringId, MonsterPartConfig[] parts, float baseSize, MonsterCrownConfig crowns, string weakness, bool elder = false)
{
NameStringId = nameStringId;
Parts = parts;
BaseSize = baseSize;
Crowns = crowns;
Weakness = weakness;
isElder = elder;
}
}
Expand Down
Loading