1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

Fixed the message for spy cost

This commit is contained in:
Jayefuu 2021-01-24 15:52:38 +00:00
parent 40b84c1576
commit 88f80aa8e3
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ crash_site_spy=Spend coins to send a fish to spy on the enemy for a short time.
crash_site_spy_invalid=You need to add a valid location to send a spy fish. e.g /spy [gps=-110,-17,redmew]
crash_site_spy_funds=Training these spy fish ain't cheap! You need more coins!
crash_site_airstrike_invalid=Invalid co-ordinates.
crash_site_spy_success=__1__ used the /spy command and spent 1000 coins to train a fish to spy on the enemy [gps=__2__,__3__,redmew]
crash_site_spy_success=__1__ used the /spy command and spent __2__ coins to train a fish to spy on the enemy [gps=__3__,__4__,redmew]
crash_site_airstrike_count=Upgrade the airstrike damage to to level __1__\n\nTo use airstrike place poison capsules in the spawn chest then type /strike with a gps position\n\nDamage upgrades increase the number of poison capsules launched by airstrike.\n\nCurrent level: __2__\nCurrent shell count: __3__\nCurrent cost: __4__
crash_site_airstrike_radius=Upgrade the airstrike radius to level __1__\n\nTo use airstrike place poison capsules in the spawn chest then type /strike with a gps position\n\nCurrent level: __2__\nCurrent radius: __3__
crash_site_airstrike_radius_name_label=Airstrike Radius __1__

View File

@ -322,7 +322,7 @@ function Public.control(config)
for j = 1, 15 do
set_timeout_in_ticks(60 * j, chart_area_callback, {player = player, xpos = xpos, ypos = ypos})
end
game.print({'command_description.crash_site_spy_success', player_name, xpos, ypos}, Color.success)
game.print({'command_description.crash_site_spy_success', player_name, spy_cost, xpos, ypos}, Color.success)
inv.remove({name = "coin", count = spy_cost})
end
end