From 9407be57a9a34ce0553436ec96705f968511556a Mon Sep 17 00:00:00 2001 From: Ben Maurer Date: Wed, 28 Jul 2021 23:33:45 -0500 Subject: [PATCH] - Added locations page - Added bases section in locations - Added enter_idiot_territory - Added im_flying_jack --- data/locations/based.json | 18 ++++++++++++ data/locations/enter_idiot_territory.json | 32 ++++++++++++++++++++ data/locations/im_flying_jack.json | 36 +++++++++++++++++++++++ data/locations/root.json | 18 ++++++++++++ 4 files changed, 104 insertions(+) create mode 100644 data/locations/based.json create mode 100644 data/locations/enter_idiot_territory.json create mode 100644 data/locations/im_flying_jack.json create mode 100644 data/locations/root.json diff --git a/data/locations/based.json b/data/locations/based.json new file mode 100644 index 0000000..27e0dc2 --- /dev/null +++ b/data/locations/based.json @@ -0,0 +1,18 @@ +{ + "display": { + "icon": { + "item": "minecraft:oak_door" + }, + "title": "Based", + "description": "Visit the bases of The Canopy", + "frame": "task", + "show_toast": false, + "announce_to_chat": false + }, + "parent": "locations:root", + "criteria": { + "instant": { + "trigger": "minecraft:tick" + } + } +} diff --git a/data/locations/enter_idiot_territory.json b/data/locations/enter_idiot_territory.json new file mode 100644 index 0000000..2289a7e --- /dev/null +++ b/data/locations/enter_idiot_territory.json @@ -0,0 +1,32 @@ +{ + "display": { + "icon": { + "item": "minecraft:red_mushroom" + }, + "title": "Enter Idiot Territory", + "description": "Visit Dumb B*tches Island at N 280", + "frame": "task", + "show_toast": false, + "announce_to_chat": true + }, + "parent": "locations:based", + "criteria": { + "be_near": { + "trigger": "minecraft:location", + "conditions": { + "dimension": "minecraft:overworld", + "position": { + "x": { + "min": -860, + "max": -560 + }, + "z": { + "min": -2540, + "max": -2040 + } + } + } + } + } +} + diff --git a/data/locations/im_flying_jack.json b/data/locations/im_flying_jack.json new file mode 100644 index 0000000..921d17e --- /dev/null +++ b/data/locations/im_flying_jack.json @@ -0,0 +1,36 @@ +{ + "display": { + "icon": { + "item": "minecraft:ladder" + }, + "title": "I'm Flying Jack!", + "description": "Summit spawn mountain", + "frame": "task", + "show_toast": false, + "announce_to_chat": true + }, + "parent": "locations:root", + "criteria": { + "be_near": { + "trigger": "minecraft:location", + "conditions": { + "dimension": "minecraft:overworld", + "position": { + "x": { + "min": 35, + "max": 50 + }, + "y": { + "min": 160, + "max": 180 + }, + "z": { + "min": -240, + "max": -220 + } + } + } + } + } +} + diff --git a/data/locations/root.json b/data/locations/root.json new file mode 100644 index 0000000..44845f5 --- /dev/null +++ b/data/locations/root.json @@ -0,0 +1,18 @@ +{ + "display": { + "icon": { + "item": "minecraft:filled_map" + }, + "title": "Sightseeing", + "description": "... uhhh idk", + "frame": "task", + "background": "minecraft:textures/block/lime_concrete.png", + "show_toast": false, + "announce_to_chat": false + }, + "criteria": { + "instant": { + "trigger": "minecraft:tick" + } + } +}