Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added wild boar to forests #37351

Merged
merged 5 commits into from
Apr 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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