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

@@ -118,8 +118,10 @@ module GameData
def is_mulch?; return @type == 11; end
def is_mega_stone?; return @type == 12; end # Does NOT include Red Orb/Blue Orb
UNTOSSABLE_ITEMS =[:PINKANBERRY,:DYNAMITE, :TM00]
def is_important?
return true if is_key_item? || is_HM? || is_TM?
return true if UNTOSSABLE_ITEMS.include?(@id)
return false
end