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

[Magiclysm] Signpost a way(denarius) to get to the forge of wonders #75837

Merged
merged 1 commit into from
Aug 31, 2024
Merged
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
40 changes: 39 additions & 1 deletion data/mods/Magiclysm/items/currency.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,44 @@
"color": "light_gray",
"symbol": "$",
"flags": [ "COIN_SHAPED" ],
"material": [ "mithril_metal" ]
"material": [ "mithril_metal" ],
"use_action": {
"type": "effect_on_conditions",
"description": "Further deface the coin",
"effect_on_conditions": [
{
"id": "EOC_REVEAL_ROUTE_TO_FORGE_OF_WONDERS",
"//": "We must start our search from a road, otherwise the route reveal will fail. For whatever reason.",
"condition": { "u_near_om_location": "road" },
"effect": [
{
"u_location_variable": { "context_val": "forge_location" },
"target_params": { "om_terrain": "forge_3B", "search_range": 2000, "z": 0 }
},
{ "reveal_map": { "context_val": "forge_location" }, "radius": 4 },
{
"u_location_variable": { "context_val": "current_location_nearest_road" },
"target_params": { "om_terrain": "road", "search_range": 3, "z": 0 }
},
{
"u_message": "You scratch your nails against the coin like so many before you, and feel Valzain's tears. He longingly cries for somewhere that is not here, and now you know where.",
"type": "good"
},
{
"reveal_route": { "context_val": "current_location_nearest_road" },
"target_var": { "context_val": "forge_location" },
"radius": 0,
"road_only": false
}
],
"false_effect": [
{
"u_message": "You rub the scratches on the coin, but leave no mark. Oh, would-be traveller, how can you wear upon his visage like the wagon wheels upon the roads?",
"type": "mixed"
}
]
}
]
}
}
]
Loading