basic stacking hats pattern and basic woody ennemy

This commit is contained in:
Deadzi06
2026-08-08 16:06:07 +02:00
parent d17c13f2ca
commit 0796d64a8d
8 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
local Woody, super = Class(Encounter)
function Woody:init()
super.init(self)
-- Text displayed at the bottom of the screen at the start of the encounter
self.text = "* The tutorial begins...?"
-- Battle music ("battle" is rude buster)
self.music = "battle"
-- Enables the purple grid battle background
self.background = true
-- Add the woody enemy to the encounter
self:addEnemy("woody")
--- Uncomment this line to add another!
--self:addEnemy("woody")
end
return Woody