From 196d30decf79d60d3e7441f9f50220312a019a3b Mon Sep 17 00:00:00 2001 From: troido Date: Tue, 3 Mar 2020 14:04:43 +0100 Subject: made items on ground into spawners --- content/maps/room.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content') diff --git a/content/maps/room.json b/content/maps/room.json index e652cd7..4af1532 100644 --- a/content/maps/room.json +++ b/content/maps/room.json @@ -38,12 +38,12 @@ "T": ["grass", "tree"], "f": ["grass", "fence"], "X": "rock", - "*": ["grass", "pebble"], - "o": ["grass", "stone"], + "*": ["grass", {"type": "spawner", "kwargs": {"template": {"type": "pebble"}, "delay": 600}}], + "o": ["grass", {"type": "spawner", "kwargs": {"template": {"type": "stone"}, "delay": 600}}], "%": {"type": "portal", "kwargs": {"destination": "broom", "dest_pos": "northentry"}}, "^": ["grass", "spiketrap"], "d": ["grass", "dummy"], - "r": ["grass", {"type": "spawner", "kwargs": {"template": {"type": "rat", "save": false}, "amount": 3, "clan": "rats", "delay": 200}}], + "r": ["grass", {"type": "spawner", "kwargs": {"template": {"type": "rat"}, "amount": 3, "clan": "rats", "delay": 200}}], " ": [] } } -- cgit