-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3518 from vlekje513/AddMechinekiRaceFUCompatibility
Adding Mechineki FU Support
- Loading branch information
Showing
3 changed files
with
116 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"stats": [ | ||
{"stat": "fireResistance", "amount": 0.1}, | ||
{"stat": "radioactiveResistance", "amount": 0.05}, | ||
{"stat": "poisonResistance", "amount": 0.2}, | ||
{"stat": "electricResistance", "amount": -0.5}, | ||
{"stat": "iceResistance", "amount": -0.1}, | ||
|
||
{"stat": "breathProtection", "amount": 1}, | ||
{"stat": "poisonStatusImmunity", "amount": 1}, | ||
{"stat": "poisongasImmunity", "amount": 1}, | ||
{"stat": "beestingImmunity", "amount": 1}, | ||
|
||
{"stat": "physicalResistance", "amount": 0.1}, | ||
|
||
{"stat": "fujungleslowImmunity", "amount": 1}, | ||
{"stat": "jungleslowImmunity", "amount": 1}, | ||
{"stat": "slushslowImmunity", "amount": 1}, | ||
{"stat": "snowslowImmunity", "amount": 1}, | ||
|
||
{"stat": "maxHealth", "effectiveMultiplier": 0.85}, | ||
|
||
{"stat": "maxEnergy", "effectiveMultiplier": 1.1}, | ||
{"stat": "energyRegenPercentageRate", "baseMultiplier": 1.1}, | ||
{"stat": "fallDamageMultiplier", "effectiveMultiplier": 0.9}, | ||
{"stat": "foodDelta", "effectiveMultiplier": 1.2}, | ||
|
||
{"stat": "fistMastery", "amount": 0.2}, | ||
{"stat": "energyMastery", "amount": 0.1}, | ||
{"stat": "magnorbMastery", "amount": 0.2} | ||
], | ||
|
||
"diet": "robot", | ||
|
||
"controlModifiers": { | ||
"speedModifier": 1.06 | ||
}, | ||
|
||
"envEffects": [ | ||
{ | ||
"biomes": "cold", | ||
"stats": [ | ||
{ | ||
"stat": "maxHealth", | ||
"effectiveMultiplier": 0.8 | ||
}, | ||
{ | ||
"stat": "maxEnergy", | ||
"effectiveMultiplier": 1.1 | ||
}, | ||
{ | ||
"stat": "energyRegenPercentageRate", | ||
"effectiveMultiplier": 1.1 | ||
} | ||
] | ||
}, | ||
{ | ||
"biomes": "hot", | ||
"stats": [ | ||
{ | ||
"stat": "maxEnergy", | ||
"effectiveMultiplier": 0.9 | ||
} | ||
] | ||
} | ||
], | ||
|
||
|
||
"liquidEffects": [ | ||
{ | ||
"name": "glitchLiquidEffect", | ||
"liquids": [ "oil", "liquidprotocite", "erchius" ], | ||
"stats": [ | ||
{ "stat": "maxEnergy", "effectiveMultiplier": 1.25 }, | ||
{ "stat": "energyRegenPercentageRate", "baseMultiplier": 1.484 }, | ||
{ "stat": "healthRegen", "amount": 0.484 } | ||
] | ||
} | ||
], | ||
|
||
"weaponEffects": [], | ||
|
||
"special": [ "glitchStuff" ] | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ "op": "replace", | ||
"path" : "/charCreationTooltip/description" , | ||
"value" : "The mechanical counterpart to the mischievious Neki. One would think their artificial nature would result in a more polite, compliant personality, but these dubious companion-bots are hardly any different from their organic counterparts. | ||
|
||
^orange;Diet^reset;: Robotic | ||
|
||
^orange;Perks^reset;: | ||
Speed: ^green;6%^reset;, Fall Damage: ^green;0.9x^reset; | ||
Max Energy: ^green;+10%^reset;, Energy Regen: ^green;+10%^reset; | ||
^cyan;Tile Immunities^reset;: Jungle, Slush, Snow | ||
^cyan;Immune^reset;: Breath, Poison, Bee Stings | ||
|
||
^orange;Environment^reset;: | ||
^green;Oil/Liquid Proto/Erchius^reset;: Health & E. Regen, Energy x^green;1.25^reset; | ||
^red;Hot^reset; biomes: Energy x^red;0.9^reset; | ||
^cyan;Cold^reset; biomes: Health x^red;0.8^reset;, ^green;10%^reset; Max Energy, ^green;10%^reset; E. Regen Rate | ||
|
||
^orange;Weapons^reset; | ||
^green;10%^reset; Fist, Magnorb Mastery, Energy | ||
|
||
^green;Resistances^reset;: | ||
Poison ^green;20%^reset;, Physical ^green;10%^reset;, Fire ^green;10%^reset;, Radioactive ^green;5%^reset; | ||
|
||
^red;Weaknesses^reset;: | ||
Health ^red;0.85x^reset;, Electric ^red;50%^reset;, Ice ^red;20%^reset; | ||
Hunger Rate ^red;20%^reset; | ||
" | ||
} | ||
] |