From 755ae8512bfe3ff39a55c22a958e15399e886c5f Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 30 Dec 2021 21:20:46 +0100 Subject: entities can now have descriptions --- content/encyclopediae/base.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'content/encyclopediae/base.json') diff --git a/content/encyclopediae/base.json b/content/encyclopediae/base.json index 8052eb6..f022b82 100644 --- a/content/encyclopediae/base.json +++ b/content/encyclopediae/base.json @@ -34,7 +34,8 @@ ]}, "height": 0.1, "name": "grass" - }] + }], + ["Description", {"description": "grassy grass"}] ], "flags": ["Floor", "Soil"] }, @@ -55,12 +56,18 @@ "ground": { "sprite": "ground", "height": 0.1, - "flags": ["Floor", "Soil"] + "flags": ["Floor", "Soil"], + "components": [ + ["Description", {"description": "Dirt ground"}] + ] }, "floor": { "sprite": "floor", "height": 0.1, - "flags": ["Floor"] + "flags": ["Floor"], + "components": [ + ["Description", {"description": "Stone floor"}] + ] }, "bridge": { "sprite": "bridge", -- cgit