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 --
|
-- WEAPONS --
|
||||||
-------------
|
-------------
|
||||||
polarStar1 = {
|
polarStar1 = {
|
||||||
name = "Polar Star 1",
|
name = "Polar Star",
|
||||||
script = "<EVE0002",
|
script = "<EVE0002",
|
||||||
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
||||||
},
|
},
|
||||||
polarStar2 = {
|
polarStar2 = {
|
||||||
name = "Polar Star 2",
|
name = "Polar Star",
|
||||||
script = "<EVE0002",
|
script = "<EVE0002",
|
||||||
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
attributes = {"weaponBoss", "weaponSN", "polarStar", "mandatory"}
|
||||||
},
|
},
|
||||||
|
@ -211,12 +211,12 @@ local function _itemData()
|
||||||
attributes = {"mandatory"}
|
attributes = {"mandatory"}
|
||||||
},
|
},
|
||||||
booster1 = {
|
booster1 = {
|
||||||
name = "Booster 1",
|
name = "Booster",
|
||||||
script = "<EVE0068",
|
script = "<EVE0068",
|
||||||
attributes = {"flight", "booster", "mandatory"}
|
attributes = {"flight", "booster", "mandatory"}
|
||||||
},
|
},
|
||||||
booster2 = {
|
booster2 = {
|
||||||
name = "Booster 2",
|
name = "Booster",
|
||||||
script = "<EVE0068",
|
script = "<EVE0068",
|
||||||
attributes = {"flight", "booster", "mandatory"}
|
attributes = {"flight", "booster", "mandatory"}
|
||||||
},
|
},
|
||||||
|
|
|
@ -453,6 +453,13 @@ function worldGraph:getPuppySpots()
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function worldGraph:getFirstCaveSpots()
|
||||||
|
return {
|
||||||
|
self.regions.firstCave.locations.firstCapsule,
|
||||||
|
self.regions.firstCave.locations.gunsmithChest
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
function worldGraph:getHellSpots()
|
function worldGraph:getHellSpots()
|
||||||
return self.locationsArray(self.regions.endgame:getLocations())
|
return self.locationsArray(self.regions.endgame:getLocations())
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require 'lib.strict'
|
require 'lib.strict'
|
||||||
|
|
||||||
VERSION = '0.8'
|
VERSION = '0.8A'
|
||||||
|
|
||||||
Class = require 'lib.classic'
|
Class = require 'lib.classic'
|
||||||
_ = require 'lib.moses'
|
_ = require 'lib.moses'
|
||||||
|
@ -80,9 +80,9 @@ local function _draw()
|
||||||
lg.draw(background, 0, 0)
|
lg.draw(background, 0, 0)
|
||||||
_print('Cave Story Randomizer [Open Mode] v' .. VERSION, 0, 10)
|
_print('Cave Story Randomizer [Open Mode] v' .. VERSION, 0, 10)
|
||||||
_print('by shru and duncathan', 0, 22)
|
_print('by shru and duncathan', 0, 22)
|
||||||
|
_print('(@shruuu and @duncathan_salt)', 0, 34)
|
||||||
_print(status, 10, 65)
|
_print(status, 10, 65)
|
||||||
_print('shru.itch.io', 10, 220, 'left')
|
_print('Original randomizer:\r\nshru.itch.io/cave-story-randomizer', 10, 200, 'left')
|
||||||
_print('@shruuu', 10, 220, 'right')
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function love.draw()
|
function love.draw()
|
||||||
|
|
Loading…
Reference in a new issue