From 7a049a355f98e5514573a4274f493333ffd00122 Mon Sep 17 00:00:00 2001 From: dub_zn Date: Wed, 6 Nov 2024 12:58:23 -0300 Subject: [PATCH] replace tier order --- src/models/status/round/beast.cairo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/models/status/round/beast.cairo b/src/models/status/round/beast.cairo index 2e58aa4..c0917c2 100644 --- a/src/models/status/round/beast.cairo +++ b/src/models/status/round/beast.cairo @@ -328,15 +328,15 @@ fn _generate_stats(level: u8, beast_id: u32, ref randomizer: Random) -> (u8, u32 fn _obtain_random_tier(ref randomizer: Random) -> u8 { let random = randomizer.between::(1, 100); if random <= 40 { - 1 + 5 } else if random <= 70 { - 2 + 4 } else if random <= 85 { 3 } else if random <= 95 { - 4 + 2 } else { - 5 + 1 } }