From 50117369a991b01137b9cd783927fcb842dc7e35 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 2 Dec 2022 22:11:45 -0800 Subject: game: tweak teepee probabilities a bit again Now that respawns can get immediately infected, things get crazy as they should - so make it a bit easier to hoard all the teepee. I'm pretty sure you can just hide off-screen at the top and collect teepee and masks without ever touching a baby and just dodging animated viruses as a way to cheat and "win". But that's kind of allegorical for the pandemic, isn't it? Ignore the needs of others while hoarding teepee and masks FTW! --- src/game.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/game.c') diff --git a/src/game.c b/src/game.c index c4e6213..5b7fbb3 100644 --- a/src/game.c +++ b/src/game.c @@ -706,12 +706,12 @@ static void update_entities(play_t *play, game_t *game) } quantities[] = { { .qty = 4, .chance = .25 }, { .qty = 6, .chance = .125 }, - { .qty = 9, .chance = .06 }, - { .qty = 12, .chance = .04 }, - { .qty = 18, .chance = .03 }, - { .qty = 24, .chance = .02 }, - { .qty = 30, .chance = .01 }, - { .qty = 36, .chance = .001 }, + { .qty = 9, .chance = .08 }, + { .qty = 12, .chance = .07 }, + { .qty = 18, .chance = .06 }, + { .qty = 24, .chance = .03 }, + { .qty = 30, .chance = .02 }, + { .qty = 36, .chance = .003 }, }; game->teepee->quantity = 1; -- cgit v1.2.3