the-rpg-thing/src/gamestate.lua
2021-11-28 20:50:25 -06:00

26 lines
523 B
Lua

function makeNewGameState()
return {
location = "sbedroom",
inventory = {
"DOLLR"
},
spells = {
"BRACE",
"PSYCH",
},
speed = 15,
xp = 0,
skin = 100,
mind = 100,
paranoia = 0,
weapon = "bat",
accessory = nil,
isInBattle = false,
opponent = {},
turn = true,
defeated = {},
speaking = nil,
speakingIndex = 1,
lastRoom = nil,
}
end