-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DinoMod] hadrosaurs eat mushrooms (#61649)
* [DinoMod] mutating hadrosaurs * fungalize * mutant harvest * hadrosaur faction * no fungal damage * saurornitholestes egg hatching fix * use hadrosaur faction * Update dictionary.txt
- Loading branch information
Showing
5 changed files
with
91 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
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,78 @@ | ||
[ | ||
{ | ||
"type": "MONSTER", | ||
"id": "mon_hadrosaurus_mutant1", | ||
"name": { "str_sp": "fungal dusted hadrosaur" }, | ||
"looks_like": "mon_parasaurolophus", | ||
"species": "DINOSAUR", | ||
"default_faction": "hadrosaur", | ||
"aggro_character": false, | ||
"symbol": "D", | ||
"color": "yellow", | ||
"bodytype": "bear", | ||
"material": [ "flesh" ], | ||
"aggression": -10, | ||
"morale": 25, | ||
"melee_skill": 4, | ||
"dodge": 4, | ||
"families": [ "prof_intro_biology", "prof_wp_dino" ], | ||
"weakpoint_sets": [ "wps_dinosaur_body" ], | ||
"baby_flags": [ "SPRING", "SUMMER" ], | ||
"biosignature": { "biosig_item": "feces_dino", "biosig_timer": 1 }, | ||
"flags": [ | ||
"SEES", | ||
"SMELLS", | ||
"HEARS", | ||
"ANIMAL", | ||
"PATH_AVOID_DANGER_1", | ||
"PET_MOUNTABLE", | ||
"PET_WONT_FOLLOW", | ||
"BASHES", | ||
"DESTROYS", | ||
"PUSH_MON", | ||
"SWIMS", | ||
"NO_FUNG_DMG" | ||
], | ||
"harvest": "mammal_large_leather", | ||
"fear_triggers": [ "FRIEND_DIED" ], | ||
"anger_triggers": [ "HURT", "FRIEND_ATTACKED", "PLAYER_NEAR_BABY" ], | ||
"categories": [ "DINOSAUR", "WILDLIFE" ], | ||
"volume": "1000 L", | ||
"weight": "1000 kg", | ||
"//": "When large weights and volumes are fixed this should be 3000 L and 3000 kg", | ||
"speed": 80, | ||
"melee_dice": 2, | ||
"melee_dice_sides": 6, | ||
"melee_damage": [ { "damage_type": "bash", "amount": 2 } ], | ||
"armor_bash": 4, | ||
"armor_cut": 4, | ||
"armor_bullet": 3, | ||
"hp": 250, | ||
"description": "A bulky, beaked dinosaur with hooved front legs. The head has been dusted with fungal spores and an angry red rash is forming around them.", | ||
"special_attacks": [ | ||
{ "type": "leap", "cooldown": 10, "max_range": 2, "allow_no_target": true }, | ||
{ "id": "stomp_DinoMod", "cooldown": 20, "damage_max_instance": [ { "damage_type": "bash", "amount": 8 } ] } | ||
], | ||
"upgrades": { "age_grow": 120, "into": "mon_hadrosaurus_mutant2" } | ||
}, | ||
{ | ||
"type": "MONSTER", | ||
"id": "mon_hadrosaurus_mutant2", | ||
"name": { "str_sp": "ravenous hadrosaur" }, | ||
"looks_like": "mon_parasaurolophus", | ||
"species": "DINOSAUR", | ||
"default_faction": "hadrosaur", | ||
"aggro_character": false, | ||
"symbol": "D", | ||
"color": "yellow", | ||
"bodytype": "bear", | ||
"copy-from": "mon_hadrosaurus_mutant1", | ||
"aggression": 10, | ||
"speed": 100, | ||
"hp": 200, | ||
"melee_dice": 4, | ||
"description": "A bulky, beaked dinosaur with hooved front legs and two heads. The four eyes are wide and rolling.", | ||
"upgrades": { }, | ||
"harvest": "mutant_bird_flightless" | ||
} | ||
] |
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