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

Commit

Permalink
Adding initial R Brachy and F Rajang support.
Browse files Browse the repository at this point in the history
parts are from base monster and still need to be updated.
  • Loading branch information
sir-wilhelm committed Apr 9, 2020
1 parent cb53b35 commit 61accd3
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SmartHunter/Game/Config/LocalizationConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class LocalizationConfig
{ "LOC_MONSTER_ANJANATH_FULGUR", "Fulgur Anjanath" },
{ "LOC_MONSTER_PUKEI_PUKEI_CORAL", "Coral Pukei-Pukei" },
{ "LOC_MONSTER_BRACHYDIOS", "Brachydios" },
{ "LOC_MONSTER_RAGING_BRACHYDIOS", "Raging Brachydios" },
{ "LOC_MONSTER_VELKHANA", "Velkhana" },
{ "LOC_MONSTER_BEOTODUS", "Beotodus" },
{ "LOC_MONSTER_GLAVENUS", "Glavenus" },
Expand All @@ -44,6 +45,7 @@ public class LocalizationConfig
{ "LOC_MONSTER_GOLD_RATHIAN", "Gold Rathian" },
{ "LOC_MONSTER_SILVER_RATHALOS", "Silver Rathalos" },
{ "LOC_MONSTER_RAJANG", "Rajang" },
{ "LOC_MONSTER_FURIOUS_RAJANG", "Furious Rajang" },
{ "LOC_MONSTER_STYGIAN_ZINOGRE", "Stygian Zinogre" },
{ "LOC_MONSTER_SAFI_JIIVA", "Safi'jiiva" },

Expand Down
37 changes: 37 additions & 0 deletions SmartHunter/Game/Config/MonsterDataConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,25 @@ public class MonsterDataConfig
new MonsterCrownConfig(CrownPreset.Rajang)
)
},
{
"em023_05",
new MonsterConfig("LOC_MONSTER_FURIOUS_RAJANG",
new MonsterPartConfig[]
{
new MonsterPartConfig("Removable", "LOC_REMOVABLE_PART_HORNS", true),
new MonsterPartConfig("Removable", "LOC_REMOVABLE_PART_TAIL", true),
new MonsterPartConfig("Part", "LOC_PART_HEAD"),
new MonsterPartConfig("Part", "LOC_PART_BODY"),
new MonsterPartConfig("Part", "LOC_PART_ARM_LEFT"),
new MonsterPartConfig("Part", "LOC_PART_ARM_RIGHT"),
new MonsterPartConfig("Part", "LOC_PART_LEG_LEFT"),
new MonsterPartConfig("Part", "LOC_PART_LEG_RIGHT"),
new MonsterPartConfig("Part", "LOC_PART_TAIL")
},
829.11f,
new MonsterCrownConfig(CrownPreset.Rajang)
)
},
{ // true
"em024_00",
new MonsterConfig("LOC_MONSTER_KUSHALA_DAORA",
Expand Down Expand Up @@ -479,6 +498,24 @@ public class MonsterDataConfig
new MonsterCrownConfig(CrownPreset.Standard)
)
},
{
"em063_05",
new MonsterConfig("LOC_MONSTER_RAGING_BRACHYDIOS",
new MonsterPartConfig[]
{
new MonsterPartConfig("Removable", "LOC_REMOVABLE_PART_TAIL", true),
new MonsterPartConfig("Part", "LOC_PART_HEAD"),
new MonsterPartConfig("Part", "LOC_PART_BODY"),
new MonsterPartConfig("Part", "LOC_PART_ARM_LEFT"),
new MonsterPartConfig("Part", "LOC_PART_ARM_RIGHT"),
new MonsterPartConfig("Part", "LOC_PART_LEG_LEFT"),
new MonsterPartConfig("Part", "LOC_PART_LEG_RIGHT"),
new MonsterPartConfig("Part", "LOC_PART_TAIL")
},
2282.77f,
new MonsterCrownConfig(CrownPreset.Standard)
)
},
{
"em057_01",
new MonsterConfig("LOC_MONSTER_STYGIAN_ZINOGRE",
Expand Down

0 comments on commit 61accd3

Please sign in to comment.