From 1b2a507416bc1fd8fd2bb07f94d8bcd096c19721 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Fri, 10 May 2024 10:49:25 -0600 Subject: %50 increase thingy added --- src/shop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/shop.c') 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) -- cgit v1.2.3