summaryrefslogtreecommitdiff
path: root/content/encyclopediae
diff options
context:
space:
mode:
Diffstat (limited to 'content/encyclopediae')
-rw-r--r--content/encyclopediae/base.json4
-rw-r--r--content/encyclopediae/crops.json12
-rw-r--r--content/encyclopediae/default_encyclopedia.json16
3 files changed, 16 insertions, 16 deletions
diff --git a/content/encyclopediae/base.json b/content/encyclopediae/base.json
index 1964579..8052eb6 100644
--- a/content/encyclopediae/base.json
+++ b/content/encyclopediae/base.json
@@ -74,13 +74,13 @@
"house": {"height": 3.0, "sprite": "house"},
"freeland": {},
"img": {
- "arguments": [["sprite", "string", ""], ["height", "float", 1.0]],
+ "arguments": {"sprite": null, "height": 1.0},
"components": [
["Visible", {"name": {"$arg": "sprite"}, "sprite": {"$arg": "sprite"}, "height": {"$arg": "height"}}]
]
},
"letter": {
- "arguments": [["char", "string"]],
+ "arguments": {"char": "string"},
"components": [["Visible", {
"name": {"$concat": ["letter_", {"$arg": "char"}]},
"sprite": {"$concat": ["emptyletter-", {"$arg": "char"}]},
diff --git a/content/encyclopediae/crops.json b/content/encyclopediae/crops.json
index 0c16073..99c5ec3 100644
--- a/content/encyclopediae/crops.json
+++ b/content/encyclopediae/crops.json
@@ -16,7 +16,7 @@
"flags": ["Occupied"]
},
"plantedradishseed": {
- "arguments": [["target_time", "int", -1]],
+ "arguments": {"target_time": []},
"sprite": "seed",
"height": 0.05,
"name": "seed",
@@ -35,7 +35,7 @@
"flags": ["Occupied"]
},
"radishseedling": {
- "arguments": [["target_time", "int", -1]],
+ "arguments": {"target_time": []},
"sprite": "seedling",
"height": 0.05,
"name": "seedling",
@@ -54,7 +54,7 @@
"flags": ["Occupied"]
},
"youngradishplant": {
- "arguments": [["target_time", "int", -1]],
+ "arguments": {"target_time": []},
"sprite": "youngplant",
"height": 0.8,
"name": "youngradishplant",
@@ -73,7 +73,7 @@
"flags": ["Occupied"]
},
"plantedseed": {
- "arguments": [["target_time", "int", -1], ["next", "template"], ["delay", "int"]],
+ "arguments": {"target_time": [], "next": null, "delay": null},
"sprite": "seed",
"height": 0.05,
"name": "plantedseed",
@@ -92,7 +92,7 @@
"flags": ["Occupied"]
},
"seedling": {
- "arguments": [["target_time", "int", -1], ["next", "template"], ["delay", "int"]],
+ "arguments": {"target_time": [], "next": null, "delay": null},
"sprite": "seed",
"height": 0.09,
"name": "seedling",
@@ -111,7 +111,7 @@
"flags": ["Occupied"]
},
"youngplant": {
- "arguments": [["target_time", "int", -1], ["next", "template"], ["crop", "string"], ["delay", "int"]],
+ "arguments": {"target_time": [], "next": null, "delay": null, "crop": null},
"components": [
["Timer", {
"delay": {"$arg": "delay"},
diff --git a/content/encyclopediae/default_encyclopedia.json b/content/encyclopediae/default_encyclopedia.json
index cf58771..2d37aca 100644
--- a/content/encyclopediae/default_encyclopedia.json
+++ b/content/encyclopediae/default_encyclopedia.json
@@ -1,14 +1,14 @@
{
"assemblages": {
"portal": {
- "arguments": [["destination", "string"], ["destpos", "string", ""]],
+ "arguments": {"destination": null, "destpos": ""},
"components": [
["RoomExit", {"destination": {"$arg": "destination"}, "dest_pos": {"$arg": "destpos"}}]
],
"flags": ["Floor"]
},
"_homeportal": {
- "arguments": [["allowed", "list", []]],
+ "arguments": {"allowed": []},
"extract": {"allowed": ["Whitelist", "allowed"]},
"components": [
["RoomExit", {"destination": "_home+{player}", "dest_pos": ""}],
@@ -18,7 +18,7 @@
"flags": ["Floor"]
},
"builtwall": {
- "arguments": [["health", "int", 100]],
+ "arguments": {"health": 100},
"components": [
["Health", {"health": {"$arg": "health"}, "maxhealth": 100}],
["Loot", {"loot": [[{"$template": "stone"}, 1.0]]}]
@@ -34,7 +34,7 @@
"height": 0.8
},
"dummy": {
- "arguments": [["health", "int", 20]],
+ "arguments": {"health": 20},
"sprite": "dummy",
"height": 1,
"components": [
@@ -44,17 +44,17 @@
"wound": {
"sprite": "wound",
"height": 0.25,
- "components": [["Timer", {"delay": 3, "spread": 0.0, "trigger": "remove", "target_time": -1}]],
+ "components": [["Timer", {"delay": 3, "spread": 0.0, "trigger": "remove", "target_time": []}]],
"save": false
},
"spawner": {
- "arguments": [["template", "template"], ["amount", "int", 1], ["delay", "int", 0], ["clan", "string", ""], ["initial_spawn", "bool", true], ["radius", "int", 0]],
+ "arguments": {"template": null, "amount": 1, "delay": 0, "clan": "", "initial_spawn": true, "radius": 0},
"components": [
["Timer", {
"delay": {"$arg": "delay"},
"spread": 0.1,
"trigger": "spawn",
- "target_time": {"$if": [{"$arg": "initial_spawn"}, 0, -1]}
+ "target_time": {"$if": [{"$arg": "initial_spawn"}, 0, []]}
}],
["Spawner", {
"template": {"$arg": "template"},
@@ -65,7 +65,7 @@
]
},
"singleton": {
- "arguments": [["ent", "template"], ["clan", "string", ""]],
+ "arguments": {"ent": "template", "clan": ""},
"components": [
["Spawner", {
"template": {"$arg": "ent"},