mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-08 16:04:30 +00:00
prep for release of v0.8A
This commit is contained in:
parent
bb6e7cadcb
commit
579e5e616b
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 16 KiB |
|
@ -42,12 +42,12 @@ local function _itemData()
|
|||
-- WEAPONS --
|
||||
-------------
|
||||
polarStar1 = {
|
||||
name = "Polar Star 1",
|
||||
name = "Polar Star",
|
||||
script = "<EVE0002",
|
||||
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
||||
},
|
||||
polarStar2 = {
|
||||
name = "Polar Star 2",
|
||||
name = "Polar Star",
|
||||
script = "<EVE0002",
|
||||
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
||||
},
|
||||
|
@ -211,12 +211,12 @@ local function _itemData()
|
|||
attributes = {"mandatory"}
|
||||
},
|
||||
booster1 = {
|
||||
name = "Booster 1",
|
||||
name = "Booster",
|
||||
script = "<EVE0068",
|
||||
attributes = {"flight", "booster", "mandatory"}
|
||||
},
|
||||
booster2 = {
|
||||
name = "Booster 2",
|
||||
name = "Booster",
|
||||
script = "<EVE0068",
|
||||
attributes = {"flight", "booster", "mandatory"}
|
||||
},
|
||||
|
|
|
@ -453,6 +453,13 @@ function worldGraph:getPuppySpots()
|
|||
}
|
||||
end
|
||||
|
||||
function worldGraph:getFirstCaveSpots()
|
||||
return {
|
||||
self.regions.firstCave.locations.firstCapsule,
|
||||
self.regions.firstCave.locations.gunsmithChest
|
||||
}
|
||||
end
|
||||
|
||||
function worldGraph:getHellSpots()
|
||||
return self.locationsArray(self.regions.endgame:getLocations())
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require 'lib.strict'
|
||||
|
||||
VERSION = '0.8'
|
||||
VERSION = '0.8A'
|
||||
|
||||
Class = require 'lib.classic'
|
||||
_ = require 'lib.moses'
|
||||
|
@ -80,9 +80,9 @@ local function _draw()
|
|||
lg.draw(background, 0, 0)
|
||||
_print('Cave Story Randomizer [Open Mode] v' .. VERSION, 0, 10)
|
||||
_print('by shru and duncathan', 0, 22)
|
||||
_print('(@shruuu and @duncathan_salt)', 0, 34)
|
||||
_print(status, 10, 65)
|
||||
_print('shru.itch.io', 10, 220, 'left')
|
||||
_print('@shruuu', 10, 220, 'right')
|
||||
_print('Original randomizer:\r\nshru.itch.io/cave-story-randomizer', 10, 200, 'left')
|
||||
end
|
||||
|
||||
function love.draw()
|
||||
|
|
Loading…
Reference in a new issue