Skip to content

Commit

Permalink
Initial commit (#75237)
Browse files Browse the repository at this point in the history
  • Loading branch information
Standing-Storm authored Jul 26, 2024
1 parent 1f57bbb commit 26da18e
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
9 changes: 9 additions & 0 deletions data/mods/Sky_Island/EOCs.json
Original file line number Diff line number Diff line change
Expand Up @@ -906,5 +906,14 @@
"condition": { "math": [ "u_monsters_nearby('radius': u_search_radius == 10)", "<=", "0" ] },
"effect": [ { "u_assign_activity": "ACT_WARP_HOME", "duration": "60 seconds" } ],
"false_effect": [ { "u_message": "You cannot warp home with enemies nearby!", "type": "bad" } ]
},
{
"type": "effect_on_condition",
"id": "EOC_WARPED_WATERWALKING",
"effect": [
{ "u_consume_item": "warp_waterwalking_stone", "count": 1 },
{ "u_message": "You feel somehow lighter.", "type": "good" },
{ "u_add_effect": "effect_warped_waterwalking", "duration": 180 }
]
}
]
9 changes: 9 additions & 0 deletions data/mods/Sky_Island/effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,14 @@
],
"flags": [ "INVISIBLE", "FEATHER_FALL" ],
"remove_message": "You fully materialize. You're not invisible anymore!"
},
{
"type": "effect_type",
"id": "effect_warped_waterwalking",
"name": [ "Warped Waterwalking" ],
"desc": [ "You can walk on the surface of the water" ],
"rating": "good",
"remove_message": "You can no longer walk on the water.",
"flags": [ "ITEM_WATERPROOFING", "WATERWALKING" ]
}
]
22 changes: 22 additions & 0 deletions data/mods/Sky_Island/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,28 @@
"effect_on_conditions": [ "EOC_WARPED_ENEMY_CHECK_RETURN" ]
}
},
{
"id": "warp_waterwalking_stone",
"type": "AMMO",
"category": "other",
"name": { "str_sp": "flotation stone" },
"description": "This smooth, whorled stone seems cool and wet to the touch, but when you take your hand off it your skin is perfectly dry. If you activate it, you will be able to walk on the surface of water for three minutes.",
"weight": "5 g",
"volume": "5 ml",
"count": 1,
"stack_size": 100,
"looks_like": "spiral_stone",
"flags": [ "UNBREAKABLE" ],
"material": [ "alien_resin" ],
"symbol": ".",
"color": "cyan",
"ammo_type": "components",
"use_action": {
"type": "effect_on_conditions",
"description": "Cross the waters.",
"effect_on_conditions": [ "EOC_WARPED_WATERWALKING" ]
}
},
{
"id": "warptoken",
"type": "AMMO",
Expand Down
14 changes: 14 additions & 0 deletions data/mods/Sky_Island/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@
"components": [ [ [ "warptoken", 1 ] ] ],
"flags": [ "BLIND_EASY" ]
},
{
"result": "warp_waterwalking_stone",
"type": "recipe",
"activity_level": "NO_EXERCISE",
"category": "CC_WARP",
"subcategory": "CSC_WARP_ITEMS",
"skill_used": "survival",
"time": "1 m",
"autolearn": true,
"reversible": false,
"tools": [ [ [ "fakeitem_statue", -1 ] ] ],
"components": [ [ [ "warptoken", 3 ] ] ],
"flags": [ "SECRET", "BLIND_EASY" ]
},
{
"result": "warp_vortex_token",
"type": "recipe",
Expand Down

0 comments on commit 26da18e

Please sign in to comment.