6.4 update (minus sprites)

This commit is contained in:
infinitefusion
2024-12-21 09:43:11 -05:00
parent f70c2cfde4
commit 1e325366d2
1717 changed files with 140299 additions and 27845 deletions

View File

@@ -72,7 +72,7 @@ def pbFishing(hasEncounter,rodType=1)
break
end
itemChance = rand((rodType)*4)
itemChance = rand((rodType)*5)
if itemChance<=1
#ITEM
items = [:PEARL,
@@ -84,7 +84,20 @@ def pbFishing(hasEncounter,rodType=1)
:PEARL,
:WATERGEM
]
Kernel.pbItemBall(items[rand(items.size)],1,nil,false)
hats = [
HAT_SLOWKING_SHELL,
]
hatChance = rand(5)
if true#hatChance == 0
hat = hats.sample
if !hasHat?(hat)
obtainHat(hat)
else
Kernel.pbItemBall(items[rand(items.size)],1,nil,false)
end
else
Kernel.pbItemBall(items[rand(items.size)],1,nil,false)
end
Kernel.pbDisposeMessageWindow(msgWindow)
pbFishingEnd
$game_player.setDefaultCharName(nil,oldpattern)