aboutsummaryrefslogtreecommitdiffstats
path: root/src/shop.c
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-05-10 16:49:25 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-05-10 16:49:25 +0000
commit1b2a507416bc1fd8fd2bb07f94d8bcd096c19721 (patch)
tree11f53e8af7d00bbfe59feecc8e65a7401bcbd45b /src/shop.c
parentfca307d6af08116f675e0d04e5ace2e353ec718c (diff)
downloadPenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.tar.gz
PenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.tar.bz2
PenguinYippies-1b2a507416bc1fd8fd2bb07f94d8bcd096c19721.zip
%50 increase thingy added
Diffstat (limited to 'src/shop.c')
-rw-r--r--src/shop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shop.c b/src/shop.c
index 98acb97..447f300 100644
--- a/src/shop.c
+++ b/src/shop.c
@@ -38,10 +38,10 @@ void initShop(Shop* shop, Game* game)
// Entries.
shop->penguinLol = LoadTextureFromImage(assets->animations[PENGUIN_LOL_ANIMATION].image);
- shop->entries[0] = (ShopEntry){&shop->penguinLol, 50, createPenguinLolCB};
+ shop->entries[0] = (ShopEntry){&shop->penguinLol, 100, createPenguinLolCB};
shop->clicker = LoadTextureFromImage(assets->animations[CLICKER_ANIMATION].image);
- shop->entries[1] = (ShopEntry){&shop->clicker, 70, createClicker};
+ shop->entries[1] = (ShopEntry){&shop->clicker, 200, createClicker};
}
void buyThingFromShop(Shop* shop, int id, Game* game)