diff --git a/maps/scrap_towny_ffa/market.lua b/maps/scrap_towny_ffa/market.lua index 60506a10..4aaf70e2 100644 --- a/maps/scrap_towny_ffa/market.lua +++ b/maps/scrap_towny_ffa/market.lua @@ -159,7 +159,7 @@ local function set_offers(town_center) special_offers[5] = {{}, 'Maximum Crafting Speed upgrades reached!'} end local laser_turret = 'Laser Turret Slot [#' .. tostring(town_center.upgrades.laser_turret.slots + 1) .. ']' - special_offers[6] = {{{'coin', (town_center.upgrades.laser_turret.slots * 150)}}, laser_turret} + special_offers[6] = {{{'coin', (town_center.upgrades.laser_turret.slots * 200)}}, laser_turret} local spawn_point = 'Set Spawn Point' special_offers[7] = {{}, spawn_point} special_offers[8] = {{}, 'Temporary PvP Shield for pause/AFK'} @@ -175,13 +175,13 @@ local function set_offers(town_center) table_insert(market_items, {price = {{'coin', 1}}, offer = {type = 'give-item', item = 'stone', count = 6}}) table_insert(market_items, {price = {{'coin', 1}}, offer = {type = 'give-item', item = 'coal', count = 6}}) table_insert(market_items, {price = {{'coin', 1}}, offer = {type = 'give-item', item = 'uranium-ore', count = 2}}) - table_insert(market_items, {price = {{'coin', 500}}, offer = {type = 'give-item', item = 'laser-turret', count = 1}}) + table_insert(market_items, {price = {{'coin', 1000}}, offer = {type = 'give-item', item = 'laser-turret', count = 1}}) table_insert(market_items, {price = {{'coin', 300}}, offer = {type = 'give-item', item = 'loader', count = 1}}) table_insert(market_items, {price = {{'coin', 600}}, offer = {type = 'give-item', item = 'fast-loader', count = 1}}) table_insert(market_items, {price = {{'coin', 900}}, offer = {type = 'give-item', item = 'express-loader', count = 1}}) -- item selling - table_insert(market_items, {price = {{'raw-fish', 1}}, offer = {type = 'give-item', item = 'coin', count = 20}}) - table_insert(market_items, {price = {{'wood', 1}}, offer = {type = 'give-item', item = 'coin', count = 5}}) + table_insert(market_items, {price = {{'raw-fish', 1}}, offer = {type = 'give-item', item = 'coin', count = 15}}) + table_insert(market_items, {price = {{'wood', 1}}, offer = {type = 'give-item', item = 'coin', count = 3}}) table_insert(market_items, {price = {{'iron-ore', 7}}, offer = {type = 'give-item', item = 'coin', count = 1}}) table_insert(market_items, {price = {{'copper-ore', 7}}, offer = {type = 'give-item', item = 'coin', count = 1}}) table_insert(market_items, {price = {{'stone', 7}}, offer = {type = 'give-item', item = 'coin', count = 1}}) diff --git a/maps/scrap_towny_ffa/town_center.lua b/maps/scrap_towny_ffa/town_center.lua index 07b38187..a511b630 100644 --- a/maps/scrap_towny_ffa/town_center.lua +++ b/maps/scrap_towny_ffa/town_center.lua @@ -518,7 +518,7 @@ local function found_town(event) town_center.upgrades.mining_speed = 0 town_center.upgrades.crafting_speed = 0 town_center.upgrades.laser_turret = {} - town_center.upgrades.laser_turret.slots = 20 + town_center.upgrades.laser_turret.slots = 8 town_center.upgrades.laser_turret.locations = 0 town_center.evolution = {} town_center.evolution.biters = 0