├── README.md ├── datapacks ├── enchantments │ ├── data │ │ ├── example │ │ │ ├── enchantment │ │ │ │ ├── annoyance.json │ │ │ │ ├── boom_boom.json │ │ │ │ ├── claw.json │ │ │ │ ├── cowbow.json │ │ │ │ ├── diminishing.json │ │ │ │ ├── fire_walker.json │ │ │ │ ├── fishy.json │ │ │ │ ├── fragility_curse.json │ │ │ │ ├── galaxy_brain.json │ │ │ │ ├── multi_multi_shot.json │ │ │ │ ├── pollen_allergy_curse.json │ │ │ │ ├── roulette.json │ │ │ │ ├── sparkles.json │ │ │ │ └── thor.json │ │ │ └── function │ │ │ │ └── annoying.mcfunction │ │ └── minecraft │ │ │ └── tags │ │ │ └── enchantment │ │ │ └── curse.json │ └── pack.mcmeta └── v16demo │ ├── data │ └── v16 │ │ └── functions │ │ ├── concat.mcfunction │ │ ├── eval.mcfunction │ │ ├── fails.mcfunction │ │ ├── fails2.mcfunction │ │ ├── get_player_health.mcfunction │ │ ├── line_continuation.mcfunction │ │ ├── set_time.mcfunction │ │ └── succeeds.mcfunction │ └── pack.mcmeta └── so_lime.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/README.md -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/annoyance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/annoyance.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/boom_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/boom_boom.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/claw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/claw.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/cowbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/cowbow.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/diminishing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/diminishing.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fire_walker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/fire_walker.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fishy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/fishy.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fragility_curse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/fragility_curse.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/galaxy_brain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/galaxy_brain.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/multi_multi_shot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/multi_multi_shot.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/pollen_allergy_curse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/pollen_allergy_curse.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/roulette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/roulette.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/sparkles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/sparkles.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/thor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/enchantment/thor.json -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/function/annoying.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/example/function/annoying.mcfunction -------------------------------------------------------------------------------- /datapacks/enchantments/data/minecraft/tags/enchantment/curse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/data/minecraft/tags/enchantment/curse.json -------------------------------------------------------------------------------- /datapacks/enchantments/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/enchantments/pack.mcmeta -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/concat.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/concat.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/eval.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/eval.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/fails.mcfunction: -------------------------------------------------------------------------------- 1 | # A function fails if it doesn't use return 2 | setblock ~ ~-1 ~ stone 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/fails2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/fails2.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/get_player_health.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/get_player_health.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/line_continuation.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/line_continuation.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/set_time.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/set_time.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/succeeds.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/data/v16/functions/succeeds.mcfunction -------------------------------------------------------------------------------- /datapacks/v16demo/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/datapacks/v16demo/pack.mcmeta -------------------------------------------------------------------------------- /so_lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slicedlime/examples/HEAD/so_lime.json --------------------------------------------------------------------------------