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

Add horse breeding #55907

Merged
merged 2 commits into from
Apr 5, 2022
Merged
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
39 changes: 39 additions & 0 deletions data/json/monsters/mammal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1884,6 +1884,43 @@
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"flags": [ "SEES", "HEARS", "GOODHEARING", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM" ]
},
{
"id": "mon_horse_foal",
"type": "MONSTER",
"name": { "str": "foal" },
"looks_like": "mon_horse",
"description": "A hooved grazing mammal with a mane of hair, a sweeping tail, and powerful-looking muscles. This one is still a juvenile; it'll take a while before it can be ridden.",
"default_faction": "herbivore",
"bodytype": "horse",
"categories": [ "WILDLIFE" ],
"species": [ "MAMMAL" ],
"volume": "200000 ml",
"weight": "200 kg",
"hp": 35,
"speed": 260,
"attack_cost": 230,
"material": [ "flesh" ],
"symbol": "H",
"color": "brown",
"aggression": -10,
"morale": 10,
"melee_skill": 3,
"melee_dice": 2,
"melee_dice_sides": 6,
"melee_cut": 0,
"armor_elec": 1,
"dodge": 2,
"armor_bash": 2,
"anger_triggers": [ "FRIEND_ATTACKED" ],
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"placate_triggers": [ "PLAYER_WEAK" ],
"harvest": "mammal_large_leather",
"upgrades": { "age_grow": 450, "into": "mon_horse" },
"biosignature": { "biosig_item": "feces_manure", "biosig_timer": 10 },
"special_attacks": [ [ "EAT_CROP", 100 ] ],
"petfood": { "food": [ "CATTLEFOOD" ], "feed": "The %s seems to like you! It lets you pat its head and seems friendly." },
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PET_WONT_FOLLOW", "PATH_AVOID_DANGER_1", "WARM", "NO_BREED" ]
},
{
"id": "mon_horse",
"type": "MONSTER",
Expand Down Expand Up @@ -1913,6 +1950,8 @@
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"placate_triggers": [ "PLAYER_WEAK" ],
"harvest": "mammal_large_leather",
"reproduction": { "baby_monster": "mon_horse_foal", "baby_count": 1, "baby_timer": 360 },
"baby_flags": [ "SPRING", "SUMMER", "AUTUMN" ],
"biosignature": { "biosig_item": "feces_manure", "biosig_timer": 2 },
"special_attacks": [ [ "EAT_CROP", 60 ] ],
"zombify_into": "mon_zombie_horse",
Expand Down