mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-08 16:04:30 +00:00
adds misery mychar courtesy of hiino
This commit is contained in:
parent
f8eedf4e28
commit
2c5ad7dafb
BIN
src/assets/icon/Misery.png
Normal file
BIN
src/assets/icon/Misery.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 418 B |
BIN
src/assets/myChar/Misery.bmp
Normal file
BIN
src/assets/myChar/Misery.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
|
@ -41,7 +41,7 @@ settings.randoButton:onPress(function()
|
|||
Screen:loadObjective(love.math.random(4)-1)
|
||||
settings.seedselect.value = false
|
||||
settings.seedrandom.value = true
|
||||
Screen:loadMyChar(love.math.random(7))
|
||||
Screen:loadMyChar(love.math.random(8))
|
||||
Screen:loadSpawn(love.math.random(3)-1)
|
||||
Screen:loadSeqSettings(fifty(), {
|
||||
cthulhu = fifty(),
|
||||
|
@ -98,8 +98,10 @@ function C:loadMyChar(mychar)
|
|||
settings.mychar.index = 5
|
||||
elseif mychar == "assets/myChar/Kanpachi.bmp" then
|
||||
settings.mychar.index = 6
|
||||
elseif mychar == "assets/myChar/Frog.bmp" then
|
||||
elseif mychar == "assets/myChar/Misery.bmp" then
|
||||
settings.mychar.index = 7
|
||||
elseif mychar == "assets/myChar/Frog.bmp" then
|
||||
settings.mychar.index = 8
|
||||
end
|
||||
settings.mychar.value = "override"
|
||||
end
|
||||
|
|
|
@ -44,6 +44,7 @@ return { style = 'dialog',
|
|||
{ text = " Toroko", value = "assets/myChar/Toroko.bmp", icon = "assets/icon/Toroko.png" },
|
||||
{ text = " King", value = "assets/myChar/King.bmp", icon = "assets/icon/King.png" },
|
||||
{ text = " Kanpachi", value = "assets/myChar/Kanpachi.bmp", icon = "assets/icon/Kanpachi.png" },
|
||||
{ text = " Misery", value = "assets/myChar/Misery.bmp", icon = "assets/icon/Misery.png" },
|
||||
{ text = " Frog", value = "assets/myChar/Frog.bmp", icon = "assets/icon/Frog.png" }
|
||||
},
|
||||
{ type = 'label', text = 'Spawn Location', minheight = 32 },
|
||||
|
|
Loading…
Reference in a new issue