Skip to content

Commit

Permalink
Desert region mod (#31058)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpwbrown authored and kevingranade committed Jun 8, 2019
1 parent c30bad0 commit 8d0e47f
Show file tree
Hide file tree
Showing 19 changed files with 2,333 additions and 38 deletions.
1 change: 1 addition & 0 deletions data/json/regional_map_settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"id": "default",
"default_oter": "field",
"default_groundcover": [ [ "t_grass", 4 ], [ "t_grass_long", 2 ], [ "t_dirt", 1 ] ],
"river_scale": 1.0,
"field_coverage": {
"percent_coverage": 0.9333,
"default_ter": "t_shrub",
Expand Down
33 changes: 33 additions & 0 deletions data/mods/desert_region/desert_insect_spider.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[
{
"id": "mon_scorpion_giant",
"type": "MONSTER",
"name": "giant scorpion",
"description": "A menacing arachnid with a second set of pedipalps, clacking rabidly as an engorged stinger looms over its body.",
"default_faction": "scorpion",
"bodytype": "insect",
"species": [ "INSECT" ],
"volume": "62500 ml",
"weight": 81500,
"hp": 85,
"speed": 100,
"material": [ "iflesh" ],
"symbol": "s",
"color": "brown",
"aggression": 40,
"morale": 100,
"melee_skill": 6,
"melee_dice": 1,
"melee_dice_sides": 8,
"melee_cut": 6,
"dodge": 1,
"armor_bash": 4,
"armor_cut": 10,
"vision_day": 5,
"vision_night": 5,
"harvest": "arachnid",
"special_attacks": [ { "id": "impale" } ],
"death_function": [ "NORMAL" ],
"flags": [ "SEES", "SMELLS", "HEARS", "BADVENOM", "PARALYZEVENOM", "GRABS" ]
}
]
23 changes: 23 additions & 0 deletions data/mods/desert_region/desert_items.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
{
"type": "COMESTIBLE",
"id": "cholla_bud",
"name": "cholla bud",
"weight": 92,
"color": "red",
"spoils_in": "6 days 16 hours",
"comestible_type": "FOOD",
"symbol": "%",
"quench": 6,
"healthy": 2,
"calories": 62,
"description": "The candy of the Mojave Indigenous peoples.",
"price": 900,
"material": "fruit",
"volume": "175 ml",
"fun": 6,
"flags": [ "FREEZERBURN", "SMOKABLE" ],
"smoking_result": "dry_fruit",
"vitamins": [ [ "vitA", 2 ], [ "vitC", 18 ], [ "iron", 1 ] ]
}
]
50 changes: 50 additions & 0 deletions data/mods/desert_region/desert_mammal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[
{
"id": "mon_bushelephant",
"type": "MONSTER",
"name": "bush elephant",
"description": "The African Bush Elephant is a massive terrestrial animal with two long tusks protruding from its mouth. Elephantry is on the rise since the Cataclysm.",
"default_faction": "herbivore",
"bodytype": "elephant",
"categories": [ "WILDLIFE" ],
"species": [ "MAMMAL" ],
"volume": "5896700 ml",
"weight": 5896700,
"hp": 360,
"speed": 200,
"material": [ "flesh" ],
"symbol": "E",
"color": "light_gray",
"aggression": 5,
"morale": 80,
"melee_skill": 7,
"melee_dice": 4,
"melee_dice_sides": 6,
"melee_cut": 0,
"armor_bash": 6,
"armor_cut": 3,
"path_settings": { "max_dist": 20 },
"anger_triggers": [ "FRIEND_ATTACKED", "FRIEND_DIED", "HURT", "MATING_SEASON" ],
"death_function": [ "NORMAL" ],
"baby_flags": [ "SPRING" ],
"//": "Baby elephants don't actually exist (yet), but Spring is the wet season (their mating season) so baby_flags is defined so that they get angry then",
"harvest": "mammal_large_leather",
"biosignature": { "biosig_item": "feces_manure", "biosig_timer": 16 },
"special_attacks": [ [ "EAT_CROP", 60 ], [ "SMASH", 15 ] ],
"flags": [
"SEES",
"HEARS",
"SMELLS",
"ANIMAL",
"PATH_AVOID_DANGER_1",
"WARM",
"BLEED",
"PUSH_MON",
"DESTROYS",
"CATTLEFODDER",
"GROUP_MORALE",
"GOODHEARING",
"SWARMS"
]
}
]
Loading

0 comments on commit 8d0e47f

Please sign in to comment.