-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[ Xedra Evolved ] Make Level 5 Alchemy recipes #69278
base: master
Are you sure you want to change the base?
Changes from 10 commits
01030d0
69b7b55
151e687
9f52c04
f4b010b
22d05ce
48ca72a
51687e6
12d08f5
e3ffc4e
1d1f2c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -137,6 +137,42 @@ | |||||||||
"half_life": "20 minutes", | ||||||||||
"phase": "gas" | ||||||||||
}, | ||||||||||
{ | ||||||||||
"type": "field_type", | ||||||||||
"id": "fd_ginseng_scream", | ||||||||||
"immune_mtypes": [ "mon_ginseng_protector" ], | ||||||||||
"priority": 2, | ||||||||||
"intensity_levels": | ||||||||||
[ | ||||||||||
{ "name": "ginseng_scream", | ||||||||||
"sym": "^", | ||||||||||
"color": "brown", | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||||||
"dangerous": true, | ||||||||||
"move_cost": 120, | ||||||||||
"effects": | ||||||||||
[ | ||||||||||
Comment on lines
+152
to
+153
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||||||
{ | ||||||||||
"effect_id": "warbled", | ||||||||||
"min_duration": "1 minutes", | ||||||||||
"max_duration": "72 hours", | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||||||
"intensity": 1, | ||||||||||
"body_part": "head", | ||||||||||
"immune_inside_vehicle": true, | ||||||||||
"message": "Your vision shakes as the air warbles!", | ||||||||||
"message_npc": "<npcname> is sonically battered!", | ||||||||||
"message_type": "bad", | ||||||||||
"immunity_data": { | ||||||||||
"flags": [ "DEAF" ] | ||||||||||
} | ||||||||||
Comment on lines
+164
to
+166
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||||||
} | ||||||||||
] | ||||||||||
} | ||||||||||
], | ||||||||||
"half_life": "3 minutes", | ||||||||||
"percent_spread": 90, | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||||||
"phase": "gas", | ||||||||||
"display_items": true, | ||||||||||
Maleclypse marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||
}, | ||||||||||
{ | ||||||||||
"id": "fd_pollen_arvore_weaken", | ||||||||||
"type": "field_type", | ||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -73,6 +73,56 @@ | |||||
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ], | ||||||
"furniture": { "x": "f_golden_monolith" } | ||||||
} | ||||||
}, | ||||||
{ | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [JSON & C++ formatters] reported by reviewdog 🐶
Suggested change
|
||||||
"type": "mapgen", | ||||||
"method": "json", | ||||||
"nested_mapgen_id": "elder_ginseng_nest", | ||||||
"object": { | ||||||
"mapgensize": [ 24, 24 ], | ||||||
"rows": [ | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" ", | ||||||
" " | ||||||
], | ||||||
"flags": [ "ERASE_ALL_BEFORE_PLACING_TERRAIN" ], | ||||||
"terrain": { " ": "t_region_groundcover_forest" }, | ||||||
"furniture": { "x": "f_elder_ginseng" }, | ||||||
"place_monster": [ { "monster": "mon_ginseng_protector", "x": [ 0, 23 ], "y": [ 0, 23 ], "density": 0.3 } ], | ||||||
|
||||||
Maleclypse marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
} | ||||||
}, | ||||||
{ | ||||||
"id": "mx_elder_ginseng", | ||||||
"type": "map_extra", | ||||||
"name": { "str": "forest" }, | ||||||
"description": "This section of forest seems older than the rest.", | ||||||
"generator": { "generator_method": "update_mapgen", "generator_id": "elder_ginseng_nest" }, | ||||||
"min_max_zlevel": [ 0, 0 ], | ||||||
"sym": "F", | ||||||
"color": "green", | ||||||
"autonote": true | ||||||
}, | ||||||
{ | ||||||
"id": "mx_spider_shimmering", | ||||||
|
@@ -150,7 +200,7 @@ | |||||
"description": "A copse of trees.", | ||||||
"generator": { "generator_method": "update_mapgen", "generator_id": "mx_trees_map_sylph" }, | ||||||
"min_max_zlevel": [ 0, 0 ], | ||||||
"sym": "E", | ||||||
"sym": "F", | ||||||
"color": "green", | ||||||
"autonote": true | ||||||
}, | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[JSON & C++ formatters] reported by reviewdog 🐶