mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-22 14:53:00 +00:00
makes weapons other than MG successfully generate, adds snake (camp)
This commit is contained in:
parent
6d1c805c56
commit
1a020162b0
|
@ -78,7 +78,7 @@ local function _itemData()
|
|||
snake = {
|
||||
name = "Snake",
|
||||
script = "<EVE0005",
|
||||
attributes = {"weapon", "weaponBoss", "nonProgressive"}
|
||||
attributes = {"weapon", "weaponBoss", "nonProgressive", "weaponStrong"}
|
||||
},
|
||||
bubbler = {
|
||||
name = "Bubbler",
|
||||
|
|
|
@ -258,7 +258,7 @@ function labyrinthW:new(worldGraph)
|
|||
self.locations.turboChaba.requirements = function(self, items) return _has(items, "machineGun") end
|
||||
self.locations.snakeChaba.requirements = function(self, items) return _has(items, "fireball") end
|
||||
self.locations.whimChaba.requirements = function(self, items) return _count(items, "polarStar", 2) end
|
||||
self.locations.campChest.requirements = function(self, items) return _has(items, "flight") or self.world:Camp() end
|
||||
self.locations.campChest.requirements = function(self, items) return _has(items, "flight") or self.region.world:Camp() end
|
||||
self.locations.puuBlack.requirements = function(self, items) return _has(items, "clinicKey") and _has(items, "weaponBoss") end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue