-
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.
[MoM] Add Alien Meadow mutable map special (#75933)
* Initial commit * Add core * Add basic alien meadow grass * Add bush, spelling error * Add alien berry bush * Add more alien trees and bushes * Lint * Add stable portal * Add harvest * Increase seed drops * Add alien fruit * Add fields, add tree trap * Add alien tree trap * Add alien roots trap * Update traps.json * Add alien solid pool * Add alien goo * Linting * Add weeds * Fixes * change central portal looks like * Increase size of central portal * Fix trap tree * Slightly increase occurrences
- Loading branch information
1 parent
edd4099
commit 2130f54
Showing
14 changed files
with
1,042 additions
and
0 deletions.
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
56 changes: 56 additions & 0 deletions
56
data/mods/MindOverMatter/furniture_and_terrain/furniture_alien_meadow.json
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,56 @@ | ||
[ | ||
{ | ||
"type": "furniture", | ||
"id": "f_alien_weed_1", | ||
"name": "alien plant", | ||
"description": "An alien plant, a knee-high tightly-coiled bundle of reddish-yellow stalks with jagged leaves extending every which way. It looks very difficult to walk through.", | ||
"symbol": ",", | ||
"move_cost_mod": 3, | ||
"color": [ "red", "red", "red", "light_red" ], | ||
"required_str": -1, | ||
"flags": [ "TRANSPARENT", "TINY", "FLOWER", "FLAMMABLE_ASH", "NOCOLLIDE", "ORGANIC", "ROUGH", "PAINFUL" ], | ||
"bash": { | ||
"str_min": 2, | ||
"str_max": 6, | ||
"sound": "crunch.", | ||
"sound_fail": "whish.", | ||
"items": [ { "item": "withered", "prob": 50, "count": [ 1, 2 ] }, { "item": "alien_leaves", "count": [ 5, 9 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "furniture", | ||
"id": "f_alien_weed_2", | ||
"name": "alien plant", | ||
"description": "An alien plant, a collection of delicate bluish-white strands with small white globes along their length. They seem to float almost like seaweed, despite being a terrestrial plant.", | ||
"symbol": ",", | ||
"move_cost_mod": 0, | ||
"color": [ "white", "blue", "light_blue", "white" ], | ||
"required_str": -1, | ||
"flags": [ "TRANSPARENT", "TINY", "FLOWER", "FLAMMABLE_ASH", "NOCOLLIDE", "ORGANIC" ], | ||
"bash": { | ||
"str_min": 2, | ||
"str_max": 6, | ||
"sound": "crunch.", | ||
"sound_fail": "whish.", | ||
"items": [ { "item": "withered", "prob": 50, "count": [ 1, 2 ] }, { "item": "alien_leaves", "count": [ 1, 2 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "furniture", | ||
"id": "f_alien_weed_3", | ||
"name": "alien plant", | ||
"description": "An alien plant, a single, cylindrical dark-red trunk with a small cluster of leaves on top. It makes a hollow sound when struck.", | ||
"symbol": ",", | ||
"move_cost_mod": 1, | ||
"color": [ "red", "red", "light_red", "dark_gray" ], | ||
"required_str": -1, | ||
"flags": [ "TRANSPARENT", "TINY", "FLOWER", "FLAMMABLE_ASH", "NOCOLLIDE", "ORGANIC" ], | ||
"bash": { | ||
"str_min": 2, | ||
"str_max": 6, | ||
"sound": "crunch.", | ||
"sound_fail": "whish.", | ||
"items": [ { "item": "withered", "prob": 50, "count": [ 1, 2 ] }, { "item": "alien_leaves", "count": [ 2, 4 ] } ] | ||
} | ||
} | ||
] |
Oops, something went wrong.