From 98bd62be4610bc13f9f66fb179419d2df7ad1a55 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Sat, 28 Feb 2015 19:01:18 -0500 Subject: [PATCH] Made the multi-homing missiles cheaper. These weapons are severely overpriced. They should be expensive, but not *that* expensive. --- src/shop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shop.cpp b/src/shop.cpp index 99be3d2..3220d82 100644 --- a/src/shop.cpp +++ b/src/shop.cpp @@ -342,12 +342,12 @@ void initShop() strcpy(shopItems[14].description, "A charge up cannon"); shopItems[14].image = 23; - shopItems[15].price = 20000; + shopItems[15].price = 10000; strcpy(shopItems[15].name, "Dual Homing Missile Launcher"); strcpy(shopItems[15].description, "Fires two homing missiles (max 10 missiles)"); shopItems[15].image = 24; - shopItems[16].price = 25000; + shopItems[16].price = 15000; strcpy(shopItems[16].name, "Homing Micro Missile Launcher"); strcpy(shopItems[16].description, "Fires several small homing missiles (max 10)"); shopItems[16].image = 25;