Skip to content
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

Sparkling Chasms Teleport You Out of The Labyrinth. #33

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion data/mods/CBM_Dungeon_Test/LS_furniture_and_terrain.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"symbol": "*",
"color": "dark_gray",
"move_cost": -1,
"//": "Future: stepping on this should teleport you out of the labyrinth",
"coverage": 100,
"trap": "tr_nl_chasm",
"flags": [ "TRANSPARENT", "SUPPORTS_ROOF", "INDOORS", "FLAT", "NOITEM" ]
},
{
Expand Down
18 changes: 18 additions & 0 deletions data/mods/CBM_Dungeon_Test/labryinth_traps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"type": "trap",
"id": "tr_nl_chasm",
"name": "sparkling chasm",
"color": "dark_gray",
"action": "spell",
"copy-from": "tr_swirling_vortex",
"spell_data": { "id": "sparkling_chasm_exit" }
},
{
"type": "SPELL",
"id": "sparkling_chasm_exit",
"name": "sparkling chasm exit",
"copy-from": "trap_base",
"effect_str": "EOC_LS_Exit_labyrinth_force"
}
]
11 changes: 11 additions & 0 deletions data/mods/CBM_Dungeon_Test/labyrinth_EOC.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@
{ "u_message": "Zworunk", "popup": true }
]
},
{
"type": "effect_on_condition",
"id": "EOC_LS_Exit_labyrinth_sparkling_chasm",
"effect": [
{ "u_teleport": { "u_val": "player_location_before_labyrinth" }, "force": true },
{
"u_message": "As you fall into the chasm, you see a multitude of stars, spots, and other shapes. It's like your sinking ever further into a liquid solution, and falling through the air at the same time. Your head throbs with pain as the pressure increases, and you black out.",
"popup": true
}
]
},
{
"id": "EOC_LS_Computer",
"type": "effect_on_condition",
Expand Down
Loading