Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Added missing environmental buffs
Browse files Browse the repository at this point in the history
Host Spring (health rec/coldproof), Powercone, and Thawpuffs
  • Loading branch information
sir-wilhelm committed Apr 17, 2020
1 parent 4094f8b commit 478dbad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions SmartHunter/Game/Config/LocalizationConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,11 @@ public class LocalizationConfig
{ "LOC_STATUS_EFFECT_PROTECTIVE_POLISH", "Protective Polish" },
{ "LOC_STATUS_EFFECT_AFFINITY_SLIDING", "Affinity Sliding" },

{ "LOC_STATUS_EFFECT_HOT_SPRING_HEALTH_RECOVERY","Health Recovery (Hot Spring)"},
{ "LOC_STATUS_EFFECT_HOT_SPRING_CLODPROOF","Clodproof (Hot Spring)"},
{ "LOC_STATUS_EFFECT_POWERCONE_ATTACK_UP","Attack UP (Powercone)"},
{ "LOC_STATUS_EFFECT_THAWPUFFS_ICEPROOF","Iceproof (Thawpuffs)"},

// Equipment
{ "LOC_EQUIPMENT_MANTLE_GHILLIE", "Ghillie Mantle" },
{ "LOC_EQUIPMENT_MANTLE_TEMPORAL", "Temporal Mantle" },
Expand Down
5 changes: 5 additions & 0 deletions SmartHunter/Game/Config/PlayerDataConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ private static string indexToHexStr(int index, ulong baseOffset)
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_ARMORSKIN", MemorySource.Base, null, new MemoryConditionConfig(1, indexToHexStrNoOffset(438))),
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_MEGA_ARMORSKIN", MemorySource.Base, null, new MemoryConditionConfig(2, indexToHexStrNoOffset(438))),

new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_HOT_SPRING_HEALTH_RECOVERY", MemorySource.Base, indexToHexStrNoOffset(446)),
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_HOT_SPRING_CLODPROOF", MemorySource.Base, indexToHexStrNoOffset(447)),
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_POWERCONE_ATTACK_UP", MemorySource.Base, indexToHexStrNoOffset(454)),
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_THAWPUFFS_ICEPROOF", MemorySource.Base, indexToHexStrNoOffset(455)),

new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_COOL_DRINK", MemorySource.Base, indexToHexStrNoOffset(443)),
new StatusEffectConfig("Buff", "LOC_STATUS_EFFECT_HOT_DRINK", MemorySource.Base, indexToHexStrNoOffset(444)),

Expand Down

0 comments on commit 478dbad

Please sign in to comment.