-
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.
* First attempt * astyle * Second Attempt * Apply suggestions from code review Co-authored-by: David Seguin <[email protected]> * Update character.cpp * Melian Mantis Stallion * Update src/character.cpp Co-authored-by: mqrause <[email protected]> * Update changeling.json * Combat Mounts attack enemy monsters * astyle * Revert "Combat Mounts attack enemy monsters" This reverts commit 2d19982240c1c10a42989cacceddf264d11b23f7. * Update data/mods/Xedra_Evolved/monsters/changeling.json Co-authored-by: TheShadowFerret <[email protected]> * Quest to get a mount * fig and pomegranates * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update src/mtype.h * Fruits and requirements Update terrain-flora.json * Apply suggestions from code review * fixes * Update data/mods/Xedra_Evolved/furniture_and_terrain/furniture.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update furniture.json * npc * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update furniture.json * Update boann.json * Update data/mods/Xedra_Evolved/monsters/changeling.json * Update data/mods/Xedra_Evolved/monsters/changeling.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update boann.json * Update data/mods/Xedra_Evolved/npc/boann.json * Island * Update boann.json * Update overmap_terrain.json * Update overmap_specials.json * Revert "Update overmap_specials.json" This reverts commit 9f48ead. Update overmap_special.json Update furniture.json * Fixes * fixes * Finally fixed * Update boann.json * Apply suggestions from code review Update terrain-flora.json --------- Co-authored-by: David Seguin <[email protected]> Co-authored-by: mqrause <[email protected]> Co-authored-by: TheShadowFerret <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
123606c
commit e9ab834
Showing
14 changed files
with
716 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
169 changes: 169 additions & 0 deletions
169
data/mods/Xedra_Evolved/furniture_and_terrain/terrain-flora.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,169 @@ | ||
[ | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_fig", | ||
"name": "fig tree", | ||
"looks_like": "t_tree", | ||
"description": "This tree is Ficus carica, a species of small tree in the flowering plant family Moraceae, native to the Mediterranean region, together with western and southern Asia. If you examined the branches more closely, you could probably find a few mature ones in autumn.", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "red", "brown" ], | ||
"//": "barren in winter, fruits in autumn", | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT" ], | ||
"transforms_into": "t_tree_fig_harvested", | ||
"examine_action": "harvest_ter_nectar", | ||
"harvest_by_season": [ { "seasons": [ "autumn" ], "id": "fig_harv" } ], | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_fig_harvested", | ||
"name": "fig tree", | ||
"looks_like": "t_tree_dead", | ||
"description": "This tree is Ficus carica, a species of small tree in the flowering plant family Moraceae, native to the Mediterranean region, together with western and southern Asia. There do not appear to be any ripe apples now.", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "light_green", "brown" ], | ||
"//": "barren in winter, no fruits anymore", | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT", "HARVESTED" ], | ||
"examine_action": "harvested_plant", | ||
"transforms_into": "t_tree_fig", | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_pomegranate", | ||
"name": "fig tree", | ||
"looks_like": "t_tree", | ||
"description": "This tree is Punica granatum is a fruit-bearing deciduous shrub in the family Lythraceae, subfamily Punicoideae, that grows between 5 and 10 m (16 and 33 ft) tall. If you examined the branches more closely, you could probably find a few mature ones in autumn.", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "red", "brown" ], | ||
"//": "barren in winter, fruits in autumn", | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT" ], | ||
"transforms_into": "t_tree_pomegranate_harvested", | ||
"examine_action": "harvest_ter_nectar", | ||
"harvest_by_season": [ { "seasons": [ "autumn" ], "id": "pomegranate_harv" } ], | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_pomegranate_harvested", | ||
"name": "fig tree", | ||
"looks_like": "t_tree_dead", | ||
"description": "This tree is Punica granatum is a fruit-bearing deciduous shrub in the family Lythraceae, subfamily Punicoideae, that grows between 5 and 10 m (16 and 33 ft) tall. There do not appear to be any ripe apples now.", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "light_green", "brown" ], | ||
"//": "barren in winter, no fruits anymore", | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT", "HARVESTED" ], | ||
"examine_action": "harvested_plant", | ||
"transforms_into": "t_tree_pomegranate", | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_hawthorn", | ||
"name": "hawthorn tree", | ||
"looks_like": "t_tree", | ||
"description": "Crataegus monogyna, known as common hawthorn, one-seed hawthorn, or single-seeded hawthorn, is a species of flowering plant in the rose family Rosaceae.", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "i_light_green", "brown" ], | ||
"//": "berries in autum and in winter, harvestable petals in spring", | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT" ], | ||
"examine_action": "harvest_ter_nectar", | ||
"harvest_by_season": [ | ||
{ "seasons": [ "spring" ], "id": "hawthorn_petal_harv" }, | ||
{ "seasons": [ "autumn", "winter" ], "id": "hawthorn_berry_harv" } | ||
], | ||
"transforms_into": "t_tree_hawthorn_harvested", | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_tree_hawthorn_harvested", | ||
"looks_like": "t_tree_harvested", | ||
"description": "Crataegus monogyna, known as common hawthorn, one-seed hawthorn, or single-seeded hawthorn, is a species of flowering plant in the rose family Rosaceae. It looks like the tree has been picked clean of hawthorns.", | ||
"name": "hawthorn tree", | ||
"symbol": "7", | ||
"color": [ "light_green", "light_green", "light_green", "brown" ], | ||
"move_cost": 0, | ||
"coverage": 80, | ||
"flags": [ "FLAMMABLE_ASH", "NOITEM", "SUPPORTS_ROOF", "TREE", "REDUCE_SCENT", "HARVESTED" ], | ||
"examine_action": "harvested_plant", | ||
"transforms_into": "t_tree_hawthorn", | ||
"bash": { | ||
"str_min": 80, | ||
"str_max": 180, | ||
"sound": "crunch!", | ||
"sound_fail": "whack!", | ||
"ter_set": "t_dirt", | ||
"items": [ | ||
{ "item": "stick_long", "count": [ 3, 10 ] }, | ||
{ "item": "splinter", "count": [ 10, 25 ] }, | ||
{ "item": "leaves", "count": [ 50, 150 ] } | ||
] | ||
} | ||
} | ||
] |
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,63 @@ | ||
[ | ||
{ | ||
"type": "COMESTIBLE", | ||
"id": "hawthorn_petals", | ||
"name": { "str_sp": "hawthorn petals" }, | ||
"weight": "90 g", | ||
"color": "light_green", | ||
"spoils_in": "10 days", | ||
"comestible_type": "FOOD", | ||
"symbol": "%", | ||
"quench": 2, | ||
"calories": 17, | ||
"description": "A small salads worth of hawthorn petals.", | ||
"price": 100, | ||
"price_postapoc": 50, | ||
"material": [ "veggy" ], | ||
"volume": "850 ml", | ||
"charges": 5, | ||
"flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ], | ||
"smoking_result": "dry_veggy", | ||
"vitamins": [ [ "vitC", 4 ], [ "calcium", 1 ], [ "iron", 2 ] ] | ||
}, | ||
{ | ||
"type": "COMESTIBLE", | ||
"id": "hawthorn_berries", | ||
"name": { "str_sp": "hawthorn berries" }, | ||
"weight": "40 g", | ||
"color": "red", | ||
"spoils_in": "2 days 12 hours", | ||
"comestible_type": "FOOD", | ||
"symbol": "%", | ||
"quench": 2, | ||
"calories": 140, | ||
"description": "Dense clusters of edible red berries grow enormously during autumn, but try not to eat the seeds as they contain cyanide. Too tart to be very enjoyable they are often used in jams and jellies.", | ||
"price": 110, | ||
"price_postapoc": 100, | ||
"material": [ "fruit" ], | ||
"volume": "250 ml", | ||
"fun": 0, | ||
"flags": [ "SMOKABLE", "EDIBLE_FROZEN" ], | ||
"smoking_result": "dry_fruit", | ||
"vitamins": [ [ "vitC", 16 ], [ "calcium", 1 ] ] | ||
}, | ||
{ | ||
"type": "COMESTIBLE", | ||
"id": "fig", | ||
"name": { "str": "fig" }, | ||
"weight": "40 g", | ||
"color": "yellow", | ||
"spoils_in": "5 days", | ||
"comestible_type": "FOOD", | ||
"symbol": ",", | ||
"calories": 30, | ||
"description": "Figs are a unique fruit resembling a teardrop. They’re about the size of your thumb, filled with hundreds of tiny seeds, and have an edible purple or green peel. The flesh of the fruit is pink and has a mild, sweet taste. The scientific name for the fig is Ficus carica.", | ||
"price": 120, | ||
"price_postapoc": 300, | ||
"material": [ "fruit" ], | ||
"volume": "500 ml", | ||
"fun": 5, | ||
"flags": [ "SMOKABLE" ], | ||
"smoking_result": "dry_fruit" | ||
} | ||
] |
Oops, something went wrong.