aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-19 21:20:32 -0400
committerhistoria <[not public]>2026-06-19 21:20:32 -0400
commit5ea082ab4e82409aebc889b496f43e52b003d4f7 (patch)
tree942f2c4a18ecbee42ba25726048d09827ea68894 /cmd
parent8ee8982b8759bcae116647cc993867f4c8b0a6ce (diff)
downloadthehouseoficarus-5ea082ab4e82409aebc889b496f43e52b003d4f7.tar.gz
feat: science combat/triggers overhauled. decks now use autotrigger attacks.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mud/main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/mud/main.go b/cmd/mud/main.go
index ef4a560..234e3e0 100644
--- a/cmd/mud/main.go
+++ b/cmd/mud/main.go
@@ -66,6 +66,12 @@ func main() {
}
g.SetHub(server.Hub())
+ junkItems := []string{"solarjunk", "ecojunk", "hydrojunk", "biojunk", "chaosjunk",
+ "cosmicjunk", "naturejunk", "bloodjunk", "deathjunk", "lawjunk", "scrap_metal"}
+ for _, j := range junkItems {
+ g.World.AddGroundItem(1, j, 500)
+ }
+
if cfg.Telnet.Enabled {
log.Printf("Telnet listening on :%d", cfg.Telnet.Port)
}