Skip to content

Commit

Permalink
Added wild boar to forests (#37351)
Browse files Browse the repository at this point in the history
* Added wild boar

* Added monster group entries

* Changed volumes to L

* Minor change
  • Loading branch information
kevingranade authored Apr 2, 2020
2 parents c8bc8d8 + 3190412 commit 93f7074
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/json/monstergroups/wilderness.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@
{ "monster": "mon_zombear", "freq": 4, "cost_multiplier": 10, "starts": 2160 },
{ "monster": "mon_bobcat", "freq": 7, "cost_multiplier": 2 },
{ "monster": "mon_bobcat", "freq": 13, "cost_multiplier": 2, "conditions": [ "DAWN", "DUSK" ] },
{ "monster": "mon_boar_wild", "freq": 2, "cost_multiplier": 2, "pack_size": [ 1, 4 ] },
{ "monster": "mon_boar_wild", "freq": 4, "cost_multiplier": 2, "pack_size": [ 1, 4 ], "conditions": [ "DAY" ] },
{ "monster": "mon_cat", "freq": 10, "cost_multiplier": 1 },
{ "monster": "mon_cat", "freq": 15, "cost_multiplier": 1, "conditions": [ "DAWN", "DUSK" ] },
{ "monster": "mon_cat", "freq": 1, "cost_multiplier": 1, "pack_size": [ 2, 8 ] },
Expand Down
72 changes: 72 additions & 0 deletions data/json/monsters/mammal.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,78 @@
"special_attacks": [ [ "EAT_FOOD", 120 ] ],
"flags": [ "SEES", "SMELLS", "HEARS", "WARM", "SWIMS", "ANIMAL", "PATH_AVOID_DANGER_1" ]
},
{
"id": "mon_boar_wild_piglet",
"type": "MONSTER",
"name": "wild boar piglet",
"description": "Originally not native in the US, this wild omnivore is a crossbreed between the Eurasian wild boar escaped from hunting reserves and the domesticated pig went feral in the wilderness. Its population has skyrocketed in the US during the last few decades.",
"default_faction": "pig",
"bodytype": "pig",
"categories": [ "WILDLIFE" ],
"species": [ "MAMMAL" ],
"volume": "10 L",
"weight": "10 kg",
"hp": 5,
"speed": 90,
"material": [ "flesh" ],
"symbol": "b",
"color": "brown",
"looks_like": "mon_pig_piglet",
"aggression": -10,
"morale": 10,
"melee_skill": 1,
"melee_dice": 1,
"melee_dice_sides": 2,
"melee_cut": 1,
"dodge": 4,
"harvest": "mammal_small_fur",
"path_settings": { "max_dist": 10 },
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"placate_triggers": [ "MEAT" ],
"death_function": [ "NORMAL" ],
"upgrades": { "age_grow": 38, "into": "mon_boar_wild" },
"biosignature": { "biosig_item": "feces_manure", "biosig_timer": 7 },
"special_attacks": [ [ "EAT_FOOD", 40 ] ],
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "KEENNOSE", "BLEED" ]
},
{
"id": "mon_boar_wild",
"type": "MONSTER",
"name": "wild boar",
"description": "Originally not native in the US, this wild omnivore is a crossbreed between the Eurasian wild boar escaped from hunting reserves and the domesticated pig went feral in the wilderness. Its population has skyrocketed in the US during the last few decades.",
"looks_like": "mon_pig",
"default_faction": "pig",
"bodytype": "pig",
"categories": [ "WILDLIFE" ],
"species": [ "MAMMAL" ],
"volume": "100 L",
"weight": "100 kg",
"hp": 60,
"speed": 110,
"material": [ "flesh" ],
"symbol": "b",
"color": "brown",
"aggression": 20,
"morale": 40,
"melee_skill": 5,
"melee_dice": 2,
"melee_dice_sides": 8,
"melee_cut": 5,
"dodge": 2,
"armor_bash": 2,
"armor_cut": 1,
"harvest": "mammal_fur",
"reproduction": { "baby_monster": "mon_boar_wild_piglet", "baby_count": 8, "baby_timer": 154 },
"baby_flags": [ "SPRING", "SUMMER", "AUTUMN", "WINTER" ],
"biosignature": { "biosig_item": "feces_manure", "biosig_timer": 2 },
"path_settings": { "max_dist": 10 },
"anger_triggers": [ "PLAYER_WEAK", "FRIEND_ATTACKED" ],
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"placate_triggers": [ "MEAT" ],
"death_function": [ "NORMAL" ],
"special_attacks": [ [ "EAT_FOOD", 20 ] ],
"flags": [ "SEES", "HEARS", "SMELLS", "PET_MOUNTABLE", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "KEENNOSE", "BLEED" ]
},
{
"id": "mon_bobcat",
"type": "MONSTER",
Expand Down

0 comments on commit 93f7074

Please sign in to comment.