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" + } + } +}