Skip to content

Commit

Permalink
Merge pull request #1 from Burin077/Burin-1st-Pull-Request
Browse files Browse the repository at this point in the history
Zombie RaceEffect and Zombie Species patch.
  • Loading branch information
Burin077 committed Oct 30, 2020
2 parents 109bd8e + 35b02cc commit e5d32e7
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
34 changes: 34 additions & 0 deletions species/zombie.species.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{ "op": "replace",
"path" : "/charCreationTooltip/description" ,
"value" : "Humans that were brought back to life through strange, otherworldly powers. Whether Eldritch or by the effects of Radiation, Zombies are slow, lumbering, and have a strange craving for brains and living flesh..."
},
{ "op": "replace",
"path" : "/charCreationTooltip/description" ,
"value" : "Undead Humans brought back through vile energies or radiation. Stiff, slow, and tough to kill.

^orange;Diet^reset;: Carnivore

^orange;Perks^reset;:
Health x+^green;10^reset;%
Resist x+^green;10^reset;% Physical, +^green;10^reset;% Ice, +^green;20^reset;% Poison, +^green;10^reset;% Shadow, +^green;20^reset;% Radiation

^cyan;Immune^reset;: Poisoning, Breathing

^orange;Environment^reset;:
Atropus/Dark/Poison/Radioactive Biomes: x+^green;5^reset;% Max Energy, +^green;10^reset;% Max Health, +^green;5^reset;% Movement Speed
Chromatic/Hot/Sulphuric Biomes: x-^red;25^reset;% Max Energy, -^red;10^reset;% Max Health

^orange;Weapons^reset;:
Fists x+^green;15^reset;% Damage
Scythe x+^green;10^reset;% Damage, ^green;1^reset;% Crit Chance, ^green;1^reset;% Crit Damage
Dual Fists x+^green;5^reset;% Damage, ^green;1^reset;% Crit Chance.
Health Drain on Melee Hit

^red;Weaknesses^reset;:
Energy x-^red;20^reset;%,
Resist x-^red;60^reset;% Fire -^red;60^reset;% Cosmic
Charisma x-^red;35^reset;% Charisma
Hunger x-^red;25^reset;% Hunger Rate
}
]
61 changes: 61 additions & 0 deletions zombie.raceeffect
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"stats" : [
{ "stat" : "maxFood", "effectiveMultiplier": 0.7 },
{ "stat" : "maxHealth", "effectiveMultiplier": 1.1},
{ "stat" : "maxEnergy", "effectiveMultiplier": 0.8},
{ "stat" : "fuCharisma", "baseMultiplier" : 0.65 },
{ "stat" : "physicalResistance", "amount" : 0.1 },
{ "stat" : "fireResistance", "amount" : -0.6 },
{ "stat" : "iceResistance", "amount" : 0.1 },
{ "stat: : "poisonResistance", "amount" : 0.2 },
{ "stat" : "shadowResistance", "amount" : 0.1 },
{ "stat" : "cosmicResistance", "amount" : -0.6 },
{ "stat" : "radioactiveResistance", "amount" : 0.2 }

],

"diet" : "Carnivore"

"envEffects": [
{
"biomes": [ "alien", "atropus", "atropusdark", "fungal", "fungus", "irradiated", "protoworld", "protoworlddark", "toxic" ],
"stats": [
{ "stat": "maxEnergy", "effectiveMultiplier": 1.05 },
{ "stat": "maxHealth", "effectiveMultiplier": 1.10 }
],
"controlModifiers" : {
"speedModifier" : 1.05
}
},
{
"biomes": [ "chromatic", "hot", "aethersea", "sulphuric" ],
"stats" : [
{ "stat": "maxEnergy", "effectiveMultiplier": 0.75 },
{ "stat": "maxHealth", "effectiveMultiplier": 0.90 }
],
"weaponEffects": [{
"weapons": [ "fist" ],
"stats": [
{ "stat": "powerMultiplier", "effectiveMultiplier": 1.15 }
]
},
{
"weapons": [ "scythe" ],
"stats": [
{ "stat": "powerMultiplier", "effectiveMultiplier": 1.10 },
{ "stat": "critChance", "amount": 1 },
{ "stat": "critDamage", "amount": 0.01 }
]
},
{
"combos": [
[ "fist", "fist" ];
],
"stats:" [
{ "stat": "powerMultiplier", "effectiveMultiplier": 1.05 },
{ "stat": "critChance", "amount": 1 }
]
}

"special": [ "drainnightar" ]
}

0 comments on commit e5d32e7

Please sign in to comment.