From 84f027d24425495ec3c56c20b0c9b704d4ba6294 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 30 Oct 2020 23:09:29 -0400 Subject: [PATCH] Item table changes - Mine: 4 -> 6 - Thunder Shield: 0 -> 4 - Bubble Shield: 0 -> 1 - Sneaker x3: 0 -> 1 - Banana x10: 0 -> 1 2 of the 3 shields added, included some items that normally only appeared for Karma items, and makes Mines much more common --- src/k_kart.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index 67859e077..06c963db1 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -316,22 +316,22 @@ static INT32 K_KartItemOddsBattle[NUMKARTRESULTS][2] = /*Eggman Monitor*/ { 1, 0 }, // Eggman Monitor /*Orbinaut*/ { 8, 0 }, // Orbinaut /*Jawz*/ { 8, 1 }, // Jawz - /*Mine*/ { 4, 1 }, // Mine + /*Mine*/ { 6, 1 }, // Mine /*Ballhog*/ { 2, 1 }, // Ballhog /*Self-Propelled Bomb*/ { 0, 0 }, // Self-Propelled Bomb /*Grow*/ { 2, 1 }, // Grow /*Shrink*/ { 0, 0 }, // Shrink - /*Thunder Shield*/ { 0, 0 }, // Thunder Shield - /*Bubble Shield*/ { 0, 0 }, // Bubble Shield + /*Thunder Shield*/ { 4, 0 }, // Thunder Shield + /*Bubble Shield*/ { 1, 0 }, // Bubble Shield /*Flame Shield*/ { 0, 0 }, // Flame Shield /*Hyudoro*/ { 2, 0 }, // Hyudoro /*Pogo Spring*/ { 2, 0 }, // Pogo Spring /*Super Ring*/ { 0, 0 }, // Super Ring /*Kitchen Sink*/ { 0, 0 }, // Kitchen Sink /*Sneaker x2*/ { 0, 0 }, // Sneaker x2 - /*Sneaker x3*/ { 0, 1 }, // Sneaker x3 + /*Sneaker x3*/ { 1, 1 }, // Sneaker x3 /*Banana x3*/ { 1, 0 }, // Banana x3 - /*Banana x10*/ { 0, 1 }, // Banana x10 + /*Banana x10*/ { 1, 1 }, // Banana x10 /*Orbinaut x3*/ { 2, 0 }, // Orbinaut x3 /*Orbinaut x4*/ { 1, 1 }, // Orbinaut x4 /*Jawz x2*/ { 2, 1 } // Jawz x2