Skip to content

Commit

Permalink
Reduced BIG MUSHROOM frequency to 10%
Browse files Browse the repository at this point in the history
  • Loading branch information
SoupPotato committed Sep 30, 2024
1 parent 0c502f2 commit 9a0189e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions maps/IlexForest.asm
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ IlexForestMushroomsAndFarfetchdCallback:
checkflag ENGINE_DAILY_ILEX_FOREST_MUSHROOM_1
iftrue IlexForestMushroom1Picked
clearevent EVENT_ILEX_FOREST_MUSHROOM_1
random 5
random 10
ifnotequal 0, .TinyMushroom1
; 20% chance
; 10% chance
.BigMushroom1
setevent EVENT_ILEX_FOREST_BIG_MUSHROOM_1_SPAWN
variablesprite SPRITE_MUSHROOM_1, SPRITE_BIG_MUSHROOM
Expand All @@ -38,9 +38,9 @@ IlexForestMushroomsAndFarfetchdCallback:
checkflag ENGINE_DAILY_ILEX_FOREST_MUSHROOM_2
iftrue IlexForestMushroom2Picked
clearevent EVENT_ILEX_FOREST_MUSHROOM_2
random 5
random 10
ifnotequal 0, .TinyMushroom2
; 20% chance
; 10% chance
.BigMushroom2
setevent EVENT_ILEX_FOREST_BIG_MUSHROOM_2_SPAWN
variablesprite SPRITE_MUSHROOM_2, SPRITE_BIG_MUSHROOM
Expand All @@ -52,9 +52,9 @@ IlexForestMushroomsAndFarfetchdCallback:
checkflag ENGINE_DAILY_ILEX_FOREST_MUSHROOM_3
iftrue IlexForestMushroom3Picked
clearevent EVENT_ILEX_FOREST_MUSHROOM_3
random 5
random 10
ifnotequal 0, .TinyMushroom3
; 20% chance
; 10% chance
.BigMushroom3
setevent EVENT_ILEX_FOREST_BIG_MUSHROOM_3_SPAWN
variablesprite SPRITE_MUSHROOM_3, SPRITE_BIG_MUSHROOM
Expand Down
4 changes: 2 additions & 2 deletions maps/MountMoon1F.asm
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ MountMoon1FCheckRivalAndMushroom:
checkflag ENGINE_DAILY_MOUNT_MOON_1F_MUSHROOM
iftrue .finishMushroom
clearevent EVENT_MOUNT_MOON_1F_MUSHROOM
random 5
random 10
ifnotequal 0, .TinyMushroom
; 20% chance
; 10% chance
.BigMushroom
setevent EVENT_MOUNT_MOON_1F_BIG_MUSHROOM_SPAWN
variablesprite SPRITE_MUSHROOM_1, SPRITE_BIG_MUSHROOM
Expand Down
4 changes: 2 additions & 2 deletions maps/MountMoonB1F.asm
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ MountMoonB1FCheckMushroom:
checkflag ENGINE_DAILY_MOUNT_MOON_B1F_MUSHROOM
iftrue .finishMushroom
clearevent EVENT_MOUNT_MOON_B1F_MUSHROOM
random 5
random 10
ifnotequal 0, .TinyMushroom
; 20% chance
; 10% chance
.BigMushroom
setevent EVENT_MOUNT_MOON_B1F_BIG_MUSHROOM_SPAWN
variablesprite SPRITE_MUSHROOM_1, SPRITE_BIG_MUSHROOM
Expand Down
4 changes: 2 additions & 2 deletions maps/MountMoonB2F.asm
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ MountMoonB2FCheckMushroom:
checkflag ENGINE_DAILY_MOUNT_MOON_B2F_MUSHROOM
iftrue .finishMushroom
clearevent EVENT_MOUNT_MOON_B2F_MUSHROOM
random 5
random 10
ifnotequal 0, .TinyMushroom
; 20% chance
; 10% chance
.BigMushroom
setevent EVENT_MOUNT_MOON_B2F_BIG_MUSHROOM_SPAWN
variablesprite SPRITE_MUSHROOM_1, SPRITE_BIG_MUSHROOM
Expand Down

0 comments on commit 9a0189e

Please sign in to comment.