initial commit

This commit is contained in:
2026-05-25 21:28:04 +02:00
commit d74acc58de
22 changed files with 570 additions and 0 deletions

11
domain/item.beans.go Normal file
View File

@@ -0,0 +1,11 @@
package domain
import p "git.teletypegames.org/games/pncdsl"
func defineBeans(g *p.Game) {
g.ItemManager.Register(p.Item{
Name: "beans",
Sprite: "spr/beans",
Description: "őrölt kávébab",
})
}