This commit is contained in:
2026-05-26 07:17:05 +02:00
parent 6895b69a1f
commit e893963743
27 changed files with 412 additions and 436 deletions

16
lib/character.cat.go Normal file
View File

@@ -0,0 +1,16 @@
package lib
import (
"image/color"
p "git.teletypegames.org/games/pncdsl"
)
var Cat = p.Character{
Name: "cat",
Sprite: "spr/cat",
Speed: 40,
SpeechColor: color.RGBA{200, 200, 255, 255},
W: 34,
H: 20,
}