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

Merge pull request #1136 from Refactorio/crash_site_rocket_tank_cost_patch

Updated price after balance testing
This commit is contained in:
Jayefuu 2020-12-30 15:27:23 +00:00 committed by GitHub
commit 745cc6a894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ Event.add(Retailer.events.on_market_purchase, function(event)
Toast.toast_all_players(15, {'command_description.crash_site_rocket_tank_upgrade_success', interval_level})
item.name_label = {'command_description.crash_site_rocket_tanks_name_label', (interval_level + 1)}
item.price = (interval_level + 1) * 4000
item.price = (interval_level + 1) * 1000
Retailer.set_item(market_id, item) -- this updates the retailer with the new item values.
end
if interval_level >= 4 then -- update label, set price to 0, disable further purchases

View File

@ -794,7 +794,7 @@ local function init(config)
description = {'command_description.crash_site_airstrike_radius', 1, 0, 5}
},
{
price = 4000,
price = 1000,
stack_limit = 1,
type = 'rocket_tanks',
name = 'rocket_tanks_fire_rate',