From f177fa1930096842750178055fcc2a5d3ee18680 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:15:47 +0900 Subject: [PATCH 01/17] Set deno workspace --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..4b9fb228 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "deno.enable": true +} \ No newline at end of file From 0821eef7ec664c6a22341440d0bb98bc9c319304 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:16:21 +0900 Subject: [PATCH 02/17] Add path fixer for mcversion 12 --- utils/resolverFor12.ts | 72 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 utils/resolverFor12.ts diff --git a/utils/resolverFor12.ts b/utils/resolverFor12.ts new file mode 100644 index 00000000..e0dbbe4c --- /dev/null +++ b/utils/resolverFor12.ts @@ -0,0 +1,72 @@ +import * as fs from 'https://deno.land/std@0.176.0/fs/mod.ts'; + +type PartialModel = { + textures: Record +} + +const getModelFiles = () => { + const models = new Map(); + for (const file of fs.expandGlobSync('./pack/assets/minecraft/models/**/*.json')) { + models.set( + file.path, + JSON.parse( + Deno.readTextFileSync(file.path) + ) as PartialModel + ); + } + + return models; +} + +const resolvePath = (nonResolvedPath: string) => { + const parsed = nonResolvedPath.match(/(?:(?\w+)\:)?(?.+)/); + + if (!parsed) throw new Error(`Path (${nonResolvedPath}) is invalid`); + + return { + namespace: parsed?.groups?.namespace, + path: parsed?.groups?.path || '' + }; +} + +const stringifyPath = (parsedPath: { + namespace?: string, + path: string +}) => `${parsedPath.namespace ? parsedPath.namespace+':' : ''}${parsedPath.path}` + +let count = 0; +for (const [filepath, model] of getModelFiles().entries()) { + let anyChanges = false; + + if (model.textures) for (const [key, nonResolvedPath] of Object.entries(model.textures)) { + const texture = resolvePath(nonResolvedPath); + + if ( + texture.path.startsWith('item') + || texture.path.startsWith('block') + || texture.path.startsWith('#')) continue; + + anyChanges = true; + console.log(); + + model.textures[key] = stringifyPath({ + ...texture, + path: 'item/' + texture.path + }); + + count++; + } + + if (anyChanges) { + console.log(`Fixed: ${filepath}`) + + Deno.writeTextFileSync(filepath, + JSON.stringify( + model, + void 0, + '\t' + ) + ) + } + +} \ No newline at end of file From f7a15324ea8495a18a5932561987030e54564ce7 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:20:55 +0900 Subject: [PATCH 03/17] fix: missing texture(fix #113) --- .../models/balloon/balloonn_present.json | 776 +- .../minecraft/models/balloon/present.json | 269 +- pack/assets/minecraft/models/coins/fsc.json | 832 +- pack/assets/minecraft/models/coins/ktc.json | 974 +- pack/assets/minecraft/models/coins/lbc.json | 832 +- pack/assets/minecraft/models/coins/vbc.json | 832 +- .../assets/minecraft/models/fish/antyobi.json | 2184 +- .../assets/minecraft/models/fish/arowana.json | 3007 +- pack/assets/minecraft/models/fish/ayu.json | 3455 +- pack/assets/minecraft/models/fish/azi.json | 3832 +- pack/assets/minecraft/models/fish/beta.json | 4132 +- .../minecraft/models/fish/burakkubasu.json | 3382 +- .../minecraft/models/fish/buru-giru.json | 4805 +- .../minecraft/models/fish/chouchouuo.json | 8 +- .../minecraft/models/fish/chouzame.json | 3157 +- .../assets/minecraft/models/fish/demekin.json | 5251 +- .../minecraft/models/fish/demenigisu.json | 3976 +- .../minecraft/models/fish/doctorfish.json | 4357 +- pack/assets/minecraft/models/fish/dojou.json | 2851 +- pack/assets/minecraft/models/fish/donko.json | 3976 +- pack/assets/minecraft/models/fish/dorado.json | 3980 +- pack/assets/minecraft/models/fish/ei.json | 1957 +- .../minecraft/models/fish/endlicheri.json | 3832 +- .../minecraft/models/fish/engelfish.json | 6082 +- pack/assets/minecraft/models/fish/fugu.json | 2251 +- pack/assets/minecraft/models/fish/funa.json | 7350 +- pack/assets/minecraft/models/fish/gar.json | 2407 +- .../models/fish/go-rudentorauto.json | 3595 +- .../minecraft/models/fish/gokiburi.json | 7120 +- pack/assets/minecraft/models/fish/guppy.json | 3757 +- .../minecraft/models/fish/hanahigeutubo.json | 4203 +- .../minecraft/models/fish/harisenbon.json | 2557 +- pack/assets/minecraft/models/fish/hirame.json | 3903 +- .../minecraft/models/fish/iero-pa-ti.json | 3757 +- pack/assets/minecraft/models/fish/ika.json | 2251 +- pack/assets/minecraft/models/fish/isidai.json | 3307 +- pack/assets/minecraft/models/fish/itou.json | 3007 +- .../minecraft/models/fish/jinbeezame.json | 3232 +- pack/assets/minecraft/models/fish/kaeru.json | 7120 +- pack/assets/minecraft/models/fish/kajiki.json | 2855 +- .../minecraft/models/fish/kamitukigame.json | 2608 +- pack/assets/minecraft/models/fish/karei.json | 3307 +- .../minecraft/models/fish/kingsa-mon.json | 3232 +- pack/assets/minecraft/models/fish/kingyo.json | 4943 +- .../minecraft/models/fish/kobanzame.json | 2407 +- pack/assets/minecraft/models/fish/koi.json | 3674 +- .../minecraft/models/fish/kumanomi.json | 3832 +- .../assets/minecraft/models/fish/kurione.json | 2482 +- pack/assets/minecraft/models/fish/maguro.json | 4345 +- pack/assets/minecraft/models/fish/manbou.json | 2926 +- pack/assets/minecraft/models/fish/medaka.json | 3005 +- .../minecraft/models/fish/minokasago.json | 6007 +- pack/assets/minecraft/models/fish/namazu.json | 3376 +- .../minecraft/models/fish/nanyouhagi.json | 94944 ++++++++++++++-- .../minecraft/models/fish/napoleonfish.json | 3832 +- .../minecraft/models/fish/neontetra.json | 4132 +- .../minecraft/models/fish/nisikigoi.json | 3670 +- .../minecraft/models/fish/nokogirizame.json | 2857 +- pack/assets/minecraft/models/fish/oikawa.json | 3664 +- .../assets/minecraft/models/fish/ooiwana.json | 3307 +- .../minecraft/models/fish/otamajakusi.json | 1957 +- pack/assets/minecraft/models/fish/paiku.json | 3080 +- .../assets/minecraft/models/fish/piranha.json | 4357 +- .../minecraft/models/fish/piraruku.json | 2557 +- pack/assets/minecraft/models/fish/raigyo.json | 2707 +- .../minecraft/models/fish/rainbowfish.json | 3457 +- pack/assets/minecraft/models/fish/ranchu.json | 3832 +- .../minecraft/models/fish/rouninaji.json | 4807 +- .../minecraft/models/fish/ryugunotukai.json | 2332 +- pack/assets/minecraft/models/fish/saba.json | 3532 +- pack/assets/minecraft/models/fish/sake.json | 3607 +- pack/assets/minecraft/models/fish/same.json | 3457 +- pack/assets/minecraft/models/fish/siira.json | 4207 +- .../minecraft/models/fish/siirakansu.json | 4570 +- pack/assets/minecraft/models/fish/suppon.json | 3145 +- pack/assets/minecraft/models/fish/suzuki.json | 3682 +- .../minecraft/models/fish/syanhaigani.json | 7882 +- .../minecraft/models/fish/syumokuzame.json | 3682 +- pack/assets/minecraft/models/fish/tai.json | 4207 +- pack/assets/minecraft/models/fish/tanago.json | 5164 +- .../minecraft/models/fish/tatunootoshigo.json | 4357 +- .../minecraft/models/fish/thirapia.json | 4732 +- .../minecraft/models/fish/tyotinankou.json | 4657 +- pack/assets/minecraft/models/fish/ugui.json | 3137 +- pack/assets/minecraft/models/fish/unagi.json | 3682 +- pack/assets/minecraft/models/fish/utubo.json | 1357 +- .../minecraft/models/fish/wakasagi.json | 2782 +- pack/assets/minecraft/models/fish/yamame.json | 3232 +- .../minecraft/models/foods/apple_candy.json | 319 +- .../models/foods/baby_castella_l.json | 4188 +- .../models/foods/baby_castella_s.json | 4188 +- .../minecraft/models/foods/chicken_steak.json | 4096 +- .../models/foods/cut_fruits/grape.json | 64 +- .../models/foods/cut_fruits/melon.json | 64 +- .../models/foods/cut_fruits/pineapple.json | 64 +- .../minecraft/models/foods/don/rice.json | 1267 +- .../minecraft/models/foods/don/tuna_don.json | 3453 +- .../minecraft/models/foods/kamaboko.json | 806 +- pack/assets/minecraft/models/foods/kizi.json | 12 +- .../minecraft/models/foods/omelette.json | 763 +- pack/assets/minecraft/models/foods/pizza.json | 4108 +- .../minecraft/models/foods/rice_seed.json | 838 +- .../minecraft/models/foods/tuna_kirimi.json | 200 +- .../minecraft/models/foods/yakinasu.json | 12 +- .../minecraft/models/hats/glass_shumu.json | 3026 +- .../minecraft/models/hats/masks/fox.json | 389 +- .../models/hats/masks/fox_normal.json | 390 +- .../models/hats/masks/fox_oblique.json | 395 +- .../models/hats/masks/fox_oblique_normal.json | 396 +- .../models/hats/masks/maple8192_mask.json | 15642 ++- .../models/hats/masks/taniyan18_mask.json | 15642 ++- .../minecraft/models/item/figure/alpha9n.json | 4 +- .../models/item/figure/alpha9n2.json | 4 +- .../models/item/figure/alphakun914.json | 4 +- .../models/item/figure/aoichaan0513.json | 4 +- .../models/item/figure/azarash1_a_b_s_i.json | 4 +- .../minecraft/models/item/figure/em0914.json | 4 +- .../minecraft/models/item/figure/ganma_.json | 4 +- .../minecraft/models/item/figure/gray27.json | 4 +- .../models/item/figure/gray27wi.json | 4 +- .../models/item/figure/kanau3110.json | 4 +- .../models/item/figure/kanimiso2000.json | 4 +- .../models/item/figure/karioo_b.json | 4 +- .../models/item/figure/kotamaro_.json | 4 +- .../models/item/figure/misolamen.json | 4 +- .../minecraft/models/item/figure/momocok.json | 4 +- .../models/item/figure/nakatai_0322.json | 4 +- .../models/item/figure/nikuzuki.json | 4 +- .../minecraft/models/item/figure/noaking.json | 4 +- .../minecraft/models/item/figure/null.json | 4 +- .../models/item/figure/others/snowman.json | 4901 +- .../minecraft/models/item/figure/reiwarm.json | 4 +- .../models/item/figure/shirotamas.json | 4 +- .../models/item/figure/shirotamaw.json | 4 +- .../models/item/figure/syubarium.json | 4 +- .../models/item/figure/takenoha.json | 4 +- .../models/item/figure/taniyan18.json | 4 +- .../minecraft/models/item/figure/tererun.json | 4 +- .../models/item/figure/tererun2102.json | 4 +- .../models/item/figure/trophy_g.json | 1440 +- .../models/item/figure/tsutoringo.json | 4 +- .../minecraft/models/item/figure/ueki.json | 4 +- .../minecraft/models/item/mugiwara.json | 244 +- .../assets/minecraft/models/item/zihanki.json | 14184 ++- .../models/tools/backpacks/backpack.json | 2797 +- .../assets/minecraft/models/tools/bundle.json | 14 +- .../models/tools/redstone_pickaxe.json | 14 +- .../models/tools/redstone_shovel.json | 14 +- .../{ => item}/balloon/balloon_present.png | Bin .../{ => item}/coins/fscoin_bronze.png | Bin .../textures/{ => item}/coins/fscoin_gold.png | Bin .../{ => item}/coins/fscoin_silver.png | Bin .../textures/{ => item}/coins/ktc.png | Bin .../textures/{ => item}/coins/lbc.png | Bin .../textures/{ => item}/dish/don_surface.png | Bin .../minecraft/textures/item/fish/antyobi.png | Bin 0 -> 2588 bytes .../minecraft/textures/item/fish/arowana.png | Bin 0 -> 2654 bytes .../minecraft/textures/item/fish/ayu.png | Bin 0 -> 1880 bytes .../minecraft/textures/item/fish/azi.png | Bin 0 -> 2359 bytes .../minecraft/textures/item/fish/beta.png | Bin 0 -> 4637 bytes .../textures/item/fish/burakkubasu.png | Bin 0 -> 2323 bytes .../textures/item/fish/buru-giru.png | Bin 0 -> 3503 bytes .../textures/item/fish/chouchouuo.png | Bin 0 -> 4005 bytes .../minecraft/textures/item/fish/chouzame.png | Bin 0 -> 1415 bytes .../minecraft/textures/item/fish/demekin.png | Bin 0 -> 2863 bytes .../textures/item/fish/demenigisu.png | Bin 0 -> 2902 bytes .../textures/item/fish/doctorfish.png | Bin 0 -> 2488 bytes .../minecraft/textures/item/fish/dojou.png | Bin 0 -> 1895 bytes .../minecraft/textures/item/fish/donko.png | Bin 0 -> 4279 bytes .../minecraft/textures/item/fish/dorado.png | Bin 0 -> 3417 bytes .../minecraft/textures/item/fish/ei.png | Bin 0 -> 3251 bytes .../textures/item/fish/endlicheri.png | Bin 0 -> 1868 bytes .../textures/item/fish/engelfish.png | Bin 0 -> 2962 bytes .../minecraft/textures/item/fish/fugu.png | Bin 0 -> 3131 bytes .../minecraft/textures/item/fish/funa.png | Bin 0 -> 2555 bytes .../minecraft/textures/item/fish/gar.png | Bin 0 -> 1528 bytes .../textures/item/fish/go-rudentorauto.png | Bin 0 -> 1867 bytes .../minecraft/textures/item/fish/guppy.png | Bin 0 -> 2717 bytes .../textures/item/fish/hanahigeutubo.png | Bin 0 -> 2608 bytes .../textures/item/fish/harisenbon.png | Bin 0 -> 2458 bytes .../minecraft/textures/item/fish/hirame.png | Bin 0 -> 4791 bytes .../textures/item/fish/iero-pa-ti.png | Bin 0 -> 2400 bytes .../minecraft/textures/item/fish/ika.png | Bin 0 -> 2830 bytes .../minecraft/textures/item/fish/isidai.png | Bin 0 -> 4767 bytes .../minecraft/textures/item/fish/itou.png | Bin 0 -> 1726 bytes .../textures/item/fish/jinbeezame.png | Bin 0 -> 3144 bytes .../minecraft/textures/item/fish/kaeru.png | Bin 0 -> 1101 bytes .../minecraft/textures/item/fish/kajiki.png | Bin 0 -> 3006 bytes .../textures/item/fish/kamitukigame.png | Bin 0 -> 2853 bytes .../minecraft/textures/item/fish/karei.png | Bin 0 -> 4835 bytes .../textures/item/fish/kingsalmon.png | Bin 0 -> 2068 bytes .../minecraft/textures/item/fish/kingyo.png | Bin 0 -> 2953 bytes .../textures/item/fish/kobanzame.png | Bin 0 -> 2863 bytes .../minecraft/textures/item/fish/koi.png | Bin 0 -> 1796 bytes .../minecraft/textures/item/fish/kumanomi.png | Bin 0 -> 3348 bytes .../minecraft/textures/item/fish/kurione.png | Bin 0 -> 1648 bytes .../minecraft/textures/item/fish/maguro.png | Bin 0 -> 1578 bytes .../minecraft/textures/item/fish/manbou.png | Bin 0 -> 2865 bytes .../minecraft/textures/item/fish/medaka.png | Bin 0 -> 2182 bytes .../textures/item/fish/minokasago.png | Bin 0 -> 3613 bytes .../minecraft/textures/item/fish/namazu.png | Bin 0 -> 1523 bytes .../textures/item/fish/nanyouhagi.png | Bin 0 -> 3419 bytes .../textures/item/fish/napoleonfish.png | Bin 0 -> 3766 bytes .../textures/item/fish/neontetra.png | Bin 0 -> 2494 bytes .../textures/item/fish/nisikigoi.png | Bin 0 -> 2046 bytes .../textures/item/fish/nokogirizame.png | Bin 0 -> 1868 bytes .../minecraft/textures/item/fish/oikawa.png | Bin 0 -> 1824 bytes .../minecraft/textures/item/fish/ooiwana.png | Bin 0 -> 2064 bytes .../textures/item/fish/otamajakusi.png | Bin 0 -> 1856 bytes .../minecraft/textures/item/fish/paiku.png | Bin 0 -> 1654 bytes .../minecraft/textures/item/fish/piranha.png | Bin 0 -> 3817 bytes .../minecraft/textures/item/fish/piraruku.png | Bin 0 -> 1958 bytes .../minecraft/textures/item/fish/raigyo.png | Bin 0 -> 2079 bytes .../textures/item/fish/rainbowfish.png | Bin 0 -> 3090 bytes .../minecraft/textures/item/fish/ranchu.png | Bin 0 -> 3960 bytes .../textures/item/fish/rouninaji.png | Bin 0 -> 4640 bytes .../textures/item/fish/ryuguunotukai.png | Bin 0 -> 714 bytes .../minecraft/textures/item/fish/saba.png | Bin 0 -> 3525 bytes .../minecraft/textures/item/fish/sake.png | Bin 0 -> 3431 bytes .../minecraft/textures/item/fish/same.png | Bin 0 -> 3521 bytes .../textures/item/fish/shanhaigani.png | Bin 0 -> 6396 bytes .../minecraft/textures/item/fish/siira.png | Bin 0 -> 3891 bytes .../textures/item/fish/siirakansu.png | Bin 0 -> 1301 bytes .../minecraft/textures/item/fish/suppon.png | Bin 0 -> 2713 bytes .../minecraft/textures/item/fish/suzuki.png | Bin 0 -> 3847 bytes .../textures/item/fish/syumokuzame.png | Bin 0 -> 3340 bytes .../minecraft/textures/item/fish/tai.png | Bin 0 -> 5143 bytes .../minecraft/textures/item/fish/tanago.png | Bin 0 -> 2249 bytes .../textures/item/fish/tatunootosigo.png | Bin 0 -> 2108 bytes .../minecraft/textures/item/fish/thirapia.png | Bin 0 -> 3496 bytes .../textures/item/fish/tyotinankou.png | Bin 0 -> 5109 bytes .../minecraft/textures/item/fish/ugui.png | Bin 0 -> 1635 bytes .../minecraft/textures/item/fish/unagi.png | Bin 0 -> 2844 bytes .../minecraft/textures/item/fish/utubo.png | Bin 0 -> 1828 bytes .../minecraft/textures/item/fish/wakasagi.png | Bin 0 -> 1620 bytes .../minecraft/textures/item/fish/yamame.png | Bin 0 -> 2140 bytes .../minecraft/textures/item/fish/zarigani.png | Bin 0 -> 1673 bytes .../textures/item/fish/zinbeezame.png | Bin 0 -> 3144 bytes .../{ => item}/foods/chicken_steak.png | Bin .../{ => item}/foods/egg_liquid_bowl.png | Bin .../textures/{ => item}/foods/material.png | Bin .../textures/{ => item}/foods/omelet.png | Bin .../textures/{ => item}/foods/pizza.png | Bin .../textures/{ => item}/foods/rice.png | Bin .../textures/{ => item}/foods/tuna.png | Bin .../textures/{ => item}/foods/yakinasu.png | Bin .../textures/{ => item}/kotamaro/coin.png | Bin .../{ => item}/others/momizidani2.png | Bin .../{ => item}/painting/burning_skull.png | Bin .../textures/{ => item}/poster/freeserver.png | Bin .../textures/{ => item}/skins/alpha9n.png | Bin .../textures/{ => item}/skins/alpha9n2.png | Bin .../textures/{ => item}/skins/alphakun914.png | Bin .../{ => item}/skins/aoichaan0513.png | Bin .../{ => item}/skins/azarash1_a_b_s_i.png | Bin .../textures/{ => item}/skins/em0914.png | Bin .../textures/{ => item}/skins/ganma_.png | Bin .../textures/{ => item}/skins/goldensteve.png | Bin .../textures/{ => item}/skins/gray27.png | Bin .../textures/{ => item}/skins/gray27wi.png | Bin .../textures/{ => item}/skins/heads.png | Bin .../{ => item}/skins/helms/riru2246.png | Bin .../textures/{ => item}/skins/kanau3110.png | Bin .../{ => item}/skins/kanimiso2000.png | Bin .../textures/{ => item}/skins/karioo_b.png | Bin .../textures/{ => item}/skins/kotamaro_.png | Bin .../textures/{ => item}/skins/misolamen.png | Bin .../textures/{ => item}/skins/mobs/fox.png | Bin .../textures/{ => item}/skins/mobs/pig.png | Bin .../textures/{ => item}/skins/momocok.png | Bin .../{ => item}/skins/nakatai_0322.png | Bin .../textures/{ => item}/skins/nikuzuki.png | Bin .../textures/{ => item}/skins/noaking.png | Bin .../textures/{ => item}/skins/null.png | Bin .../textures/{ => item}/skins/reiwarm.png | Bin .../{ => item}/skins/shirotamagosu.png | Bin .../{ => item}/skins/shirotamagowi.png | Bin .../textures/{ => item}/skins/syubarium.png | Bin .../textures/{ => item}/skins/takenoha.png | Bin .../textures/{ => item}/skins/taniyan18.png | Bin .../textures/{ => item}/skins/tererun.png | Bin .../textures/{ => item}/skins/tererun2102.png | Bin .../textures/{ => item}/skins/tsutoringo.png | Bin .../textures/{ => item}/skins/ueki.png | Bin .../textures/{ => item}/tools/backpack_1.png | Bin .../textures/{ => item}/tools/backpack_2.png | Bin .../textures/{ => item}/tools/bundle.png | Bin .../{ => item}/tools/redstone_pickaxe.png | Bin .../{ => item}/tools/redstone_shovel.png | Bin 289 files changed, 427240 insertions(+), 54924 deletions(-) rename pack/assets/minecraft/textures/{ => item}/balloon/balloon_present.png (100%) rename pack/assets/minecraft/textures/{ => item}/coins/fscoin_bronze.png (100%) rename pack/assets/minecraft/textures/{ => item}/coins/fscoin_gold.png (100%) rename pack/assets/minecraft/textures/{ => item}/coins/fscoin_silver.png (100%) rename pack/assets/minecraft/textures/{ => item}/coins/ktc.png (100%) rename pack/assets/minecraft/textures/{ => item}/coins/lbc.png (100%) rename pack/assets/minecraft/textures/{ => item}/dish/don_surface.png (100%) create mode 100644 pack/assets/minecraft/textures/item/fish/antyobi.png create mode 100644 pack/assets/minecraft/textures/item/fish/arowana.png create mode 100644 pack/assets/minecraft/textures/item/fish/ayu.png create mode 100644 pack/assets/minecraft/textures/item/fish/azi.png create mode 100644 pack/assets/minecraft/textures/item/fish/beta.png create mode 100644 pack/assets/minecraft/textures/item/fish/burakkubasu.png create mode 100644 pack/assets/minecraft/textures/item/fish/buru-giru.png create mode 100644 pack/assets/minecraft/textures/item/fish/chouchouuo.png create mode 100644 pack/assets/minecraft/textures/item/fish/chouzame.png create mode 100644 pack/assets/minecraft/textures/item/fish/demekin.png create mode 100644 pack/assets/minecraft/textures/item/fish/demenigisu.png create mode 100644 pack/assets/minecraft/textures/item/fish/doctorfish.png create mode 100644 pack/assets/minecraft/textures/item/fish/dojou.png create mode 100644 pack/assets/minecraft/textures/item/fish/donko.png create mode 100644 pack/assets/minecraft/textures/item/fish/dorado.png create mode 100644 pack/assets/minecraft/textures/item/fish/ei.png create mode 100644 pack/assets/minecraft/textures/item/fish/endlicheri.png create mode 100644 pack/assets/minecraft/textures/item/fish/engelfish.png create mode 100644 pack/assets/minecraft/textures/item/fish/fugu.png create mode 100644 pack/assets/minecraft/textures/item/fish/funa.png create mode 100644 pack/assets/minecraft/textures/item/fish/gar.png create mode 100644 pack/assets/minecraft/textures/item/fish/go-rudentorauto.png create mode 100644 pack/assets/minecraft/textures/item/fish/guppy.png create mode 100644 pack/assets/minecraft/textures/item/fish/hanahigeutubo.png create mode 100644 pack/assets/minecraft/textures/item/fish/harisenbon.png create mode 100644 pack/assets/minecraft/textures/item/fish/hirame.png create mode 100644 pack/assets/minecraft/textures/item/fish/iero-pa-ti.png create mode 100644 pack/assets/minecraft/textures/item/fish/ika.png create mode 100644 pack/assets/minecraft/textures/item/fish/isidai.png create mode 100644 pack/assets/minecraft/textures/item/fish/itou.png create mode 100644 pack/assets/minecraft/textures/item/fish/jinbeezame.png create mode 100644 pack/assets/minecraft/textures/item/fish/kaeru.png create mode 100644 pack/assets/minecraft/textures/item/fish/kajiki.png create mode 100644 pack/assets/minecraft/textures/item/fish/kamitukigame.png create mode 100644 pack/assets/minecraft/textures/item/fish/karei.png create mode 100644 pack/assets/minecraft/textures/item/fish/kingsalmon.png create mode 100644 pack/assets/minecraft/textures/item/fish/kingyo.png create mode 100644 pack/assets/minecraft/textures/item/fish/kobanzame.png create mode 100644 pack/assets/minecraft/textures/item/fish/koi.png create mode 100644 pack/assets/minecraft/textures/item/fish/kumanomi.png create mode 100644 pack/assets/minecraft/textures/item/fish/kurione.png create mode 100644 pack/assets/minecraft/textures/item/fish/maguro.png create mode 100644 pack/assets/minecraft/textures/item/fish/manbou.png create mode 100644 pack/assets/minecraft/textures/item/fish/medaka.png create mode 100644 pack/assets/minecraft/textures/item/fish/minokasago.png create mode 100644 pack/assets/minecraft/textures/item/fish/namazu.png create mode 100644 pack/assets/minecraft/textures/item/fish/nanyouhagi.png create mode 100644 pack/assets/minecraft/textures/item/fish/napoleonfish.png create mode 100644 pack/assets/minecraft/textures/item/fish/neontetra.png create mode 100644 pack/assets/minecraft/textures/item/fish/nisikigoi.png create mode 100644 pack/assets/minecraft/textures/item/fish/nokogirizame.png create mode 100644 pack/assets/minecraft/textures/item/fish/oikawa.png create mode 100644 pack/assets/minecraft/textures/item/fish/ooiwana.png create mode 100644 pack/assets/minecraft/textures/item/fish/otamajakusi.png create mode 100644 pack/assets/minecraft/textures/item/fish/paiku.png create mode 100644 pack/assets/minecraft/textures/item/fish/piranha.png create mode 100644 pack/assets/minecraft/textures/item/fish/piraruku.png create mode 100644 pack/assets/minecraft/textures/item/fish/raigyo.png create mode 100644 pack/assets/minecraft/textures/item/fish/rainbowfish.png create mode 100644 pack/assets/minecraft/textures/item/fish/ranchu.png create mode 100644 pack/assets/minecraft/textures/item/fish/rouninaji.png create mode 100644 pack/assets/minecraft/textures/item/fish/ryuguunotukai.png create mode 100644 pack/assets/minecraft/textures/item/fish/saba.png create mode 100644 pack/assets/minecraft/textures/item/fish/sake.png create mode 100644 pack/assets/minecraft/textures/item/fish/same.png create mode 100644 pack/assets/minecraft/textures/item/fish/shanhaigani.png create mode 100644 pack/assets/minecraft/textures/item/fish/siira.png create mode 100644 pack/assets/minecraft/textures/item/fish/siirakansu.png create mode 100644 pack/assets/minecraft/textures/item/fish/suppon.png create mode 100644 pack/assets/minecraft/textures/item/fish/suzuki.png create mode 100644 pack/assets/minecraft/textures/item/fish/syumokuzame.png create mode 100644 pack/assets/minecraft/textures/item/fish/tai.png create mode 100644 pack/assets/minecraft/textures/item/fish/tanago.png create mode 100644 pack/assets/minecraft/textures/item/fish/tatunootosigo.png create mode 100644 pack/assets/minecraft/textures/item/fish/thirapia.png create mode 100644 pack/assets/minecraft/textures/item/fish/tyotinankou.png create mode 100644 pack/assets/minecraft/textures/item/fish/ugui.png create mode 100644 pack/assets/minecraft/textures/item/fish/unagi.png create mode 100644 pack/assets/minecraft/textures/item/fish/utubo.png create mode 100644 pack/assets/minecraft/textures/item/fish/wakasagi.png create mode 100644 pack/assets/minecraft/textures/item/fish/yamame.png create mode 100644 pack/assets/minecraft/textures/item/fish/zarigani.png create mode 100644 pack/assets/minecraft/textures/item/fish/zinbeezame.png rename pack/assets/minecraft/textures/{ => item}/foods/chicken_steak.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/egg_liquid_bowl.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/material.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/omelet.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/pizza.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/rice.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/tuna.png (100%) rename pack/assets/minecraft/textures/{ => item}/foods/yakinasu.png (100%) rename pack/assets/minecraft/textures/{ => item}/kotamaro/coin.png (100%) rename pack/assets/minecraft/textures/{ => item}/others/momizidani2.png (100%) rename pack/assets/minecraft/textures/{ => item}/painting/burning_skull.png (100%) rename pack/assets/minecraft/textures/{ => item}/poster/freeserver.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/alpha9n.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/alpha9n2.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/alphakun914.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/aoichaan0513.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/azarash1_a_b_s_i.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/em0914.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/ganma_.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/goldensteve.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/gray27.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/gray27wi.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/heads.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/helms/riru2246.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/kanau3110.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/kanimiso2000.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/karioo_b.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/kotamaro_.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/misolamen.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/mobs/fox.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/mobs/pig.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/momocok.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/nakatai_0322.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/nikuzuki.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/noaking.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/null.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/reiwarm.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/shirotamagosu.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/shirotamagowi.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/syubarium.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/takenoha.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/taniyan18.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/tererun.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/tererun2102.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/tsutoringo.png (100%) rename pack/assets/minecraft/textures/{ => item}/skins/ueki.png (100%) rename pack/assets/minecraft/textures/{ => item}/tools/backpack_1.png (100%) rename pack/assets/minecraft/textures/{ => item}/tools/backpack_2.png (100%) rename pack/assets/minecraft/textures/{ => item}/tools/bundle.png (100%) rename pack/assets/minecraft/textures/{ => item}/tools/redstone_pickaxe.png (100%) rename pack/assets/minecraft/textures/{ => item}/tools/redstone_shovel.png (100%) diff --git a/pack/assets/minecraft/models/balloon/balloonn_present.json b/pack/assets/minecraft/models/balloon/balloonn_present.json index a68118c4..8381bfdb 100644 --- a/pack/assets/minecraft/models/balloon/balloonn_present.json +++ b/pack/assets/minecraft/models/balloon/balloonn_present.json @@ -2,158 +2,748 @@ "__name": "風船のプレゼント", "credit": "Made with Blockbench", "textures": { - "0": "balloon/balloon_present", - "particle": "balloon/balloon_present" + "0": "item/balloon/balloon_present", + "particle": "item/balloon/balloon_present" }, "elements": [ { - "from": [7.125, 17.875, 7], - "to": [9.125, 18.875, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 22.375, 14.5]}, + "from": [ + 7.125, + 17.875, + 7 + ], + "to": [ + 9.125, + 18.875, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 22.375, + 14.5 + ] + }, "faces": { - "north": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"}, - "east": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"}, - "south": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"}, - "west": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"}, - "up": {"uv": [2, 4, 4, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + "north": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4, + 4, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 2, + 2 + ], + "texture": "#0" + } } }, { - "from": [7.375, 13, 7.25], - "to": [8.875, 14.25, 8.75], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 17.75, 14.5]}, + "from": [ + 7.375, + 13, + 7.25 + ], + "to": [ + 8.875, + 14.25, + 8.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 17.75, + 14.5 + ] + }, "faces": { - "north": {"uv": [2, 4.5, 3.5, 5.75], "texture": "#0"}, - "east": {"uv": [2, 4.5, 3.5, 5.75], "texture": "#0"}, - "south": {"uv": [2, 4.5, 3.5, 5.75], "texture": "#0"}, - "west": {"uv": [2, 4.5, 3.5, 5.75], "texture": "#0"}, - "up": {"uv": [2, 4.25, 3.5, 5.75], "texture": "#0"}, - "down": {"uv": [4, 4, 6, 6], "texture": "#0"} + "north": { + "uv": [ + 2, + 4.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 4.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 4.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4.25, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 6, + 6 + ], + "texture": "#0" + } } }, { - "from": [6.625, 13.875, 6.5], - "to": [9.625, 18.375, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 22.375, 14.5]}, + "from": [ + 6.625, + 13.875, + 6.5 + ], + "to": [ + 9.625, + 18.375, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 22.375, + 14.5 + ] + }, "faces": { - "north": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "east": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "south": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "west": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "up": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"}, - "down": {"uv": [2, 4.5, 4, 5.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 4.5, + 4, + 5.5 + ], + "texture": "#0" + } } }, { - "from": [6.625, 14.875, 6], - "to": [9.625, 17.875, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 22.375, 15]}, + "from": [ + 6.625, + 14.875, + 6 + ], + "to": [ + 9.625, + 17.875, + 10 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 22.375, + 15 + ] + }, "faces": { - "north": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "east": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "south": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "west": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "up": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "down": {"uv": [2, 6, 4, 8], "texture": "#0"} + "north": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + } } }, { - "from": [6.125, 14.875, 6.5], - "to": [10.125, 17.875, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 22.375, 15]}, + "from": [ + 6.125, + 14.875, + 6.5 + ], + "to": [ + 10.125, + 17.875, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 22.375, + 15 + ] + }, "faces": { - "north": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "east": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "south": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "west": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "up": {"uv": [2, 6, 4, 8], "texture": "#0"}, - "down": {"uv": [2, 6, 4, 8], "texture": "#0"} + "north": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6, + 4, + 8 + ], + "texture": "#0" + } } }, { - "from": [8, 4.375, 7.875], - "to": [8.25, 13.25, 8.125], - "rotation": {"angle": 0, "axis": "y", "origin": [14.625, 16.75, 14.5]}, + "from": [ + 8, + 4.375, + 7.875 + ], + "to": [ + 8.25, + 13.25, + 8.125 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.625, + 16.75, + 14.5 + ] + }, "faces": { - "north": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"}, - "east": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"}, - "south": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"}, - "west": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"}, - "up": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"}, - "down": {"uv": [1.75, 2.25, 2, 2.5], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 2.25, + 2, + 2.5 + ], + "texture": "#0" + } } }, { - "from": [5.75, 0.03125, 5.75], - "to": [10.25, 4.53125, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 8.03125, 14.5]}, + "from": [ + 5.75, + 0.03125, + 5.75 + ], + "to": [ + 10.25, + 4.53125, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 8.03125, + 14.5 + ] + }, "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "south": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "west": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "up": {"uv": [4, 0, 6, 2], "texture": "#0"}, - "down": {"uv": [2, 0, 4, 2], "texture": "#0"} + "north": { + "uv": [ + 2, + 2, + 4, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 0, + 6, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 0, + 4, + 2 + ], + "texture": "#0" + } } }, { - "from": [5.71875, 0, 5.70313], - "to": [10.26563, 4.79688, 10.26563], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 8, 14.5]}, + "from": [ + 5.71875, + 0, + 5.70313 + ], + "to": [ + 10.26563, + 4.79688, + 10.26563 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 8, + 14.5 + ] + }, "faces": { - "north": {"uv": [8, 0, 10, 2], "texture": "#0"}, - "east": {"uv": [6, 0, 7.75, 1.75], "texture": "#0"}, - "south": {"uv": [8, 0, 9.75, 1.75], "texture": "#0"}, - "west": {"uv": [8, 0, 10, 2], "texture": "#0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#0"}, - "down": {"uv": [8, 0, 10, 2], "texture": "#0"} + "north": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 0, + 7.75, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 0, + 9.75, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 7.5, 1.75] + "translation": [ + 0, + 7.5, + 1.75 + ] }, "thirdperson_lefthand": { - "translation": [0, 7.5, 1.75] + "translation": [ + 0, + 7.5, + 1.75 + ] }, "firstperson_righthand": { - "rotation": [11.75, -23.75, -20], - "translation": [-1.25, 5.25, 1.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 11.75, + -23.75, + -20 + ], + "translation": [ + -1.25, + 5.25, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "rotation": [11.75, -23.75, -20], - "translation": [-1.25, 5.25, 1.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 11.75, + -23.75, + -20 + ], + "translation": [ + -1.25, + 5.25, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "rotation": [0, 0, 90] + "rotation": [ + 0, + 0, + 90 + ] }, "gui": { - "rotation": [42.25, 41, -48.5], - "translation": [0, -0.5, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 42.25, + 41, + -48.5 + ], + "translation": [ + 0, + -0.5, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "head": { - "translation": [0, -21.25, 0], - "scale": [3, 3, 3] + "translation": [ + 0, + -21.25, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] }, "fixed": { - "rotation": [0, 0, 45] + "rotation": [ + 0, + 0, + 45 + ] } }, "groups": [ { "name": "balloon", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] }, { "name": "present", - "origin": [14.625, 19.375, 14.5], - "children": [6, 7] + "origin": [ + 14.625, + 19.375, + 14.5 + ], + "children": [ + 6, + 7 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/balloon/present.json b/pack/assets/minecraft/models/balloon/present.json index 390b720b..0d8e2610 100644 --- a/pack/assets/minecraft/models/balloon/present.json +++ b/pack/assets/minecraft/models/balloon/present.json @@ -2,75 +2,270 @@ "__name": "プレゼント", "credit": "Made with Blockbench", "textures": { - "0": "balloon/balloon_present", - "particle": "balloon/balloon_present" + "0": "item/balloon/balloon_present", + "particle": "item/balloon/balloon_present" }, "elements": [ { - "from": [5.75, 0.03125, 5.75], - "to": [10.25, 4.53125, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 8.03125, 14.5]}, + "from": [ + 5.75, + 0.03125, + 5.75 + ], + "to": [ + 10.25, + 4.53125, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 8.03125, + 14.5 + ] + }, "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "south": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "west": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "up": {"uv": [4, 0, 6, 2], "texture": "#0"}, - "down": {"uv": [2, 0, 4, 2], "texture": "#0"} + "north": { + "uv": [ + 2, + 2, + 4, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 0, + 6, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 0, + 4, + 2 + ], + "texture": "#0" + } } }, { - "from": [5.71875, 0, 5.70313], - "to": [10.26563, 4.79688, 10.26563], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 8, 14.5]}, + "from": [ + 5.71875, + 0, + 5.70313 + ], + "to": [ + 10.26563, + 4.79688, + 10.26563 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 8, + 14.5 + ] + }, "faces": { - "north": {"uv": [8, 0, 10, 2], "texture": "#0"}, - "east": {"uv": [6, 0, 7.75, 1.75], "texture": "#0"}, - "south": {"uv": [8, 0, 9.75, 1.75], "texture": "#0"}, - "west": {"uv": [8, 0, 10, 2], "texture": "#0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#0"}, - "down": {"uv": [8, 0, 10, 2], "texture": "#0"} + "north": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 0, + 7.75, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 0, + 9.75, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 0, + 10, + 2 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 7.5, 1.75] + "translation": [ + 0, + 7.5, + 1.75 + ] }, "thirdperson_lefthand": { - "translation": [0, 7.5, 1.75] + "translation": [ + 0, + 7.5, + 1.75 + ] }, "firstperson_righthand": { - "rotation": [11.75, -23.75, -20], - "translation": [-1.25, 5.25, 1.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 11.75, + -23.75, + -20 + ], + "translation": [ + -1.25, + 5.25, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "rotation": [11.75, -23.75, -20], - "translation": [-1.25, 5.25, 1.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 11.75, + -23.75, + -20 + ], + "translation": [ + -1.25, + 5.25, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "translation": [0, 4.25, 0] + "translation": [ + 0, + 4.25, + 0 + ] }, "gui": { - "rotation": [37, 45, 0], - "translation": [0, 9, 0], - "scale": [2, 2, 2] + "rotation": [ + 37, + 45, + 0 + ], + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] }, "head": { - "translation": [0, -19.25, 0], - "scale": [3, 3, 3] + "translation": [ + 0, + -19.25, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] }, "fixed": { - "translation": [0, 6, 0] + "translation": [ + 0, + 6, + 0 + ] } }, "groups": [ { "name": "present", - "origin": [14.625, 19.375, 14.5], - "children": [0, 1] + "origin": [ + 14.625, + 19.375, + 14.5 + ], + "children": [ + 0, + 1 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/coins/fsc.json b/pack/assets/minecraft/models/coins/fsc.json index 911124c2..59943693 100644 --- a/pack/assets/minecraft/models/coins/fsc.json +++ b/pack/assets/minecraft/models/coins/fsc.json @@ -2,176 +2,808 @@ "__name": "投票コイン", "credit": "Made with Blockbench", "textures": { - "2": "coins/fscoin_gold", - "particle": "coins/fscoin_gold" + "2": "item/coins/fscoin_gold", + "particle": "item/coins/fscoin_gold" }, "elements": [ { "name": "fscoin_bronze_0", - "from": [6, 0, 1], - "to": [10, 1, 15], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 1, + 15 + ], "faces": { - "north": {"uv": [10, 1, 6, 2], "texture": "#2"}, - "east": {"uv": [9, 1, 10, 15], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 14, 10, 15], "texture": "#2"}, - "west": {"uv": [6, 1, 7, 15], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 1, 10, 15], "texture": "#2"}, - "down": {"uv": [6, 15, 10, 1], "texture": "#2"} + "north": { + "uv": [ + 10, + 1, + 6, + 2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 1, + 10, + 15 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 14, + 10, + 15 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 1, + 7, + 15 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 1, + 10, + 15 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 15, + 10, + 1 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_1", - "from": [4, 0, 2], - "to": [6, 1, 14], + "from": [ + 4, + 0, + 2 + ], + "to": [ + 6, + 1, + 14 + ], "faces": { - "north": {"uv": [6, 2, 4, 3], "texture": "#2"}, - "east": {"uv": [5, 2, 6, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 13, 6, 14], "texture": "#2"}, - "west": {"uv": [4, 2, 5, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 2, 6, 14], "texture": "#2"}, - "down": {"uv": [4, 14, 6, 2], "texture": "#2"} + "north": { + "uv": [ + 6, + 2, + 4, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 2, + 6, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 13, + 6, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 2, + 5, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 2, + 6, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 14, + 6, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_2", - "from": [10, 0, 2], - "to": [12, 1, 14], + "from": [ + 10, + 0, + 2 + ], + "to": [ + 12, + 1, + 14 + ], "faces": { - "north": {"uv": [12, 2, 10, 3], "texture": "#2"}, - "east": {"uv": [11, 2, 12, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 13, 12, 14], "texture": "#2"}, - "west": {"uv": [10, 2, 11, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 2, 12, 14], "texture": "#2"}, - "down": {"uv": [10, 14, 12, 2], "texture": "#2"} + "north": { + "uv": [ + 12, + 2, + 10, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 2, + 12, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 13, + 12, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 2, + 11, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 2, + 12, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 14, + 12, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_3", - "from": [3, 0, 3], - "to": [4, 1, 13], + "from": [ + 3, + 0, + 3 + ], + "to": [ + 4, + 1, + 13 + ], "faces": { - "north": {"uv": [4, 3, 3, 4], "texture": "#2"}, - "east": {"uv": [3, 3, 4, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 12, 4, 13], "texture": "#2"}, - "west": {"uv": [3, 3, 4, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 3, 4, 13], "texture": "#2"}, - "down": {"uv": [3, 13, 4, 3], "texture": "#2"} + "north": { + "uv": [ + 4, + 3, + 3, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 12, + 4, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 13, + 4, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_4", - "from": [12, 0, 3], - "to": [13, 1, 13], + "from": [ + 12, + 0, + 3 + ], + "to": [ + 13, + 1, + 13 + ], "faces": { - "north": {"uv": [13, 3, 12, 4], "texture": "#2"}, - "east": {"uv": [12, 3, 13, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 12, 13, 13], "texture": "#2"}, - "west": {"uv": [12, 3, 13, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 3, 13, 13], "texture": "#2"}, - "down": {"uv": [12, 13, 13, 3], "texture": "#2"} + "north": { + "uv": [ + 13, + 3, + 12, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 12, + 13, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 13, + 13, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_5", - "from": [2, 0, 4], - "to": [3, 1, 12], + "from": [ + 2, + 0, + 4 + ], + "to": [ + 3, + 1, + 12 + ], "faces": { - "north": {"uv": [3, 4, 2, 5], "texture": "#2"}, - "east": {"uv": [2, 4, 3, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 11, 3, 12], "texture": "#2"}, - "west": {"uv": [2, 4, 3, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 4, 3, 12], "texture": "#2"}, - "down": {"uv": [2, 12, 3, 4], "texture": "#2"} + "north": { + "uv": [ + 3, + 4, + 2, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 11, + 3, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 12, + 3, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_6", - "from": [13, 0, 4], - "to": [14, 1, 12], + "from": [ + 13, + 0, + 4 + ], + "to": [ + 14, + 1, + 12 + ], "faces": { - "north": {"uv": [14, 4, 13, 5], "texture": "#2"}, - "east": {"uv": [13, 4, 14, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 11, 14, 12], "texture": "#2"}, - "west": {"uv": [13, 4, 14, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 4, 14, 12], "texture": "#2"}, - "down": {"uv": [13, 12, 14, 4], "texture": "#2"} + "north": { + "uv": [ + 14, + 4, + 13, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 11, + 14, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 12, + 14, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_7", - "from": [1, 0, 6], - "to": [2, 1, 10], + "from": [ + 1, + 0, + 6 + ], + "to": [ + 2, + 1, + 10 + ], "faces": { - "north": {"uv": [2, 6, 1, 7], "texture": "#2"}, - "east": {"uv": [1, 6, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9, 2, 10], "texture": "#2"}, - "west": {"uv": [1, 6, 2, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 6, 2, 10], "texture": "#2"}, - "down": {"uv": [1, 10, 2, 6], "texture": "#2"} + "north": { + "uv": [ + 2, + 6, + 1, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 10, + 2, + 6 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_8", - "from": [14, 0, 6], - "to": [15, 1, 10], + "from": [ + 14, + 0, + 6 + ], + "to": [ + 15, + 1, + 10 + ], "faces": { - "north": {"uv": [15, 6, 14, 7], "texture": "#2"}, - "east": {"uv": [14, 6, 15, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 9, 15, 10], "texture": "#2"}, - "west": {"uv": [14, 6, 15, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 6, 15, 10], "texture": "#2"}, - "down": {"uv": [14, 10, 15, 6], "texture": "#2"} + "north": { + "uv": [ + 15, + 6, + 14, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 9, + 15, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 10, + 15, + 6 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "thirdperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_righthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0.25, 8.5, 5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 8.5, + 5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-90, -180, 0], - "translation": [0.25, 8.5, -10.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0.25, + 8.5, + -10.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0, -11], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0, + 0, + -11 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "fscoin_gold", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/coins/ktc.json b/pack/assets/minecraft/models/coins/ktc.json index 3031e231..94fdc18d 100644 --- a/pack/assets/minecraft/models/coins/ktc.json +++ b/pack/assets/minecraft/models/coins/ktc.json @@ -2,200 +2,946 @@ "__name": "こたまろコイン", "credit": "Made with Blockbench", "textures": { - "1": "coins/ktc" + "1": "item/coins/ktc" }, "elements": [ { "name": "ktc_0", - "from": [6, 0, 1.5], - "to": [9, 0.5, 14.5], + "from": [ + 6, + 0, + 1.5 + ], + "to": [ + 9, + 0.5, + 14.5 + ], "faces": { - "north": {"uv": [9, 1.5, 6, 2], "texture": "#1"}, - "east": {"uv": [8.5, 1.5, 9, 14.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 14, 9, 14.5], "texture": "#1"}, - "west": {"uv": [6, 1.5, 6.5, 14.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 1.5, 9, 14.5], "texture": "#1"}, - "down": {"uv": [6, 14.5, 9, 1.5], "texture": "#1"} + "north": { + "uv": [ + 9, + 1.5, + 6, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 1.5, + 9, + 14.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 14, + 9, + 14.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 1.5, + 6.5, + 14.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 1.5, + 9, + 14.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 14.5, + 9, + 1.5 + ], + "texture": "#1" + } } }, { "name": "ktc_1", - "from": [5.5, 0, 2], - "to": [6, 0.5, 14], + "from": [ + 5.5, + 0, + 2 + ], + "to": [ + 6, + 0.5, + 14 + ], "faces": { - "north": {"uv": [6, 2, 5.5, 2.5], "texture": "#1"}, - "east": {"uv": [5.5, 2, 6, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 13.5, 6, 14], "texture": "#1"}, - "west": {"uv": [5.5, 2, 6, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 2, 6, 14], "texture": "#1"}, - "down": {"uv": [5.5, 14, 6, 2], "texture": "#1"} + "north": { + "uv": [ + 6, + 2, + 5.5, + 2.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 2, + 6, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 13.5, + 6, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 2, + 6, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 2, + 6, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 14, + 6, + 2 + ], + "texture": "#1" + } } }, { "name": "ktc_2", - "from": [9, 0, 2], - "to": [10, 0.5, 14], + "from": [ + 9, + 0, + 2 + ], + "to": [ + 10, + 0.5, + 14 + ], "faces": { - "north": {"uv": [10, 2, 9, 2.5], "texture": "#1"}, - "east": {"uv": [9.5, 2, 10, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 13.5, 10, 14], "texture": "#1"}, - "west": {"uv": [9, 2, 9.5, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 2, 10, 14], "texture": "#1"}, - "down": {"uv": [9, 14, 10, 2], "texture": "#1"} + "north": { + "uv": [ + 10, + 2, + 9, + 2.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 2, + 10, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 13.5, + 10, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 2, + 9.5, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 2, + 10, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 14, + 10, + 2 + ], + "texture": "#1" + } } }, { "name": "ktc_3", - "from": [5, 0, 2.5], - "to": [5.5, 0.5, 13.5], + "from": [ + 5, + 0, + 2.5 + ], + "to": [ + 5.5, + 0.5, + 13.5 + ], "faces": { - "north": {"uv": [5.5, 2.5, 5, 3], "texture": "#1"}, - "east": {"uv": [5, 2.5, 5.5, 13.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 13, 5.5, 13.5], "texture": "#1"}, - "west": {"uv": [5, 2.5, 5.5, 13.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 2.5, 5.5, 13.5], "texture": "#1"}, - "down": {"uv": [5, 13.5, 5.5, 2.5], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 2.5, + 5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2.5, + 5.5, + 13.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 13, + 5.5, + 13.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2.5, + 5.5, + 13.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 2.5, + 5.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 13.5, + 5.5, + 2.5 + ], + "texture": "#1" + } } }, { "name": "ktc_4", - "from": [10, 0, 2.5], - "to": [10.5, 0.5, 14], + "from": [ + 10, + 0, + 2.5 + ], + "to": [ + 10.5, + 0.5, + 14 + ], "faces": { - "north": {"uv": [10.5, 2.5, 10, 3], "texture": "#1"}, - "east": {"uv": [10, 2.5, 10.5, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 13.5, 10.5, 14], "texture": "#1"}, - "west": {"uv": [10, 2.5, 10.5, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 2.5, 10.5, 14], "texture": "#1"}, - "down": {"uv": [10, 14, 10.5, 2.5], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 2.5, + 10, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 2.5, + 10.5, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 13.5, + 10.5, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 2.5, + 10.5, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 2.5, + 10.5, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 14, + 10.5, + 2.5 + ], + "texture": "#1" + } } }, { "name": "ktc_5", - "from": [4.5, 0, 3], - "to": [5, 0.5, 13], + "from": [ + 4.5, + 0, + 3 + ], + "to": [ + 5, + 0.5, + 13 + ], "faces": { - "north": {"uv": [5, 3, 4.5, 3.5], "texture": "#1"}, - "east": {"uv": [4.5, 3, 5, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 12.5, 5, 13], "texture": "#1"}, - "west": {"uv": [4.5, 3, 5, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 3, 5, 13], "texture": "#1"}, - "down": {"uv": [4.5, 13, 5, 3], "texture": "#1"} + "north": { + "uv": [ + 5, + 3, + 4.5, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 3, + 5, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 12.5, + 5, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 3, + 5, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 3, + 5, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 13, + 5, + 3 + ], + "texture": "#1" + } } }, { "name": "ktc_6", - "from": [10.5, 0, 3], - "to": [11, 0.5, 13], + "from": [ + 10.5, + 0, + 3 + ], + "to": [ + 11, + 0.5, + 13 + ], "faces": { - "north": {"uv": [11, 3, 10.5, 3.5], "texture": "#1"}, - "east": {"uv": [10.5, 3, 11, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 12.5, 11, 13], "texture": "#1"}, - "west": {"uv": [10.5, 3, 11, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 3, 11, 13], "texture": "#1"}, - "down": {"uv": [10.5, 13, 11, 3], "texture": "#1"} + "north": { + "uv": [ + 11, + 3, + 10.5, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 12.5, + 11, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 3, + 11, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 3, + 11, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 13, + 11, + 3 + ], + "texture": "#1" + } } }, { "name": "ktc_7", - "from": [4, 0, 3.5], - "to": [4.5, 0.5, 12.5], + "from": [ + 4, + 0, + 3.5 + ], + "to": [ + 4.5, + 0.5, + 12.5 + ], "faces": { - "north": {"uv": [4.5, 3.5, 4, 4], "texture": "#1"}, - "east": {"uv": [4, 3.5, 4.5, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 12, 4.5, 12.5], "texture": "#1"}, - "west": {"uv": [4, 3.5, 4.5, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 3.5, 4.5, 12.5], "texture": "#1"}, - "down": {"uv": [4, 12.5, 4.5, 3.5], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 3.5, + 4, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 3.5, + 4.5, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 12, + 4.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 3.5, + 4.5, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 3.5, + 4.5, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 12.5, + 4.5, + 3.5 + ], + "texture": "#1" + } } }, { "name": "ktc_8", - "from": [11, 0, 3.5], - "to": [11.5, 0.5, 12.5], + "from": [ + 11, + 0, + 3.5 + ], + "to": [ + 11.5, + 0.5, + 12.5 + ], "faces": { - "north": {"uv": [11.5, 3.5, 11, 4], "texture": "#1"}, - "east": {"uv": [11, 3.5, 11.5, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 12, 11.5, 12.5], "texture": "#1"}, - "west": {"uv": [11, 3.5, 11.5, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 3.5, 11.5, 12.5], "texture": "#1"}, - "down": {"uv": [11, 12.5, 11.5, 3.5], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 3.5, + 11, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 3.5, + 11.5, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 12, + 11.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 3.5, + 11.5, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 3.5, + 11.5, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 12.5, + 11.5, + 3.5 + ], + "texture": "#1" + } } }, { "name": "ktc_9", - "from": [3.5, 0, 4.5], - "to": [4, 0.5, 11.5], + "from": [ + 3.5, + 0, + 4.5 + ], + "to": [ + 4, + 0.5, + 11.5 + ], "faces": { - "north": {"uv": [4, 4.5, 3.5, 5], "texture": "#1"}, - "east": {"uv": [3.5, 4.5, 4, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 11, 4, 11.5], "texture": "#1"}, - "west": {"uv": [3.5, 4.5, 4, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 4.5, 4, 11.5], "texture": "#1"}, - "down": {"uv": [3.5, 11.5, 4, 4.5], "texture": "#1"} + "north": { + "uv": [ + 4, + 4.5, + 3.5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 4.5, + 4, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 11, + 4, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 4.5, + 4, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 4.5, + 4, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 11.5, + 4, + 4.5 + ], + "texture": "#1" + } } }, { "name": "ktc_10", - "from": [11.5, 0, 4.5], - "to": [12, 0.5, 11.5], + "from": [ + 11.5, + 0, + 4.5 + ], + "to": [ + 12, + 0.5, + 11.5 + ], "faces": { - "north": {"uv": [12, 4.5, 11.5, 5], "texture": "#1"}, - "east": {"uv": [11.5, 4.5, 12, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 11, 12, 11.5], "texture": "#1"}, - "west": {"uv": [11.5, 4.5, 12, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 4.5, 12, 11.5], "texture": "#1"}, - "down": {"uv": [11.5, 11.5, 12, 4.5], "texture": "#1"} + "north": { + "uv": [ + 12, + 4.5, + 11.5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 4.5, + 12, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 11, + 12, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 4.5, + 12, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 12, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 11.5, + 12, + 4.5 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [103, -26, 6], - "translation": [0, 0.75, 2.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 103, + -26, + 6 + ], + "translation": [ + 0, + 0.75, + 2.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "thirdperson_lefthand": { - "rotation": [103, -26, 6], - "translation": [0, 0.75, 2.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 103, + -26, + 6 + ], + "translation": [ + 0, + 0.75, + 2.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "firstperson_righthand": { - "rotation": [72.75, 31, 6], - "translation": [1.25, 2.25, 2.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 72.75, + 31, + 6 + ], + "translation": [ + 1.25, + 2.25, + 2.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "firstperson_lefthand": { - "rotation": [72.75, 31, 6], - "translation": [1.25, 2.25, 2.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 72.75, + 31, + 6 + ], + "translation": [ + 1.25, + 2.25, + 2.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 5.25, 5.25], - "scale": [0.67, 0.67, 0.67] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 5.25, + 5.25 + ], + "scale": [ + 0.67, + 0.67, + 0.67 + ] }, "gui": { - "rotation": [90, 0, 0], - "scale": [1.2, 1.2, 1.2] + "rotation": [ + 90, + 0, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] }, "head": { - "rotation": [90, 0, -180], - "translation": [-0.25, 6.25, -12], - "scale": [0.7, 0.7, 0.7] + "rotation": [ + 90, + 0, + -180 + ], + "translation": [ + -0.25, + 6.25, + -12 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [0.25, 0, 9], - "scale": [1.25, 1.25, 1.25] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 0, + 9 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] } }, "groups": [ { "name": "ktc", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/coins/lbc.json b/pack/assets/minecraft/models/coins/lbc.json index 56837e42..54e00f4c 100644 --- a/pack/assets/minecraft/models/coins/lbc.json +++ b/pack/assets/minecraft/models/coins/lbc.json @@ -2,176 +2,808 @@ "__name": "ログインボーナスコイン", "credit": "Made with Blockbench", "textures": { - "2": "coins/fscoin_bronze", - "particle": "coins/fscoin_bronze" + "2": "item/coins/fscoin_bronze", + "particle": "item/coins/fscoin_bronze" }, "elements": [ { "name": "fscoin_bronze_0", - "from": [6, 0, 1], - "to": [10, 1, 15], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 1, + 15 + ], "faces": { - "north": {"uv": [10, 1, 6, 2], "texture": "#2"}, - "east": {"uv": [9, 1, 10, 15], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 14, 10, 15], "texture": "#2"}, - "west": {"uv": [6, 1, 7, 15], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 1, 10, 15], "texture": "#2"}, - "down": {"uv": [6, 15, 10, 1], "texture": "#2"} + "north": { + "uv": [ + 10, + 1, + 6, + 2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 1, + 10, + 15 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 14, + 10, + 15 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 1, + 7, + 15 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 1, + 10, + 15 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 15, + 10, + 1 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_1", - "from": [4, 0, 2], - "to": [6, 1, 14], + "from": [ + 4, + 0, + 2 + ], + "to": [ + 6, + 1, + 14 + ], "faces": { - "north": {"uv": [6, 2, 4, 3], "texture": "#2"}, - "east": {"uv": [5, 2, 6, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 13, 6, 14], "texture": "#2"}, - "west": {"uv": [4, 2, 5, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 2, 6, 14], "texture": "#2"}, - "down": {"uv": [4, 14, 6, 2], "texture": "#2"} + "north": { + "uv": [ + 6, + 2, + 4, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 2, + 6, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 13, + 6, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 2, + 5, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 2, + 6, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 14, + 6, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_2", - "from": [10, 0, 2], - "to": [12, 1, 14], + "from": [ + 10, + 0, + 2 + ], + "to": [ + 12, + 1, + 14 + ], "faces": { - "north": {"uv": [12, 2, 10, 3], "texture": "#2"}, - "east": {"uv": [11, 2, 12, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 13, 12, 14], "texture": "#2"}, - "west": {"uv": [10, 2, 11, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 2, 12, 14], "texture": "#2"}, - "down": {"uv": [10, 14, 12, 2], "texture": "#2"} + "north": { + "uv": [ + 12, + 2, + 10, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 2, + 12, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 13, + 12, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 2, + 11, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 2, + 12, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 14, + 12, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_3", - "from": [3, 0, 3], - "to": [4, 1, 13], + "from": [ + 3, + 0, + 3 + ], + "to": [ + 4, + 1, + 13 + ], "faces": { - "north": {"uv": [4, 3, 3, 4], "texture": "#2"}, - "east": {"uv": [3, 3, 4, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 12, 4, 13], "texture": "#2"}, - "west": {"uv": [3, 3, 4, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 3, 4, 13], "texture": "#2"}, - "down": {"uv": [3, 13, 4, 3], "texture": "#2"} + "north": { + "uv": [ + 4, + 3, + 3, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 12, + 4, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 13, + 4, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_4", - "from": [12, 0, 3], - "to": [13, 1, 13], + "from": [ + 12, + 0, + 3 + ], + "to": [ + 13, + 1, + 13 + ], "faces": { - "north": {"uv": [13, 3, 12, 4], "texture": "#2"}, - "east": {"uv": [12, 3, 13, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 12, 13, 13], "texture": "#2"}, - "west": {"uv": [12, 3, 13, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 3, 13, 13], "texture": "#2"}, - "down": {"uv": [12, 13, 13, 3], "texture": "#2"} + "north": { + "uv": [ + 13, + 3, + 12, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 12, + 13, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 13, + 13, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_5", - "from": [2, 0, 4], - "to": [3, 1, 12], + "from": [ + 2, + 0, + 4 + ], + "to": [ + 3, + 1, + 12 + ], "faces": { - "north": {"uv": [3, 4, 2, 5], "texture": "#2"}, - "east": {"uv": [2, 4, 3, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 11, 3, 12], "texture": "#2"}, - "west": {"uv": [2, 4, 3, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 4, 3, 12], "texture": "#2"}, - "down": {"uv": [2, 12, 3, 4], "texture": "#2"} + "north": { + "uv": [ + 3, + 4, + 2, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 11, + 3, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 12, + 3, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_6", - "from": [13, 0, 4], - "to": [14, 1, 12], + "from": [ + 13, + 0, + 4 + ], + "to": [ + 14, + 1, + 12 + ], "faces": { - "north": {"uv": [14, 4, 13, 5], "texture": "#2"}, - "east": {"uv": [13, 4, 14, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 11, 14, 12], "texture": "#2"}, - "west": {"uv": [13, 4, 14, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 4, 14, 12], "texture": "#2"}, - "down": {"uv": [13, 12, 14, 4], "texture": "#2"} + "north": { + "uv": [ + 14, + 4, + 13, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 11, + 14, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 12, + 14, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_7", - "from": [1, 0, 6], - "to": [2, 1, 10], + "from": [ + 1, + 0, + 6 + ], + "to": [ + 2, + 1, + 10 + ], "faces": { - "north": {"uv": [2, 6, 1, 7], "texture": "#2"}, - "east": {"uv": [1, 6, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9, 2, 10], "texture": "#2"}, - "west": {"uv": [1, 6, 2, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 6, 2, 10], "texture": "#2"}, - "down": {"uv": [1, 10, 2, 6], "texture": "#2"} + "north": { + "uv": [ + 2, + 6, + 1, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 10, + 2, + 6 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_8", - "from": [14, 0, 6], - "to": [15, 1, 10], + "from": [ + 14, + 0, + 6 + ], + "to": [ + 15, + 1, + 10 + ], "faces": { - "north": {"uv": [15, 6, 14, 7], "texture": "#2"}, - "east": {"uv": [14, 6, 15, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 9, 15, 10], "texture": "#2"}, - "west": {"uv": [14, 6, 15, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 6, 15, 10], "texture": "#2"}, - "down": {"uv": [14, 10, 15, 6], "texture": "#2"} + "north": { + "uv": [ + 15, + 6, + 14, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 9, + 15, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 10, + 15, + 6 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "thirdperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_righthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0.25, 8.5, 5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 8.5, + 5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-90, -180, 0], - "translation": [0.25, 8.5, -10.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0.25, + 8.5, + -10.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0, -11], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0, + 0, + -11 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "fscoin_bronze", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/coins/vbc.json b/pack/assets/minecraft/models/coins/vbc.json index b4044f3b..bba7aa30 100644 --- a/pack/assets/minecraft/models/coins/vbc.json +++ b/pack/assets/minecraft/models/coins/vbc.json @@ -2,176 +2,808 @@ "__name": "投票コイン", "credit": "Made with Blockbench", "textures": { - "2": "coins/fscoin_silver", - "particle": "coins/fscoin_silver" + "2": "item/coins/fscoin_silver", + "particle": "item/coins/fscoin_silver" }, "elements": [ { "name": "fscoin_bronze_0", - "from": [6, 0, 1], - "to": [10, 1, 15], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 1, + 15 + ], "faces": { - "north": {"uv": [10, 1, 6, 2], "texture": "#2"}, - "east": {"uv": [9, 1, 10, 15], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 14, 10, 15], "texture": "#2"}, - "west": {"uv": [6, 1, 7, 15], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 1, 10, 15], "texture": "#2"}, - "down": {"uv": [6, 15, 10, 1], "texture": "#2"} + "north": { + "uv": [ + 10, + 1, + 6, + 2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 1, + 10, + 15 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 14, + 10, + 15 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 1, + 7, + 15 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 1, + 10, + 15 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 15, + 10, + 1 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_1", - "from": [4, 0, 2], - "to": [6, 1, 14], + "from": [ + 4, + 0, + 2 + ], + "to": [ + 6, + 1, + 14 + ], "faces": { - "north": {"uv": [6, 2, 4, 3], "texture": "#2"}, - "east": {"uv": [5, 2, 6, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 13, 6, 14], "texture": "#2"}, - "west": {"uv": [4, 2, 5, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 2, 6, 14], "texture": "#2"}, - "down": {"uv": [4, 14, 6, 2], "texture": "#2"} + "north": { + "uv": [ + 6, + 2, + 4, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 2, + 6, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 13, + 6, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 2, + 5, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 2, + 6, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 14, + 6, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_2", - "from": [10, 0, 2], - "to": [12, 1, 14], + "from": [ + 10, + 0, + 2 + ], + "to": [ + 12, + 1, + 14 + ], "faces": { - "north": {"uv": [12, 2, 10, 3], "texture": "#2"}, - "east": {"uv": [11, 2, 12, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 13, 12, 14], "texture": "#2"}, - "west": {"uv": [10, 2, 11, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 2, 12, 14], "texture": "#2"}, - "down": {"uv": [10, 14, 12, 2], "texture": "#2"} + "north": { + "uv": [ + 12, + 2, + 10, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 2, + 12, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 13, + 12, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 2, + 11, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 2, + 12, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 14, + 12, + 2 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_3", - "from": [3, 0, 3], - "to": [4, 1, 13], + "from": [ + 3, + 0, + 3 + ], + "to": [ + 4, + 1, + 13 + ], "faces": { - "north": {"uv": [4, 3, 3, 4], "texture": "#2"}, - "east": {"uv": [3, 3, 4, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 12, 4, 13], "texture": "#2"}, - "west": {"uv": [3, 3, 4, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 3, 4, 13], "texture": "#2"}, - "down": {"uv": [3, 13, 4, 3], "texture": "#2"} + "north": { + "uv": [ + 4, + 3, + 3, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 12, + 4, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 3, + 4, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 13, + 4, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_4", - "from": [12, 0, 3], - "to": [13, 1, 13], + "from": [ + 12, + 0, + 3 + ], + "to": [ + 13, + 1, + 13 + ], "faces": { - "north": {"uv": [13, 3, 12, 4], "texture": "#2"}, - "east": {"uv": [12, 3, 13, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 12, 13, 13], "texture": "#2"}, - "west": {"uv": [12, 3, 13, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 3, 13, 13], "texture": "#2"}, - "down": {"uv": [12, 13, 13, 3], "texture": "#2"} + "north": { + "uv": [ + 13, + 3, + 12, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 12, + 13, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 3, + 13, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 13, + 13, + 3 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_5", - "from": [2, 0, 4], - "to": [3, 1, 12], + "from": [ + 2, + 0, + 4 + ], + "to": [ + 3, + 1, + 12 + ], "faces": { - "north": {"uv": [3, 4, 2, 5], "texture": "#2"}, - "east": {"uv": [2, 4, 3, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 11, 3, 12], "texture": "#2"}, - "west": {"uv": [2, 4, 3, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 4, 3, 12], "texture": "#2"}, - "down": {"uv": [2, 12, 3, 4], "texture": "#2"} + "north": { + "uv": [ + 3, + 4, + 2, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 11, + 3, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 4, + 3, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 12, + 3, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_6", - "from": [13, 0, 4], - "to": [14, 1, 12], + "from": [ + 13, + 0, + 4 + ], + "to": [ + 14, + 1, + 12 + ], "faces": { - "north": {"uv": [14, 4, 13, 5], "texture": "#2"}, - "east": {"uv": [13, 4, 14, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 11, 14, 12], "texture": "#2"}, - "west": {"uv": [13, 4, 14, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 4, 14, 12], "texture": "#2"}, - "down": {"uv": [13, 12, 14, 4], "texture": "#2"} + "north": { + "uv": [ + 14, + 4, + 13, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 11, + 14, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 4, + 14, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 12, + 14, + 4 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_7", - "from": [1, 0, 6], - "to": [2, 1, 10], + "from": [ + 1, + 0, + 6 + ], + "to": [ + 2, + 1, + 10 + ], "faces": { - "north": {"uv": [2, 6, 1, 7], "texture": "#2"}, - "east": {"uv": [1, 6, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9, 2, 10], "texture": "#2"}, - "west": {"uv": [1, 6, 2, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 6, 2, 10], "texture": "#2"}, - "down": {"uv": [1, 10, 2, 6], "texture": "#2"} + "north": { + "uv": [ + 2, + 6, + 1, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 6, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 10, + 2, + 6 + ], + "texture": "#2" + } } }, { "name": "fscoin_bronze_8", - "from": [14, 0, 6], - "to": [15, 1, 10], + "from": [ + 14, + 0, + 6 + ], + "to": [ + 15, + 1, + 10 + ], "faces": { - "north": {"uv": [15, 6, 14, 7], "texture": "#2"}, - "east": {"uv": [14, 6, 15, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 9, 15, 10], "texture": "#2"}, - "west": {"uv": [14, 6, 15, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 6, 15, 10], "texture": "#2"}, - "down": {"uv": [14, 10, 15, 6], "texture": "#2"} + "north": { + "uv": [ + 15, + 6, + 14, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 9, + 15, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 6, + 15, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 10, + 15, + 6 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "thirdperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [-0.75, 1.5, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + -0.75, + 1.5, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_righthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [1.5, 2.5, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 1.5, + 2.5, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0.25, 8.5, 5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 8.5, + 5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-90, -180, 0], - "translation": [0.25, 8.5, -10.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0.25, + 8.5, + -10.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0, -11], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0, + 0, + -11 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "fscoin_silver", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/antyobi.json b/pack/assets/minecraft/models/fish/antyobi.json index 709cdf22..6d0a9e47 100644 --- a/pack/assets/minecraft/models/fish/antyobi.json +++ b/pack/assets/minecraft/models/fish/antyobi.json @@ -2,410 +2,2104 @@ "__name": "アンチョビ", "credit": "Made with Blockbench", "textures": { - "1": "fish/antyobi", - "particle": "fish/antyobi" + "1": "item/fish/antyobi", + "particle": "item/fish/antyobi" }, "elements": [ { "name": "antyobi_0", - "from": [7.75, 0, 6], - "to": [8.25, 0.25, 9], + "from": [ + 7.75, + 0, + 6 + ], + "to": [ + 8.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.25, 6, 7.75, 6.25], "texture": "#1"}, - "east": {"uv": [8, 6, 8.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 8.75, 8.25, 9], "texture": "#1"}, - "west": {"uv": [7.75, 6, 8, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 6, 8.25, 9], "texture": "#1"}, - "down": {"uv": [7.75, 9, 8.25, 6], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 6, + 7.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 6, + 8.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 6, + 8, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 6, + 8.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 9, + 8.25, + 6 + ], + "texture": "#1" + } } }, { "name": "antyobi_1", - "from": [7.25, 0, 6.25], - "to": [7.75, 0.25, 9], + "from": [ + 7.25, + 0, + 6.25 + ], + "to": [ + 7.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.75, 6.25, 7.25, 6.5], "texture": "#1"}, - "east": {"uv": [7.5, 6.25, 7.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 8.75, 7.75, 9], "texture": "#1"}, - "west": {"uv": [7.25, 6.25, 7.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 6.25, 7.75, 9], "texture": "#1"}, - "down": {"uv": [7.25, 9, 7.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 6.25, + 7.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 6.25, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 8.75, + 7.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 6.25, + 7.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 6.25, + 7.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 9, + 7.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_2", - "from": [8.25, 0, 6.25], - "to": [8.5, 0.25, 9], + "from": [ + 8.25, + 0, + 6.25 + ], + "to": [ + 8.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.5, 6.25, 8.25, 6.5], "texture": "#1"}, - "east": {"uv": [8.25, 6.25, 8.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 8.75, 8.5, 9], "texture": "#1"}, - "west": {"uv": [8.25, 6.25, 8.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 6.25, 8.5, 9], "texture": "#1"}, - "down": {"uv": [8.25, 9, 8.5, 6.25], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 6.25, + 8.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6.25, + 8.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 8.75, + 8.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.25, + 8.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 6.25, + 8.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9, + 8.5, + 6.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_3", - "from": [14.5, 0, 6.25], - "to": [15, 0.25, 7.5], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15, 6.25, 14.5, 6.5], "texture": "#1"}, - "east": {"uv": [14.75, 6.25, 15, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 7.25, 15, 7.5], "texture": "#1"}, - "west": {"uv": [14.5, 6.25, 14.75, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.25, 15, 7.5], "texture": "#1"}, - "down": {"uv": [14.5, 7.5, 15, 6.25], "texture": "#1"} + "north": { + "uv": [ + 15, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 15, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 15, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 15, + 6.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_4", - "from": [7, 0, 6.5], - "to": [7.25, 0.25, 9], + "from": [ + 7, + 0, + 6.5 + ], + "to": [ + 7.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.25, 6.5, 7, 6.75], "texture": "#1"}, - "east": {"uv": [7, 6.5, 7.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 8.75, 7.25, 9], "texture": "#1"}, - "west": {"uv": [7, 6.5, 7.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 6.5, 7.25, 9], "texture": "#1"}, - "down": {"uv": [7, 9, 7.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 6.5, + 7, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 6.5, + 7.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6.5, + 7.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 6.5, + 7.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 9, + 7.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_5", - "from": [14, 0, 6.5], - "to": [14.5, 0.25, 9], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14, 6.75], "texture": "#1"}, - "east": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 8.75, 14.5, 9], "texture": "#1"}, - "west": {"uv": [14, 6.5, 14.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 6.5, 14.5, 9], "texture": "#1"}, - "down": {"uv": [14, 9, 14.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 6.5, + 14, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9, + 14.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_6", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 7.25], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#1"}, - "east": {"uv": [15, 6.5, 15.25, 7.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 7, 15.25, 7.25], "texture": "#1"}, - "west": {"uv": [15, 6.5, 15.25, 7.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 6.5, 15.25, 7.25], "texture": "#1"}, - "down": {"uv": [15, 7.25, 15.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 7.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 7.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 7.25, + 15.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_7", - "from": [1.5, 0, 6.75], - "to": [7, 0.25, 8.75], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 7, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7, 6.75, 1.5, 7], "texture": "#1"}, - "east": {"uv": [6.75, 6.75, 7, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8.5, 7, 8.75], "texture": "#1"}, - "west": {"uv": [1.5, 6.75, 1.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 6.75, 7, 8.75], "texture": "#1"}, - "down": {"uv": [1.5, 8.75, 7, 6.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 6.75, + 1.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 6.75, + 7, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 7, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 7, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 7, + 6.75 + ], + "texture": "#1" + } } }, { "name": "antyobi_8", - "from": [8.5, 0, 6.75], - "to": [9.25, 0.25, 9], + "from": [ + 8.5, + 0, + 6.75 + ], + "to": [ + 9.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.25, 6.75, 8.5, 7], "texture": "#1"}, - "east": {"uv": [9, 6.75, 9.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 8.75, 9.25, 9], "texture": "#1"}, - "west": {"uv": [8.5, 6.75, 8.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 6.75, 9.25, 9], "texture": "#1"}, - "down": {"uv": [8.5, 9, 9.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 6.75, + 8.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6.75, + 9.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8.75, + 9.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6.75, + 8.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 6.75, + 9.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 9, + 9.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "antyobi_9", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 8.75], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#1"}, - "east": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#1"}, - "west": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6.75, 14, 8.75], "texture": "#1"}, - "down": {"uv": [13.75, 8.75, 14, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14, + 6.75 + ], + "texture": "#1" + } } }, { "name": "antyobi_10", - "from": [1, 0, 7], - "to": [1.5, 0.25, 8.5], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.5, 7, 1, 7.25], "texture": "#1"}, - "east": {"uv": [1.25, 7, 1.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.25, 1.5, 8.5], "texture": "#1"}, - "west": {"uv": [1, 7, 1.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7, 1.5, 8.5], "texture": "#1"}, - "down": {"uv": [1, 8.5, 1.5, 7], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7, + 1, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7, + 1.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.5, + 7 + ], + "texture": "#1" + } } }, { "name": "antyobi_11", - "from": [9.25, 0, 7], - "to": [11.25, 0.25, 9], + "from": [ + 9.25, + 0, + 7 + ], + "to": [ + 11.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.25, 7, 9.25, 7.25], "texture": "#1"}, - "east": {"uv": [11, 7, 11.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 8.75, 11.25, 9], "texture": "#1"}, - "west": {"uv": [9.25, 7, 9.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 7, 11.25, 9], "texture": "#1"}, - "down": {"uv": [9.25, 9, 11.25, 7], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 7, + 9.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 7, + 11.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 8.75, + 11.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 7, + 9.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 7, + 11.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 9, + 11.25, + 7 + ], + "texture": "#1" + } } }, { "name": "antyobi_12", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 8.75], + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#1"}, - "east": {"uv": [13.5, 7, 13.75, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8.5, 13.75, 8.75], "texture": "#1"}, - "west": {"uv": [13.5, 7, 13.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 7, 13.75, 8.75], "texture": "#1"}, - "down": {"uv": [13.5, 8.75, 13.75, 7], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 13.75, + 7 + ], + "texture": "#1" + } } }, { "name": "antyobi_13", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 8.25], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#1"}, - "east": {"uv": [0.75, 7.25, 1, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#1"}, - "west": {"uv": [0.75, 7.25, 1, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.25, 1, 8.25], "texture": "#1"}, - "down": {"uv": [0.75, 8.25, 1, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 7.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_14", - "from": [11.25, 0, 7.25], - "to": [13.5, 0.25, 8.75], + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 7.25, 11.25, 7.5], "texture": "#1"}, - "east": {"uv": [13.25, 7.25, 13.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8.5, 13.5, 8.75], "texture": "#1"}, - "west": {"uv": [11.25, 7.25, 11.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 7.25, 13.5, 8.75], "texture": "#1"}, - "down": {"uv": [11.25, 8.75, 13.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 7.25, + 11.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 13.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_15", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 8], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#1"}, - "east": {"uv": [0.5, 7.5, 0.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#1"}, - "west": {"uv": [0.5, 7.5, 0.75, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.5, 0.75, 8], "texture": "#1"}, - "down": {"uv": [0.5, 8, 0.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_16", - "from": [14.5, 0, 7.5], - "to": [14.75, 0.25, 7.75], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#1"}, - "east": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#1"}, - "west": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#1"}, - "down": {"uv": [14.5, 7.75, 14.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 7.75, + 14.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_17", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#1"}, - "east": {"uv": [14.5, 8.25, 14.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#1"}, - "west": {"uv": [14.5, 8.25, 14.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 8.25, 14.75, 9.5], "texture": "#1"}, - "down": {"uv": [14.5, 9.5, 14.75, 8.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 8.25 + ], + "texture": "#1" + } } }, { "name": "antyobi_18", - "from": [1.25, 0, 8.5], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 8.5 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 8.5, 1.25, 8.75], "texture": "#1"}, - "east": {"uv": [1.25, 8.5, 1.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#1"}, - "west": {"uv": [1.25, 8.5, 1.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#1"}, - "down": {"uv": [1.25, 8.75, 1.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 8.5, + 1.25, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_19", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 9.25], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#1"}, - "east": {"uv": [14.75, 8.5, 15, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#1"}, - "west": {"uv": [14.75, 8.5, 15, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 8.5, 15, 9.25], "texture": "#1"}, - "down": {"uv": [14.75, 9.25, 15, 8.5], "texture": "#1"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 8.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_20", - "from": [1.75, 0, 8.75], - "to": [7, 0.25, 9], + "from": [ + 1.75, + 0, + 8.75 + ], + "to": [ + 7, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7, 8.75, 1.75, 9], "texture": "#1"}, - "east": {"uv": [6.75, 8.75, 7, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 8.75, 7, 9], "texture": "#1"}, - "west": {"uv": [1.75, 8.75, 2, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 8.75, 7, 9], "texture": "#1"}, - "down": {"uv": [1.75, 9, 7, 8.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 8.75, + 1.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 7, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 8.75, + 7, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9, + 7, + 8.75 + ], + "texture": "#1" + } } }, { "name": "antyobi_21", - "from": [11.25, 0, 8.75], - "to": [11.75, 0.25, 9], + "from": [ + 11.25, + 0, + 8.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 8.75, 11.25, 9], "texture": "#1"}, - "east": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8.75, 11.75, 9], "texture": "#1"}, - "west": {"uv": [11.25, 8.75, 11.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 8.75, 11.75, 9], "texture": "#1"}, - "down": {"uv": [11.25, 9, 11.75, 8.75], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 8.75, + 11.25, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8.75, + 11.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 8.75, + 11.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 9, + 11.75, + 8.75 + ], + "texture": "#1" + } } }, { "name": "antyobi_22", - "from": [9.5, 0, 9], - "to": [11, 0.25, 9.5], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 11, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11, 9, 9.5, 9.25], "texture": "#1"}, - "east": {"uv": [10.75, 9, 11, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9.25, 11, 9.5], "texture": "#1"}, - "west": {"uv": [9.5, 9, 9.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 9, 11, 9.5], "texture": "#1"}, - "down": {"uv": [9.5, 9.5, 11, 9], "texture": "#1"} + "north": { + "uv": [ + 11, + 9, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 9, + 11, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 11, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 9, + 11, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 11, + 9 + ], + "texture": "#1" + } } }, { "name": "antyobi_23", - "from": [11, 0, 9], - "to": [11.5, 0.25, 9.25], + "from": [ + 11, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 9, 11, 9.25], "texture": "#1"}, - "east": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 9, 11.5, 9.25], "texture": "#1"}, - "west": {"uv": [11, 9, 11.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 9, 11.5, 9.25], "texture": "#1"}, - "down": {"uv": [11, 9.25, 11.5, 9], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 9, + 11, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 9, + 11.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 9, + 11.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 9.25, + 11.5, + 9 + ], + "texture": "#1" + } } }, { "name": "antyobi_24", - "from": [14.25, 0, 9], - "to": [14.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 9 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 9, 14.25, 9.25], "texture": "#1"}, - "east": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#1"}, - "west": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#1"}, - "down": {"uv": [14.25, 9.25, 14.5, 9], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 9, + 14.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9 + ], + "texture": "#1" + } } }, { "name": "antyobi_25", - "from": [9.75, 0, 9.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 9.75, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 9.5, 9.75, 9.75], "texture": "#1"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9.5, 10.75, 9.75], "texture": "#1"}, - "west": {"uv": [9.75, 9.5, 10, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 9.5, 10.75, 9.75], "texture": "#1"}, - "down": {"uv": [9.75, 9.75, 10.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.5, + 9.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "antyobi_26", - "from": [10, 0, 9.75], - "to": [10.5, 0.25, 10], + "from": [ + 10, + 0, + 9.75 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 9.75, 10, 10], "texture": "#1"}, - "east": {"uv": [10.25, 9.75, 10.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 9.75, 10.5, 10], "texture": "#1"}, - "west": {"uv": [10, 9.75, 10.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 9.75, 10.5, 10], "texture": "#1"}, - "down": {"uv": [10, 10, 10.5, 9.75], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 9.75, + 10, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 10, + 10.5, + 9.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 6, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 6, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "antyobi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26 + ] } ] -} +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/arowana.json b/pack/assets/minecraft/models/fish/arowana.json index c46cf0a8..d0bf6c51 100644 --- a/pack/assets/minecraft/models/fish/arowana.json +++ b/pack/assets/minecraft/models/fish/arowana.json @@ -2,552 +2,2895 @@ "__name": "アロワナ", "credit": "Made with Blockbench", "textures": { - "0": "fish/arowana", - "particle": "fish/arowana" + "0": "item/fish/arowana", + "particle": "item/fish/arowana" }, "elements": [ { "name": "arowana_0", - "from": [11.75, 0, 5.5], - "to": [13, 0.25, 8.25], + "from": [ + 11.75, + 0, + 5.5 + ], + "to": [ + 13, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13, 5.5, 11.75, 5.75], "texture": "#0"}, - "east": {"uv": [12.75, 5.5, 13, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8, 13, 8.25], "texture": "#0"}, - "west": {"uv": [11.75, 5.5, 12, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 5.5, 13, 8.25], "texture": "#0"}, - "down": {"uv": [11.75, 8.25, 13, 5.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 5.5, + 11.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 5.5, + 13, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8, + 13, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 5.5, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 5.5, + 13, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 13, + 5.5 + ], + "texture": "#0" + } } }, { "name": "arowana_1", - "from": [6, 0, 5.75], - "to": [11.75, 0.25, 9.75], + "from": [ + 6, + 0, + 5.75 + ], + "to": [ + 11.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.75, 5.75, 6, 6], "texture": "#0"}, - "east": {"uv": [11.5, 5.75, 11.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.5, 11.75, 9.75], "texture": "#0"}, - "west": {"uv": [6, 5.75, 6.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.75, 11.75, 9.75], "texture": "#0"}, - "down": {"uv": [6, 9.75, 11.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 5.75, + 11.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.5, + 11.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.75, + 6.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.75, + 11.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.75, + 11.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "arowana_2", - "from": [13, 0, 5.75], - "to": [13.25, 0.25, 8.75], + "from": [ + 13, + 0, + 5.75 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 5.75, 13, 6], "texture": "#0"}, - "east": {"uv": [13, 5.75, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 5.75, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 5.75, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 13.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 5.75, + 13, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 5.75, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5.75, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 5.75, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "arowana_3", - "from": [4, 0, 6], - "to": [6, 0.25, 9.5], + "from": [ + 4, + 0, + 6 + ], + "to": [ + 6, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [6, 6, 4, 6.25], "texture": "#0"}, - "east": {"uv": [5.75, 6, 6, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.25, 6, 9.5], "texture": "#0"}, - "west": {"uv": [4, 6, 4.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6, 6, 9.5], "texture": "#0"}, - "down": {"uv": [4, 9.5, 6, 6], "texture": "#0"} + "north": { + "uv": [ + 6, + 6, + 4, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6, + 6, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.5, + 6, + 6 + ], + "texture": "#0" + } } }, { "name": "arowana_4", - "from": [13.25, 0, 6], - "to": [13.5, 0.25, 9], + "from": [ + 13.25, + 0, + 6 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 6, 13.25, 6.25], "texture": "#0"}, - "east": {"uv": [13.25, 6, 13.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 13.5, 9], "texture": "#0"}, - "west": {"uv": [13.25, 6, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6, 13.5, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 13.5, 6], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6, + 13.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 13.5, + 6 + ], + "texture": "#0" + } } }, { "name": "arowana_5", - "from": [3.25, 0, 6.25], - "to": [4, 0.25, 9.5], + "from": [ + 3.25, + 0, + 6.25 + ], + "to": [ + 4, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4, 6.25, 3.25, 6.5], "texture": "#0"}, - "east": {"uv": [3.75, 6.25, 4, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9.25, 4, 9.5], "texture": "#0"}, - "west": {"uv": [3.25, 6.25, 3.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.25, 4, 9.5], "texture": "#0"}, - "down": {"uv": [3.25, 9.5, 4, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4, + 6.25, + 3.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6.25, + 4, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.25, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 4, + 6.25 + ], + "texture": "#0" + } } }, { "name": "arowana_6", - "from": [14.25, 0, 6.25], - "to": [15.25, 0.25, 9], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.25, 6.25, 14.25, 6.5], "texture": "#0"}, - "east": {"uv": [15, 6.25, 15.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.75, 15.25, 9], "texture": "#0"}, - "west": {"uv": [14.25, 6.25, 14.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.25, 15.25, 9], "texture": "#0"}, - "down": {"uv": [14.25, 9, 15.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.25, + 14.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 15.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9, + 15.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "arowana_7", - "from": [2.5, 0, 6.5], - "to": [3.25, 0.25, 9.25], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 6.5, 2.5, 6.75], "texture": "#0"}, - "east": {"uv": [3, 6.5, 3.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9, 3.25, 9.25], "texture": "#0"}, - "west": {"uv": [2.5, 6.5, 2.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.5, 3.25, 9.25], "texture": "#0"}, - "down": {"uv": [2.5, 9.25, 3.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.5, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 3.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "arowana_8", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#0"}, - "east": {"uv": [14, 6.5, 14.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#0"}, - "west": {"uv": [14, 6.5, 14.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.5, 14.25, 9.5], "texture": "#0"}, - "down": {"uv": [14, 9.5, 14.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "arowana_9", - "from": [15.25, 0, 6.5], - "to": [15.5, 0.25, 8.75], + "from": [ + 15.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.5, 6.5, 15.25, 6.75], "texture": "#0"}, - "east": {"uv": [15.25, 6.5, 15.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#0"}, - "west": {"uv": [15.25, 6.5, 15.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.5, 15.5, 8.75], "texture": "#0"}, - "down": {"uv": [15.25, 8.75, 15.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.5, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "arowana_10", - "from": [1, 0, 6.75], - "to": [2.5, 0.25, 8.75], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2.5, 6.75, 1, 7], "texture": "#0"}, - "east": {"uv": [2.25, 6.75, 2.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.5, 2.5, 8.75], "texture": "#0"}, - "west": {"uv": [1, 6.75, 1.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 6.75, 2.5, 8.75], "texture": "#0"}, - "down": {"uv": [1, 8.75, 2.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6.75, + 1, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 6.75, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.75, + 2.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "arowana_11", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#0"}, - "east": {"uv": [13.75, 6.75, 14, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#0"}, - "west": {"uv": [13.75, 6.75, 14, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.75, 14, 9.5], "texture": "#0"}, - "down": {"uv": [13.75, 9.5, 14, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 6.75 + ], + "texture": "#0" + } } }, { "name": "arowana_12", - "from": [15.5, 0, 6.75], - "to": [15.75, 0.25, 8.5], + "from": [ + 15.5, + 0, + 6.75 + ], + "to": [ + 15.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.75, 6.75, 15.5, 7], "texture": "#0"}, - "east": {"uv": [15.5, 6.75, 15.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 8.25, 15.75, 8.5], "texture": "#0"}, - "west": {"uv": [15.5, 6.75, 15.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 6.75, 15.75, 8.5], "texture": "#0"}, - "down": {"uv": [15.5, 8.5, 15.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 6.75, + 15.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 6.75, + 15.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 8.25, + 15.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 6.75, + 15.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 6.75, + 15.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 8.5, + 15.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "arowana_13", - "from": [0.75, 0, 7], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#0"}, - "east": {"uv": [0.75, 7, 1, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 7, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7, 1, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 1, 7], "texture": "#0"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 7 + ], + "texture": "#0" + } } }, { "name": "arowana_14", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#0"}, - "east": {"uv": [13.5, 7, 13.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 13.75, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 7, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7, 13.75, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 13.75, 7], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 13.75, + 7 + ], + "texture": "#0" + } } }, { "name": "arowana_15", - "from": [15.75, 0, 7], - "to": [16, 0.25, 8], + "from": [ + 15.75, + 0, + 7 + ], + "to": [ + 16, + 0.25, + 8 + ], "faces": { - "north": {"uv": [16, 7, 15.75, 7.25], "texture": "#0"}, - "east": {"uv": [15.75, 7, 16, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.75, 7.75, 16, 8], "texture": "#0"}, - "west": {"uv": [15.75, 7, 16, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.75, 7, 16, 8], "texture": "#0"}, - "down": {"uv": [15.75, 8, 16, 7], "texture": "#0"} + "north": { + "uv": [ + 16, + 7, + 15.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.75, + 7, + 16, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.75, + 7.75, + 16, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.75, + 7, + 16, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.75, + 7, + 16, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.75, + 8, + 16, + 7 + ], + "texture": "#0" + } } }, { "name": "arowana_16", - "from": [0.25, 0, 7.25], - "to": [0.75, 0.25, 8], + "from": [ + 0.25, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.25, 7.5], "texture": "#0"}, - "east": {"uv": [0.5, 7.25, 0.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7.75, 0.75, 8], "texture": "#0"}, - "west": {"uv": [0.25, 7.25, 0.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.25, 0.75, 8], "texture": "#0"}, - "down": {"uv": [0.25, 8, 0.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.25, + 0.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.25, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 8, + 0.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "arowana_17", - "from": [0, 0, 7.5], - "to": [0.25, 0.25, 7.75], + "from": [ + 0, + 0, + 7.5 + ], + "to": [ + 0.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.25, 7.5, 0, 7.75], "texture": "#0"}, - "east": {"uv": [0, 7.5, 0.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 7.5, 0.25, 7.75], "texture": "#0"}, - "west": {"uv": [0, 7.5, 0.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 7.5, 0.25, 7.75], "texture": "#0"}, - "down": {"uv": [0, 7.75, 0.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 0.25, + 7.5, + 0, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 7.75, + 0.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "arowana_18", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.25], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "down": {"uv": [0.5, 8.25, 0.75, 8], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8 + ], + "texture": "#0" + } } }, { "name": "arowana_19", - "from": [11.75, 0, 8.25], - "to": [12.75, 0.25, 10.25], + "from": [ + 11.75, + 0, + 8.25 + ], + "to": [ + 12.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.75, 8.25, 11.75, 8.5], "texture": "#0"}, - "east": {"uv": [12.5, 8.25, 12.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 10, 12.75, 10.25], "texture": "#0"}, - "west": {"uv": [11.75, 8.25, 12, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.25, 12.75, 10.25], "texture": "#0"}, - "down": {"uv": [11.75, 10.25, 12.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 8.25, + 11.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.25, + 12.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 10, + 12.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.25, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.25, + 12.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "arowana_20", - "from": [1.5, 0, 8.75], - "to": [2.5, 0.25, 9], + "from": [ + 1.5, + 0, + 8.75 + ], + "to": [ + 2.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.5, 8.75, 1.5, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.75, 2.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 2.5, 9], "texture": "#0"}, - "west": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.75, 2.5, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 2.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 2.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "arowana_21", - "from": [12.75, 0, 8.75], - "to": [13, 0.25, 10], + "from": [ + 12.75, + 0, + 8.75 + ], + "to": [ + 13, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13, 8.75, 12.75, 9], "texture": "#0"}, - "east": {"uv": [12.75, 8.75, 13, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 9.75, 13, 10], "texture": "#0"}, - "west": {"uv": [12.75, 8.75, 13, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.75, 13, 10], "texture": "#0"}, - "down": {"uv": [12.75, 10, 13, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.75, + 13, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 9.75, + 13, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.75, + 13, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.75, + 13, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 10, + 13, + 8.75 + ], + "texture": "#0" + } } }, { "name": "arowana_22", - "from": [2, 0, 9], - "to": [2.5, 0.25, 9.25], + "from": [ + 2, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 9, 2, 9.25], "texture": "#0"}, - "east": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9, 2.5, 9.25], "texture": "#0"}, - "west": {"uv": [2, 9, 2.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9, 2.5, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.25, 2.5, 9], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.5, + 9 + ], + "texture": "#0" + } } }, { "name": "arowana_23", - "from": [13, 0, 9], - "to": [13.25, 0.25, 9.75], + "from": [ + 13, + 0, + 9 + ], + "to": [ + 13.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.25, 9, 13, 9.25], "texture": "#0"}, - "east": {"uv": [13, 9, 13.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9.5, 13.25, 9.75], "texture": "#0"}, - "west": {"uv": [13, 9, 13.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 9, 13.25, 9.75], "texture": "#0"}, - "down": {"uv": [13, 9.75, 13.25, 9], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 9, + 13.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9.5, + 13.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 9, + 13.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 9, + 13.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.75, + 13.25, + 9 + ], + "texture": "#0" + } } }, { "name": "arowana_24", - "from": [14.25, 0, 9], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.25, + 0, + 9 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 9, 14.25, 9.25], "texture": "#0"}, - "east": {"uv": [14.5, 9, 14.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.25, 14.75, 9.5], "texture": "#0"}, - "west": {"uv": [14.25, 9, 14.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 9, 14.75, 9.5], "texture": "#0"}, - "down": {"uv": [14.25, 9.5, 14.75, 9], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 9, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 9, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 9, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 9, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.75, + 9 + ], + "texture": "#0" + } } }, { "name": "arowana_25", - "from": [14.75, 0, 9], - "to": [15, 0.25, 9.25], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#0"}, - "east": {"uv": [14.75, 9, 15, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#0"}, - "west": {"uv": [14.75, 9, 15, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9, 15, 9.25], "texture": "#0"}, - "down": {"uv": [14.75, 9.25, 15, 9], "texture": "#0"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 9 + ], + "texture": "#0" + } } }, { "name": "arowana_26", - "from": [3, 0, 9.25], - "to": [3.25, 0.25, 9.5], + "from": [ + 3, + 0, + 9.25 + ], + "to": [ + 3.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.25, 9.25, 3, 9.5], "texture": "#0"}, - "east": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.25, 3.25, 9.5], "texture": "#0"}, - "west": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9.25, 3.25, 9.5], "texture": "#0"}, - "down": {"uv": [3, 9.5, 3.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.5, + 3.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "arowana_27", - "from": [4.25, 0, 9.5], - "to": [6, 0.25, 9.75], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 6, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6, 9.5, 4.25, 9.75], "texture": "#0"}, - "east": {"uv": [5.75, 9.5, 6, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.5, 6, 9.75], "texture": "#0"}, - "west": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.5, 6, 9.75], "texture": "#0"}, - "down": {"uv": [4.25, 9.75, 6, 9.5], "texture": "#0"} + "north": { + "uv": [ + 6, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 6, + 9.5 + ], + "texture": "#0" + } } }, { "name": "arowana_28", - "from": [4.5, 0, 9.75], - "to": [6.25, 0.25, 10], + "from": [ + 4.5, + 0, + 9.75 + ], + "to": [ + 6.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.25, 9.75, 4.5, 10], "texture": "#0"}, - "east": {"uv": [6, 9.75, 6.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.75, 6.25, 10], "texture": "#0"}, - "west": {"uv": [4.5, 9.75, 4.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9.75, 6.25, 10], "texture": "#0"}, - "down": {"uv": [4.5, 10, 6.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 6.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.75, + 6.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10, + 6.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "arowana_29", - "from": [7, 0, 9.75], - "to": [8.75, 0.25, 10], + "from": [ + 7, + 0, + 9.75 + ], + "to": [ + 8.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.75, 9.75, 7, 10], "texture": "#0"}, - "east": {"uv": [8.5, 9.75, 8.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.75, 8.75, 10], "texture": "#0"}, - "west": {"uv": [7, 9.75, 7.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 9.75, 8.75, 10], "texture": "#0"}, - "down": {"uv": [7, 10, 8.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10, + 8.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "arowana_30", - "from": [9.25, 0, 9.75], - "to": [11.75, 0.25, 10], + "from": [ + 9.25, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.75, 9.75, 9.25, 10], "texture": "#0"}, - "east": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.75, 11.75, 10], "texture": "#0"}, - "west": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9.75, 11.75, 10], "texture": "#0"}, - "down": {"uv": [9.25, 10, 11.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 11.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9.75, + 11.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10, + 11.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "arowana_31", - "from": [4.75, 0, 10], - "to": [6.5, 0.25, 10.25], + "from": [ + 4.75, + 0, + 10 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 10, 4.75, 10.25], "texture": "#0"}, - "east": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [4.75, 10, 5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [4.75, 10.25, 6.5, 10], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 6.5, + 10 + ], + "texture": "#0" + } } }, { "name": "arowana_32", - "from": [7.25, 0, 10], - "to": [9, 0.25, 10.25], + "from": [ + 7.25, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 10, 7.25, 10.25], "texture": "#0"}, - "east": {"uv": [8.75, 10, 9, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10, 9, 10.25], "texture": "#0"}, - "west": {"uv": [7.25, 10, 7.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10, 9, 10.25], "texture": "#0"}, - "down": {"uv": [7.25, 10.25, 9, 10], "texture": "#0"} + "north": { + "uv": [ + 9, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10.25, + 9, + 10 + ], + "texture": "#0" + } } }, { "name": "arowana_33", - "from": [9.5, 0, 10], - "to": [11.75, 0.25, 10.25], + "from": [ + 9.5, + 0, + 10 + ], + "to": [ + 11.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.75, 10, 9.5, 10.25], "texture": "#0"}, - "east": {"uv": [11.5, 10, 11.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10, 11.75, 10.25], "texture": "#0"}, - "west": {"uv": [9.5, 10, 9.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10, 11.75, 10.25], "texture": "#0"}, - "down": {"uv": [9.5, 10.25, 11.75, 10], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 11.75, + 10 + ], + "texture": "#0" + } } }, { "name": "arowana_34", - "from": [5.25, 0, 10.25], - "to": [6.25, 0.25, 10.5], + "from": [ + 5.25, + 0, + 10.25 + ], + "to": [ + 6.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.25, 10.25, 5.25, 10.5], "texture": "#0"}, - "east": {"uv": [6, 10.25, 6.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.25, 6.25, 10.5], "texture": "#0"}, - "west": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10.25, 6.25, 10.5], "texture": "#0"}, - "down": {"uv": [5.25, 10.5, 6.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 6.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "arowana_35", - "from": [7.75, 0, 10.25], - "to": [8.75, 0.25, 10.5], + "from": [ + 7.75, + 0, + 10.25 + ], + "to": [ + 8.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.75, 10.25, 7.75, 10.5], "texture": "#0"}, - "east": {"uv": [8.5, 10.25, 8.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.25, 8.75, 10.5], "texture": "#0"}, - "west": {"uv": [7.75, 10.25, 8, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10.25, 8.75, 10.5], "texture": "#0"}, - "down": {"uv": [7.75, 10.5, 8.75, 10.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10.25, + 8.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "arowana_36", - "from": [9.75, 0, 10.25], - "to": [12.25, 0.25, 10.5], + "from": [ + 9.75, + 0, + 10.25 + ], + "to": [ + 12.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.25, 10.25, 9.75, 10.5], "texture": "#0"}, - "east": {"uv": [12, 10.25, 12.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.25, 12.25, 10.5], "texture": "#0"}, - "west": {"uv": [9.75, 10.25, 10, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10.25, 12.25, 10.5], "texture": "#0"}, - "down": {"uv": [9.75, 10.5, 12.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 10.25, + 12.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.25, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10.25, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.5, + 12.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "arowana_37", - "from": [10, 0, 10.5], - "to": [12, 0.25, 10.75], + "from": [ + 10, + 0, + 10.5 + ], + "to": [ + 12, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12, 10.5, 10, 10.75], "texture": "#0"}, - "east": {"uv": [11.75, 10.5, 12, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.5, 12, 10.75], "texture": "#0"}, - "west": {"uv": [10, 10.5, 10.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10.5, 12, 10.75], "texture": "#0"}, - "down": {"uv": [10, 10.75, 12, 10.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 10.5, + 12, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.5, + 12, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.5, + 10.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10.5, + 12, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.75, + 12, + 10.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 2.25, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.25, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 2.25, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.25, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 2.25, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.25, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 2.25, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.25, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 2.25, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.25, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.5, 14.25], - "scale": [1.79, 1.79, 1.79] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.5, + 14.25 + ], + "scale": [ + 1.79, + 1.79, + 1.79 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "arowana", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ayu.json b/pack/assets/minecraft/models/fish/ayu.json index 102997c6..5c50cbc6 100644 --- a/pack/assets/minecraft/models/fish/ayu.json +++ b/pack/assets/minecraft/models/fish/ayu.json @@ -2,630 +2,3327 @@ "__name": "アユ", "credit": "Made with Blockbench", "textures": { - "3": "fish/ayu" + "3": "item/fish/ayu" }, "elements": [ { "name": "ayu_0", - "from": [7.5, 0, 5.25], - "to": [8.75, 0.25, 10], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.75, 5.25, 7.5, 5.5], "texture": "#3"}, - "east": {"uv": [8.5, 5.25, 8.75, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.5, 9.75, 8.75, 10], "texture": "#3"}, - "west": {"uv": [7.5, 5.25, 7.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.5, 5.25, 8.75, 10], "texture": "#3"}, - "down": {"uv": [7.5, 10, 8.75, 5.25], "texture": "#3"} + "north": { + "uv": [ + 8.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 8.75, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 8.75, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.5, + 10, + 8.75, + 5.25 + ], + "texture": "#3" + } } }, { "name": "ayu_1", - "from": [6.75, 0, 5.5], - "to": [7.5, 0.25, 9.75], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.5, 5.5, 6.75, 5.75], "texture": "#3"}, - "east": {"uv": [7.25, 5.5, 7.5, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.75, 9.5, 7.5, 9.75], "texture": "#3"}, - "west": {"uv": [6.75, 5.5, 7, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.75, 5.5, 7.5, 9.75], "texture": "#3"}, - "down": {"uv": [6.75, 9.75, 7.5, 5.5], "texture": "#3"} + "north": { + "uv": [ + 7.5, + 5.5, + 6.75, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.25, + 5.5, + 7.5, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7.5, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7.5, + 5.5 + ], + "texture": "#3" + } } }, { "name": "ayu_2", - "from": [8.75, 0, 5.5], - "to": [9, 0.25, 9], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9, 5.5, 8.75, 5.75], "texture": "#3"}, - "east": {"uv": [8.75, 5.5, 9, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.75, 8.75, 9, 9], "texture": "#3"}, - "west": {"uv": [8.75, 5.5, 9, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.75, 5.5, 9, 9], "texture": "#3"}, - "down": {"uv": [8.75, 9, 9, 5.5], "texture": "#3"} + "north": { + "uv": [ + 9, + 5.5, + 8.75, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.75, + 8.75, + 9, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.75, + 9, + 9, + 5.5 + ], + "texture": "#3" + } } }, { "name": "ayu_3", - "from": [14.5, 0, 5.5], - "to": [15.25, 0.25, 7], + "from": [ + 14.5, + 0, + 5.5 + ], + "to": [ + 15.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.25, 5.5, 14.5, 5.75], "texture": "#3"}, - "east": {"uv": [15, 5.5, 15.25, 7], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 6.75, 15.25, 7], "texture": "#3"}, - "west": {"uv": [14.5, 5.5, 14.75, 7], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 5.5, 15.25, 7], "texture": "#3"}, - "down": {"uv": [14.5, 7, 15.25, 5.5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 5.5, + 14.5, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 5.5, + 15.25, + 7 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 6.75, + 15.25, + 7 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 5.5, + 14.75, + 7 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 5.5, + 15.25, + 7 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 7, + 15.25, + 5.5 + ], + "texture": "#3" + } } }, { "name": "ayu_4", - "from": [15.25, 0, 5.5], - "to": [15.75, 0.25, 5.75], + "from": [ + 15.25, + 0, + 5.5 + ], + "to": [ + 15.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [15.75, 5.5, 15.25, 5.75], "texture": "#3"}, - "east": {"uv": [15.5, 5.5, 15.75, 5.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 5.5, 15.75, 5.75], "texture": "#3"}, - "west": {"uv": [15.25, 5.5, 15.5, 5.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 5.5, 15.75, 5.75], "texture": "#3"}, - "down": {"uv": [15.25, 5.75, 15.75, 5.5], "texture": "#3"} + "north": { + "uv": [ + 15.75, + 5.5, + 15.25, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.5, + 5.5, + 15.75, + 5.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 5.5, + 15.75, + 5.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 5.5, + 15.5, + 5.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 5.5, + 15.75, + 5.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 5.75, + 15.75, + 5.5 + ], + "texture": "#3" + } } }, { "name": "ayu_5", - "from": [4, 0, 5.75], - "to": [6.75, 0.25, 9.5], + "from": [ + 4, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [6.75, 5.75, 4, 6], "texture": "#3"}, - "east": {"uv": [6.5, 5.75, 6.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4, 9.25, 6.75, 9.5], "texture": "#3"}, - "west": {"uv": [4, 5.75, 4.25, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4, 5.75, 6.75, 9.5], "texture": "#3"}, - "down": {"uv": [4, 9.5, 6.75, 5.75], "texture": "#3"} + "north": { + "uv": [ + 6.75, + 5.75, + 4, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4, + 9.25, + 6.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4, + 5.75, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4, + 5.75, + 6.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4, + 9.5, + 6.75, + 5.75 + ], + "texture": "#3" + } } }, { "name": "ayu_6", - "from": [14, 0, 5.75], - "to": [14.5, 0.25, 8.5], + "from": [ + 14, + 0, + 5.75 + ], + "to": [ + 14.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.5, 5.75, 14, 6], "texture": "#3"}, - "east": {"uv": [14.25, 5.75, 14.5, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14, 8.25, 14.5, 8.5], "texture": "#3"}, - "west": {"uv": [14, 5.75, 14.25, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14, 5.75, 14.5, 8.5], "texture": "#3"}, - "down": {"uv": [14, 8.5, 14.5, 5.75], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 5.75, + 14, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 5.75, + 14.5, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14, + 8.25, + 14.5, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14, + 5.75, + 14.25, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14, + 5.75, + 14.5, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14, + 8.5, + 14.5, + 5.75 + ], + "texture": "#3" + } } }, { "name": "ayu_7", - "from": [15.75, 0, 5.75], - "to": [16, 0.25, 6], + "from": [ + 15.75, + 0, + 5.75 + ], + "to": [ + 16, + 0.25, + 6 + ], "faces": { - "north": {"uv": [16, 5.75, 15.75, 6], "texture": "#3"}, - "east": {"uv": [15.75, 5.75, 16, 6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.75, 5.75, 16, 6], "texture": "#3"}, - "west": {"uv": [15.75, 5.75, 16, 6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.75, 5.75, 16, 6], "texture": "#3"}, - "down": {"uv": [15.75, 6, 16, 5.75], "texture": "#3"} + "north": { + "uv": [ + 16, + 5.75, + 15.75, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.75, + 5.75, + 16, + 6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.75, + 5.75, + 16, + 6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.75, + 5.75, + 16, + 6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.75, + 5.75, + 16, + 6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.75, + 6, + 16, + 5.75 + ], + "texture": "#3" + } } }, { "name": "ayu_8", - "from": [2.5, 0, 6], - "to": [4, 0.25, 9.25], + "from": [ + 2.5, + 0, + 6 + ], + "to": [ + 4, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4, 6, 2.5, 6.25], "texture": "#3"}, - "east": {"uv": [3.75, 6, 4, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.5, 9, 4, 9.25], "texture": "#3"}, - "west": {"uv": [2.5, 6, 2.75, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.5, 6, 4, 9.25], "texture": "#3"}, - "down": {"uv": [2.5, 9.25, 4, 6], "texture": "#3"} + "north": { + "uv": [ + 4, + 6, + 2.5, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.75, + 6, + 4, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.5, + 9, + 4, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.5, + 6, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.5, + 6, + 4, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 4, + 6 + ], + "texture": "#3" + } } }, { "name": "ayu_9", - "from": [9, 0, 6], - "to": [9.75, 0.25, 9], + "from": [ + 9, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.75, 6, 9, 6.25], "texture": "#3"}, - "east": {"uv": [9.5, 6, 9.75, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9, 8.75, 9.75, 9], "texture": "#3"}, - "west": {"uv": [9, 6, 9.25, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9, 6, 9.75, 9], "texture": "#3"}, - "down": {"uv": [9, 9, 9.75, 6], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 6, + 9, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9, + 8.75, + 9.75, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9, + 6, + 9.25, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9, + 6, + 9.75, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9, + 9, + 9.75, + 6 + ], + "texture": "#3" + } } }, { "name": "ayu_10", - "from": [10.75, 0, 6], - "to": [11.75, 0.25, 8.25], + "from": [ + 10.75, + 0, + 6 + ], + "to": [ + 11.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.75, 6, 10.75, 6.25], "texture": "#3"}, - "east": {"uv": [11.5, 6, 11.75, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 8, 11.75, 8.25], "texture": "#3"}, - "west": {"uv": [10.75, 6, 11, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 6, 11.75, 8.25], "texture": "#3"}, - "down": {"uv": [10.75, 8.25, 11.75, 6], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 6, + 10.75, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 6, + 11.75, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 8, + 11.75, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 6, + 11, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 6, + 11.75, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 8.25, + 11.75, + 6 + ], + "texture": "#3" + } } }, { "name": "ayu_11", - "from": [13.5, 0, 6], - "to": [14, 0.25, 8.25], + "from": [ + 13.5, + 0, + 6 + ], + "to": [ + 14, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14, 6, 13.5, 6.25], "texture": "#3"}, - "east": {"uv": [13.75, 6, 14, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.5, 8, 14, 8.25], "texture": "#3"}, - "west": {"uv": [13.5, 6, 13.75, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.5, 6, 14, 8.25], "texture": "#3"}, - "down": {"uv": [13.5, 8.25, 14, 6], "texture": "#3"} + "north": { + "uv": [ + 14, + 6, + 13.5, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.75, + 6, + 14, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.5, + 8, + 14, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.5, + 6, + 13.75, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.5, + 6, + 14, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.5, + 8.25, + 14, + 6 + ], + "texture": "#3" + } } }, { "name": "ayu_12", - "from": [15.25, 0, 6], - "to": [15.75, 0.25, 6.5], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.75, 6, 15.25, 6.25], "texture": "#3"}, - "east": {"uv": [15.5, 6, 15.75, 6.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 6.25, 15.75, 6.5], "texture": "#3"}, - "west": {"uv": [15.25, 6, 15.5, 6.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 6, 15.75, 6.5], "texture": "#3"}, - "down": {"uv": [15.25, 6.5, 15.75, 6], "texture": "#3"} + "north": { + "uv": [ + 15.75, + 6, + 15.25, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.5, + 6, + 15.75, + 6.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 6.25, + 15.75, + 6.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 6.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.75, + 6.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 6.5, + 15.75, + 6 + ], + "texture": "#3" + } } }, { "name": "ayu_13", - "from": [1.75, 0, 6.25], - "to": [2.5, 0.25, 9], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.5, 6.25, 1.75, 6.5], "texture": "#3"}, - "east": {"uv": [2.25, 6.25, 2.5, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.75, 8.75, 2.5, 9], "texture": "#3"}, - "west": {"uv": [1.75, 6.25, 2, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.75, 6.25, 2.5, 9], "texture": "#3"}, - "down": {"uv": [1.75, 9, 2.5, 6.25], "texture": "#3"} + "north": { + "uv": [ + 2.5, + 6.25, + 1.75, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.25, + 6.25, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2.5, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2.5, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.75, + 9, + 2.5, + 6.25 + ], + "texture": "#3" + } } }, { "name": "ayu_14", - "from": [9.75, 0, 6.25], - "to": [10.75, 0.25, 9.5], + "from": [ + 9.75, + 0, + 6.25 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.75, 6.25, 9.75, 6.5], "texture": "#3"}, - "east": {"uv": [10.5, 6.25, 10.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.75, 9.25, 10.75, 9.5], "texture": "#3"}, - "west": {"uv": [9.75, 6.25, 10, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.75, 6.25, 10.75, 9.5], "texture": "#3"}, - "down": {"uv": [9.75, 9.5, 10.75, 6.25], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 6.25, + 9.75, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 6.25, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.75, + 6.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.75, + 6.25, + 10.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.75, + 6.25 + ], + "texture": "#3" + } } }, { "name": "ayu_15", - "from": [11.75, 0, 6.25], - "to": [12, 0.25, 8.25], + "from": [ + 11.75, + 0, + 6.25 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 6.25, 11.75, 6.5], "texture": "#3"}, - "east": {"uv": [11.75, 6.25, 12, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 8, 12, 8.25], "texture": "#3"}, - "west": {"uv": [11.75, 6.25, 12, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 6.25, 12, 8.25], "texture": "#3"}, - "down": {"uv": [11.75, 8.25, 12, 6.25], "texture": "#3"} + "north": { + "uv": [ + 12, + 6.25, + 11.75, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.75, + 6.25, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 6.25, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 6.25, + 12, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 12, + 6.25 + ], + "texture": "#3" + } } }, { "name": "ayu_16", - "from": [13, 0, 6.25], - "to": [13.5, 0.25, 8], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13.5, 6.25, 13, 6.5], "texture": "#3"}, - "east": {"uv": [13.25, 6.25, 13.5, 8], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13, 7.75, 13.5, 8], "texture": "#3"}, - "west": {"uv": [13, 6.25, 13.25, 8], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13, 6.25, 13.5, 8], "texture": "#3"}, - "down": {"uv": [13, 8, 13.5, 6.25], "texture": "#3"} + "north": { + "uv": [ + 13.5, + 6.25, + 13, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.25, + 6.25, + 13.5, + 8 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13, + 7.75, + 13.5, + 8 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 8 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.5, + 8 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13, + 8, + 13.5, + 6.25 + ], + "texture": "#3" + } } }, { "name": "ayu_17", - "from": [1.25, 0, 6.5], - "to": [1.75, 0.25, 8.75], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.75, 6.5, 1.25, 6.75], "texture": "#3"}, - "east": {"uv": [1.5, 6.5, 1.75, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.25, 8.5, 1.75, 8.75], "texture": "#3"}, - "west": {"uv": [1.25, 6.5, 1.5, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.25, 6.5, 1.75, 8.75], "texture": "#3"}, - "down": {"uv": [1.25, 8.75, 1.75, 6.5], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 6.5, + 1.25, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.75, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.75, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.75, + 6.5 + ], + "texture": "#3" + } } }, { "name": "ayu_18", - "from": [12, 0, 6.5], - "to": [13, 0.25, 8], + "from": [ + 12, + 0, + 6.5 + ], + "to": [ + 13, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13, 6.5, 12, 6.75], "texture": "#3"}, - "east": {"uv": [12.75, 6.5, 13, 8], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12, 7.75, 13, 8], "texture": "#3"}, - "west": {"uv": [12, 6.5, 12.25, 8], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12, 6.5, 13, 8], "texture": "#3"}, - "down": {"uv": [12, 8, 13, 6.5], "texture": "#3"} + "north": { + "uv": [ + 13, + 6.5, + 12, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.75, + 6.5, + 13, + 8 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12, + 7.75, + 13, + 8 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12, + 6.5, + 12.25, + 8 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12, + 6.5, + 13, + 8 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12, + 8, + 13, + 6.5 + ], + "texture": "#3" + } } }, { "name": "ayu_19", - "from": [15.25, 0, 6.5], - "to": [15.5, 0.25, 6.75], + "from": [ + 15.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.5, 6.5, 15.25, 6.75], "texture": "#3"}, - "east": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#3"}, - "west": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#3"}, - "down": {"uv": [15.25, 6.75, 15.5, 6.5], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 6.5, + 15.25, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 6.75, + 15.5, + 6.5 + ], + "texture": "#3" + } } }, { "name": "ayu_20", - "from": [1, 0, 6.75], - "to": [1.25, 0.25, 8.75], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 6.75, 1, 7], "texture": "#3"}, - "east": {"uv": [1, 6.75, 1.25, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#3"}, - "west": {"uv": [1, 6.75, 1.25, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1, 6.75, 1.25, 8.75], "texture": "#3"}, - "down": {"uv": [1, 8.75, 1.25, 6.75], "texture": "#3"} + "north": { + "uv": [ + 1.25, + 6.75, + 1, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.25, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 6.75 + ], + "texture": "#3" + } } }, { "name": "ayu_21", - "from": [0.75, 0, 7], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#3"}, - "east": {"uv": [0.75, 7, 1, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#3"}, - "west": {"uv": [0.75, 7, 1, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 7, 1, 8.5], "texture": "#3"}, - "down": {"uv": [0.75, 8.5, 1, 7], "texture": "#3"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 7 + ], + "texture": "#3" + } } }, { "name": "ayu_22", - "from": [14.5, 0, 7], - "to": [15, 0.25, 8.75], + "from": [ + 14.5, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15, 7, 14.5, 7.25], "texture": "#3"}, - "east": {"uv": [14.75, 7, 15, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 8.5, 15, 8.75], "texture": "#3"}, - "west": {"uv": [14.5, 7, 14.75, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 7, 15, 8.75], "texture": "#3"}, - "down": {"uv": [14.5, 8.75, 15, 7], "texture": "#3"} + "north": { + "uv": [ + 15, + 7, + 14.5, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 8.5, + 15, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 7, + 14.75, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 7, + 15, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 8.75, + 15, + 7 + ], + "texture": "#3" + } } }, { "name": "ayu_23", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#3"}, - "east": {"uv": [0.5, 7.25, 0.75, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#3"}, - "west": {"uv": [0.5, 7.25, 0.75, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 7.25, 0.75, 8.5], "texture": "#3"}, - "down": {"uv": [0.5, 8.5, 0.75, 7.25], "texture": "#3"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 7.25 + ], + "texture": "#3" + } } }, { "name": "ayu_24", - "from": [0.25, 0, 7.5], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.5, 0.25, 7.75], "texture": "#3"}, - "east": {"uv": [0.25, 7.5, 0.5, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#3"}, - "west": {"uv": [0.25, 7.5, 0.5, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.25, 7.5, 0.5, 8.25], "texture": "#3"}, - "down": {"uv": [0.25, 8.25, 0.5, 7.5], "texture": "#3"} + "north": { + "uv": [ + 0.5, + 7.5, + 0.25, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 7.5 + ], + "texture": "#3" + } } }, { "name": "ayu_25", - "from": [15, 0, 7.5], - "to": [15.25, 0.25, 8.75], + "from": [ + 15, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 7.5, 15, 7.75], "texture": "#3"}, - "east": {"uv": [15, 7.5, 15.25, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#3"}, - "west": {"uv": [15, 7.5, 15.25, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15, 7.5, 15.25, 8.75], "texture": "#3"}, - "down": {"uv": [15, 8.75, 15.25, 7.5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 7.5, + 15, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15, + 7.5, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15, + 7.5, + 15.25, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 7.5 + ], + "texture": "#3" + } } }, { "name": "ayu_26", - "from": [15.25, 0, 7.75], - "to": [15.5, 0.25, 8.75], + "from": [ + 15.25, + 0, + 7.75 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.5, 7.75, 15.25, 8], "texture": "#3"}, - "east": {"uv": [15.25, 7.75, 15.5, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#3"}, - "west": {"uv": [15.25, 7.75, 15.5, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 7.75, 15.5, 8.75], "texture": "#3"}, - "down": {"uv": [15.25, 8.75, 15.5, 7.75], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 7.75, + 15.25, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 7.75 + ], + "texture": "#3" + } } }, { "name": "ayu_27", - "from": [12, 0, 8], - "to": [12.5, 0.25, 8.25], + "from": [ + 12, + 0, + 8 + ], + "to": [ + 12.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12.5, 8, 12, 8.25], "texture": "#3"}, - "east": {"uv": [12.25, 8, 12.5, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12, 8, 12.5, 8.25], "texture": "#3"}, - "west": {"uv": [12, 8, 12.25, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12, 8, 12.5, 8.25], "texture": "#3"}, - "down": {"uv": [12, 8.25, 12.5, 8], "texture": "#3"} + "north": { + "uv": [ + 12.5, + 8, + 12, + 8.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12, + 8, + 12.5, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12, + 8, + 12.5, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12, + 8.25, + 12.5, + 8 + ], + "texture": "#3" + } } }, { "name": "ayu_28", - "from": [13.25, 0, 8], - "to": [13.5, 0.25, 8.25], + "from": [ + 13.25, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.5, 8, 13.25, 8.25], "texture": "#3"}, - "east": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.25, 8, 13.5, 8.25], "texture": "#3"}, - "west": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.25, 8, 13.5, 8.25], "texture": "#3"}, - "down": {"uv": [13.25, 8.25, 13.5, 8], "texture": "#3"} + "north": { + "uv": [ + 13.5, + 8, + 13.25, + 8.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8 + ], + "texture": "#3" + } } }, { "name": "ayu_29", - "from": [15.5, 0, 8], - "to": [15.75, 0.25, 8.75], + "from": [ + 15.5, + 0, + 8 + ], + "to": [ + 15.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.75, 8, 15.5, 8.25], "texture": "#3"}, - "east": {"uv": [15.5, 8, 15.75, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.5, 8.5, 15.75, 8.75], "texture": "#3"}, - "west": {"uv": [15.5, 8, 15.75, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.5, 8, 15.75, 8.75], "texture": "#3"}, - "down": {"uv": [15.5, 8.75, 15.75, 8], "texture": "#3"} + "north": { + "uv": [ + 15.75, + 8, + 15.5, + 8.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.5, + 8, + 15.75, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.5, + 8.5, + 15.75, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.5, + 8, + 15.75, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.5, + 8, + 15.75, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.5, + 8.75, + 15.75, + 8 + ], + "texture": "#3" + } } }, { "name": "ayu_30", - "from": [10.75, 0, 8.25], - "to": [11.25, 0.25, 9.75], + "from": [ + 10.75, + 0, + 8.25 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.25, 8.25, 10.75, 8.5], "texture": "#3"}, - "east": {"uv": [11, 8.25, 11.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 9.5, 11.25, 9.75], "texture": "#3"}, - "west": {"uv": [10.75, 8.25, 11, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 8.25, 11.25, 9.75], "texture": "#3"}, - "down": {"uv": [10.75, 9.75, 11.25, 8.25], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 8.25, + 10.75, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 8.25, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 9.5, + 11.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 8.25, + 11, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 8.25, + 11.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 9.75, + 11.25, + 8.25 + ], + "texture": "#3" + } } }, { "name": "ayu_31", - "from": [11.25, 0, 8.25], - "to": [11.5, 0.25, 8.5], + "from": [ + 11.25, + 0, + 8.25 + ], + "to": [ + 11.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.5, 8.25, 11.25, 8.5], "texture": "#3"}, - "east": {"uv": [11.25, 8.25, 11.5, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 8.25, 11.5, 8.5], "texture": "#3"}, - "west": {"uv": [11.25, 8.25, 11.5, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 8.25, 11.5, 8.5], "texture": "#3"}, - "down": {"uv": [11.25, 8.5, 11.5, 8.25], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 8.25, + 11.25, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.25 + ], + "texture": "#3" + } } }, { "name": "ayu_32", - "from": [13.75, 0, 8.25], - "to": [14, 0.25, 8.5], + "from": [ + 13.75, + 0, + 8.25 + ], + "to": [ + 14, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14, 8.25, 13.75, 8.5], "texture": "#3"}, - "east": {"uv": [13.75, 8.25, 14, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.75, 8.25, 14, 8.5], "texture": "#3"}, - "west": {"uv": [13.75, 8.25, 14, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.75, 8.25, 14, 8.5], "texture": "#3"}, - "down": {"uv": [13.75, 8.5, 14, 8.25], "texture": "#3"} + "north": { + "uv": [ + 14, + 8.25, + 13.75, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.75, + 8.5, + 14, + 8.25 + ], + "texture": "#3" + } } }, { "name": "ayu_33", - "from": [15.75, 0, 8.25], - "to": [16, 0.25, 8.5], + "from": [ + 15.75, + 0, + 8.25 + ], + "to": [ + 16, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [16, 8.25, 15.75, 8.5], "texture": "#3"}, - "east": {"uv": [15.75, 8.25, 16, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.75, 8.25, 16, 8.5], "texture": "#3"}, - "west": {"uv": [15.75, 8.25, 16, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.75, 8.25, 16, 8.5], "texture": "#3"}, - "down": {"uv": [15.75, 8.5, 16, 8.25], "texture": "#3"} + "north": { + "uv": [ + 16, + 8.25, + 15.75, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.75, + 8.25, + 16, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.75, + 8.25, + 16, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.75, + 8.25, + 16, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.75, + 8.25, + 16, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.75, + 8.5, + 16, + 8.25 + ], + "texture": "#3" + } } }, { "name": "ayu_34", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 8.75], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#3"}, - "east": {"uv": [14.25, 8.5, 14.5, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#3"}, - "west": {"uv": [14.25, 8.5, 14.5, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#3"}, - "down": {"uv": [14.25, 8.75, 14.5, 8.5], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.5, + 8.5 + ], + "texture": "#3" + } } }, { "name": "ayu_35", - "from": [1.5, 0, 8.75], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 8.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 8.75, 1.5, 9], "texture": "#3"}, - "east": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#3"}, - "west": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#3"}, - "down": {"uv": [1.5, 9, 1.75, 8.75], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 8.75, + 1.5, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 8.75 + ], + "texture": "#3" + } } }, { "name": "ayu_36", - "from": [2.25, 0, 9], - "to": [2.5, 0.25, 9.25], + "from": [ + 2.25, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 9, 2.25, 9.25], "texture": "#3"}, - "east": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#3"}, - "west": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#3"}, - "down": {"uv": [2.25, 9.25, 2.5, 9], "texture": "#3"} + "north": { + "uv": [ + 2.5, + 9, + 2.25, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9 + ], + "texture": "#3" + } } }, { "name": "ayu_37", - "from": [9.5, 0, 9], - "to": [9.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 9.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.75, 9, 9.5, 9.25], "texture": "#3"}, - "east": {"uv": [9.5, 9, 9.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#3"}, - "west": {"uv": [9.5, 9, 9.75, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#3"}, - "down": {"uv": [9.5, 9.25, 9.75, 9], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9 + ], + "texture": "#3" + } } }, { "name": "ayu_38", - "from": [11.25, 0, 9], - "to": [11.5, 0.25, 9.5], + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.5, 9, 11.25, 9.25], "texture": "#3"}, - "east": {"uv": [11.25, 9, 11.5, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 9.25, 11.5, 9.5], "texture": "#3"}, - "west": {"uv": [11.25, 9, 11.5, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 9, 11.5, 9.5], "texture": "#3"}, - "down": {"uv": [11.25, 9.5, 11.5, 9], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 9, + 11.25, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 9, + 11.5, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9 + ], + "texture": "#3" + } } }, { "name": "ayu_39", - "from": [3.75, 0, 9.25], - "to": [4, 0.25, 9.5], + "from": [ + 3.75, + 0, + 9.25 + ], + "to": [ + 4, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4, 9.25, 3.75, 9.5], "texture": "#3"}, - "east": {"uv": [3.75, 9.25, 4, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3.75, 9.25, 4, 9.5], "texture": "#3"}, - "west": {"uv": [3.75, 9.25, 4, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3.75, 9.25, 4, 9.5], "texture": "#3"}, - "down": {"uv": [3.75, 9.5, 4, 9.25], "texture": "#3"} + "north": { + "uv": [ + 4, + 9.25, + 3.75, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3.75, + 9.5, + 4, + 9.25 + ], + "texture": "#3" + } } }, { "name": "ayu_40", - "from": [4.25, 0, 9.5], - "to": [4.5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 4.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.5, 9.5, 4.25, 9.75], "texture": "#3"}, - "east": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#3"}, - "west": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#3"}, - "down": {"uv": [4.25, 9.75, 4.5, 9.5], "texture": "#3"} + "north": { + "uv": [ + 4.5, + 9.5, + 4.25, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 4.5, + 9.5 + ], + "texture": "#3" + } } }, { "name": "ayu_41", - "from": [10.5, 0, 9.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 9.5, 10.5, 9.75], "texture": "#3"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#3"}, - "west": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#3"}, - "down": {"uv": [10.5, 9.75, 10.75, 9.5], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 9.5, + 10.5, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 9.5 + ], + "texture": "#3" + } } }, { "name": "ayu_42", - "from": [7.25, 0, 9.75], - "to": [7.5, 0.25, 10], + "from": [ + 7.25, + 0, + 9.75 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 9.75, 7.25, 10], "texture": "#3"}, - "east": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#3"}, - "west": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#3"}, - "down": {"uv": [7.25, 10, 7.5, 9.75], "texture": "#3"} + "north": { + "uv": [ + 7.5, + 9.75, + 7.25, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.5, + 9.75 + ], + "texture": "#3" + } } }, { "name": "ayu_43", - "from": [7.5, 0, 10], - "to": [8.5, 0.25, 10.25], + "from": [ + 7.5, + 0, + 10 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.5, 10, 7.5, 10.25], "texture": "#3"}, - "east": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.5, 10, 8.5, 10.25], "texture": "#3"}, - "west": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.5, 10, 8.5, 10.25], "texture": "#3"}, - "down": {"uv": [7.5, 10.25, 8.5, 10], "texture": "#3"} + "north": { + "uv": [ + 8.5, + 10, + 7.5, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.5, + 10, + 8.5, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.5, + 10, + 8.5, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 7.75, 10.75], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 7.75, + 10.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "ayu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/azi.json b/pack/assets/minecraft/models/fish/azi.json index 51fc71f1..3bfff4bd 100644 --- a/pack/assets/minecraft/models/fish/azi.json +++ b/pack/assets/minecraft/models/fish/azi.json @@ -2,695 +2,3687 @@ "__name": "アジ", "credit": "Made with Blockbench", "textures": { - "0": "fish/azi", - "particle": "fish/azi" + "0": "item/fish/azi", + "particle": "item/fish/azi" }, "elements": [ { "name": "azi_0", - "from": [8.5, 0, 5.25], - "to": [9, 0.25, 10.75], + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 9, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9, 5.25, 8.5, 5.5], "texture": "#0"}, - "east": {"uv": [8.75, 5.25, 9, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.5, 9, 10.75], "texture": "#0"}, - "west": {"uv": [8.5, 5.25, 8.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.25, 9, 10.75], "texture": "#0"}, - "down": {"uv": [8.5, 10.75, 9, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 9, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 9, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 9, + 5.25 + ], + "texture": "#0" + } } }, { "name": "azi_1", - "from": [6, 0, 5.5], - "to": [6.25, 0.25, 10.25], + "from": [ + 6, + 0, + 5.5 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 5.5, 6, 5.75], "texture": "#0"}, - "east": {"uv": [6, 5.5, 6.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10, 6.25, 10.25], "texture": "#0"}, - "west": {"uv": [6, 5.5, 6.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.5, 6.25, 10.25], "texture": "#0"}, - "down": {"uv": [6, 10.25, 6.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.5, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.5, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "azi_2", - "from": [8, 0, 5.5], - "to": [8.5, 0.25, 10.25], + "from": [ + 8, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.5, 5.5, 8, 5.75], "texture": "#0"}, - "east": {"uv": [8.25, 5.5, 8.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8, 5.5, 8.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.5, 8.5, 10.25], "texture": "#0"}, - "down": {"uv": [8, 10.25, 8.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "azi_3", - "from": [9, 0, 5.5], - "to": [9.25, 0.25, 10.75], + "from": [ + 9, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 5.5, 9, 5.75], "texture": "#0"}, - "east": {"uv": [9, 5.5, 9.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#0"}, - "west": {"uv": [9, 5.5, 9.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.5, 9.25, 10.75], "texture": "#0"}, - "down": {"uv": [9, 10.75, 9.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "azi_4", - "from": [5.75, 0, 5.75], - "to": [6, 0.25, 10.25], + "from": [ + 5.75, + 0, + 5.75 + ], + "to": [ + 6, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6, 5.75, 5.75, 6], "texture": "#0"}, - "east": {"uv": [5.75, 5.75, 6, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10, 6, 10.25], "texture": "#0"}, - "west": {"uv": [5.75, 5.75, 6, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.75, 6, 10.25], "texture": "#0"}, - "down": {"uv": [5.75, 10.25, 6, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.75, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.75, + 6, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.75, + 6, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.25, + 6, + 5.75 + ], + "texture": "#0" + } } }, { "name": "azi_5", - "from": [6.25, 0, 5.75], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 5.75 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 5.75, 6.25, 6], "texture": "#0"}, - "east": {"uv": [6.25, 5.75, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.25, 5.75, 6.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5.75, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.25, 10.25, 6.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 5.75, + 6.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "azi_6", - "from": [7.5, 0, 5.75], - "to": [8, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 8, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8, 5.75, 7.5, 6], "texture": "#0"}, - "east": {"uv": [7.75, 5.75, 8, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10, 8, 10.25], "texture": "#0"}, - "west": {"uv": [7.5, 5.75, 7.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.75, 8, 10.25], "texture": "#0"}, - "down": {"uv": [7.5, 10.25, 8, 5.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.75, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10, + 8, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 8, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 8, + 5.75 + ], + "texture": "#0" + } } }, { "name": "azi_7", - "from": [9.25, 0, 5.75], - "to": [9.5, 0.25, 10.5], + "from": [ + 9.25, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.5, 5.75, 9.25, 6], "texture": "#0"}, - "east": {"uv": [9.25, 5.75, 9.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.25, 9.5, 10.5], "texture": "#0"}, - "west": {"uv": [9.25, 5.75, 9.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.75, 9.5, 10.5], "texture": "#0"}, - "down": {"uv": [9.25, 10.5, 9.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.75, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.75, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 9.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "azi_8", - "from": [15, 0, 5.75], - "to": [15.25, 0.25, 7.25], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.25, 5.75, 15, 6], "texture": "#0"}, - "east": {"uv": [15, 5.75, 15.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7, 15.25, 7.25], "texture": "#0"}, - "west": {"uv": [15, 5.75, 15.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 5.75, 15.25, 7.25], "texture": "#0"}, - "down": {"uv": [15, 7.25, 15.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 5.75, + 15, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 5.75, + 15.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7.25, + 15.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "azi_9", - "from": [4.75, 0, 6], - "to": [5.75, 0.25, 10.25], + "from": [ + 4.75, + 0, + 6 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.75, 6, 4.75, 6.25], "texture": "#0"}, - "east": {"uv": [5.5, 6, 5.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10, 5.75, 10.25], "texture": "#0"}, - "west": {"uv": [4.75, 6, 5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6, 5.75, 10.25], "texture": "#0"}, - "down": {"uv": [4.75, 10.25, 5.75, 6], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 6, + 4.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 5.75, + 6 + ], + "texture": "#0" + } } }, { "name": "azi_10", - "from": [6.5, 0, 6], - "to": [7.5, 0.25, 10.25], + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.5, 6, 6.5, 6.25], "texture": "#0"}, - "east": {"uv": [7.25, 6, 7.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10, 7.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.5, 6, 6.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 6, 7.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.5, 10.25, 7.5, 6], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 6, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 7.5, + 6 + ], + "texture": "#0" + } } }, { "name": "azi_11", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 10.5], + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#0"}, - "east": {"uv": [9.5, 6, 9.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#0"}, - "west": {"uv": [9.5, 6, 9.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6, 9.75, 10.5], "texture": "#0"}, - "down": {"uv": [9.5, 10.5, 9.75, 6], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 9.75, + 6 + ], + "texture": "#0" + } } }, { "name": "azi_12", - "from": [14.75, 0, 6], - "to": [15, 0.25, 7.5], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#0"}, - "east": {"uv": [14.75, 6, 15, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#0"}, - "west": {"uv": [14.75, 6, 15, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6, 15, 7.5], "texture": "#0"}, - "down": {"uv": [14.75, 7.5, 15, 6], "texture": "#0"} + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15, + 6 + ], + "texture": "#0" + } } }, { "name": "azi_13", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 7], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#0"}, - "east": {"uv": [15.25, 6, 15.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 6.75, 15.5, 7], "texture": "#0"}, - "west": {"uv": [15.25, 6, 15.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6, 15.5, 7], "texture": "#0"}, - "down": {"uv": [15.25, 7, 15.5, 6], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7, + 15.5, + 6 + ], + "texture": "#0" + } } }, { "name": "azi_14", - "from": [3.75, 0, 6.25], - "to": [4.75, 0.25, 10], + "from": [ + 3.75, + 0, + 6.25 + ], + "to": [ + 4.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.75, 6.25, 3.75, 6.5], "texture": "#0"}, - "east": {"uv": [4.5, 6.25, 4.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.75, 4.75, 10], "texture": "#0"}, - "west": {"uv": [3.75, 6.25, 4, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.25, 4.75, 10], "texture": "#0"}, - "down": {"uv": [3.75, 10, 4.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 6.25, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.25, + 4.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.25, + 4, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.25, + 4.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10, + 4.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "azi_15", - "from": [9.75, 0, 6.25], - "to": [10, 0.25, 10.25], + "from": [ + 9.75, + 0, + 6.25 + ], + "to": [ + 10, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10, 6.25, 9.75, 6.5], "texture": "#0"}, - "east": {"uv": [9.75, 6.25, 10, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#0"}, - "west": {"uv": [9.75, 6.25, 10, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.25, 10, 10.25], "texture": "#0"}, - "down": {"uv": [9.75, 10.25, 10, 6.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.25, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.25, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.25, + 10, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 6.25 + ], + "texture": "#0" + } } }, { "name": "azi_16", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 7.75], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#0"}, - "east": {"uv": [14.5, 6.25, 14.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#0"}, - "west": {"uv": [14.5, 6.25, 14.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.25, 14.75, 7.75], "texture": "#0"}, - "down": {"uv": [14.5, 7.75, 14.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.75, + 14.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "azi_17", - "from": [3, 0, 6.5], - "to": [3.75, 0.25, 9.75], + "from": [ + 3, + 0, + 6.5 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.75, 6.5, 3, 6.75], "texture": "#0"}, - "east": {"uv": [3.5, 6.5, 3.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.5, 3.75, 9.75], "texture": "#0"}, - "west": {"uv": [3, 6.5, 3.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.5, 3.75, 9.75], "texture": "#0"}, - "down": {"uv": [3, 9.75, 3.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 6.5, + 3, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "azi_18", - "from": [10, 0, 6.5], - "to": [10.25, 0.25, 10.25], + "from": [ + 10, + 0, + 6.5 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.25, 6.5, 10, 6.75], "texture": "#0"}, - "east": {"uv": [10, 6.5, 10.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10, 10.25, 10.25], "texture": "#0"}, - "west": {"uv": [10, 6.5, 10.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.5, 10.25, 10.25], "texture": "#0"}, - "down": {"uv": [10, 10.25, 10.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.5, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.5, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "azi_19", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 8], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#0"}, - "east": {"uv": [14.25, 6.5, 14.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "west": {"uv": [14.25, 6.5, 14.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.5, 14.5, 8], "texture": "#0"}, - "down": {"uv": [14.25, 8, 14.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "azi_20", - "from": [2.5, 0, 6.75], - "to": [3, 0.25, 9.75], + "from": [ + 2.5, + 0, + 6.75 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 6.75, 2.5, 7], "texture": "#0"}, - "east": {"uv": [2.75, 6.75, 3, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.5, 3, 9.75], "texture": "#0"}, - "west": {"uv": [2.5, 6.75, 2.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.75, 3, 9.75], "texture": "#0"}, - "down": {"uv": [2.5, 9.75, 3, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.75, + 2.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.75, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.75, + 2.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.75, + 3, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.75, + 3, + 6.75 + ], + "texture": "#0" + } } }, { "name": "azi_21", - "from": [10.25, 0, 6.75], - "to": [10.5, 0.25, 10], + "from": [ + 10.25, + 0, + 6.75 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 6.75, 10.25, 7], "texture": "#0"}, - "east": {"uv": [10.25, 6.75, 10.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.75, 10.5, 10], "texture": "#0"}, - "west": {"uv": [10.25, 6.75, 10.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6.75, 10.5, 10], "texture": "#0"}, - "down": {"uv": [10.25, 10, 10.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 6.75, + 10.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.75, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6.75, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10, + 10.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "azi_22", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#0"}, - "west": {"uv": [14, 6.75, 14.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.75, 14.25, 9.5], "texture": "#0"}, - "down": {"uv": [14, 9.5, 14.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "azi_23", - "from": [2, 0, 7], - "to": [2.5, 0.25, 9.5], + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.5, 7, 2, 7.25], "texture": "#0"}, - "east": {"uv": [2.25, 7, 2.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.25, 2.5, 9.5], "texture": "#0"}, - "west": {"uv": [2, 7, 2.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7, 2.5, 9.5], "texture": "#0"}, - "down": {"uv": [2, 9.5, 2.5, 7], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 7, + 2, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.5, + 7 + ], + "texture": "#0" + } } }, { "name": "azi_24", - "from": [10.5, 0, 7], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 7, 10.5, 7.25], "texture": "#0"}, - "east": {"uv": [10.5, 7, 10.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#0"}, - "west": {"uv": [10.5, 7, 10.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7, 10.75, 9.75], "texture": "#0"}, - "down": {"uv": [10.5, 9.75, 10.75, 7], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7, + 10.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 7 + ], + "texture": "#0" + } } }, { "name": "azi_25", - "from": [13.75, 0, 7], - "to": [14, 0.25, 9.25], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#0"}, - "east": {"uv": [13.75, 7, 14, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9, 14, 9.25], "texture": "#0"}, - "west": {"uv": [13.75, 7, 14, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7, 14, 9.25], "texture": "#0"}, - "down": {"uv": [13.75, 9.25, 14, 7], "texture": "#0"} + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14, + 7 + ], + "texture": "#0" + } } }, { "name": "azi_27", - "from": [1.5, 0, 7.25], - "to": [2, 0.25, 9.25], + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 7.25, 1.5, 7.5], "texture": "#0"}, - "east": {"uv": [1.75, 7.25, 2, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9, 2, 9.25], "texture": "#0"}, - "west": {"uv": [1.5, 7.25, 1.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.25, 2, 9.25], "texture": "#0"}, - "down": {"uv": [1.5, 9.25, 2, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.25, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 2, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2, + 7.25 + ], + "texture": "#0" + } } }, { "name": "azi_28", - "from": [10.75, 0, 7.25], - "to": [11.25, 0.25, 9.25], + "from": [ + 10.75, + 0, + 7.25 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.25, 7.25, 10.75, 7.5], "texture": "#0"}, - "east": {"uv": [11, 7.25, 11.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9, 11.25, 9.25], "texture": "#0"}, - "west": {"uv": [10.75, 7.25, 11, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7.25, 11.25, 9.25], "texture": "#0"}, - "down": {"uv": [10.75, 9.25, 11.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 7.25, + 10.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7.25, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7.25, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7.25, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "azi_29", - "from": [13.25, 0, 7.25], - "to": [13.75, 0.25, 9], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 7.25, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13.5, 7.25, 13.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 13.75, 9], "texture": "#0"}, - "west": {"uv": [13.25, 7.25, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.25, 13.75, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 13.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 13.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "azi_30", - "from": [1, 0, 7.5], - "to": [1.5, 0.25, 9], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1.25, 7.5, 1.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.75, 1.5, 9], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.5, 9], "texture": "#0"}, - "down": {"uv": [1, 9, 1.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9, + 1.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "azi_31", - "from": [11.25, 0, 7.5], - "to": [11.75, 0.25, 9], + "from": [ + 11.25, + 0, + 7.5 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 7.5, 11.25, 7.75], "texture": "#0"}, - "east": {"uv": [11.5, 7.5, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [11.25, 7.5, 11.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7.5, 11.75, 9], "texture": "#0"}, - "down": {"uv": [11.25, 9, 11.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 7.5, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7.5, + 11.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7.5, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9, + 11.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "azi_32", - "from": [13, 0, 7.5], - "to": [13.25, 0.25, 8.75], + "from": [ + 13, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 7.5, 13, 7.75], "texture": "#0"}, - "east": {"uv": [13, 7.5, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 7.5, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7.5, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 13.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 7.5, + 13, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "azi_34", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 8.75], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#0"}, - "east": {"uv": [0.75, 7.75, 1, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.5, 1, 8.75], "texture": "#0"}, - "west": {"uv": [0.75, 7.75, 1, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.75, 1, 8.75], "texture": "#0"}, - "down": {"uv": [0.75, 8.75, 1, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1, + 7.75 + ], + "texture": "#0" + } } }, { "name": "azi_35", - "from": [11.75, 0, 7.75], - "to": [13, 0.25, 8.75], + "from": [ + 11.75, + 0, + 7.75 + ], + "to": [ + 13, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13, 7.75, 11.75, 8], "texture": "#0"}, - "east": {"uv": [12.75, 7.75, 13, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.5, 13, 8.75], "texture": "#0"}, - "west": {"uv": [11.75, 7.75, 12, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.75, 13, 8.75], "texture": "#0"}, - "down": {"uv": [11.75, 8.75, 13, 7.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.75, + 13, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.75, + 12, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.75, + 13, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.75, + 13, + 7.75 + ], + "texture": "#0" + } } }, { "name": "azi_37", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [0.5, 8, 0.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 0.75, 8.5], "texture": "#0"}, - "down": {"uv": [0.5, 8.5, 0.75, 8], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8 + ], + "texture": "#0" + } } }, { "name": "azi_40", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 9.75], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "east": {"uv": [14.25, 8.5, 14.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.5, 14.5, 9.75], "texture": "#0"}, - "west": {"uv": [14.25, 8.5, 14.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.5, 14.5, 9.75], "texture": "#0"}, - "down": {"uv": [14.25, 9.75, 14.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "azi_41", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 9], + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#0"}, - "east": {"uv": [11.75, 8.75, 12, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "west": {"uv": [11.75, 8.75, 12, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "down": {"uv": [11.75, 9, 12, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 8.75 + ], + "texture": "#0" + } } }, { "name": "azi_42", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#0"}, - "east": {"uv": [14.5, 8.75, 14.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#0"}, - "west": {"uv": [14.5, 8.75, 14.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.75, 14.75, 10], "texture": "#0"}, - "down": {"uv": [14.5, 10, 14.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "azi_43", - "from": [1.25, 0, 9], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 9], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9 + ], + "texture": "#0" + } } }, { "name": "azi_44", - "from": [11.25, 0, 9], - "to": [11.5, 0.25, 9.25], + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 9, 11.25, 9.25], "texture": "#0"}, - "east": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "west": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "down": {"uv": [11.25, 9.25, 11.5, 9], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9 + ], + "texture": "#0" + } } }, { "name": "azi_45", - "from": [14.75, 0, 9], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#0"}, - "east": {"uv": [14.75, 9, 15, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#0"}, - "west": {"uv": [14.75, 9, 15, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9, 15, 10.25], "texture": "#0"}, - "down": {"uv": [14.75, 10.25, 15, 9], "texture": "#0"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 9 + ], + "texture": "#0" + } } }, { "name": "azi_46", - "from": [1.75, 0, 9.25], - "to": [2, 0.25, 9.5], + "from": [ + 1.75, + 0, + 9.25 + ], + "to": [ + 2, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2, 9.25, 1.75, 9.5], "texture": "#0"}, - "east": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#0"}, - "west": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#0"}, - "down": {"uv": [1.75, 9.5, 2, 9.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2, + 9.25 + ], + "texture": "#0" + } } }, { "name": "azi_47", - "from": [10.75, 0, 9.25], - "to": [11, 0.25, 9.5], + "from": [ + 10.75, + 0, + 9.25 + ], + "to": [ + 11, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11, 9.25, 10.75, 9.5], "texture": "#0"}, - "east": {"uv": [10.75, 9.25, 11, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "west": {"uv": [10.75, 9.25, 11, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "down": {"uv": [10.75, 9.5, 11, 9.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 9.25, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11, + 9.25 + ], + "texture": "#0" + } } }, { "name": "azi_48", - "from": [15, 0, 9.25], - "to": [15.25, 0.25, 10.5], + "from": [ + 15, + 0, + 9.25 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 9.25, 15, 9.5], "texture": "#0"}, - "east": {"uv": [15, 9.25, 15.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10.25, 15.25, 10.5], "texture": "#0"}, - "west": {"uv": [15, 9.25, 15.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 9.25, 15.25, 10.5], "texture": "#0"}, - "down": {"uv": [15, 10.5, 15.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 9.25, + 15, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 9.25, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10.25, + 15.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 9.25, + 15.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 9.25, + 15.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.5, + 15.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "azi_49", - "from": [15.25, 0, 9.5], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 9.5 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 9.5, 15.25, 9.75], "texture": "#0"}, - "east": {"uv": [15.25, 9.5, 15.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#0"}, - "west": {"uv": [15.25, 9.5, 15.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 9.5, 15.5, 10.25], "texture": "#0"}, - "down": {"uv": [15.25, 10.25, 15.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 9.5, + 15.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9.5, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 9.5, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 9.5, + 15.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "azi_50", - "from": [3.5, 0, 9.75], - "to": [3.75, 0.25, 10], + "from": [ + 3.5, + 0, + 9.75 + ], + "to": [ + 3.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.75, 9.75, 3.5, 10], "texture": "#0"}, - "east": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.75, 3.75, 10], "texture": "#0"}, - "west": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.75, 3.75, 10], "texture": "#0"}, - "down": {"uv": [3.5, 10, 3.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 9.75, + 3.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10, + 3.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "azi_51", - "from": [4.5, 0, 10], - "to": [4.75, 0.25, 10.25], + "from": [ + 4.5, + 0, + 10 + ], + "to": [ + 4.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.75, 10, 4.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10, 4.75, 10.25], "texture": "#0"}, - "west": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10, 4.75, 10.25], "texture": "#0"}, - "down": {"uv": [4.5, 10.25, 4.75, 10], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10 + ], + "texture": "#0" + } } }, { "name": "azi_52", - "from": [8.25, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 8.25, 10.5], "texture": "#0"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [8.25, 10.5, 8.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "azi_53", - "from": [8.75, 0, 10.75], - "to": [9, 0.25, 11], + "from": [ + 8.75, + 0, + 10.75 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 10.75, 8.75, 11], "texture": "#0"}, - "east": {"uv": [8.75, 10.75, 9, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.75, 9, 11], "texture": "#0"}, - "west": {"uv": [8.75, 10.75, 9, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10.75, 9, 11], "texture": "#0"}, - "down": {"uv": [8.75, 11, 9, 10.75], "texture": "#0"} + "north": { + "uv": [ + 9, + 10.75, + 8.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11, + 9, + 10.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 7], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 7 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-10.5, -180, 0], - "translation": [0.25, 0.5, -8.25], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + -10.5, + -180, + 0 + ], + "translation": [ + 0.25, + 0.5, + -8.25 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "azi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/beta.json b/pack/assets/minecraft/models/fish/beta.json index cb6895fa..e8f8cde2 100644 --- a/pack/assets/minecraft/models/fish/beta.json +++ b/pack/assets/minecraft/models/fish/beta.json @@ -2,747 +2,3975 @@ "__name": "ベタ", "credit": "Made with Blockbench", "textures": { - "0": "fish/beta", - "particle": "fish/beta" + "0": "item/fish/beta", + "particle": "item/fish/beta" }, "elements": [ { "name": "beta_0", - "from": [9, 0, 3], - "to": [9.5, 0.25, 14.25], + "from": [ + 9, + 0, + 3 + ], + "to": [ + 9.5, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [9.5, 3, 9, 3.25], "texture": "#0"}, - "east": {"uv": [9.25, 3, 9.5, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 14, 9.5, 14.25], "texture": "#0"}, - "west": {"uv": [9, 3, 9.25, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 3, 9.5, 14.25], "texture": "#0"}, - "down": {"uv": [9, 14.25, 9.5, 3], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 3, + 9, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 3, + 9.5, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 14, + 9.5, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3, + 9.25, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3, + 9.5, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 14.25, + 9.5, + 3 + ], + "texture": "#0" + } } }, { "name": "beta_1", - "from": [10.25, 0, 3], - "to": [10.5, 0.25, 13], + "from": [ + 10.25, + 0, + 3 + ], + "to": [ + 10.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [10.5, 3, 10.25, 3.25], "texture": "#0"}, - "east": {"uv": [10.25, 3, 10.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 12.75, 10.5, 13], "texture": "#0"}, - "west": {"uv": [10.25, 3, 10.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 3, 10.5, 13], "texture": "#0"}, - "down": {"uv": [10.25, 13, 10.5, 3], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 3, + 10.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 3, + 10.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 3, + 10.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 3, + 10.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 13, + 10.5, + 3 + ], + "texture": "#0" + } } }, { "name": "beta_2", - "from": [8.25, 0, 3.25], - "to": [9, 0.25, 14.25], + "from": [ + 8.25, + 0, + 3.25 + ], + "to": [ + 9, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [9, 3.25, 8.25, 3.5], "texture": "#0"}, - "east": {"uv": [8.75, 3.25, 9, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 14, 9, 14.25], "texture": "#0"}, - "west": {"uv": [8.25, 3.25, 8.5, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 3.25, 9, 14.25], "texture": "#0"}, - "down": {"uv": [8.25, 14.25, 9, 3.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 3.25, + 8.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 3.25, + 9, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 14, + 9, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 3.25, + 8.5, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 3.25, + 9, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 14.25, + 9, + 3.25 + ], + "texture": "#0" + } } }, { "name": "beta_3", - "from": [9.5, 0, 3.25], - "to": [10.25, 0.25, 13], + "from": [ + 9.5, + 0, + 3.25 + ], + "to": [ + 10.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [10.25, 3.25, 9.5, 3.5], "texture": "#0"}, - "east": {"uv": [10, 3.25, 10.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 12.75, 10.25, 13], "texture": "#0"}, - "west": {"uv": [9.5, 3.25, 9.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 3.25, 10.25, 13], "texture": "#0"}, - "down": {"uv": [9.5, 13, 10.25, 3.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 3.25, + 9.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 3.25, + 10.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 12.75, + 10.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3.25, + 9.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.25, + 10.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 13, + 10.25, + 3.25 + ], + "texture": "#0" + } } }, { "name": "beta_4", - "from": [10.5, 0, 3.25], - "to": [11, 0.25, 13.25], + "from": [ + 10.5, + 0, + 3.25 + ], + "to": [ + 11, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [11, 3.25, 10.5, 3.5], "texture": "#0"}, - "east": {"uv": [10.75, 3.25, 11, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 13, 11, 13.25], "texture": "#0"}, - "west": {"uv": [10.5, 3.25, 10.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 3.25, 11, 13.25], "texture": "#0"}, - "down": {"uv": [10.5, 13.25, 11, 3.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 3.25, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 3.25, + 11, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13, + 11, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.25, + 10.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 3.25, + 11, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13.25, + 11, + 3.25 + ], + "texture": "#0" + } } }, { "name": "beta_5", - "from": [7.5, 0, 3.5], - "to": [8.25, 0.25, 14], + "from": [ + 7.5, + 0, + 3.5 + ], + "to": [ + 8.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [8.25, 3.5, 7.5, 3.75], "texture": "#0"}, - "east": {"uv": [8, 3.5, 8.25, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 13.75, 8.25, 14], "texture": "#0"}, - "west": {"uv": [7.5, 3.5, 7.75, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 3.5, 8.25, 14], "texture": "#0"}, - "down": {"uv": [7.5, 14, 8.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 3.5, + 7.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3.5, + 8.25, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 13.75, + 8.25, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.5, + 7.75, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.5, + 8.25, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 14, + 8.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "beta_6", - "from": [11, 0, 3.5], - "to": [11.5, 0.25, 13.5], + "from": [ + 11, + 0, + 3.5 + ], + "to": [ + 11.5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [11.5, 3.5, 11, 3.75], "texture": "#0"}, - "east": {"uv": [11.25, 3.5, 11.5, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 13.25, 11.5, 13.5], "texture": "#0"}, - "west": {"uv": [11, 3.5, 11.25, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 3.5, 11.5, 13.5], "texture": "#0"}, - "down": {"uv": [11, 13.5, 11.5, 3.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 3.5, + 11, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 3.5, + 11.5, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 13.25, + 11.5, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 3.5, + 11.25, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 3.5, + 11.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 13.5, + 11.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "beta_7", - "from": [7, 0, 3.75], - "to": [7.5, 0.25, 14.25], + "from": [ + 7, + 0, + 3.75 + ], + "to": [ + 7.5, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7.5, 3.75, 7, 4], "texture": "#0"}, - "east": {"uv": [7.25, 3.75, 7.5, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 14, 7.5, 14.25], "texture": "#0"}, - "west": {"uv": [7, 3.75, 7.25, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 3.75, 7.5, 14.25], "texture": "#0"}, - "down": {"uv": [7, 14.25, 7.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3.75, + 7.5, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 14, + 7.5, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.75, + 7.25, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 3.75, + 7.5, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 14.25, + 7.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "beta_8", - "from": [11.5, 0, 3.75], - "to": [12, 0.25, 12.75], + "from": [ + 11.5, + 0, + 3.75 + ], + "to": [ + 12, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [12, 3.75, 11.5, 4], "texture": "#0"}, - "east": {"uv": [11.75, 3.75, 12, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 12.5, 12, 12.75], "texture": "#0"}, - "west": {"uv": [11.5, 3.75, 11.75, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 3.75, 12, 12.75], "texture": "#0"}, - "down": {"uv": [11.5, 12.75, 12, 3.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 3.75, + 11.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 3.75, + 12, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 12.5, + 12, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 3.75, + 11.75, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 3.75, + 12, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 12.75, + 12, + 3.75 + ], + "texture": "#0" + } } }, { "name": "beta_9", - "from": [6.75, 0, 4], - "to": [7, 0.25, 14.25], + "from": [ + 6.75, + 0, + 4 + ], + "to": [ + 7, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7, 4, 6.75, 4.25], "texture": "#0"}, - "east": {"uv": [6.75, 4, 7, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 14, 7, 14.25], "texture": "#0"}, - "west": {"uv": [6.75, 4, 7, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4, 7, 14.25], "texture": "#0"}, - "down": {"uv": [6.75, 14.25, 7, 4], "texture": "#0"} + "north": { + "uv": [ + 7, + 4, + 6.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4, + 7, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 14, + 7, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4, + 7, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4, + 7, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 14.25, + 7, + 4 + ], + "texture": "#0" + } } }, { "name": "beta_10", - "from": [12, 0, 4], - "to": [12.5, 0.25, 12.75], + "from": [ + 12, + 0, + 4 + ], + "to": [ + 12.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [12.5, 4, 12, 4.25], "texture": "#0"}, - "east": {"uv": [12.25, 4, 12.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 12.5, 12.5, 12.75], "texture": "#0"}, - "west": {"uv": [12, 4, 12.25, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 4, 12.5, 12.75], "texture": "#0"}, - "down": {"uv": [12, 12.75, 12.5, 4], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 4, + 12, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 4, + 12.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 12.5, + 12.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 4, + 12.25, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 4, + 12.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 12.75, + 12.5, + 4 + ], + "texture": "#0" + } } }, { "name": "beta_11", - "from": [6.25, 0, 4.25], - "to": [6.75, 0.25, 14.25], + "from": [ + 6.25, + 0, + 4.25 + ], + "to": [ + 6.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [6.75, 4.25, 6.25, 4.5], "texture": "#0"}, - "east": {"uv": [6.5, 4.25, 6.75, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 14, 6.75, 14.25], "texture": "#0"}, - "west": {"uv": [6.25, 4.25, 6.5, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4.25, 6.75, 14.25], "texture": "#0"}, - "down": {"uv": [6.25, 14.25, 6.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 4.25, + 6.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4.25, + 6.75, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 14, + 6.75, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4.25, + 6.5, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.25, + 6.75, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 14.25, + 6.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "beta_12", - "from": [12.5, 0, 4.25], - "to": [12.75, 0.25, 13], + "from": [ + 12.5, + 0, + 4.25 + ], + "to": [ + 12.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [12.75, 4.25, 12.5, 4.5], "texture": "#0"}, - "east": {"uv": [12.5, 4.25, 12.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 12.75, 12.75, 13], "texture": "#0"}, - "west": {"uv": [12.5, 4.25, 12.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 4.25, 12.75, 13], "texture": "#0"}, - "down": {"uv": [12.5, 13, 12.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 4.25, + 12.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 4.25, + 12.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 12.75, + 12.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 4.25, + 12.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 4.25, + 12.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 13, + 12.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "beta_13", - "from": [6, 0, 4.5], - "to": [6.25, 0.25, 14], + "from": [ + 6, + 0, + 4.5 + ], + "to": [ + 6.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [6.25, 4.5, 6, 4.75], "texture": "#0"}, - "east": {"uv": [6, 4.5, 6.25, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 13.75, 6.25, 14], "texture": "#0"}, - "west": {"uv": [6, 4.5, 6.25, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.5, 6.25, 14], "texture": "#0"}, - "down": {"uv": [6, 14, 6.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 4.5, + 6, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 6.25, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 13.75, + 6.25, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.5, + 6.25, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.5, + 6.25, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 14, + 6.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "beta_14", - "from": [12.75, 0, 4.5], - "to": [13.75, 0.25, 12.25], + "from": [ + 12.75, + 0, + 4.5 + ], + "to": [ + 13.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [13.75, 4.5, 12.75, 4.75], "texture": "#0"}, - "east": {"uv": [13.5, 4.5, 13.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 12, 13.75, 12.25], "texture": "#0"}, - "west": {"uv": [12.75, 4.5, 13, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 4.5, 13.75, 12.25], "texture": "#0"}, - "down": {"uv": [12.75, 12.25, 13.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 4.5, + 12.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 4.5, + 13.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 12, + 13.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 4.5, + 13, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 4.5, + 13.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 12.25, + 13.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "beta_15", - "from": [13.75, 0, 4.75], - "to": [14, 0.25, 5.25], + "from": [ + 13.75, + 0, + 4.75 + ], + "to": [ + 14, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [14, 4.75, 13.75, 5], "texture": "#0"}, - "east": {"uv": [13.75, 4.75, 14, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 5, 14, 5.25], "texture": "#0"}, - "west": {"uv": [13.75, 4.75, 14, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 4.75, 14, 5.25], "texture": "#0"}, - "down": {"uv": [13.75, 5.25, 14, 4.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 4.75, + 13.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 4.75, + 14, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 5, + 14, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 4.75, + 14, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 4.75, + 14, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 5.25, + 14, + 4.75 + ], + "texture": "#0" + } } }, { "name": "beta_16", - "from": [5.75, 0, 5], - "to": [6, 0.25, 13.75], + "from": [ + 5.75, + 0, + 5 + ], + "to": [ + 6, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [6, 5, 5.75, 5.25], "texture": "#0"}, - "east": {"uv": [5.75, 5, 6, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 13.5, 6, 13.75], "texture": "#0"}, - "west": {"uv": [5.75, 5, 6, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5, 6, 13.75], "texture": "#0"}, - "down": {"uv": [5.75, 13.75, 6, 5], "texture": "#0"} + "north": { + "uv": [ + 6, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5, + 6, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 13.5, + 6, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5, + 6, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 13.75, + 6, + 5 + ], + "texture": "#0" + } } }, { "name": "beta_17", - "from": [5.5, 0, 5.75], - "to": [5.75, 0.25, 13.25], + "from": [ + 5.5, + 0, + 5.75 + ], + "to": [ + 5.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [5.75, 5.75, 5.5, 6], "texture": "#0"}, - "east": {"uv": [5.5, 5.75, 5.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 13, 5.75, 13.25], "texture": "#0"}, - "west": {"uv": [5.5, 5.75, 5.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.75, 5.75, 13.25], "texture": "#0"}, - "down": {"uv": [5.5, 13.25, 5.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.75, + 5.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 13, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.75, + 5.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.75, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 13.25, + 5.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "beta_18", - "from": [13.75, 0, 5.75], - "to": [14.25, 0.25, 11], + "from": [ + 13.75, + 0, + 5.75 + ], + "to": [ + 14.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.25, 5.75, 13.75, 6], "texture": "#0"}, - "east": {"uv": [14, 5.75, 14.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.75, 14.25, 11], "texture": "#0"}, - "west": {"uv": [13.75, 5.75, 14, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5.75, 14.25, 11], "texture": "#0"}, - "down": {"uv": [13.75, 11, 14.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 5.75, + 13.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 5.75, + 14.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5.75, + 14, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 11, + 14.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "beta_19", - "from": [14.25, 0, 6], - "to": [14.5, 0.25, 11], + "from": [ + 14.25, + 0, + 6 + ], + "to": [ + 14.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.5, 6, 14.25, 6.25], "texture": "#0"}, - "east": {"uv": [14.25, 6, 14.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 10.75, 14.5, 11], "texture": "#0"}, - "west": {"uv": [14.25, 6, 14.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6, 14.5, 11], "texture": "#0"}, - "down": {"uv": [14.25, 11, 14.5, 6], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6, + 14.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6, + 14.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 10.75, + 14.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6, + 14.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6, + 14.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 11, + 14.5, + 6 + ], + "texture": "#0" + } } }, { "name": "beta_20", - "from": [3.25, 0, 6.5], - "to": [4.75, 0.25, 12.25], + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 4.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [4.75, 6.5, 3.25, 6.75], "texture": "#0"}, - "east": {"uv": [4.5, 6.5, 4.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 12, 4.75, 12.25], "texture": "#0"}, - "west": {"uv": [3.25, 6.5, 3.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.5, 4.75, 12.25], "texture": "#0"}, - "down": {"uv": [3.25, 12.25, 4.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 4.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 12, + 4.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 4.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 12.25, + 4.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "beta_21", - "from": [2.75, 0, 6.75], - "to": [3.25, 0.25, 9.25], + "from": [ + 2.75, + 0, + 6.75 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 6.75, 2.75, 7], "texture": "#0"}, - "east": {"uv": [3, 6.75, 3.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9, 3.25, 9.25], "texture": "#0"}, - "west": {"uv": [2.75, 6.75, 3, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6.75, 3.25, 9.25], "texture": "#0"}, - "down": {"uv": [2.75, 9.25, 3.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 6.75, + 2.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.75, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6.75, + 3, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6.75, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.25, + 3.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "beta_22", - "from": [4.75, 0, 6.75], - "to": [5.5, 0.25, 12.75], + "from": [ + 4.75, + 0, + 6.75 + ], + "to": [ + 5.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [5.5, 6.75, 4.75, 7], "texture": "#0"}, - "east": {"uv": [5.25, 6.75, 5.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 12.5, 5.5, 12.75], "texture": "#0"}, - "west": {"uv": [4.75, 6.75, 5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.75, 5.5, 12.75], "texture": "#0"}, - "down": {"uv": [4.75, 12.75, 5.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.75, + 4.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.75, + 5.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 12.5, + 5.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.75, + 5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.75, + 5.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 12.75, + 5.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "beta_23", - "from": [14.5, 0, 6.75], - "to": [14.75, 0.25, 11], + "from": [ + 14.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.5, 7], "texture": "#0"}, - "east": {"uv": [14.5, 6.75, 14.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 10.75, 14.75, 11], "texture": "#0"}, - "west": {"uv": [14.5, 6.75, 14.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.75, 14.75, 11], "texture": "#0"}, - "down": {"uv": [14.5, 11, 14.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10.75, + 14.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.75, + 14.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.75, + 14.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 11, + 14.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "beta_24", - "from": [2.25, 0, 7], - "to": [2.75, 0.25, 9.25], + "from": [ + 2.25, + 0, + 7 + ], + "to": [ + 2.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.75, 7, 2.25, 7.25], "texture": "#0"}, - "east": {"uv": [2.5, 7, 2.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 2.75, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 7, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7, 2.75, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 2.75, 7], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 7, + 2.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7, + 2.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.75, + 7 + ], + "texture": "#0" + } } }, { "name": "beta_25", - "from": [14.75, 0, 7], - "to": [15, 0.25, 8.25], + "from": [ + 14.75, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15, 7, 14.75, 7.25], "texture": "#0"}, - "east": {"uv": [14.75, 7, 15, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8, 15, 8.25], "texture": "#0"}, - "west": {"uv": [14.75, 7, 15, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7, 15, 8.25], "texture": "#0"}, - "down": {"uv": [14.75, 8.25, 15, 7], "texture": "#0"} + "north": { + "uv": [ + 15, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7, + 15, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7, + 15, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.25, + 15, + 7 + ], + "texture": "#0" + } } }, { "name": "beta_26", - "from": [1.75, 0, 7.25], - "to": [2.25, 0.25, 9], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 7.25, 1.75, 7.5], "texture": "#0"}, - "east": {"uv": [2, 7.25, 2.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2.25, 9], "texture": "#0"}, - "west": {"uv": [1.75, 7.25, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.25, 2.25, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "beta_27", - "from": [15, 0, 7.25], - "to": [15.25, 0.25, 8], + "from": [ + 15, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.25, 7.25, 15, 7.5], "texture": "#0"}, - "east": {"uv": [15, 7.25, 15.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.75, 15.25, 8], "texture": "#0"}, - "west": {"uv": [15, 7.25, 15.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.25, 15.25, 8], "texture": "#0"}, - "down": {"uv": [15, 8, 15.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.25, + 15.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.25, + 15.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8, + 15.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "beta_28", - "from": [1.25, 0, 7.5], - "to": [1.75, 0.25, 8.75], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.75, 7.5, 1.25, 7.75], "texture": "#0"}, - "east": {"uv": [1.5, 7.5, 1.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.75, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 7.5, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.5, 1.75, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "beta_29", - "from": [1, 0, 7.75], - "to": [1.25, 0.25, 8.75], + "from": [ + 1, + 0, + 7.75 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 7.75, 1, 8], "texture": "#0"}, - "east": {"uv": [1, 7.75, 1.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#0"}, - "west": {"uv": [1, 7.75, 1.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.75, 1.25, 8.75], "texture": "#0"}, - "down": {"uv": [1, 8.75, 1.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.75, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.75, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "beta_30", - "from": [0.75, 0, 8], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 8, 0.75, 8.25], "texture": "#0"}, - "east": {"uv": [0.75, 8, 1, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 8, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8, 1, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 1, 8], "texture": "#0"} + "north": { + "uv": [ + 1, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 8 + ], + "texture": "#0" + } } }, { "name": "beta_31", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 10.75], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#0"}, - "east": {"uv": [14.75, 8.5, 15, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10.5, 15, 10.75], "texture": "#0"}, - "west": {"uv": [14.75, 8.5, 15, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.5, 15, 10.75], "texture": "#0"}, - "down": {"uv": [14.75, 10.75, 15, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10.75, + 15, + 8.5 + ], + "texture": "#0" + } } }, { "name": "beta_32", - "from": [1.5, 0, 8.75], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 8.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 8.75, 1.5, 9], "texture": "#0"}, - "east": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "west": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 1.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "beta_33", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 10.5], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#0"}, - "east": {"uv": [15, 8.75, 15.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10.25, 15.25, 10.5], "texture": "#0"}, - "west": {"uv": [15, 8.75, 15.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.75, 15.25, 10.5], "texture": "#0"}, - "down": {"uv": [15, 10.5, 15.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10.25, + 15.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.5, + 15.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "beta_34", - "from": [2, 0, 9], - "to": [2.25, 0.25, 9.25], + "from": [ + 2, + 0, + 9 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 9, 2, 9.25], "texture": "#0"}, - "east": {"uv": [2, 9, 2.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9, 2.25, 9.25], "texture": "#0"}, - "west": {"uv": [2, 9, 2.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9, 2.25, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.25, 2.25, 9], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.25, + 9 + ], + "texture": "#0" + } } }, { "name": "beta_35", - "from": [3, 0, 9.75], - "to": [3.25, 0.25, 11.5], + "from": [ + 3, + 0, + 9.75 + ], + "to": [ + 3.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [3.25, 9.75, 3, 10], "texture": "#0"}, - "east": {"uv": [3, 9.75, 3.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 11.25, 3.25, 11.5], "texture": "#0"}, - "west": {"uv": [3, 9.75, 3.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9.75, 3.25, 11.5], "texture": "#0"}, - "down": {"uv": [3, 11.5, 3.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 9.75, + 3, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.75, + 3.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 11.25, + 3.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9.75, + 3.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.75, + 3.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 11.5, + 3.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "beta_36", - "from": [13.75, 0, 11], - "to": [14, 0.25, 12], + "from": [ + 13.75, + 0, + 11 + ], + "to": [ + 14, + 0.25, + 12 + ], "faces": { - "north": {"uv": [14, 11, 13.75, 11.25], "texture": "#0"}, - "east": {"uv": [13.75, 11, 14, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 11.75, 14, 12], "texture": "#0"}, - "west": {"uv": [13.75, 11, 14, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 11, 14, 12], "texture": "#0"}, - "down": {"uv": [13.75, 12, 14, 11], "texture": "#0"} + "north": { + "uv": [ + 14, + 11, + 13.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 11, + 14, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 11.75, + 14, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 11, + 14, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 11, + 14, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 12, + 14, + 11 + ], + "texture": "#0" + } } }, { "name": "beta_37", - "from": [14, 0, 11.5], - "to": [14.25, 0.25, 11.75], + "from": [ + 14, + 0, + 11.5 + ], + "to": [ + 14.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [14.25, 11.5, 14, 11.75], "texture": "#0"}, - "east": {"uv": [14, 11.5, 14.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 11.5, 14.25, 11.75], "texture": "#0"}, - "west": {"uv": [14, 11.5, 14.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 11.5, 14.25, 11.75], "texture": "#0"}, - "down": {"uv": [14, 11.75, 14.25, 11.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 11.5, + 14, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 11.5, + 14.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 11.5, + 14.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 11.5, + 14.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 11.5, + 14.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 11.75, + 14.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "beta_38", - "from": [3.5, 0, 12.25], - "to": [4.25, 0.25, 13], + "from": [ + 3.5, + 0, + 12.25 + ], + "to": [ + 4.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [4.25, 12.25, 3.5, 12.5], "texture": "#0"}, - "east": {"uv": [4, 12.25, 4.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 12.75, 4.25, 13], "texture": "#0"}, - "west": {"uv": [3.5, 12.25, 3.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 12.25, 4.25, 13], "texture": "#0"}, - "down": {"uv": [3.5, 13, 4.25, 12.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 12.25, + 3.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 12.25, + 4.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 12.75, + 4.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 12.25, + 3.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 12.25, + 4.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 13, + 4.25, + 12.25 + ], + "texture": "#0" + } } }, { "name": "beta_39", - "from": [4.5, 0, 12.25], - "to": [4.75, 0.25, 12.5], + "from": [ + 4.5, + 0, + 12.25 + ], + "to": [ + 4.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [4.75, 12.25, 4.5, 12.5], "texture": "#0"}, - "east": {"uv": [4.5, 12.25, 4.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 12.25, 4.75, 12.5], "texture": "#0"}, - "west": {"uv": [4.5, 12.25, 4.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 12.25, 4.75, 12.5], "texture": "#0"}, - "down": {"uv": [4.5, 12.5, 4.75, 12.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 12.25, + 4.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 12.5, + 4.75, + 12.25 + ], + "texture": "#0" + } } }, { "name": "beta_40", - "from": [12.75, 0, 12.25], - "to": [13.5, 0.25, 12.5], + "from": [ + 12.75, + 0, + 12.25 + ], + "to": [ + 13.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [13.5, 12.25, 12.75, 12.5], "texture": "#0"}, - "east": {"uv": [13.25, 12.25, 13.5, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 12.25, 13.5, 12.5], "texture": "#0"}, - "west": {"uv": [12.75, 12.25, 13, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 12.25, 13.5, 12.5], "texture": "#0"}, - "down": {"uv": [12.75, 12.5, 13.5, 12.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 12.25, + 12.75, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 12.25, + 13.5, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 12.25, + 13.5, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 12.25, + 13, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 12.25, + 13.5, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 12.5, + 13.5, + 12.25 + ], + "texture": "#0" + } } }, { "name": "beta_41", - "from": [12.75, 0, 12.5], - "to": [13, 0.25, 12.75], + "from": [ + 12.75, + 0, + 12.5 + ], + "to": [ + 13, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [13, 12.5, 12.75, 12.75], "texture": "#0"}, - "east": {"uv": [12.75, 12.5, 13, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 12.5, 13, 12.75], "texture": "#0"}, - "west": {"uv": [12.75, 12.5, 13, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 12.5, 13, 12.75], "texture": "#0"}, - "down": {"uv": [12.75, 12.75, 13, 12.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 12.5, + 12.75, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 12.5, + 13, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 12.5, + 13, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 12.5, + 13, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 12.5, + 13, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 12.75, + 13, + 12.5 + ], + "texture": "#0" + } } }, { "name": "beta_42", - "from": [5, 0, 12.75], - "to": [5.5, 0.25, 13], + "from": [ + 5, + 0, + 12.75 + ], + "to": [ + 5.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [5.5, 12.75, 5, 13], "texture": "#0"}, - "east": {"uv": [5.25, 12.75, 5.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 12.75, 5.5, 13], "texture": "#0"}, - "west": {"uv": [5, 12.75, 5.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 12.75, 5.5, 13], "texture": "#0"}, - "down": {"uv": [5, 13, 5.5, 12.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 12.75, + 5, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 12.75, + 5.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 12.75, + 5.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 12.75, + 5.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 12.75, + 5.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 13, + 5.5, + 12.75 + ], + "texture": "#0" + } } }, { "name": "beta_43", - "from": [11.5, 0, 12.75], - "to": [11.75, 0.25, 13.25], + "from": [ + 11.5, + 0, + 12.75 + ], + "to": [ + 11.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [11.75, 12.75, 11.5, 13], "texture": "#0"}, - "east": {"uv": [11.5, 12.75, 11.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 13, 11.75, 13.25], "texture": "#0"}, - "west": {"uv": [11.5, 12.75, 11.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 12.75, 11.75, 13.25], "texture": "#0"}, - "down": {"uv": [11.5, 13.25, 11.75, 12.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 12.75, + 11.5, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 12.75, + 11.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 13, + 11.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 12.75, + 11.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 12.75, + 11.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 13.25, + 11.75, + 12.75 + ], + "texture": "#0" + } } }, { "name": "beta_44", - "from": [12.25, 0, 12.75], - "to": [12.5, 0.25, 13], + "from": [ + 12.25, + 0, + 12.75 + ], + "to": [ + 12.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [12.5, 12.75, 12.25, 13], "texture": "#0"}, - "east": {"uv": [12.25, 12.75, 12.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 12.75, 12.5, 13], "texture": "#0"}, - "west": {"uv": [12.25, 12.75, 12.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 12.75, 12.5, 13], "texture": "#0"}, - "down": {"uv": [12.25, 13, 12.5, 12.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 12.75, + 12.25, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 12.75, + 12.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 12.75, + 12.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 12.75, + 12.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 12.75, + 12.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 13, + 12.5, + 12.75 + ], + "texture": "#0" + } } }, { "name": "beta_45", - "from": [3.75, 0, 13], - "to": [4, 0.25, 13.25], + "from": [ + 3.75, + 0, + 13 + ], + "to": [ + 4, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [4, 13, 3.75, 13.25], "texture": "#0"}, - "east": {"uv": [3.75, 13, 4, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 13, 4, 13.25], "texture": "#0"}, - "west": {"uv": [3.75, 13, 4, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 13, 4, 13.25], "texture": "#0"}, - "down": {"uv": [3.75, 13.25, 4, 13], "texture": "#0"} + "north": { + "uv": [ + 4, + 13, + 3.75, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 13, + 4, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 13, + 4, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 13, + 4, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 13, + 4, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 13.25, + 4, + 13 + ], + "texture": "#0" + } } }, { "name": "beta_46", - "from": [5.25, 0, 13], - "to": [5.5, 0.25, 13.25], + "from": [ + 5.25, + 0, + 13 + ], + "to": [ + 5.5, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [5.5, 13, 5.25, 13.25], "texture": "#0"}, - "east": {"uv": [5.25, 13, 5.5, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 13, 5.5, 13.25], "texture": "#0"}, - "west": {"uv": [5.25, 13, 5.5, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 13, 5.5, 13.25], "texture": "#0"}, - "down": {"uv": [5.25, 13.25, 5.5, 13], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 13, + 5.25, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 13, + 5.5, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 13, + 5.5, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 13, + 5.5, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 13, + 5.5, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 13.25, + 5.5, + 13 + ], + "texture": "#0" + } } }, { "name": "beta_47", - "from": [9.5, 0, 13], - "to": [10, 0.25, 14.25], + "from": [ + 9.5, + 0, + 13 + ], + "to": [ + 10, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [10, 13, 9.5, 13.25], "texture": "#0"}, - "east": {"uv": [9.75, 13, 10, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 14, 10, 14.25], "texture": "#0"}, - "west": {"uv": [9.5, 13, 9.75, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 13, 10, 14.25], "texture": "#0"}, - "down": {"uv": [9.5, 14.25, 10, 13], "texture": "#0"} + "north": { + "uv": [ + 10, + 13, + 9.5, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 13, + 10, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 14, + 10, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 13, + 9.75, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 13, + 10, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 14.25, + 10, + 13 + ], + "texture": "#0" + } } }, { "name": "beta_48", - "from": [10, 0, 13.25], - "to": [10.25, 0.25, 14.25], + "from": [ + 10, + 0, + 13.25 + ], + "to": [ + 10.25, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [10.25, 13.25, 10, 13.5], "texture": "#0"}, - "east": {"uv": [10, 13.25, 10.25, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 14, 10.25, 14.25], "texture": "#0"}, - "west": {"uv": [10, 13.25, 10.25, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 13.25, 10.25, 14.25], "texture": "#0"}, - "down": {"uv": [10, 14.25, 10.25, 13.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 13.25, + 10, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 13.25, + 10.25, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 14, + 10.25, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 13.25, + 10.25, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 13.25, + 10.25, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 14.25, + 10.25, + 13.25 + ], + "texture": "#0" + } } }, { "name": "beta_49", - "from": [10.75, 0, 13.25], - "to": [11, 0.25, 13.5], + "from": [ + 10.75, + 0, + 13.25 + ], + "to": [ + 11, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [11, 13.25, 10.75, 13.5], "texture": "#0"}, - "east": {"uv": [10.75, 13.25, 11, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 13.25, 11, 13.5], "texture": "#0"}, - "west": {"uv": [10.75, 13.25, 11, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 13.25, 11, 13.5], "texture": "#0"}, - "down": {"uv": [10.75, 13.5, 11, 13.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 13.25, + 10.75, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 13.25, + 11, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 13.25, + 11, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 13.25, + 11, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 13.25, + 11, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 13.5, + 11, + 13.25 + ], + "texture": "#0" + } } }, { "name": "beta_50", - "from": [10.25, 0, 13.5], - "to": [10.5, 0.25, 14], + "from": [ + 10.25, + 0, + 13.5 + ], + "to": [ + 10.5, + 0.25, + 14 + ], "faces": { - "north": {"uv": [10.5, 13.5, 10.25, 13.75], "texture": "#0"}, - "east": {"uv": [10.25, 13.5, 10.5, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 13.75, 10.5, 14], "texture": "#0"}, - "west": {"uv": [10.25, 13.5, 10.5, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 13.5, 10.5, 14], "texture": "#0"}, - "down": {"uv": [10.25, 14, 10.5, 13.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 13.5, + 10.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 13.5, + 10.5, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 13.75, + 10.5, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 13.5, + 10.5, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 13.5, + 10.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 14, + 10.5, + 13.5 + ], + "texture": "#0" + } } }, { "name": "beta_51", - "from": [7.5, 0, 14], - "to": [7.75, 0.25, 14.25], + "from": [ + 7.5, + 0, + 14 + ], + "to": [ + 7.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7.75, 14, 7.5, 14.25], "texture": "#0"}, - "east": {"uv": [7.5, 14, 7.75, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 14, 7.75, 14.25], "texture": "#0"}, - "west": {"uv": [7.5, 14, 7.75, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 14, 7.75, 14.25], "texture": "#0"}, - "down": {"uv": [7.5, 14.25, 7.75, 14], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 14, + 7.5, + 14.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 14, + 7.75, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 14, + 7.75, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 14, + 7.75, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 14, + 7.75, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 14.25, + 7.75, + 14 + ], + "texture": "#0" + } } }, { "name": "beta_52", - "from": [8.5, 0, 14.25], - "to": [9.25, 0.25, 14.5], + "from": [ + 8.5, + 0, + 14.25 + ], + "to": [ + 9.25, + 0.25, + 14.5 + ], "faces": { - "north": {"uv": [9.25, 14.25, 8.5, 14.5], "texture": "#0"}, - "east": {"uv": [9, 14.25, 9.25, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 14.25, 9.25, 14.5], "texture": "#0"}, - "west": {"uv": [8.5, 14.25, 8.75, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 14.25, 9.25, 14.5], "texture": "#0"}, - "down": {"uv": [8.5, 14.5, 9.25, 14.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 14.25, + 8.5, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 14.25, + 9.25, + 14.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 14.25, + 9.25, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 14.25, + 8.75, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 14.25, + 9.25, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 14.5, + 9.25, + 14.25 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "beta", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/burakkubasu.json b/pack/assets/minecraft/models/fish/burakkubasu.json index a642bedd..8707c7bc 100644 --- a/pack/assets/minecraft/models/fish/burakkubasu.json +++ b/pack/assets/minecraft/models/fish/burakkubasu.json @@ -2,618 +2,3256 @@ "__name": "ブラックバス", "credit": "Made with Blockbench", "textures": { - "1": "fish/burakkubasu", - "particle": "fish/burakkubasu" + "1": "item/fish/burakkubasu", + "particle": "item/fish/burakkubasu" }, "elements": [ { "name": "burakkubasu_0", - "from": [6.75, 0, 4.75], - "to": [7.25, 0.25, 11.25], + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.25, 4.75, 6.75, 5], "texture": "#1"}, - "east": {"uv": [7, 4.75, 7.25, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 11, 7.25, 11.25], "texture": "#1"}, - "west": {"uv": [6.75, 4.75, 7, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 4.75, 7.25, 11.25], "texture": "#1"}, - "down": {"uv": [6.75, 11.25, 7.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 4.75, + 6.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 4.75, + 7.25, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 11, + 7.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7.25, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 11.25, + 7.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_1", - "from": [6.25, 0, 5], - "to": [6.75, 0.25, 11], + "from": [ + 6.25, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.75, 5, 6.25, 5.25], "texture": "#1"}, - "east": {"uv": [6.5, 5, 6.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 10.75, 6.75, 11], "texture": "#1"}, - "west": {"uv": [6.25, 5, 6.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 5, 6.75, 11], "texture": "#1"}, - "down": {"uv": [6.25, 11, 6.75, 5], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 5, + 6.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 10.75, + 6.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5, + 6.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 5, + 6.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 11, + 6.75, + 5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_2", - "from": [7.25, 0, 5], - "to": [8, 0.25, 10.5], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 5, 7.25, 5.25], "texture": "#1"}, - "east": {"uv": [7.75, 5, 8, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 10.25, 8, 10.5], "texture": "#1"}, - "west": {"uv": [7.25, 5, 7.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 5, 8, 10.5], "texture": "#1"}, - "down": {"uv": [7.25, 10.5, 8, 5], "texture": "#1"} + "north": { + "uv": [ + 8, + 5, + 7.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 5, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 8, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 5, + 8, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 8, + 5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_3", - "from": [6, 0, 5.25], - "to": [6.25, 0.25, 11], + "from": [ + 6, + 0, + 5.25 + ], + "to": [ + 6.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.25, 5.25, 6, 5.5], "texture": "#1"}, - "east": {"uv": [6, 5.25, 6.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 10.75, 6.25, 11], "texture": "#1"}, - "west": {"uv": [6, 5.25, 6.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 5.25, 6.25, 11], "texture": "#1"}, - "down": {"uv": [6, 11, 6.25, 5.25], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 5.25, + 6, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 11, + 6.25, + 5.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_4", - "from": [8, 0, 5.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 8, + 0, + 5.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 5.25, 8, 5.5], "texture": "#1"}, - "east": {"uv": [8.25, 5.25, 8.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 10.25, 8.5, 10.5], "texture": "#1"}, - "west": {"uv": [8, 5.25, 8.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 5.25, 8.5, 10.5], "texture": "#1"}, - "down": {"uv": [8, 10.5, 8.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 5.25, + 8, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 5.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 5.25, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 5.25, + 8.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_5", - "from": [9.75, 0, 5.25], - "to": [11.75, 0.25, 10.75], + "from": [ + 9.75, + 0, + 5.25 + ], + "to": [ + 11.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.75, 5.25, 9.75, 5.5], "texture": "#1"}, - "east": {"uv": [11.5, 5.25, 11.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 10.5, 11.75, 10.75], "texture": "#1"}, - "west": {"uv": [9.75, 5.25, 10, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 5.25, 11.75, 10.75], "texture": "#1"}, - "down": {"uv": [9.75, 10.75, 11.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 5.25, + 9.75, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 5.25, + 11.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 10.5, + 11.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 5.25, + 10, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 5.25, + 11.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 10.75, + 11.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_6", - "from": [4.5, 0, 5.5], - "to": [6, 0.25, 10.75], + "from": [ + 4.5, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6, 5.5, 4.5, 5.75], "texture": "#1"}, - "east": {"uv": [5.75, 5.5, 6, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 10.5, 6, 10.75], "texture": "#1"}, - "west": {"uv": [4.5, 5.5, 4.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 5.5, 6, 10.75], "texture": "#1"}, - "down": {"uv": [4.5, 10.75, 6, 5.5], "texture": "#1"} + "north": { + "uv": [ + 6, + 5.5, + 4.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 6, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 5.5, + 6, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 10.75, + 6, + 5.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_7", - "from": [8.5, 0, 5.5], - "to": [9, 0.25, 10.75], + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9, 5.5, 8.5, 5.75], "texture": "#1"}, - "east": {"uv": [8.75, 5.5, 9, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 10.5, 9, 10.75], "texture": "#1"}, - "west": {"uv": [8.5, 5.5, 8.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 5.5, 9, 10.75], "texture": "#1"}, - "down": {"uv": [8.5, 10.75, 9, 5.5], "texture": "#1"} + "north": { + "uv": [ + 9, + 5.5, + 8.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 9, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 9, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 9, + 5.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_8", - "from": [9.25, 0, 5.5], - "to": [9.75, 0.25, 10.5], + "from": [ + 9.25, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.75, 5.5, 9.25, 5.75], "texture": "#1"}, - "east": {"uv": [9.5, 5.5, 9.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 10.25, 9.75, 10.5], "texture": "#1"}, - "west": {"uv": [9.25, 5.5, 9.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 5.5, 9.75, 10.5], "texture": "#1"}, - "down": {"uv": [9.25, 10.5, 9.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 5.5, + 9.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 9.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 5.5, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 5.5, + 9.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 9.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_9", - "from": [11.75, 0, 5.5], - "to": [12, 0.25, 7], + "from": [ + 11.75, + 0, + 5.5 + ], + "to": [ + 12, + 0.25, + 7 + ], "faces": { - "north": {"uv": [12, 5.5, 11.75, 5.75], "texture": "#1"}, - "east": {"uv": [11.75, 5.5, 12, 7], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 6.75, 12, 7], "texture": "#1"}, - "west": {"uv": [11.75, 5.5, 12, 7], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 5.5, 12, 7], "texture": "#1"}, - "down": {"uv": [11.75, 7, 12, 5.5], "texture": "#1"} + "north": { + "uv": [ + 12, + 5.5, + 11.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 5.5, + 12, + 7 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 6.75, + 12, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 5.5, + 12, + 7 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 5.5, + 12, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 7, + 12, + 5.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_10", - "from": [3.75, 0, 5.75], - "to": [4.5, 0.25, 10.5], + "from": [ + 3.75, + 0, + 5.75 + ], + "to": [ + 4.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.5, 5.75, 3.75, 6], "texture": "#1"}, - "east": {"uv": [4.25, 5.75, 4.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 10.25, 4.5, 10.5], "texture": "#1"}, - "west": {"uv": [3.75, 5.75, 4, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 5.75, 4.5, 10.5], "texture": "#1"}, - "down": {"uv": [3.75, 10.5, 4.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 5.75, + 3.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 5.75, + 4.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 4.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 5.75, + 4.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 4.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_11", - "from": [9, 0, 5.75], - "to": [9.25, 0.25, 10.75], + "from": [ + 9, + 0, + 5.75 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 5.75, 9, 6], "texture": "#1"}, - "east": {"uv": [9, 5.75, 9.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#1"}, - "west": {"uv": [9, 5.75, 9.25, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 5.75, 9.25, 10.75], "texture": "#1"}, - "down": {"uv": [9, 10.75, 9.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 5.75, + 9, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 5.75, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 5.75, + 9.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_12", - "from": [12, 0, 5.75], - "to": [12.25, 0.25, 6.75], + "from": [ + 12, + 0, + 5.75 + ], + "to": [ + 12.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [12.25, 5.75, 12, 6], "texture": "#1"}, - "east": {"uv": [12, 5.75, 12.25, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 6.5, 12.25, 6.75], "texture": "#1"}, - "west": {"uv": [12, 5.75, 12.25, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 5.75, 12.25, 6.75], "texture": "#1"}, - "down": {"uv": [12, 6.75, 12.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 5.75, + 12, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 5.75, + 12.25, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 6.5, + 12.25, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 5.75, + 12.25, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 5.75, + 12.25, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 6.75, + 12.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_13", - "from": [14.75, 0, 5.75], - "to": [15.25, 0.25, 10.25], + "from": [ + 14.75, + 0, + 5.75 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 5.75, 14.75, 6], "texture": "#1"}, - "east": {"uv": [15, 5.75, 15.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 10, 15.25, 10.25], "texture": "#1"}, - "west": {"uv": [14.75, 5.75, 15, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 5.75, 15.25, 10.25], "texture": "#1"}, - "down": {"uv": [14.75, 10.25, 15.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 5.75, + 14.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 5.75, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 10, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 5.75, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 5.75, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_14", - "from": [3.25, 0, 6], - "to": [3.75, 0.25, 10.5], + "from": [ + 3.25, + 0, + 6 + ], + "to": [ + 3.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.75, 6, 3.25, 6.25], "texture": "#1"}, - "east": {"uv": [3.5, 6, 3.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 10.25, 3.75, 10.5], "texture": "#1"}, - "west": {"uv": [3.25, 6, 3.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 6, 3.75, 10.5], "texture": "#1"}, - "down": {"uv": [3.25, 10.5, 3.75, 6], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 6, + 3.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 6, + 3.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 10.25, + 3.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 6, + 3.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 6, + 3.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 10.5, + 3.75, + 6 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_15", - "from": [14.25, 0, 6], - "to": [14.75, 0.25, 9.75], + "from": [ + 14.25, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.75, 6, 14.25, 6.25], "texture": "#1"}, - "east": {"uv": [14.5, 6, 14.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 9.5, 14.75, 9.75], "texture": "#1"}, - "west": {"uv": [14.25, 6, 14.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 6, 14.75, 9.75], "texture": "#1"}, - "down": {"uv": [14.25, 9.75, 14.75, 6], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6, + 14.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 6, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 6, + 14.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.75, + 6 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_16", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 7.75], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#1"}, - "east": {"uv": [15.25, 6, 15.5, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 7.5, 15.5, 7.75], "texture": "#1"}, - "west": {"uv": [15.25, 6, 15.5, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 6, 15.5, 7.75], "texture": "#1"}, - "down": {"uv": [15.25, 7.75, 15.5, 6], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 7.75, + 15.5, + 6 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_17", - "from": [2.75, 0, 6.25], - "to": [3.25, 0.25, 10.25], + "from": [ + 2.75, + 0, + 6.25 + ], + "to": [ + 3.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.25, 6.25, 2.75, 6.5], "texture": "#1"}, - "east": {"uv": [3, 6.25, 3.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 10, 3.25, 10.25], "texture": "#1"}, - "west": {"uv": [2.75, 6.25, 3, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 6.25, 3.25, 10.25], "texture": "#1"}, - "down": {"uv": [2.75, 10.25, 3.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 6.25, + 2.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 6.25, + 3.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 10, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 6.25, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 6.25, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 3.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_18", - "from": [13.75, 0, 6.25], - "to": [14.25, 0.25, 9.5], + "from": [ + 13.75, + 0, + 6.25 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 6.25, 13.75, 6.5], "texture": "#1"}, - "east": {"uv": [14, 6.25, 14.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 9.25, 14.25, 9.5], "texture": "#1"}, - "west": {"uv": [13.75, 6.25, 14, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6.25, 14.25, 9.5], "texture": "#1"}, - "down": {"uv": [13.75, 9.5, 14.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 6.25, + 13.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 6.25, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6.25, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6.25, + 14.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_19", - "from": [2.25, 0, 6.5], - "to": [2.75, 0.25, 10.25], + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.75, 6.5, 2.25, 6.75], "texture": "#1"}, - "east": {"uv": [2.5, 6.5, 2.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 10, 2.75, 10.25], "texture": "#1"}, - "west": {"uv": [2.25, 6.5, 2.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 6.5, 2.75, 10.25], "texture": "#1"}, - "down": {"uv": [2.25, 10.25, 2.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 6.5, + 2.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 6.5, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 2.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_20", - "from": [13.25, 0, 6.5], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 6.5, 13.25, 6.75], "texture": "#1"}, - "east": {"uv": [13.5, 6.5, 13.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 9, 13.75, 9.25], "texture": "#1"}, - "west": {"uv": [13.25, 6.5, 13.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 6.5, 13.75, 9.25], "texture": "#1"}, - "down": {"uv": [13.25, 9.25, 13.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 6.5, + 13.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 6.5, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_21", - "from": [1.75, 0, 6.75], - "to": [2.25, 0.25, 10], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.25, 6.75, 1.75, 7], "texture": "#1"}, - "east": {"uv": [2, 6.75, 2.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.75, 2.25, 10], "texture": "#1"}, - "west": {"uv": [1.75, 6.75, 2, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 6.75, 2.25, 10], "texture": "#1"}, - "down": {"uv": [1.75, 10, 2.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 6.75, + 1.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 6.75, + 2.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 10, + 2.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_22", - "from": [13, 0, 6.75], - "to": [13.25, 0.25, 9], + "from": [ + 13, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.25, 6.75, 13, 7], "texture": "#1"}, - "east": {"uv": [13, 6.75, 13.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 8.75, 13.25, 9], "texture": "#1"}, - "west": {"uv": [13, 6.75, 13.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6.75, 13.25, 9], "texture": "#1"}, - "down": {"uv": [13, 9, 13.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 6.75, + 13, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 8.75, + 13.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6.75, + 13.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6.75, + 13.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 9, + 13.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_23", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#1"}, - "east": {"uv": [1.5, 7, 1.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#1"}, - "west": {"uv": [1.5, 7, 1.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7, 1.75, 9.75], "texture": "#1"}, - "down": {"uv": [1.5, 9.75, 1.75, 7], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 7 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_24", - "from": [12, 0, 7], - "to": [13, 0.25, 9], + "from": [ + 12, + 0, + 7 + ], + "to": [ + 13, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13, 7, 12, 7.25], "texture": "#1"}, - "east": {"uv": [12.75, 7, 13, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 8.75, 13, 9], "texture": "#1"}, - "west": {"uv": [12, 7, 12.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 7, 13, 9], "texture": "#1"}, - "down": {"uv": [12, 9, 13, 7], "texture": "#1"} + "north": { + "uv": [ + 13, + 7, + 12, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 7, + 13, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 8.75, + 13, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 7, + 13, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9, + 13, + 7 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_25", - "from": [1, 0, 7.25], - "to": [1.5, 0.25, 9.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1, 7.5], "texture": "#1"}, - "east": {"uv": [1.25, 7.25, 1.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 9.25, 1.5, 9.5], "texture": "#1"}, - "west": {"uv": [1, 7.25, 1.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.25, 1.5, 9.5], "texture": "#1"}, - "down": {"uv": [1, 9.5, 1.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.25, + 1, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_26", - "from": [11.75, 0, 7.25], - "to": [12, 0.25, 10.75], + "from": [ + 11.75, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12, 7.25, 11.75, 7.5], "texture": "#1"}, - "east": {"uv": [11.75, 7.25, 12, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 10.5, 12, 10.75], "texture": "#1"}, - "west": {"uv": [11.75, 7.25, 12, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 7.25, 12, 10.75], "texture": "#1"}, - "down": {"uv": [11.75, 10.75, 12, 7.25], "texture": "#1"} + "north": { + "uv": [ + 12, + 7.25, + 11.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 10.5, + 12, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 7.25, + 12, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 7.25, + 12, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 10.75, + 12, + 7.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_27", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#1"}, - "east": {"uv": [0.75, 7.5, 1, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#1"}, - "west": {"uv": [0.75, 7.5, 1, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.5, 1, 9.25], "texture": "#1"}, - "down": {"uv": [0.75, 9.25, 1, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 7.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_28", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#1"}, - "east": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#1"}, - "west": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.75, 0.75, 9], "texture": "#1"}, - "down": {"uv": [0.5, 9, 0.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_29", - "from": [0.25, 0, 8.25], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8.25, 0.25, 8.5], "texture": "#1"}, - "east": {"uv": [0.25, 8.25, 0.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#1"}, - "west": {"uv": [0.25, 8.25, 0.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 8.25, 0.5, 8.75], "texture": "#1"}, - "down": {"uv": [0.25, 8.75, 0.5, 8.25], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 8.25, + 0.25, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_30", - "from": [15.25, 0, 8.5], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 8.5 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 8.5, 15.25, 8.75], "texture": "#1"}, - "east": {"uv": [15.25, 8.5, 15.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#1"}, - "west": {"uv": [15.25, 8.5, 15.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 8.5, 15.5, 10], "texture": "#1"}, - "down": {"uv": [15.25, 10, 15.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 8.5, + 15.25, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 8.5, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 8.5, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 8.5, + 15.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_31", - "from": [15.5, 0, 9], - "to": [15.75, 0.25, 9.75], + "from": [ + 15.5, + 0, + 9 + ], + "to": [ + 15.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.75, 9, 15.5, 9.25], "texture": "#1"}, - "east": {"uv": [15.5, 9, 15.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 9.5, 15.75, 9.75], "texture": "#1"}, - "west": {"uv": [15.5, 9, 15.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 9, 15.75, 9.75], "texture": "#1"}, - "down": {"uv": [15.5, 9.75, 15.75, 9], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 9, + 15.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 9, + 15.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 9.5, + 15.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 9, + 15.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 9, + 15.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 9.75, + 15.75, + 9 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_32", - "from": [12, 0, 9.25], - "to": [12.25, 0.25, 10.5], + "from": [ + 12, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.25, 9.25, 12, 9.5], "texture": "#1"}, - "east": {"uv": [12, 9.25, 12.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 10.25, 12.25, 10.5], "texture": "#1"}, - "west": {"uv": [12, 9.25, 12.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 9.25, 12.25, 10.5], "texture": "#1"}, - "down": {"uv": [12, 10.5, 12.25, 9.25], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 9.25, + 12, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 10.25, + 12.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 9.25, + 12.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 9.25, + 12.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 10.5, + 12.25, + 9.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_33", - "from": [13.5, 0, 9.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.5, + 0, + 9.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 9.25, 13.5, 9.5], "texture": "#1"}, - "east": {"uv": [13.5, 9.25, 13.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#1"}, - "west": {"uv": [13.5, 9.25, 13.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#1"}, - "down": {"uv": [13.5, 9.5, 13.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 9.25, + 13.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_34", - "from": [1.25, 0, 9.5], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 9.5 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 9.5, 1.25, 9.75], "texture": "#1"}, - "east": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "west": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [1.25, 9.75, 1.5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 9.5, + 1.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_35", - "from": [12.25, 0, 9.5], - "to": [12.5, 0.25, 10.25], + "from": [ + 12.25, + 0, + 9.5 + ], + "to": [ + 12.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.5, 9.5, 12.25, 9.75], "texture": "#1"}, - "east": {"uv": [12.25, 9.5, 12.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 10, 12.5, 10.25], "texture": "#1"}, - "west": {"uv": [12.25, 9.5, 12.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 9.5, 12.5, 10.25], "texture": "#1"}, - "down": {"uv": [12.25, 10.25, 12.5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 9.5, + 12.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 9.5, + 12.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 10, + 12.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 9.5, + 12.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 9.5, + 12.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 10.25, + 12.5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_36", - "from": [14, 0, 9.5], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 9.5 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 9.5, 14, 9.75], "texture": "#1"}, - "east": {"uv": [14, 9.5, 14.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#1"}, - "west": {"uv": [14, 9.5, 14.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#1"}, - "down": {"uv": [14, 9.75, 14.25, 9.5], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 9.5, + 14, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 9.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_37", - "from": [14.5, 0, 9.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 9.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 9.75, 14.5, 10], "texture": "#1"}, - "east": {"uv": [14.5, 9.75, 14.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#1"}, - "west": {"uv": [14.5, 9.75, 14.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#1"}, - "down": {"uv": [14.5, 10, 14.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 9.75, + 14.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_38", - "from": [4.25, 0, 10.5], - "to": [4.5, 0.25, 10.75], + "from": [ + 4.25, + 0, + 10.5 + ], + "to": [ + 4.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4.5, 10.5, 4.25, 10.75], "texture": "#1"}, - "east": {"uv": [4.25, 10.5, 4.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 10.5, 4.5, 10.75], "texture": "#1"}, - "west": {"uv": [4.25, 10.5, 4.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 10.5, 4.5, 10.75], "texture": "#1"}, - "down": {"uv": [4.25, 10.75, 4.5, 10.5], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 10.5, + 4.25, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 10.75, + 4.5, + 10.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_39", - "from": [7.25, 0, 10.5], - "to": [7.75, 0.25, 11.25], + "from": [ + 7.25, + 0, + 10.5 + ], + "to": [ + 7.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.75, 10.5, 7.25, 10.75], "texture": "#1"}, - "east": {"uv": [7.5, 10.5, 7.75, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 11, 7.75, 11.25], "texture": "#1"}, - "west": {"uv": [7.25, 10.5, 7.5, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 10.5, 7.75, 11.25], "texture": "#1"}, - "down": {"uv": [7.25, 11.25, 7.75, 10.5], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 10.5, + 7.25, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 10.5, + 7.75, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 11, + 7.75, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 10.5, + 7.5, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 10.5, + 7.75, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 11.25, + 7.75, + 10.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_40", - "from": [8.25, 0, 10.5], - "to": [8.5, 0.25, 10.75], + "from": [ + 8.25, + 0, + 10.5 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.5, 10.5, 8.25, 10.75], "texture": "#1"}, - "east": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#1"}, - "west": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#1"}, - "down": {"uv": [8.25, 10.75, 8.5, 10.5], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 10.5, + 8.25, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 8.5, + 10.5 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_41", - "from": [7.75, 0, 10.75], - "to": [8, 0.25, 11], + "from": [ + 7.75, + 0, + 10.75 + ], + "to": [ + 8, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8, 10.75, 7.75, 11], "texture": "#1"}, - "east": {"uv": [7.75, 10.75, 8, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 10.75, 8, 11], "texture": "#1"}, - "west": {"uv": [7.75, 10.75, 8, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 10.75, 8, 11], "texture": "#1"}, - "down": {"uv": [7.75, 11, 8, 10.75], "texture": "#1"} + "north": { + "uv": [ + 8, + 10.75, + 7.75, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 11, + 8, + 10.75 + ], + "texture": "#1" + } } }, { "name": "burakkubasu_42", - "from": [6.5, 0, 11], - "to": [6.75, 0.25, 11.25], + "from": [ + 6.5, + 0, + 11 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 11, 6.5, 11.25], "texture": "#1"}, - "east": {"uv": [6.5, 11, 6.75, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 11, 6.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.5, 11, 6.75, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 11, 6.75, 11.25], "texture": "#1"}, - "down": {"uv": [6.5, 11.25, 6.75, 11], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 11, + 6.5, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 7.75, 10.75], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 7.75, + 10.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "burakkubasu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/buru-giru.json b/pack/assets/minecraft/models/fish/buru-giru.json index 0aecd332..3a1c0ffb 100644 --- a/pack/assets/minecraft/models/fish/buru-giru.json +++ b/pack/assets/minecraft/models/fish/buru-giru.json @@ -2,864 +2,4623 @@ "__name": "ブルーギル", "credit": "Made with Blockbench", "textures": { - "2": "fish/buru-giru" + "2": "item/fish/buru-giru" }, "elements": [ { "name": "buru-giru_0", - "from": [7, 0, 3], - "to": [7.25, 0.25, 12], + "from": [ + 7, + 0, + 3 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 3, 7, 3.25], "texture": "#2"}, - "east": {"uv": [7, 3, 7.25, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 11.75, 7.25, 12], "texture": "#2"}, - "west": {"uv": [7, 3, 7.25, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 3, 7.25, 12], "texture": "#2"}, - "down": {"uv": [7, 12, 7.25, 3], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 3, + 7, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 12, + 7.25, + 3 + ], + "texture": "#2" + } } }, { "name": "buru-giru_1", - "from": [7.75, 0, 3], - "to": [8, 0.25, 11.5], + "from": [ + 7.75, + 0, + 3 + ], + "to": [ + 8, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [8, 3, 7.75, 3.25], "texture": "#2"}, - "east": {"uv": [7.75, 3, 8, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 11.25, 8, 11.5], "texture": "#2"}, - "west": {"uv": [7.75, 3, 8, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 3, 8, 11.5], "texture": "#2"}, - "down": {"uv": [7.75, 11.5, 8, 3], "texture": "#2"} + "north": { + "uv": [ + 8, + 3, + 7.75, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 3, + 8, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 11.25, + 8, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 3, + 8, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 3, + 8, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 11.5, + 8, + 3 + ], + "texture": "#2" + } } }, { "name": "buru-giru_2", - "from": [6, 0, 3.25], - "to": [7, 0.25, 11.5], + "from": [ + 6, + 0, + 3.25 + ], + "to": [ + 7, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7, 3.25, 6, 3.5], "texture": "#2"}, - "east": {"uv": [6.75, 3.25, 7, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 11.25, 7, 11.5], "texture": "#2"}, - "west": {"uv": [6, 3.25, 6.25, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 3.25, 7, 11.5], "texture": "#2"}, - "down": {"uv": [6, 11.5, 7, 3.25], "texture": "#2"} + "north": { + "uv": [ + 7, + 3.25, + 6, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 3.25, + 7, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 11.25, + 7, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 3.25, + 6.25, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 3.25, + 7, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11.5, + 7, + 3.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_3", - "from": [7.25, 0, 3.25], - "to": [7.75, 0.25, 11.25], + "from": [ + 7.25, + 0, + 3.25 + ], + "to": [ + 7.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.75, 3.25, 7.25, 3.5], "texture": "#2"}, - "east": {"uv": [7.5, 3.25, 7.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 11, 7.75, 11.25], "texture": "#2"}, - "west": {"uv": [7.25, 3.25, 7.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 3.25, 7.75, 11.25], "texture": "#2"}, - "down": {"uv": [7.25, 11.25, 7.75, 3.25], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 3.25, + 7.25, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 3.25, + 7.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 11, + 7.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 3.25, + 7.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 3.25, + 7.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 11.25, + 7.75, + 3.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_4", - "from": [8, 0, 3.25], - "to": [8.25, 0.25, 11.75], + "from": [ + 8, + 0, + 3.25 + ], + "to": [ + 8.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [8.25, 3.25, 8, 3.5], "texture": "#2"}, - "east": {"uv": [8, 3.25, 8.25, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 11.5, 8.25, 11.75], "texture": "#2"}, - "west": {"uv": [8, 3.25, 8.25, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 3.25, 8.25, 11.75], "texture": "#2"}, - "down": {"uv": [8, 11.75, 8.25, 3.25], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 3.25, + 8, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 3.25, + 8.25, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 11.5, + 8.25, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 3.25, + 8.25, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 3.25, + 8.25, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 11.75, + 8.25, + 3.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_5", - "from": [8.5, 0, 3.25], - "to": [8.75, 0.25, 11.75], + "from": [ + 8.5, + 0, + 3.25 + ], + "to": [ + 8.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [8.75, 3.25, 8.5, 3.5], "texture": "#2"}, - "east": {"uv": [8.5, 3.25, 8.75, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 11.5, 8.75, 11.75], "texture": "#2"}, - "west": {"uv": [8.5, 3.25, 8.75, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 3.25, 8.75, 11.75], "texture": "#2"}, - "down": {"uv": [8.5, 11.75, 8.75, 3.25], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 3.25, + 8.5, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 3.25, + 8.75, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 11.5, + 8.75, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 3.25, + 8.75, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 3.25, + 8.75, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 11.75, + 8.75, + 3.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_6", - "from": [5.25, 0, 3.5], - "to": [5.5, 0.25, 11.25], + "from": [ + 5.25, + 0, + 3.5 + ], + "to": [ + 5.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.5, 3.5, 5.25, 3.75], "texture": "#2"}, - "east": {"uv": [5.25, 3.5, 5.5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 11, 5.5, 11.25], "texture": "#2"}, - "west": {"uv": [5.25, 3.5, 5.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 3.5, 5.5, 11.25], "texture": "#2"}, - "down": {"uv": [5.25, 11.25, 5.5, 3.5], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 3.5, + 5.25, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 3.5, + 5.5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 3.5, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 3.5, + 5.5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 5.5, + 3.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_7", - "from": [5.75, 0, 3.5], - "to": [6, 0.25, 11.25], + "from": [ + 5.75, + 0, + 3.5 + ], + "to": [ + 6, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6, 3.5, 5.75, 3.75], "texture": "#2"}, - "east": {"uv": [5.75, 3.5, 6, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 11, 6, 11.25], "texture": "#2"}, - "west": {"uv": [5.75, 3.5, 6, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 3.5, 6, 11.25], "texture": "#2"}, - "down": {"uv": [5.75, 11.25, 6, 3.5], "texture": "#2"} + "north": { + "uv": [ + 6, + 3.5, + 5.75, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 3.5, + 6, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 3.5, + 6, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 11.25, + 6, + 3.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_8", - "from": [8.25, 0, 3.5], - "to": [8.5, 0.25, 12], + "from": [ + 8.25, + 0, + 3.5 + ], + "to": [ + 8.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.5, 3.5, 8.25, 3.75], "texture": "#2"}, - "east": {"uv": [8.25, 3.5, 8.5, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 11.75, 8.5, 12], "texture": "#2"}, - "west": {"uv": [8.25, 3.5, 8.5, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 3.5, 8.5, 12], "texture": "#2"}, - "down": {"uv": [8.25, 12, 8.5, 3.5], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 3.5, + 8.25, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 3.5, + 8.5, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 11.75, + 8.5, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 3.5, + 8.5, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 3.5, + 8.5, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 12, + 8.5, + 3.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_9", - "from": [8.75, 0, 3.5], - "to": [9, 0.25, 11.75], + "from": [ + 8.75, + 0, + 3.5 + ], + "to": [ + 9, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [9, 3.5, 8.75, 3.75], "texture": "#2"}, - "east": {"uv": [8.75, 3.5, 9, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 11.5, 9, 11.75], "texture": "#2"}, - "west": {"uv": [8.75, 3.5, 9, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 3.5, 9, 11.75], "texture": "#2"}, - "down": {"uv": [8.75, 11.75, 9, 3.5], "texture": "#2"} + "north": { + "uv": [ + 9, + 3.5, + 8.75, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 3.5, + 9, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 11.5, + 9, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 3.5, + 9, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 3.5, + 9, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 11.75, + 9, + 3.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_10", - "from": [9.25, 0, 3.5], - "to": [10, 0.25, 12], + "from": [ + 9.25, + 0, + 3.5 + ], + "to": [ + 10, + 0.25, + 12 + ], "faces": { - "north": {"uv": [10, 3.5, 9.25, 3.75], "texture": "#2"}, - "east": {"uv": [9.75, 3.5, 10, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 11.75, 10, 12], "texture": "#2"}, - "west": {"uv": [9.25, 3.5, 9.5, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 3.5, 10, 12], "texture": "#2"}, - "down": {"uv": [9.25, 12, 10, 3.5], "texture": "#2"} + "north": { + "uv": [ + 10, + 3.5, + 9.25, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 3.5, + 10, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 11.75, + 10, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 3.5, + 9.5, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 3.5, + 10, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 12, + 10, + 3.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_11", - "from": [5, 0, 3.75], - "to": [5.25, 0.25, 11.25], + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 3.75, 5, 4], "texture": "#2"}, - "east": {"uv": [5, 3.75, 5.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 11, 5.25, 11.25], "texture": "#2"}, - "west": {"uv": [5, 3.75, 5.25, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 3.75, 5.25, 11.25], "texture": "#2"}, - "down": {"uv": [5, 11.25, 5.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 3.75, + 5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 11.25, + 5.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_12", - "from": [5.5, 0, 3.75], - "to": [5.75, 0.25, 11.25], + "from": [ + 5.5, + 0, + 3.75 + ], + "to": [ + 5.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.75, 3.75, 5.5, 4], "texture": "#2"}, - "east": {"uv": [5.5, 3.75, 5.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 11, 5.75, 11.25], "texture": "#2"}, - "west": {"uv": [5.5, 3.75, 5.75, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 3.75, 5.75, 11.25], "texture": "#2"}, - "down": {"uv": [5.5, 11.25, 5.75, 3.75], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 3.75, + 5.5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 3.75, + 5.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 3.75, + 5.75, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 3.75, + 5.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 11.25, + 5.75, + 3.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_13", - "from": [9, 0, 3.75], - "to": [9.25, 0.25, 12], + "from": [ + 9, + 0, + 3.75 + ], + "to": [ + 9.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.25, 3.75, 9, 4], "texture": "#2"}, - "east": {"uv": [9, 3.75, 9.25, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 11.75, 9.25, 12], "texture": "#2"}, - "west": {"uv": [9, 3.75, 9.25, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 3.75, 9.25, 12], "texture": "#2"}, - "down": {"uv": [9, 12, 9.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 3.75, + 9, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 3.75, + 9.25, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 11.75, + 9.25, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 3.75, + 9.25, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 3.75, + 9.25, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 12, + 9.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_14", - "from": [10, 0, 3.75], - "to": [11.25, 0.25, 12], + "from": [ + 10, + 0, + 3.75 + ], + "to": [ + 11.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.25, 3.75, 10, 4], "texture": "#2"}, - "east": {"uv": [11, 3.75, 11.25, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 11.75, 11.25, 12], "texture": "#2"}, - "west": {"uv": [10, 3.75, 10.25, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 3.75, 11.25, 12], "texture": "#2"}, - "down": {"uv": [10, 12, 11.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 3.75, + 10, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 3.75, + 11.25, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 11.75, + 11.25, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 3.75, + 10.25, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 3.75, + 11.25, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 12, + 11.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_15", - "from": [11.25, 0, 4], - "to": [11.75, 0.25, 6.5], + "from": [ + 11.25, + 0, + 4 + ], + "to": [ + 11.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11.75, 4, 11.25, 4.25], "texture": "#2"}, - "east": {"uv": [11.5, 4, 11.75, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 6.25, 11.75, 6.5], "texture": "#2"}, - "west": {"uv": [11.25, 4, 11.5, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 4, 11.75, 6.5], "texture": "#2"}, - "down": {"uv": [11.25, 6.5, 11.75, 4], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 4, + 11.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 4, + 11.75, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 6.25, + 11.75, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 4, + 11.5, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 4, + 11.75, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 6.5, + 11.75, + 4 + ], + "texture": "#2" + } } }, { "name": "buru-giru_16", - "from": [4.75, 0, 4.25], - "to": [5, 0.25, 11.25], + "from": [ + 4.75, + 0, + 4.25 + ], + "to": [ + 5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5, 4.25, 4.75, 4.5], "texture": "#2"}, - "east": {"uv": [4.75, 4.25, 5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 11, 5, 11.25], "texture": "#2"}, - "west": {"uv": [4.75, 4.25, 5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 4.25, 5, 11.25], "texture": "#2"}, - "down": {"uv": [4.75, 11.25, 5, 4.25], "texture": "#2"} + "north": { + "uv": [ + 5, + 4.25, + 4.75, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 4.25, + 5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 4.25, + 5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 4.25, + 5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 11.25, + 5, + 4.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_17", - "from": [11.75, 0, 4.25], - "to": [12, 0.25, 6.5], + "from": [ + 11.75, + 0, + 4.25 + ], + "to": [ + 12, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [12, 4.25, 11.75, 4.5], "texture": "#2"}, - "east": {"uv": [11.75, 4.25, 12, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#2"}, - "west": {"uv": [11.75, 4.25, 12, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 4.25, 12, 6.5], "texture": "#2"}, - "down": {"uv": [11.75, 6.5, 12, 4.25], "texture": "#2"} + "north": { + "uv": [ + 12, + 4.25, + 11.75, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 4.25, + 12, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 6.25, + 12, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 4.25, + 12, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 4.25, + 12, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 6.5, + 12, + 4.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_18", - "from": [4.5, 0, 4.5], - "to": [4.75, 0.25, 11.25], + "from": [ + 4.5, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.75, 4.5, 4.5, 4.75], "texture": "#2"}, - "east": {"uv": [4.5, 4.5, 4.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 11, 4.75, 11.25], "texture": "#2"}, - "west": {"uv": [4.5, 4.5, 4.75, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 4.5, 4.75, 11.25], "texture": "#2"}, - "down": {"uv": [4.5, 11.25, 4.75, 4.5], "texture": "#2"} + "north": { + "uv": [ + 4.75, + 4.5, + 4.5, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 11, + 4.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 11.25, + 4.75, + 4.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_19", - "from": [12, 0, 4.5], - "to": [12.25, 0.25, 6.5], + "from": [ + 12, + 0, + 4.5 + ], + "to": [ + 12.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [12.25, 4.5, 12, 4.75], "texture": "#2"}, - "east": {"uv": [12, 4.5, 12.25, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 6.25, 12.25, 6.5], "texture": "#2"}, - "west": {"uv": [12, 4.5, 12.25, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 4.5, 12.25, 6.5], "texture": "#2"}, - "down": {"uv": [12, 6.5, 12.25, 4.5], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 4.5, + 12, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 4.5, + 12.25, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 6.25, + 12.25, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 4.5, + 12.25, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 4.5, + 12.25, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 6.5, + 12.25, + 4.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_20", - "from": [4, 0, 4.75], - "to": [4.5, 0.25, 11], + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.5, 4.75, 4, 5], "texture": "#2"}, - "east": {"uv": [4.25, 4.75, 4.5, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 10.75, 4.5, 11], "texture": "#2"}, - "west": {"uv": [4, 4.75, 4.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 4.75, 4.5, 11], "texture": "#2"}, - "down": {"uv": [4, 11, 4.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 4.75, + 4, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 4.75, + 4.5, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 10.75, + 4.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.5, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 11, + 4.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_21", - "from": [12.25, 0, 4.75], - "to": [12.5, 0.25, 6.25], + "from": [ + 12.25, + 0, + 4.75 + ], + "to": [ + 12.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [12.5, 4.75, 12.25, 5], "texture": "#2"}, - "east": {"uv": [12.25, 4.75, 12.5, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.25, 6, 12.5, 6.25], "texture": "#2"}, - "west": {"uv": [12.25, 4.75, 12.5, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.25, 4.75, 12.5, 6.25], "texture": "#2"}, - "down": {"uv": [12.25, 6.25, 12.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 12.5, + 4.75, + 12.25, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.25, + 4.75, + 12.5, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.25, + 6, + 12.5, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.25, + 4.75, + 12.5, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.25, + 4.75, + 12.5, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.25, + 6.25, + 12.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_22", - "from": [3.5, 0, 5], - "to": [4, 0.25, 11], + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4, 5, 3.5, 5.25], "texture": "#2"}, - "east": {"uv": [3.75, 5, 4, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.5, 10.75, 4, 11], "texture": "#2"}, - "west": {"uv": [3.5, 5, 3.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.5, 5, 4, 11], "texture": "#2"}, - "down": {"uv": [3.5, 11, 4, 5], "texture": "#2"} + "north": { + "uv": [ + 4, + 5, + 3.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.5, + 10.75, + 4, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 5, + 4, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 11, + 4, + 5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_23", - "from": [12.5, 0, 5], - "to": [12.75, 0.25, 5.75], + "from": [ + 12.5, + 0, + 5 + ], + "to": [ + 12.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [12.75, 5, 12.5, 5.25], "texture": "#2"}, - "east": {"uv": [12.5, 5, 12.75, 5.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.5, 5.5, 12.75, 5.75], "texture": "#2"}, - "west": {"uv": [12.5, 5, 12.75, 5.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.5, 5, 12.75, 5.75], "texture": "#2"}, - "down": {"uv": [12.5, 5.75, 12.75, 5], "texture": "#2"} + "north": { + "uv": [ + 12.75, + 5, + 12.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.5, + 5, + 12.75, + 5.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.5, + 5.5, + 12.75, + 5.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.5, + 5, + 12.75, + 5.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.5, + 5, + 12.75, + 5.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.5, + 5.75, + 12.75, + 5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_24", - "from": [3, 0, 5.25], - "to": [3.5, 0.25, 10.75], + "from": [ + 3, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.5, 5.25, 3, 5.5], "texture": "#2"}, - "east": {"uv": [3.25, 5.25, 3.5, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 10.5, 3.5, 10.75], "texture": "#2"}, - "west": {"uv": [3, 5.25, 3.25, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 5.25, 3.5, 10.75], "texture": "#2"}, - "down": {"uv": [3, 10.75, 3.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 5.25, + 3, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.5, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.25, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 5.25, + 3.5, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 10.75, + 3.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_25", - "from": [14.75, 0, 5.25], - "to": [15.25, 0.25, 10.5], + "from": [ + 14.75, + 0, + 5.25 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 5.25, 14.75, 5.5], "texture": "#2"}, - "east": {"uv": [15, 5.25, 15.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 10.25, 15.25, 10.5], "texture": "#2"}, - "west": {"uv": [14.75, 5.25, 15, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 5.25, 15.25, 10.5], "texture": "#2"}, - "down": {"uv": [14.75, 10.5, 15.25, 5.25], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 5.25, + 14.75, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 5.25, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 10.25, + 15.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 5.25, + 15, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 5.25, + 15.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 10.5, + 15.25, + 5.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_26", - "from": [2.75, 0, 5.5], - "to": [3, 0.25, 10.5], + "from": [ + 2.75, + 0, + 5.5 + ], + "to": [ + 3, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3, 5.5, 2.75, 5.75], "texture": "#2"}, - "east": {"uv": [2.75, 5.5, 3, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 10.25, 3, 10.5], "texture": "#2"}, - "west": {"uv": [2.75, 5.5, 3, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 5.5, 3, 10.5], "texture": "#2"}, - "down": {"uv": [2.75, 10.5, 3, 5.5], "texture": "#2"} + "north": { + "uv": [ + 3, + 5.5, + 2.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.75, + 5.5, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 5.5, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 5.5, + 3, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 10.5, + 3, + 5.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_27", - "from": [14.5, 0, 5.5], - "to": [14.75, 0.25, 10.5], + "from": [ + 14.5, + 0, + 5.5 + ], + "to": [ + 14.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.75, 5.5, 14.5, 5.75], "texture": "#2"}, - "east": {"uv": [14.5, 5.5, 14.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.5, 10.25, 14.75, 10.5], "texture": "#2"}, - "west": {"uv": [14.5, 5.5, 14.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.5, 5.5, 14.75, 10.5], "texture": "#2"}, - "down": {"uv": [14.5, 10.5, 14.75, 5.5], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 5.5, + 14.5, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 5.5, + 14.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.5, + 5.5, + 14.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.5, + 5.5, + 14.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.5, + 10.5, + 14.75, + 5.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_28", - "from": [15.25, 0, 5.5], - "to": [15.5, 0.25, 7.5], + "from": [ + 15.25, + 0, + 5.5 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 5.5, 15.25, 5.75], "texture": "#2"}, - "east": {"uv": [15.25, 5.5, 15.5, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#2"}, - "west": {"uv": [15.25, 5.5, 15.5, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 5.5, 15.5, 7.5], "texture": "#2"}, - "down": {"uv": [15.25, 7.5, 15.5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 5.5, + 15.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 5.5, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 5.5, + 15.5, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 5.5, + 15.5, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 7.5, + 15.5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_29", - "from": [2.5, 0, 5.75], - "to": [2.75, 0.25, 10.25], + "from": [ + 2.5, + 0, + 5.75 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.75, 5.75, 2.5, 6], "texture": "#2"}, - "east": {"uv": [2.5, 5.75, 2.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#2"}, - "west": {"uv": [2.5, 5.75, 2.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.5, 5.75, 2.75, 10.25], "texture": "#2"}, - "down": {"uv": [2.5, 10.25, 2.75, 5.75], "texture": "#2"} + "north": { + "uv": [ + 2.75, + 5.75, + 2.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 2.75, + 5.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_30", - "from": [14, 0, 5.75], - "to": [14.5, 0.25, 10.25], + "from": [ + 14, + 0, + 5.75 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 5.75, 14, 6], "texture": "#2"}, - "east": {"uv": [14.25, 5.75, 14.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 10, 14.5, 10.25], "texture": "#2"}, - "west": {"uv": [14, 5.75, 14.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 5.75, 14.5, 10.25], "texture": "#2"}, - "down": {"uv": [14, 10.25, 14.5, 5.75], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 5.75, + 14, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 5.75, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 10, + 14.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 5.75, + 14.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 5.75, + 14.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 10.25, + 14.5, + 5.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_31", - "from": [15.5, 0, 5.75], - "to": [15.75, 0.25, 7.25], + "from": [ + 15.5, + 0, + 5.75 + ], + "to": [ + 15.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.75, 5.75, 15.5, 6], "texture": "#2"}, - "east": {"uv": [15.5, 5.75, 15.75, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 7, 15.75, 7.25], "texture": "#2"}, - "west": {"uv": [15.5, 5.75, 15.75, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 5.75, 15.75, 7.25], "texture": "#2"}, - "down": {"uv": [15.5, 7.25, 15.75, 5.75], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 5.75, + 15.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 5.75, + 15.75, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 7, + 15.75, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 5.75, + 15.75, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 5.75, + 15.75, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 7.25, + 15.75, + 5.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_32", - "from": [2.25, 0, 6], - "to": [2.5, 0.25, 10.25], + "from": [ + 2.25, + 0, + 6 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 6, 2.25, 6.25], "texture": "#2"}, - "east": {"uv": [2.25, 6, 2.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#2"}, - "west": {"uv": [2.25, 6, 2.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.25, 6, 2.5, 10.25], "texture": "#2"}, - "down": {"uv": [2.25, 10.25, 2.5, 6], "texture": "#2"} + "north": { + "uv": [ + 2.5, + 6, + 2.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 6 + ], + "texture": "#2" + } } }, { "name": "buru-giru_33", - "from": [13.75, 0, 6], - "to": [14, 0.25, 10], + "from": [ + 13.75, + 0, + 6 + ], + "to": [ + 14, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14, 6, 13.75, 6.25], "texture": "#2"}, - "east": {"uv": [13.75, 6, 14, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 9.75, 14, 10], "texture": "#2"}, - "west": {"uv": [13.75, 6, 14, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 6, 14, 10], "texture": "#2"}, - "down": {"uv": [13.75, 10, 14, 6], "texture": "#2"} + "north": { + "uv": [ + 14, + 6, + 13.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 6, + 14, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 6, + 14, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 6, + 14, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 10, + 14, + 6 + ], + "texture": "#2" + } } }, { "name": "buru-giru_34", - "from": [2, 0, 6.25], - "to": [2.25, 0.25, 10.25], + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.25, 6.25, 2, 6.5], "texture": "#2"}, - "east": {"uv": [2, 6.25, 2.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 10, 2.25, 10.25], "texture": "#2"}, - "west": {"uv": [2, 6.25, 2.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 6.25, 2.25, 10.25], "texture": "#2"}, - "down": {"uv": [2, 10.25, 2.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 2.25, + 6.25, + 2, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 6.25, + 2.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_35", - "from": [13.5, 0, 6.25], - "to": [13.75, 0.25, 9.75], + "from": [ + 13.5, + 0, + 6.25 + ], + "to": [ + 13.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.75, 6.25, 13.5, 6.5], "texture": "#2"}, - "east": {"uv": [13.5, 6.25, 13.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.5, 9.5, 13.75, 9.75], "texture": "#2"}, - "west": {"uv": [13.5, 6.25, 13.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.5, 6.25, 13.75, 9.75], "texture": "#2"}, - "down": {"uv": [13.5, 9.75, 13.75, 6.25], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 6.25, + 13.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.5, + 9.75, + 13.75, + 6.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_36", - "from": [1.75, 0, 6.5], - "to": [2, 0.25, 10], + "from": [ + 1.75, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 6.5, 1.75, 6.75], "texture": "#2"}, - "east": {"uv": [1.75, 6.5, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 9.75, 2, 10], "texture": "#2"}, - "west": {"uv": [1.75, 6.5, 2, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 6.5, 2, 10], "texture": "#2"}, - "down": {"uv": [1.75, 10, 2, 6.5], "texture": "#2"} + "north": { + "uv": [ + 2, + 6.5, + 1.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 10, + 2, + 6.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_37", - "from": [11.25, 0, 6.5], - "to": [11.5, 0.25, 12], + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 11.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.5, 6.5, 11.25, 6.75], "texture": "#2"}, - "east": {"uv": [11.25, 6.5, 11.5, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 11.75, 11.5, 12], "texture": "#2"}, - "west": {"uv": [11.25, 6.5, 11.5, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 6.5, 11.5, 12], "texture": "#2"}, - "down": {"uv": [11.25, 12, 11.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 6.5, + 11.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 6.5, + 11.5, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 11.75, + 11.5, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 11.5, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 12, + 11.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_38", - "from": [13.25, 0, 6.5], - "to": [13.5, 0.25, 9.5], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 6.5, 13.25, 6.75], "texture": "#2"}, - "east": {"uv": [13.25, 6.5, 13.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 9.25, 13.5, 9.5], "texture": "#2"}, - "west": {"uv": [13.25, 6.5, 13.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 6.5, 13.5, 9.5], "texture": "#2"}, - "down": {"uv": [13.25, 9.5, 13.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 6.5, + 13.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 9.5, + 13.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_39", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 10], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#2"}, - "east": {"uv": [1.5, 6.75, 1.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 9.75, 1.75, 10], "texture": "#2"}, - "west": {"uv": [1.5, 6.75, 1.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 6.75, 1.75, 10], "texture": "#2"}, - "down": {"uv": [1.5, 10, 1.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 1.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 10, + 1.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_40", - "from": [11.5, 0, 6.75], - "to": [13.25, 0.25, 9], + "from": [ + 11.5, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.25, 6.75, 11.5, 7], "texture": "#2"}, - "east": {"uv": [13, 6.75, 13.25, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 8.75, 13.25, 9], "texture": "#2"}, - "west": {"uv": [11.5, 6.75, 11.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 6.75, 13.25, 9], "texture": "#2"}, - "down": {"uv": [11.5, 9, 13.25, 6.75], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 6.75, + 11.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 13.25, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 6.75, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 6.75, + 13.25, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 9, + 13.25, + 6.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_41", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#2"}, - "east": {"uv": [1.25, 7, 1.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#2"}, - "west": {"uv": [1.25, 7, 1.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 7, 1.5, 9.75], "texture": "#2"}, - "down": {"uv": [1.25, 9.75, 1.5, 7], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 7 + ], + "texture": "#2" + } } }, { "name": "buru-giru_42", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 9.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#2"}, - "east": {"uv": [1, 7.25, 1.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9.25, 1.25, 9.5], "texture": "#2"}, - "west": {"uv": [1, 7.25, 1.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 7.25, 1.25, 9.5], "texture": "#2"}, - "down": {"uv": [1, 9.5, 1.25, 7.25], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.25, + 7.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_43", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#2"}, - "east": {"uv": [0.75, 7.5, 1, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#2"}, - "west": {"uv": [0.75, 7.5, 1, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 7.5, 1, 9.25], "texture": "#2"}, - "down": {"uv": [0.75, 9.25, 1, 7.5], "texture": "#2"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 7.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_44", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#2"}, - "east": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#2"}, - "west": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.75, 0.75, 9], "texture": "#2"}, - "down": {"uv": [0.5, 9, 0.75, 7.75], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 7.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_45", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#2"}, - "east": {"uv": [0.25, 8, 0.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#2"}, - "west": {"uv": [0.25, 8, 0.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 8, 0.5, 8.75], "texture": "#2"}, - "down": {"uv": [0.25, 8.75, 0.5, 8], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8 + ], + "texture": "#2" + } } }, { "name": "buru-giru_46", - "from": [15.25, 0, 8.25], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 8.25 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 8.25, 15.25, 8.5], "texture": "#2"}, - "east": {"uv": [15.25, 8.25, 15.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#2"}, - "west": {"uv": [15.25, 8.25, 15.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 8.25, 15.5, 10.25], "texture": "#2"}, - "down": {"uv": [15.25, 10.25, 15.5, 8.25], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 8.25, + 15.25, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 8.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_47", - "from": [15.5, 0, 8.75], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 8.75 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 8.75, 15.5, 9], "texture": "#2"}, - "east": {"uv": [15.5, 8.75, 15.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#2"}, - "west": {"uv": [15.5, 8.75, 15.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 8.75, 15.75, 10], "texture": "#2"}, - "down": {"uv": [15.5, 10, 15.75, 8.75], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 8.75, + 15.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 8.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_48", - "from": [12.75, 0, 9], - "to": [13.25, 0.25, 9.25], + "from": [ + 12.75, + 0, + 9 + ], + "to": [ + 13.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.25, 9, 12.75, 9.25], "texture": "#2"}, - "east": {"uv": [13, 9, 13.25, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.75, 9, 13.25, 9.25], "texture": "#2"}, - "west": {"uv": [12.75, 9, 13, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.75, 9, 13.25, 9.25], "texture": "#2"}, - "down": {"uv": [12.75, 9.25, 13.25, 9], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 9, + 12.75, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 9, + 13.25, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.75, + 9, + 13.25, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.75, + 9, + 13, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.75, + 9, + 13.25, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.75, + 9.25, + 13.25, + 9 + ], + "texture": "#2" + } } }, { "name": "buru-giru_49", - "from": [11.5, 0, 9.25], - "to": [11.75, 0.25, 11.75], + "from": [ + 11.5, + 0, + 9.25 + ], + "to": [ + 11.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [11.75, 9.25, 11.5, 9.5], "texture": "#2"}, - "east": {"uv": [11.5, 9.25, 11.75, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 11.5, 11.75, 11.75], "texture": "#2"}, - "west": {"uv": [11.5, 9.25, 11.75, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 9.25, 11.75, 11.75], "texture": "#2"}, - "down": {"uv": [11.5, 11.75, 11.75, 9.25], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 9.25, + 11.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 9.25, + 11.75, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 11.5, + 11.75, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 9.25, + 11.75, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 9.25, + 11.75, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 11.75, + 11.75, + 9.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_50", - "from": [13, 0, 9.25], - "to": [13.25, 0.25, 9.5], + "from": [ + 13, + 0, + 9.25 + ], + "to": [ + 13.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.25, 9.25, 13, 9.5], "texture": "#2"}, - "east": {"uv": [13, 9.25, 13.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 9.25, 13.25, 9.5], "texture": "#2"}, - "west": {"uv": [13, 9.25, 13.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 9.25, 13.25, 9.5], "texture": "#2"}, - "down": {"uv": [13, 9.5, 13.25, 9.25], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 9.25, + 13, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 9.25, + 13.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 9.25, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 9.25, + 13.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.25, + 9.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_51", - "from": [11.75, 0, 9.5], - "to": [12, 0.25, 11.5], + "from": [ + 11.75, + 0, + 9.5 + ], + "to": [ + 12, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12, 9.5, 11.75, 9.75], "texture": "#2"}, - "east": {"uv": [11.75, 9.5, 12, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 11.25, 12, 11.5], "texture": "#2"}, - "west": {"uv": [11.75, 9.5, 12, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 9.5, 12, 11.5], "texture": "#2"}, - "down": {"uv": [11.75, 11.5, 12, 9.5], "texture": "#2"} + "north": { + "uv": [ + 12, + 9.5, + 11.75, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 9.5, + 12, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 11.25, + 12, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 9.5, + 12, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 9.5, + 12, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 11.5, + 12, + 9.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_52", - "from": [12, 0, 9.75], - "to": [12.25, 0.25, 11], + "from": [ + 12, + 0, + 9.75 + ], + "to": [ + 12.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [12.25, 9.75, 12, 10], "texture": "#2"}, - "east": {"uv": [12, 9.75, 12.25, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 10.75, 12.25, 11], "texture": "#2"}, - "west": {"uv": [12, 9.75, 12.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 9.75, 12.25, 11], "texture": "#2"}, - "down": {"uv": [12, 11, 12.25, 9.75], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 9.75, + 12, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 9.75, + 12.25, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 10.75, + 12.25, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 9.75, + 12.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 9.75, + 12.25, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 11, + 12.25, + 9.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_53", - "from": [14.75, 0, 10.5], - "to": [15, 0.25, 10.75], + "from": [ + 14.75, + 0, + 10.5 + ], + "to": [ + 15, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15, 10.5, 14.75, 10.75], "texture": "#2"}, - "east": {"uv": [14.75, 10.5, 15, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 10.5, 15, 10.75], "texture": "#2"}, - "west": {"uv": [14.75, 10.5, 15, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 10.5, 15, 10.75], "texture": "#2"}, - "down": {"uv": [14.75, 10.75, 15, 10.5], "texture": "#2"} + "north": { + "uv": [ + 15, + 10.5, + 14.75, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 10.75, + 15, + 10.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_54", - "from": [3.25, 0, 10.75], - "to": [3.5, 0.25, 11], + "from": [ + 3.25, + 0, + 10.75 + ], + "to": [ + 3.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.5, 10.75, 3.25, 11], "texture": "#2"}, - "east": {"uv": [3.25, 10.75, 3.5, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.25, 10.75, 3.5, 11], "texture": "#2"}, - "west": {"uv": [3.25, 10.75, 3.5, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.25, 10.75, 3.5, 11], "texture": "#2"}, - "down": {"uv": [3.25, 11, 3.5, 10.75], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 10.75, + 3.25, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.25, + 11, + 3.5, + 10.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_55", - "from": [4.25, 0, 11], - "to": [4.5, 0.25, 11.25], + "from": [ + 4.25, + 0, + 11 + ], + "to": [ + 4.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.5, 11, 4.25, 11.25], "texture": "#2"}, - "east": {"uv": [4.25, 11, 4.5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.25, 11, 4.5, 11.25], "texture": "#2"}, - "west": {"uv": [4.25, 11, 4.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.25, 11, 4.5, 11.25], "texture": "#2"}, - "down": {"uv": [4.25, 11.25, 4.5, 11], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 11, + 4.25, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.25, + 11.25, + 4.5, + 11 + ], + "texture": "#2" + } } }, { "name": "buru-giru_56", - "from": [7.25, 0, 11.25], - "to": [7.5, 0.25, 12.25], + "from": [ + 7.25, + 0, + 11.25 + ], + "to": [ + 7.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.5, 11.25, 7.25, 11.5], "texture": "#2"}, - "east": {"uv": [7.25, 11.25, 7.5, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 12, 7.5, 12.25], "texture": "#2"}, - "west": {"uv": [7.25, 11.25, 7.5, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 11.25, 7.5, 12.25], "texture": "#2"}, - "down": {"uv": [7.25, 12.25, 7.5, 11.25], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 12, + 7.5, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 12.25, + 7.5, + 11.25 + ], + "texture": "#2" + } } }, { "name": "buru-giru_57", - "from": [6.25, 0, 11.5], - "to": [7, 0.25, 11.75], + "from": [ + 6.25, + 0, + 11.5 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 11.5, 6.25, 11.75], "texture": "#2"}, - "east": {"uv": [6.75, 11.5, 7, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 11.5, 7, 11.75], "texture": "#2"}, - "west": {"uv": [6.25, 11.5, 6.5, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 11.5, 7, 11.75], "texture": "#2"}, - "down": {"uv": [6.25, 11.75, 7, 11.5], "texture": "#2"} + "north": { + "uv": [ + 7, + 11.5, + 6.25, + 11.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 11.5, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 11.5, + 7, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 11.5, + 7, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 11.75, + 7, + 11.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_58", - "from": [7.5, 0, 11.5], - "to": [7.75, 0.25, 12.25], + "from": [ + 7.5, + 0, + 11.5 + ], + "to": [ + 7.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.75, 11.5, 7.5, 11.75], "texture": "#2"}, - "east": {"uv": [7.5, 11.5, 7.75, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 12, 7.75, 12.25], "texture": "#2"}, - "west": {"uv": [7.5, 11.5, 7.75, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 11.5, 7.75, 12.25], "texture": "#2"}, - "down": {"uv": [7.5, 12.25, 7.75, 11.5], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 11.5, + 7.5, + 11.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 11.5, + 7.75, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 11.5, + 7.75, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 11.5, + 7.75, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 12.25, + 7.75, + 11.5 + ], + "texture": "#2" + } } }, { "name": "buru-giru_59", - "from": [6.5, 0, 11.75], - "to": [7, 0.25, 12], + "from": [ + 6.5, + 0, + 11.75 + ], + "to": [ + 7, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7, 11.75, 6.5, 12], "texture": "#2"}, - "east": {"uv": [6.75, 11.75, 7, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 11.75, 7, 12], "texture": "#2"}, - "west": {"uv": [6.5, 11.75, 6.75, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 11.75, 7, 12], "texture": "#2"}, - "down": {"uv": [6.5, 12, 7, 11.75], "texture": "#2"} + "north": { + "uv": [ + 7, + 11.75, + 6.5, + 12 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 11.75, + 7, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 11.75, + 7, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 12, + 7, + 11.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_60", - "from": [7.75, 0, 11.75], - "to": [8, 0.25, 12], + "from": [ + 7.75, + 0, + 11.75 + ], + "to": [ + 8, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8, 11.75, 7.75, 12], "texture": "#2"}, - "east": {"uv": [7.75, 11.75, 8, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 11.75, 8, 12], "texture": "#2"}, - "west": {"uv": [7.75, 11.75, 8, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 11.75, 8, 12], "texture": "#2"}, - "down": {"uv": [7.75, 12, 8, 11.75], "texture": "#2"} + "north": { + "uv": [ + 8, + 11.75, + 7.75, + 12 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 12, + 8, + 11.75 + ], + "texture": "#2" + } } }, { "name": "buru-giru_61", - "from": [10, 0, 12], - "to": [10.75, 0.25, 12.25], + "from": [ + 10, + 0, + 12 + ], + "to": [ + 10.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [10.75, 12, 10, 12.25], "texture": "#2"}, - "east": {"uv": [10.5, 12, 10.75, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 12, 10.75, 12.25], "texture": "#2"}, - "west": {"uv": [10, 12, 10.25, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 12, 10.75, 12.25], "texture": "#2"}, - "down": {"uv": [10, 12.25, 10.75, 12], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 12, + 10, + 12.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 12, + 10.75, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 12, + 10.75, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 12, + 10.25, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 12, + 10.75, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 12.25, + 10.75, + 12 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 7.75, 10.75], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 7.75, + 10.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "buru-giru", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/chouchouuo.json b/pack/assets/minecraft/models/fish/chouchouuo.json index 99516b1d..fccc238d 100644 --- a/pack/assets/minecraft/models/fish/chouchouuo.json +++ b/pack/assets/minecraft/models/fish/chouchouuo.json @@ -1,7 +1,7 @@ { "__name": "チョウチョウウオ", - "parent": "item/generated", - "textures": { - "layer0": "fish/chouchouuo" - } + "parent": "item/generated", + "textures": { + "layer0": "item/fish/chouchouuo" + } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/chouzame.json b/pack/assets/minecraft/models/fish/chouzame.json index d72ed705..8b063ab9 100644 --- a/pack/assets/minecraft/models/fish/chouzame.json +++ b/pack/assets/minecraft/models/fish/chouzame.json @@ -2,578 +2,3039 @@ "__name": "チョウザメ", "credit": "Made with Blockbench", "textures": { - "0": "fish/chouzame", - "particle": "fish/chouzame" + "0": "item/fish/chouzame", + "particle": "item/fish/chouzame" }, "elements": [ { "name": "chouzame_1", - "from": [6.75, 0, 3.75], - "to": [7, 0.25, 4], + "from": [ + 6.75, + 0, + 3.75 + ], + "to": [ + 7, + 0.25, + 4 + ], "faces": { - "north": {"uv": [7, 3.75, 6.75, 4], "texture": "#0"}, - "east": {"uv": [6.75, 3.75, 7, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 3.75, 7, 4], "texture": "#0"}, - "west": {"uv": [6.75, 3.75, 7, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.75, 7, 4], "texture": "#0"}, - "down": {"uv": [6.75, 4, 7, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4, + 7, + 3.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_2", - "from": [15, 0, 5.75], - "to": [15.5, 0.25, 6.5], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.5, 5.75, 15, 6], "texture": "#0"}, - "east": {"uv": [15.25, 5.75, 15.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.25, 15.5, 6.5], "texture": "#0"}, - "west": {"uv": [15, 5.75, 15.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 5.75, 15.5, 6.5], "texture": "#0"}, - "down": {"uv": [15, 6.5, 15.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 5.75, + 15, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.25, + 15.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.5, + 15.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_3", - "from": [14.5, 0, 6], - "to": [15, 0.25, 7], + "from": [ + 14.5, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15, 6, 14.5, 6.25], "texture": "#0"}, - "east": {"uv": [14.75, 6, 15, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 6.75, 15, 7], "texture": "#0"}, - "west": {"uv": [14.5, 6, 14.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6, 15, 7], "texture": "#0"}, - "down": {"uv": [14.5, 7, 15, 6], "texture": "#0"} + "north": { + "uv": [ + 15, + 6, + 14.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6, + 14.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6, + 15, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7, + 15, + 6 + ], + "texture": "#0" + } } }, { "name": "chouzame_4", - "from": [15.5, 0, 6], - "to": [15.75, 0.25, 6.25], + "from": [ + 15.5, + 0, + 6 + ], + "to": [ + 15.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.75, 6, 15.5, 6.25], "texture": "#0"}, - "east": {"uv": [15.5, 6, 15.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 6, 15.75, 6.25], "texture": "#0"}, - "west": {"uv": [15.5, 6, 15.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 6, 15.75, 6.25], "texture": "#0"}, - "down": {"uv": [15.5, 6.25, 15.75, 6], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 6, + 15.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 6, + 15.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 6, + 15.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 6, + 15.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 6, + 15.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 6.25, + 15.75, + 6 + ], + "texture": "#0" + } } }, { "name": "chouzame_5", - "from": [11.25, 0, 6.25], - "to": [11.5, 0.25, 9.25], + "from": [ + 11.25, + 0, + 6.25 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 6.25, 11.25, 6.5], "texture": "#0"}, - "east": {"uv": [11.25, 6.25, 11.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "west": {"uv": [11.25, 6.25, 11.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.25, 11.5, 9.25], "texture": "#0"}, - "down": {"uv": [11.25, 9.25, 11.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6.25, + 11.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.25, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.25, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.25, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_6", - "from": [14.25, 0, 6.25], - "to": [14.5, 0.25, 8], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.5, 6.25, 14.25, 6.5], "texture": "#0"}, - "east": {"uv": [14.25, 6.25, 14.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "west": {"uv": [14.25, 6.25, 14.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.25, 14.5, 8], "texture": "#0"}, - "down": {"uv": [14.25, 8, 14.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.25, + 14.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.25, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_7", - "from": [5, 0, 6.5], - "to": [7.75, 0.25, 9], + "from": [ + 5, + 0, + 6.5 + ], + "to": [ + 7.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.75, 6.5, 5, 6.75], "texture": "#0"}, - "east": {"uv": [7.5, 6.5, 7.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.75, 7.75, 9], "texture": "#0"}, - "west": {"uv": [5, 6.5, 5.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.5, 7.75, 9], "texture": "#0"}, - "down": {"uv": [5, 9, 7.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.5, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.5, + 5.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.5, + 7.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 7.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_8", - "from": [11, 0, 6.5], - "to": [11.25, 0.25, 9.25], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.25, 6.5, 11, 6.75], "texture": "#0"}, - "east": {"uv": [11, 6.5, 11.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9, 11.25, 9.25], "texture": "#0"}, - "west": {"uv": [11, 6.5, 11.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.5, 11.25, 9.25], "texture": "#0"}, - "down": {"uv": [11, 9.25, 11.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.25, + 11.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_9", - "from": [11.5, 0, 6.5], - "to": [11.75, 0.25, 9.5], + "from": [ + 11.5, + 0, + 6.5 + ], + "to": [ + 11.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.75, 6.5, 11.5, 6.75], "texture": "#0"}, - "east": {"uv": [11.5, 6.5, 11.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 9.25, 11.75, 9.5], "texture": "#0"}, - "west": {"uv": [11.5, 6.5, 11.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.5, 11.75, 9.5], "texture": "#0"}, - "down": {"uv": [11.5, 9.5, 11.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 11.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_10", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 9.25], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#0"}, - "east": {"uv": [14, 6.5, 14.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9, 14.25, 9.25], "texture": "#0"}, - "west": {"uv": [14, 6.5, 14.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.5, 14.25, 9.25], "texture": "#0"}, - "down": {"uv": [14, 9.25, 14.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_11", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 6.75], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#0"}, - "east": {"uv": [15, 6.5, 15.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#0"}, - "west": {"uv": [15, 6.5, 15.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#0"}, - "down": {"uv": [15, 6.75, 15.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.75, + 15.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_12", - "from": [4.25, 0, 6.75], - "to": [5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 6.75 + ], + "to": [ + 5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5, 6.75, 4.25, 7], "texture": "#0"}, - "east": {"uv": [4.75, 6.75, 5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.5, 5, 9.75], "texture": "#0"}, - "west": {"uv": [4.25, 6.75, 4.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6.75, 5, 9.75], "texture": "#0"}, - "down": {"uv": [4.25, 9.75, 5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 6.75, + 4.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.75, + 5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.75, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6.75, + 5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_13", - "from": [7.75, 0, 6.75], - "to": [8.25, 0.25, 9], + "from": [ + 7.75, + 0, + 6.75 + ], + "to": [ + 8.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.25, 6.75, 7.75, 7], "texture": "#0"}, - "east": {"uv": [8, 6.75, 8.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.75, 8.25, 9], "texture": "#0"}, - "west": {"uv": [7.75, 6.75, 8, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.75, 8.25, 9], "texture": "#0"}, - "down": {"uv": [7.75, 9, 8.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.75, + 8.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.75, + 8, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.75, + 8.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 8.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_14", - "from": [10.75, 0, 6.75], - "to": [11, 0.25, 9], + "from": [ + 10.75, + 0, + 6.75 + ], + "to": [ + 11, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11, 6.75, 10.75, 7], "texture": "#0"}, - "east": {"uv": [10.75, 6.75, 11, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.75, 11, 9], "texture": "#0"}, - "west": {"uv": [10.75, 6.75, 11, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.75, 11, 9], "texture": "#0"}, - "down": {"uv": [10.75, 9, 11, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.75, + 11, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.75, + 11, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.75, + 11, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9, + 11, + 6.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_15", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 9], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#0"}, - "east": {"uv": [13.75, 6.75, 14, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.75, 14, 9], "texture": "#0"}, - "west": {"uv": [13.75, 6.75, 14, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.75, 14, 9], "texture": "#0"}, - "down": {"uv": [13.75, 9, 14, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9, + 14, + 6.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_16", - "from": [3.5, 0, 7], - "to": [4.25, 0.25, 9], + "from": [ + 3.5, + 0, + 7 + ], + "to": [ + 4.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [4.25, 7, 3.5, 7.25], "texture": "#0"}, - "east": {"uv": [4, 7, 4.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.75, 4.25, 9], "texture": "#0"}, - "west": {"uv": [3.5, 7, 3.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7, 4.25, 9], "texture": "#0"}, - "down": {"uv": [3.5, 9, 4.25, 7], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 7, + 3.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7, + 4.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7, + 3.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7, + 4.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9, + 4.25, + 7 + ], + "texture": "#0" + } } }, { "name": "chouzame_17", - "from": [8.25, 0, 7], - "to": [8.75, 0.25, 9], + "from": [ + 8.25, + 0, + 7 + ], + "to": [ + 8.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.75, 7, 8.25, 7.25], "texture": "#0"}, - "east": {"uv": [8.5, 7, 8.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.75, 8.75, 9], "texture": "#0"}, - "west": {"uv": [8.25, 7, 8.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7, 8.75, 9], "texture": "#0"}, - "down": {"uv": [8.25, 9, 8.75, 7], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 7, + 8.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7, + 8.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7, + 8.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7, + 8.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8.75, + 7 + ], + "texture": "#0" + } } }, { "name": "chouzame_18", - "from": [10.5, 0, 7], - "to": [10.75, 0.25, 9], + "from": [ + 10.5, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.75, 7, 10.5, 7.25], "texture": "#0"}, - "east": {"uv": [10.5, 7, 10.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.75, 10.75, 9], "texture": "#0"}, - "west": {"uv": [10.5, 7, 10.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7, 10.75, 9], "texture": "#0"}, - "down": {"uv": [10.5, 9, 10.75, 7], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7, + 10.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7, + 10.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9, + 10.75, + 7 + ], + "texture": "#0" + } } }, { "name": "chouzame_19", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 9], + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#0"}, - "east": {"uv": [13.5, 7, 13.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#0"}, - "west": {"uv": [13.5, 7, 13.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7, 13.75, 9], "texture": "#0"}, - "down": {"uv": [13.5, 9, 13.75, 7], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9, + 13.75, + 7 + ], + "texture": "#0" + } } }, { "name": "chouzame_20", - "from": [14.5, 0, 7], - "to": [14.75, 0.25, 7.5], + "from": [ + 14.5, + 0, + 7 + ], + "to": [ + 14.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.75, 7, 14.5, 7.25], "texture": "#0"}, - "east": {"uv": [14.5, 7, 14.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.25, 14.75, 7.5], "texture": "#0"}, - "west": {"uv": [14.5, 7, 14.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7, 14.75, 7.5], "texture": "#0"}, - "down": {"uv": [14.5, 7.5, 14.75, 7], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7, + 14.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7 + ], + "texture": "#0" + } } }, { "name": "chouzame_21", - "from": [3, 0, 7.25], - "to": [3.5, 0.25, 9], + "from": [ + 3, + 0, + 7.25 + ], + "to": [ + 3.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.5, 7.25, 3, 7.5], "texture": "#0"}, - "east": {"uv": [3.25, 7.25, 3.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.75, 3.5, 9], "texture": "#0"}, - "west": {"uv": [3, 7.25, 3.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7.25, 3.5, 9], "texture": "#0"}, - "down": {"uv": [3, 9, 3.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 7.25, + 3, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.25, + 3.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.25, + 3.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7.25, + 3.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9, + 3.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_22", - "from": [8.75, 0, 7.25], - "to": [9.25, 0.25, 9], + "from": [ + 8.75, + 0, + 7.25 + ], + "to": [ + 9.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.25, 7.25, 8.75, 7.5], "texture": "#0"}, - "east": {"uv": [9, 7.25, 9.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 8.75, 9.25, 9], "texture": "#0"}, - "west": {"uv": [8.75, 7.25, 9, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7.25, 9.25, 9], "texture": "#0"}, - "down": {"uv": [8.75, 9, 9.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 7.25, + 8.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.25, + 9.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7.25, + 9, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7.25, + 9.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9, + 9.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_23", - "from": [10.25, 0, 7.25], - "to": [10.5, 0.25, 9], + "from": [ + 10.25, + 0, + 7.25 + ], + "to": [ + 10.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.5, 7.25, 10.25, 7.5], "texture": "#0"}, - "east": {"uv": [10.25, 7.25, 10.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8.75, 10.5, 9], "texture": "#0"}, - "west": {"uv": [10.25, 7.25, 10.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7.25, 10.5, 9], "texture": "#0"}, - "down": {"uv": [10.25, 9, 10.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7.25, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7.25, + 10.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7.25, + 10.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9, + 10.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_24", - "from": [13.25, 0, 7.25], - "to": [13.5, 0.25, 8.75], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 7.25, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13.25, 7.25, 13.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.5, 13.5, 8.75], "texture": "#0"}, - "west": {"uv": [13.25, 7.25, 13.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.25, 13.5, 8.75], "texture": "#0"}, - "down": {"uv": [13.25, 8.75, 13.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 13.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_25", - "from": [2.5, 0, 7.5], - "to": [3, 0.25, 9], + "from": [ + 2.5, + 0, + 7.5 + ], + "to": [ + 3, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3, 7.5, 2.5, 7.75], "texture": "#0"}, - "east": {"uv": [2.75, 7.5, 3, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.75, 3, 9], "texture": "#0"}, - "west": {"uv": [2.5, 7.5, 2.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.5, 3, 9], "texture": "#0"}, - "down": {"uv": [2.5, 9, 3, 7.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 7.5, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.5, + 3, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 3, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.5, + 2.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.5, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9, + 3, + 7.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_26", - "from": [9.25, 0, 7.5], - "to": [10.25, 0.25, 9.25], + "from": [ + 9.25, + 0, + 7.5 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.25, 7.5, 9.25, 7.75], "texture": "#0"}, - "east": {"uv": [10, 7.5, 10.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9, 10.25, 9.25], "texture": "#0"}, - "west": {"uv": [9.25, 7.5, 9.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7.5, 10.25, 9.25], "texture": "#0"}, - "down": {"uv": [9.25, 9.25, 10.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7.5, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.5, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 10.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_27", - "from": [13, 0, 7.5], - "to": [13.25, 0.25, 8.75], + "from": [ + 13, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 7.5, 13, 7.75], "texture": "#0"}, - "east": {"uv": [13, 7.5, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 7.5, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7.5, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 13.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 7.5, + 13, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_28", - "from": [2, 0, 7.75], - "to": [2.5, 0.25, 8.75], + "from": [ + 2, + 0, + 7.75 + ], + "to": [ + 2.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2.5, 7.75, 2, 8], "texture": "#0"}, - "east": {"uv": [2.25, 7.75, 2.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.5, 2.5, 8.75], "texture": "#0"}, - "west": {"uv": [2, 7.75, 2.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7.75, 2.5, 8.75], "texture": "#0"}, - "down": {"uv": [2, 8.75, 2.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 7.75, + 2, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.75, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.75, + 2.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_29", - "from": [11.75, 0, 7.75], - "to": [13, 0.25, 8.5], + "from": [ + 11.75, + 0, + 7.75 + ], + "to": [ + 13, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13, 7.75, 11.75, 8], "texture": "#0"}, - "east": {"uv": [12.75, 7.75, 13, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.25, 13, 8.5], "texture": "#0"}, - "west": {"uv": [11.75, 7.75, 12, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.75, 13, 8.5], "texture": "#0"}, - "down": {"uv": [11.75, 8.5, 13, 7.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.75, + 13, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.75, + 12, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.75, + 13, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.5, + 13, + 7.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_30", - "from": [0.75, 0, 8], - "to": [2, 0.25, 8.75], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 2, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2, 8, 0.75, 8.25], "texture": "#0"}, - "east": {"uv": [1.75, 8, 2, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.5, 2, 8.75], "texture": "#0"}, - "west": {"uv": [0.75, 8, 1, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8, 2, 8.75], "texture": "#0"}, - "down": {"uv": [0.75, 8.75, 2, 8], "texture": "#0"} + "north": { + "uv": [ + 2, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8, + 2, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8, + 2, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 2, + 8 + ], + "texture": "#0" + } } }, { "name": "chouzame_31", - "from": [0.5, 0, 8.25], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#0"}, - "east": {"uv": [0.5, 8.25, 0.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#0"}, - "west": {"uv": [0.5, 8.25, 0.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#0"}, - "down": {"uv": [0.5, 8.5, 0.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8.25, + 0.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_32", - "from": [12.75, 0, 8.5], - "to": [13, 0.25, 8.75], + "from": [ + 12.75, + 0, + 8.5 + ], + "to": [ + 13, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13, 8.5, 12.75, 8.75], "texture": "#0"}, - "east": {"uv": [12.75, 8.5, 13, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8.5, 13, 8.75], "texture": "#0"}, - "west": {"uv": [12.75, 8.5, 13, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.5, 13, 8.75], "texture": "#0"}, - "down": {"uv": [12.75, 8.75, 13, 8.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 8.5, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.75, + 13, + 8.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_33", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "east": {"uv": [14.25, 8.5, 14.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#0"}, - "west": {"uv": [14.25, 8.5, 14.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.5, 14.5, 9.25], "texture": "#0"}, - "down": {"uv": [14.25, 9.25, 14.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "chouzame_34", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 9], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#0"}, - "east": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#0"}, - "west": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#0"}, - "down": {"uv": [14.5, 9, 14.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9, + 14.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "chouzame_35", - "from": [3.75, 0, 9], - "to": [4.25, 0.25, 9.25], + "from": [ + 3.75, + 0, + 9 + ], + "to": [ + 4.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.25, 9, 3.75, 9.25], "texture": "#0"}, - "east": {"uv": [4, 9, 4.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9, 4.25, 9.25], "texture": "#0"}, - "west": {"uv": [3.75, 9, 4, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9, 4.25, 9.25], "texture": "#0"}, - "down": {"uv": [3.75, 9.25, 4.25, 9], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9, + 4, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.25, + 4.25, + 9 + ], + "texture": "#0" + } } }, { "name": "chouzame_36", - "from": [11.75, 0, 9], - "to": [12, 0.25, 9.25], + "from": [ + 11.75, + 0, + 9 + ], + "to": [ + 12, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12, 9, 11.75, 9.25], "texture": "#0"}, - "east": {"uv": [11.75, 9, 12, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9, 12, 9.25], "texture": "#0"}, - "west": {"uv": [11.75, 9, 12, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9, 12, 9.25], "texture": "#0"}, - "down": {"uv": [11.75, 9.25, 12, 9], "texture": "#0"} + "north": { + "uv": [ + 12, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12, + 9 + ], + "texture": "#0" + } } }, { "name": "chouzame_37", - "from": [4, 0, 9.25], - "to": [4.25, 0.25, 9.5], + "from": [ + 4, + 0, + 9.25 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.25, 9.25, 4, 9.5], "texture": "#0"}, - "east": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.25, 4.25, 9.5], "texture": "#0"}, - "west": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.25, 4.25, 9.5], "texture": "#0"}, - "down": {"uv": [4, 9.5, 4.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.5, + 4.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_38", - "from": [5, 0, 9.25], - "to": [5.25, 0.25, 9.5], + "from": [ + 5, + 0, + 9.25 + ], + "to": [ + 5.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.25, 9.25, 5, 9.5], "texture": "#0"}, - "east": {"uv": [5, 9.25, 5.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#0"}, - "west": {"uv": [5, 9.25, 5.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#0"}, - "down": {"uv": [5, 9.5, 5.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 5.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_39", - "from": [9.5, 0, 9.25], - "to": [10.25, 0.25, 9.5], + "from": [ + 9.5, + 0, + 9.25 + ], + "to": [ + 10.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.25, 9.25, 9.5, 9.5], "texture": "#0"}, - "east": {"uv": [10, 9.25, 10.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 10.25, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9.25, 10.25, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 10.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 10.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "chouzame_40", - "from": [9.75, 0, 9.5], - "to": [10, 0.25, 9.75], + "from": [ + 9.75, + 0, + 9.5 + ], + "to": [ + 10, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10, 9.5, 9.75, 9.75], "texture": "#0"}, - "east": {"uv": [9.75, 9.5, 10, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 9.5, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10, 9.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10, + 9.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "chouzame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/demekin.json b/pack/assets/minecraft/models/fish/demekin.json index bb26f2ff..438c1cf1 100644 --- a/pack/assets/minecraft/models/fish/demekin.json +++ b/pack/assets/minecraft/models/fish/demekin.json @@ -2,942 +2,5051 @@ "__name": "デメキン", "credit": "Made with Blockbench", "textures": { - "2": "fish/demekin", - "particle": "fish/ika" + "2": "item/fish/demekin", + "particle": "item/fish/ika" }, "elements": [ { "name": "demekin_0", - "from": [5.75, 0, 2.25], - "to": [6.5, 0.25, 10.5], + "from": [ + 5.75, + 0, + 2.25 + ], + "to": [ + 6.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.5, 2.25, 5.75, 2.5], "texture": "#2"}, - "east": {"uv": [6.25, 2.25, 6.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 10.25, 6.5, 10.5], "texture": "#2"}, - "west": {"uv": [5.75, 2.25, 6, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 2.25, 6.5, 10.5], "texture": "#2"}, - "down": {"uv": [5.75, 10.5, 6.5, 2.25], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 2.25, + 5.75, + 2.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 2.25, + 6.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 10.25, + 6.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 2.25, + 6, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 2.25, + 6.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 10.5, + 6.5, + 2.25 + ], + "texture": "#2" + } } }, { "name": "demekin_1", - "from": [5.5, 0, 2.5], - "to": [5.75, 0.25, 10.5], + "from": [ + 5.5, + 0, + 2.5 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 2.5, 5.5, 2.75], "texture": "#2"}, - "east": {"uv": [5.5, 2.5, 5.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 10.25, 5.75, 10.5], "texture": "#2"}, - "west": {"uv": [5.5, 2.5, 5.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 2.5, 5.75, 10.5], "texture": "#2"}, - "down": {"uv": [5.5, 10.5, 5.75, 2.5], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 2.5, + 5.5, + 2.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 2.5, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 2.5, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 2.5, + 5.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 5.75, + 2.5 + ], + "texture": "#2" + } } }, { "name": "demekin_2", - "from": [6.5, 0, 2.5], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.5, + 0, + 2.5 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 2.5, 6.5, 2.75], "texture": "#2"}, - "east": {"uv": [6.5, 2.5, 6.75, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#2"}, - "west": {"uv": [6.5, 2.5, 6.75, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 2.5, 6.75, 11.5], "texture": "#2"}, - "down": {"uv": [6.5, 11.5, 6.75, 2.5], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 2.5, + 6.5, + 2.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 11.5, + 6.75, + 2.5 + ], + "texture": "#2" + } } }, { "name": "demekin_3", - "from": [5.25, 0, 2.75], - "to": [5.5, 0.25, 10.5], + "from": [ + 5.25, + 0, + 2.75 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 2.75, 5.25, 3], "texture": "#2"}, - "east": {"uv": [5.25, 2.75, 5.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#2"}, - "west": {"uv": [5.25, 2.75, 5.5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 2.75, 5.5, 10.5], "texture": "#2"}, - "down": {"uv": [5.25, 10.5, 5.5, 2.75], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 2.75, + 5.25, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 2.75, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 2.75, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 2.75, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 5.5, + 2.75 + ], + "texture": "#2" + } } }, { "name": "demekin_4", - "from": [6.75, 0, 2.75], - "to": [7, 0.25, 11.75], + "from": [ + 6.75, + 0, + 2.75 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 2.75, 6.75, 3], "texture": "#2"}, - "east": {"uv": [6.75, 2.75, 7, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 11.5, 7, 11.75], "texture": "#2"}, - "west": {"uv": [6.75, 2.75, 7, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 2.75, 7, 11.75], "texture": "#2"}, - "down": {"uv": [6.75, 11.75, 7, 2.75], "texture": "#2"} + "north": { + "uv": [ + 7, + 2.75, + 6.75, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 11.5, + 7, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 11.75, + 7, + 2.75 + ], + "texture": "#2" + } } }, { "name": "demekin_5", - "from": [5, 0, 3], - "to": [5.25, 0.25, 10.5], + "from": [ + 5, + 0, + 3 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.25, 3, 5, 3.25], "texture": "#2"}, - "east": {"uv": [5, 3, 5.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#2"}, - "west": {"uv": [5, 3, 5.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 3, 5.25, 10.5], "texture": "#2"}, - "down": {"uv": [5, 10.5, 5.25, 3], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 3, + 5, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 3, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 3, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 3, + 5.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.25, + 3 + ], + "texture": "#2" + } } }, { "name": "demekin_6", - "from": [7, 0, 3], - "to": [7.25, 0.25, 12], + "from": [ + 7, + 0, + 3 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 3, 7, 3.25], "texture": "#2"}, - "east": {"uv": [7, 3, 7.25, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 11.75, 7.25, 12], "texture": "#2"}, - "west": {"uv": [7, 3, 7.25, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 3, 7.25, 12], "texture": "#2"}, - "down": {"uv": [7, 12, 7.25, 3], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 3, + 7, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 12, + 7.25, + 3 + ], + "texture": "#2" + } } }, { "name": "demekin_7", - "from": [7.25, 0, 3.25], - "to": [7.5, 0.25, 12.25], + "from": [ + 7.25, + 0, + 3.25 + ], + "to": [ + 7.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.5, 3.25, 7.25, 3.5], "texture": "#2"}, - "east": {"uv": [7.25, 3.25, 7.5, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 12, 7.5, 12.25], "texture": "#2"}, - "west": {"uv": [7.25, 3.25, 7.5, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 3.25, 7.5, 12.25], "texture": "#2"}, - "down": {"uv": [7.25, 12.25, 7.5, 3.25], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 3.25, + 7.25, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 3.25, + 7.5, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 12, + 7.5, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 3.25, + 7.5, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 3.25, + 7.5, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 12.25, + 7.5, + 3.25 + ], + "texture": "#2" + } } }, { "name": "demekin_8", - "from": [4.75, 0, 3.5], - "to": [5, 0.25, 10.5], + "from": [ + 4.75, + 0, + 3.5 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 3.5, 4.75, 3.75], "texture": "#2"}, - "east": {"uv": [4.75, 3.5, 5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 10.25, 5, 10.5], "texture": "#2"}, - "west": {"uv": [4.75, 3.5, 5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 3.5, 5, 10.5], "texture": "#2"}, - "down": {"uv": [4.75, 10.5, 5, 3.5], "texture": "#2"} + "north": { + "uv": [ + 5, + 3.5, + 4.75, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 3.5, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 3.5, + 5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 3.5, + 5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 10.5, + 5, + 3.5 + ], + "texture": "#2" + } } }, { "name": "demekin_9", - "from": [7.5, 0, 3.75], - "to": [7.75, 0.25, 12.5], + "from": [ + 7.5, + 0, + 3.75 + ], + "to": [ + 7.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.75, 3.75, 7.5, 4], "texture": "#2"}, - "east": {"uv": [7.5, 3.75, 7.75, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 12.25, 7.75, 12.5], "texture": "#2"}, - "west": {"uv": [7.5, 3.75, 7.75, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 3.75, 7.75, 12.5], "texture": "#2"}, - "down": {"uv": [7.5, 12.5, 7.75, 3.75], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 3.75, + 7.5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 3.75, + 7.75, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 12.25, + 7.75, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 3.75, + 7.75, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 3.75, + 7.75, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 12.5, + 7.75, + 3.75 + ], + "texture": "#2" + } } }, { "name": "demekin_10", - "from": [13.75, 0, 3.75], - "to": [15.5, 0.25, 6], + "from": [ + 13.75, + 0, + 3.75 + ], + "to": [ + 15.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.5, 3.75, 13.75, 4], "texture": "#2"}, - "east": {"uv": [15.25, 3.75, 15.5, 6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 5.75, 15.5, 6], "texture": "#2"}, - "west": {"uv": [13.75, 3.75, 14, 6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 3.75, 15.5, 6], "texture": "#2"}, - "down": {"uv": [13.75, 6, 15.5, 3.75], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 3.75, + 13.75, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 3.75, + 15.5, + 6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 5.75, + 15.5, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 3.75, + 14, + 6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 3.75, + 15.5, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 6, + 15.5, + 3.75 + ], + "texture": "#2" + } } }, { "name": "demekin_11", - "from": [7.75, 0, 4], - "to": [8, 0.25, 9], + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8, 4, 7.75, 4.25], "texture": "#2"}, - "east": {"uv": [7.75, 4, 8, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#2"}, - "west": {"uv": [7.75, 4, 8, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 4, 8, 9], "texture": "#2"}, - "down": {"uv": [7.75, 9, 8, 4], "texture": "#2"} + "north": { + "uv": [ + 8, + 4, + 7.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 4, + 8, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 4, + 8, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 4 + ], + "texture": "#2" + } } }, { "name": "demekin_12", - "from": [13, 0, 4], - "to": [13.75, 0.25, 8], + "from": [ + 13, + 0, + 4 + ], + "to": [ + 13.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13.75, 4, 13, 4.25], "texture": "#2"}, - "east": {"uv": [13.5, 4, 13.75, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 7.75, 13.75, 8], "texture": "#2"}, - "west": {"uv": [13, 4, 13.25, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 4, 13.75, 8], "texture": "#2"}, - "down": {"uv": [13, 8, 13.75, 4], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 4, + 13, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 4, + 13.75, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 7.75, + 13.75, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 4, + 13.25, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 4, + 13.75, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 8, + 13.75, + 4 + ], + "texture": "#2" + } } }, { "name": "demekin_13", - "from": [15.5, 0, 4], - "to": [15.75, 0.25, 5.25], + "from": [ + 15.5, + 0, + 4 + ], + "to": [ + 15.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [15.75, 4, 15.5, 4.25], "texture": "#2"}, - "east": {"uv": [15.5, 4, 15.75, 5.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 5, 15.75, 5.25], "texture": "#2"}, - "west": {"uv": [15.5, 4, 15.75, 5.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 4, 15.75, 5.25], "texture": "#2"}, - "down": {"uv": [15.5, 5.25, 15.75, 4], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 4, + 15.5, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 4, + 15.75, + 5.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 5, + 15.75, + 5.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 4, + 15.75, + 5.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 4, + 15.75, + 5.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 5.25, + 15.75, + 4 + ], + "texture": "#2" + } } }, { "name": "demekin_14", - "from": [12.25, 0, 4.25], - "to": [13, 0.25, 12.75], + "from": [ + 12.25, + 0, + 4.25 + ], + "to": [ + 13, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [13, 4.25, 12.25, 4.5], "texture": "#2"}, - "east": {"uv": [12.75, 4.25, 13, 12.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.25, 12.5, 13, 12.75], "texture": "#2"}, - "west": {"uv": [12.25, 4.25, 12.5, 12.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.25, 4.25, 13, 12.75], "texture": "#2"}, - "down": {"uv": [12.25, 12.75, 13, 4.25], "texture": "#2"} + "north": { + "uv": [ + 13, + 4.25, + 12.25, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.75, + 4.25, + 13, + 12.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.25, + 12.5, + 13, + 12.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.25, + 4.25, + 12.5, + 12.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.25, + 4.25, + 13, + 12.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.25, + 12.75, + 13, + 4.25 + ], + "texture": "#2" + } } }, { "name": "demekin_15", - "from": [8, 0, 4.5], - "to": [8.25, 0.25, 9.25], + "from": [ + 8, + 0, + 4.5 + ], + "to": [ + 8.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.25, 4.5, 8, 4.75], "texture": "#2"}, - "east": {"uv": [8, 4.5, 8.25, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 9, 8.25, 9.25], "texture": "#2"}, - "west": {"uv": [8, 4.5, 8.25, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 4.5, 8.25, 9.25], "texture": "#2"}, - "down": {"uv": [8, 9.25, 8.25, 4.5], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 4.5, + 8, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 4.5, + 8.25, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 4.5, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 4.5, + 8.25, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 9.25, + 8.25, + 4.5 + ], + "texture": "#2" + } } }, { "name": "demekin_16", - "from": [11.75, 0, 4.5], - "to": [12.25, 0.25, 12.5], + "from": [ + 11.75, + 0, + 4.5 + ], + "to": [ + 12.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [12.25, 4.5, 11.75, 4.75], "texture": "#2"}, - "east": {"uv": [12, 4.5, 12.25, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 12.25, 12.25, 12.5], "texture": "#2"}, - "west": {"uv": [11.75, 4.5, 12, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 4.5, 12.25, 12.5], "texture": "#2"}, - "down": {"uv": [11.75, 12.5, 12.25, 4.5], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 4.5, + 11.75, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 4.5, + 12.25, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 12.25, + 12.25, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 4.5, + 12, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 4.5, + 12.25, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 12.5, + 12.25, + 4.5 + ], + "texture": "#2" + } } }, { "name": "demekin_17", - "from": [8.25, 0, 4.75], - "to": [8.5, 0.25, 9.5], + "from": [ + 8.25, + 0, + 4.75 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 4.75, 8.25, 5], "texture": "#2"}, - "east": {"uv": [8.25, 4.75, 8.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#2"}, - "west": {"uv": [8.25, 4.75, 8.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 4.75, 8.5, 9.5], "texture": "#2"}, - "down": {"uv": [8.25, 9.5, 8.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 4.75, + 8.25, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 4.75, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 4.75, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 4.75, + 8.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "demekin_18", - "from": [11, 0, 4.75], - "to": [11.75, 0.25, 12.25], + "from": [ + 11, + 0, + 4.75 + ], + "to": [ + 11.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.75, 4.75, 11, 5], "texture": "#2"}, - "east": {"uv": [11.5, 4.75, 11.75, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 12, 11.75, 12.25], "texture": "#2"}, - "west": {"uv": [11, 4.75, 11.25, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 4.75, 11.75, 12.25], "texture": "#2"}, - "down": {"uv": [11, 12.25, 11.75, 4.75], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 4.75, + 11, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 4.75, + 11.75, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 12, + 11.75, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 4.75, + 11.25, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 4.75, + 11.75, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 12.25, + 11.75, + 4.75 + ], + "texture": "#2" + } } }, { "name": "demekin_19", - "from": [3.75, 0, 5], - "to": [4.75, 0.25, 10.25], + "from": [ + 3.75, + 0, + 5 + ], + "to": [ + 4.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.75, 5, 3.75, 5.25], "texture": "#2"}, - "east": {"uv": [4.5, 5, 4.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.75, 10, 4.75, 10.25], "texture": "#2"}, - "west": {"uv": [3.75, 5, 4, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.75, 5, 4.75, 10.25], "texture": "#2"}, - "down": {"uv": [3.75, 10.25, 4.75, 5], "texture": "#2"} + "north": { + "uv": [ + 4.75, + 5, + 3.75, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 5, + 4.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.75, + 10, + 4.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.75, + 5, + 4, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.75, + 5, + 4.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.75, + 10.25, + 4.75, + 5 + ], + "texture": "#2" + } } }, { "name": "demekin_20", - "from": [8.5, 0, 5], - "to": [8.75, 0.25, 6.25], + "from": [ + 8.5, + 0, + 5 + ], + "to": [ + 8.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [8.75, 5, 8.5, 5.25], "texture": "#2"}, - "east": {"uv": [8.5, 5, 8.75, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 6, 8.75, 6.25], "texture": "#2"}, - "west": {"uv": [8.5, 5, 8.75, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 5, 8.75, 6.25], "texture": "#2"}, - "down": {"uv": [8.5, 6.25, 8.75, 5], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 5, + 8.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 5, + 8.75, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 6, + 8.75, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 5, + 8.75, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 5, + 8.75, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 6.25, + 8.75, + 5 + ], + "texture": "#2" + } } }, { "name": "demekin_21", - "from": [10.75, 0, 5], - "to": [11, 0.25, 12.25], + "from": [ + 10.75, + 0, + 5 + ], + "to": [ + 11, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11, 5, 10.75, 5.25], "texture": "#2"}, - "east": {"uv": [10.75, 5, 11, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 12, 11, 12.25], "texture": "#2"}, - "west": {"uv": [10.75, 5, 11, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 5, 11, 12.25], "texture": "#2"}, - "down": {"uv": [10.75, 12.25, 11, 5], "texture": "#2"} + "north": { + "uv": [ + 11, + 5, + 10.75, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5, + 11, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 12, + 11, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 5, + 11, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 5, + 11, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 12.25, + 11, + 5 + ], + "texture": "#2" + } } }, { "name": "demekin_22", - "from": [3.5, 0, 5.25], - "to": [3.75, 0.25, 10.25], + "from": [ + 3.5, + 0, + 5.25 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.75, 5.25, 3.5, 5.5], "texture": "#2"}, - "east": {"uv": [3.5, 5.25, 3.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#2"}, - "west": {"uv": [3.5, 5.25, 3.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.5, 5.25, 3.75, 10.25], "texture": "#2"}, - "down": {"uv": [3.5, 10.25, 3.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 3.75, + 5.25, + 3.5, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 3.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "demekin_23", - "from": [8.75, 0, 5.25], - "to": [9, 0.25, 6], + "from": [ + 8.75, + 0, + 5.25 + ], + "to": [ + 9, + 0.25, + 6 + ], "faces": { - "north": {"uv": [9, 5.25, 8.75, 5.5], "texture": "#2"}, - "east": {"uv": [8.75, 5.25, 9, 6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 5.75, 9, 6], "texture": "#2"}, - "west": {"uv": [8.75, 5.25, 9, 6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 5.25, 9, 6], "texture": "#2"}, - "down": {"uv": [8.75, 6, 9, 5.25], "texture": "#2"} + "north": { + "uv": [ + 9, + 5.25, + 8.75, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 9, + 6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 5.75, + 9, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 5.25, + 9, + 6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 5.25, + 9, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 6, + 9, + 5.25 + ], + "texture": "#2" + } } }, { "name": "demekin_24", - "from": [10.25, 0, 5.25], - "to": [10.75, 0.25, 11.75], + "from": [ + 10.25, + 0, + 5.25 + ], + "to": [ + 10.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.75, 5.25, 10.25, 5.5], "texture": "#2"}, - "east": {"uv": [10.5, 5.25, 10.75, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 11.5, 10.75, 11.75], "texture": "#2"}, - "west": {"uv": [10.25, 5.25, 10.5, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 5.25, 10.75, 11.75], "texture": "#2"}, - "down": {"uv": [10.25, 11.75, 10.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 5.25, + 10.25, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 5.25, + 10.75, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 11.5, + 10.75, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 5.25, + 10.5, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 5.25, + 10.75, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 11.75, + 10.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "demekin_25", - "from": [3.25, 0, 5.5], - "to": [3.5, 0.25, 10.25], + "from": [ + 3.25, + 0, + 5.5 + ], + "to": [ + 3.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.5, 5.5, 3.25, 5.75], "texture": "#2"}, - "east": {"uv": [3.25, 5.5, 3.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.25, 10, 3.5, 10.25], "texture": "#2"}, - "west": {"uv": [3.25, 5.5, 3.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.25, 5.5, 3.5, 10.25], "texture": "#2"}, - "down": {"uv": [3.25, 10.25, 3.5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 5.5, + 3.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.25, + 10.25, + 3.5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "demekin_26", - "from": [10, 0, 5.5], - "to": [10.25, 0.25, 11.5], + "from": [ + 10, + 0, + 5.5 + ], + "to": [ + 10.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.25, 5.5, 10, 5.75], "texture": "#2"}, - "east": {"uv": [10, 5.5, 10.25, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 11.25, 10.25, 11.5], "texture": "#2"}, - "west": {"uv": [10, 5.5, 10.25, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 5.5, 10.25, 11.5], "texture": "#2"}, - "down": {"uv": [10, 11.5, 10.25, 5.5], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 5.5, + 10, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 5.5, + 10.25, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 11.25, + 10.25, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.25, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 5.5, + 10.25, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 11.5, + 10.25, + 5.5 + ], + "texture": "#2" + } } }, { "name": "demekin_27", - "from": [3, 0, 5.75], - "to": [3.25, 0.25, 10.25], + "from": [ + 3, + 0, + 5.75 + ], + "to": [ + 3.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.25, 5.75, 3, 6], "texture": "#2"}, - "east": {"uv": [3, 5.75, 3.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 10, 3.25, 10.25], "texture": "#2"}, - "west": {"uv": [3, 5.75, 3.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 5.75, 3.25, 10.25], "texture": "#2"}, - "down": {"uv": [3, 10.25, 3.25, 5.75], "texture": "#2"} + "north": { + "uv": [ + 3.25, + 5.75, + 3, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.25, + 5.75 + ], + "texture": "#2" + } } }, { "name": "demekin_28", - "from": [9.5, 0, 5.75], - "to": [10, 0.25, 11], + "from": [ + 9.5, + 0, + 5.75 + ], + "to": [ + 10, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10, 5.75, 9.5, 6], "texture": "#2"}, - "east": {"uv": [9.75, 5.75, 10, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 10.75, 10, 11], "texture": "#2"}, - "west": {"uv": [9.5, 5.75, 9.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 5.75, 10, 11], "texture": "#2"}, - "down": {"uv": [9.5, 11, 10, 5.75], "texture": "#2"} + "north": { + "uv": [ + 10, + 5.75, + 9.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 5.75, + 10, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 10.75, + 10, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 10, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 11, + 10, + 5.75 + ], + "texture": "#2" + } } }, { "name": "demekin_29", - "from": [2.75, 0, 6], - "to": [3, 0.25, 10], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 6, 2.75, 6.25], "texture": "#2"}, - "east": {"uv": [2.75, 6, 3, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 9.75, 3, 10], "texture": "#2"}, - "west": {"uv": [2.75, 6, 3, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 6, 3, 10], "texture": "#2"}, - "down": {"uv": [2.75, 10, 3, 6], "texture": "#2"} + "north": { + "uv": [ + 3, + 6, + 2.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 6, + 3, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 10, + 3, + 6 + ], + "texture": "#2" + } } }, { "name": "demekin_30", - "from": [9.25, 0, 6], - "to": [9.5, 0.25, 10.75], + "from": [ + 9.25, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 6, 9.25, 6.25], "texture": "#2"}, - "east": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#2"}, - "west": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 6, 9.5, 10.75], "texture": "#2"}, - "down": {"uv": [9.25, 10.75, 9.5, 6], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 6, + 9.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 6 + ], + "texture": "#2" + } } }, { "name": "demekin_31", - "from": [13.75, 0, 6], - "to": [14.75, 0.25, 7], + "from": [ + 13.75, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [14.75, 6, 13.75, 6.25], "texture": "#2"}, - "east": {"uv": [14.5, 6, 14.75, 7], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 6.75, 14.75, 7], "texture": "#2"}, - "west": {"uv": [13.75, 6, 14, 7], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 6, 14.75, 7], "texture": "#2"}, - "down": {"uv": [13.75, 7, 14.75, 6], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 6, + 13.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 7 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 6.75, + 14.75, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 6, + 14, + 7 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 6, + 14.75, + 7 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 7, + 14.75, + 6 + ], + "texture": "#2" + } } }, { "name": "demekin_32", - "from": [14.75, 0, 6], - "to": [15.25, 0.25, 6.5], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.25, 6, 14.75, 6.25], "texture": "#2"}, - "east": {"uv": [15, 6, 15.25, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 6.25, 15.25, 6.5], "texture": "#2"}, - "west": {"uv": [14.75, 6, 15, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 6, 15.25, 6.5], "texture": "#2"}, - "down": {"uv": [14.75, 6.5, 15.25, 6], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 6, + 14.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 6, + 15.25, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 6.25, + 15.25, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 6, + 15.25, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 6.5, + 15.25, + 6 + ], + "texture": "#2" + } } }, { "name": "demekin_33", - "from": [2, 0, 6.25], - "to": [2.75, 0.25, 10], + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.75, 6.25, 2, 6.5], "texture": "#2"}, - "east": {"uv": [2.5, 6.25, 2.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 9.75, 2.75, 10], "texture": "#2"}, - "west": {"uv": [2, 6.25, 2.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 6.25, 2.75, 10], "texture": "#2"}, - "down": {"uv": [2, 10, 2.75, 6.25], "texture": "#2"} + "north": { + "uv": [ + 2.75, + 6.25, + 2, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 9.75, + 2.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 10, + 2.75, + 6.25 + ], + "texture": "#2" + } } }, { "name": "demekin_34", - "from": [9, 0, 6.25], - "to": [9.25, 0.25, 6.5], + "from": [ + 9, + 0, + 6.25 + ], + "to": [ + 9.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [9.25, 6.25, 9, 6.5], "texture": "#2"}, - "east": {"uv": [9, 6.25, 9.25, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 6.25, 9.25, 6.5], "texture": "#2"}, - "west": {"uv": [9, 6.25, 9.25, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 6.25, 9.25, 6.5], "texture": "#2"}, - "down": {"uv": [9, 6.5, 9.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 6.25, + 9, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 6.5, + 9.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "demekin_35", - "from": [1.75, 0, 6.5], - "to": [2, 0.25, 10], + "from": [ + 1.75, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 6.5, 1.75, 6.75], "texture": "#2"}, - "east": {"uv": [1.75, 6.5, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 9.75, 2, 10], "texture": "#2"}, - "west": {"uv": [1.75, 6.5, 2, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 6.5, 2, 10], "texture": "#2"}, - "down": {"uv": [1.75, 10, 2, 6.5], "texture": "#2"} + "north": { + "uv": [ + 2, + 6.5, + 1.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 6.5, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 10, + 2, + 6.5 + ], + "texture": "#2" + } } }, { "name": "demekin_36", - "from": [14.75, 0, 6.5], - "to": [15, 0.25, 6.75], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15, 6.5, 14.75, 6.75], "texture": "#2"}, - "east": {"uv": [14.75, 6.5, 15, 6.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 6.5, 15, 6.75], "texture": "#2"}, - "west": {"uv": [14.75, 6.5, 15, 6.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 6.5, 15, 6.75], "texture": "#2"}, - "down": {"uv": [14.75, 6.75, 15, 6.5], "texture": "#2"} + "north": { + "uv": [ + 15, + 6.5, + 14.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 6.75, + 15, + 6.5 + ], + "texture": "#2" + } } }, { "name": "demekin_37", - "from": [1.25, 0, 6.75], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.25, 7], "texture": "#2"}, - "east": {"uv": [1.5, 6.75, 1.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 9.5, 1.75, 9.75], "texture": "#2"}, - "west": {"uv": [1.25, 6.75, 1.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 6.75, 1.75, 9.75], "texture": "#2"}, - "down": {"uv": [1.25, 9.75, 1.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.25, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 1.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "demekin_38", - "from": [8.5, 0, 6.75], - "to": [8.75, 0.25, 10], + "from": [ + 8.5, + 0, + 6.75 + ], + "to": [ + 8.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.75, 6.75, 8.5, 7], "texture": "#2"}, - "east": {"uv": [8.5, 6.75, 8.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 9.75, 8.75, 10], "texture": "#2"}, - "west": {"uv": [8.5, 6.75, 8.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 6.75, 8.75, 10], "texture": "#2"}, - "down": {"uv": [8.5, 10, 8.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 6.75, + 8.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 6.75, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 6.75, + 8.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 6.75, + 8.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 10, + 8.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "demekin_39", - "from": [9, 0, 6.75], - "to": [9.25, 0.25, 7], + "from": [ + 9, + 0, + 6.75 + ], + "to": [ + 9.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [9.25, 6.75, 9, 7], "texture": "#2"}, - "east": {"uv": [9, 6.75, 9.25, 7], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 6.75, 9.25, 7], "texture": "#2"}, - "west": {"uv": [9, 6.75, 9.25, 7], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 6.75, 9.25, 7], "texture": "#2"}, - "down": {"uv": [9, 7, 9.25, 6.75], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 6.75, + 9, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 7, + 9.25, + 6.75 + ], + "texture": "#2" + } } }, { "name": "demekin_40", - "from": [1, 0, 7], - "to": [1.25, 0.25, 9.75], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#2"}, - "east": {"uv": [1, 7, 1.25, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9.5, 1.25, 9.75], "texture": "#2"}, - "west": {"uv": [1, 7, 1.25, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 7, 1.25, 9.75], "texture": "#2"}, - "down": {"uv": [1, 9.75, 1.25, 7], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.25, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 9.75, + 1.25, + 7 + ], + "texture": "#2" + } } }, { "name": "demekin_41", - "from": [13.75, 0, 7], - "to": [14.25, 0.25, 7.5], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.25, 7, 13.75, 7.25], "texture": "#2"}, - "east": {"uv": [14, 7, 14.25, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 7.25, 14.25, 7.5], "texture": "#2"}, - "west": {"uv": [13.75, 7, 14, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 7, 14.25, 7.5], "texture": "#2"}, - "down": {"uv": [13.75, 7.5, 14.25, 7], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 7, + 13.75, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 7.25, + 14.25, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 7, + 14.25, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 7.5, + 14.25, + 7 + ], + "texture": "#2" + } } }, { "name": "demekin_42", - "from": [14.25, 0, 7], - "to": [14.5, 0.25, 7.25], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14.5, 7, 14.25, 7.25], "texture": "#2"}, - "east": {"uv": [14.25, 7, 14.5, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 7, 14.5, 7.25], "texture": "#2"}, - "west": {"uv": [14.25, 7, 14.5, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 7, 14.5, 7.25], "texture": "#2"}, - "down": {"uv": [14.25, 7.25, 14.5, 7], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 7, + 14.25, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7 + ], + "texture": "#2" + } } }, { "name": "demekin_43", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 8.75], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#2"}, - "east": {"uv": [0.75, 7.25, 1, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 8.5, 1, 8.75], "texture": "#2"}, - "west": {"uv": [0.75, 7.25, 1, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 7.25, 1, 8.75], "texture": "#2"}, - "down": {"uv": [0.75, 8.75, 1, 7.25], "texture": "#2"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1, + 7.25 + ], + "texture": "#2" + } } }, { "name": "demekin_44", - "from": [8.75, 0, 7.25], - "to": [9.25, 0.25, 10.25], + "from": [ + 8.75, + 0, + 7.25 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 7.25, 8.75, 7.5], "texture": "#2"}, - "east": {"uv": [9, 7.25, 9.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#2"}, - "west": {"uv": [8.75, 7.25, 9, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 7.25, 9.25, 10.25], "texture": "#2"}, - "down": {"uv": [8.75, 10.25, 9.25, 7.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 7.25, + 8.75, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 7.25, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 7.25, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 7.25, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9.25, + 7.25 + ], + "texture": "#2" + } } }, { "name": "demekin_45", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#2"}, - "east": {"uv": [0.5, 7.5, 0.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#2"}, - "west": {"uv": [0.5, 7.5, 0.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.5, 0.75, 8.5], "texture": "#2"}, - "down": {"uv": [0.5, 8.5, 0.75, 7.5], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 7.5 + ], + "texture": "#2" + } } }, { "name": "demekin_46", - "from": [13.75, 0, 7.5], - "to": [14, 0.25, 7.75], + "from": [ + 13.75, + 0, + 7.5 + ], + "to": [ + 14, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14, 7.5, 13.75, 7.75], "texture": "#2"}, - "east": {"uv": [13.75, 7.5, 14, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 7.5, 14, 7.75], "texture": "#2"}, - "west": {"uv": [13.75, 7.5, 14, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 7.5, 14, 7.75], "texture": "#2"}, - "down": {"uv": [13.75, 7.75, 14, 7.5], "texture": "#2"} + "north": { + "uv": [ + 14, + 7.5, + 13.75, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 7.75, + 14, + 7.5 + ], + "texture": "#2" + } } }, { "name": "demekin_47", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#2"}, - "east": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#2"}, - "west": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 7.75, 0.5, 8.25], "texture": "#2"}, - "down": {"uv": [0.25, 8.25, 0.5, 7.75], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 7.75 + ], + "texture": "#2" + } } }, { "name": "demekin_48", - "from": [13, 0, 8], - "to": [13.5, 0.25, 8.25], + "from": [ + 13, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.5, 8, 13, 8.25], "texture": "#2"}, - "east": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 8, 13.5, 8.25], "texture": "#2"}, - "west": {"uv": [13, 8, 13.25, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 8, 13.5, 8.25], "texture": "#2"}, - "down": {"uv": [13, 8.25, 13.5, 8], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 8, + 13, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 8, + 13.5, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 8, + 13.25, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 8, + 13.5, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 8.25, + 13.5, + 8 + ], + "texture": "#2" + } } }, { "name": "demekin_49", - "from": [13, 0, 8.25], - "to": [13.25, 0.25, 12.75], + "from": [ + 13, + 0, + 8.25 + ], + "to": [ + 13.25, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [13.25, 8.25, 13, 8.5], "texture": "#2"}, - "east": {"uv": [13, 8.25, 13.25, 12.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 12.5, 13.25, 12.75], "texture": "#2"}, - "west": {"uv": [13, 8.25, 13.25, 12.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 8.25, 13.25, 12.75], "texture": "#2"}, - "down": {"uv": [13, 12.75, 13.25, 8.25], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 8.25, + 13, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 8.25, + 13.25, + 12.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 12.5, + 13.25, + 12.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 8.25, + 13.25, + 12.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 8.25, + 13.25, + 12.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 12.75, + 13.25, + 8.25 + ], + "texture": "#2" + } } }, { "name": "demekin_50", - "from": [13.25, 0, 8.5], - "to": [13.5, 0.25, 12.75], + "from": [ + 13.25, + 0, + 8.5 + ], + "to": [ + 13.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [13.5, 8.5, 13.25, 8.75], "texture": "#2"}, - "east": {"uv": [13.25, 8.5, 13.5, 12.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 12.5, 13.5, 12.75], "texture": "#2"}, - "west": {"uv": [13.25, 8.5, 13.5, 12.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 8.5, 13.5, 12.75], "texture": "#2"}, - "down": {"uv": [13.25, 12.75, 13.5, 8.5], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 8.5, + 13.25, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 8.5, + 13.5, + 12.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 12.5, + 13.5, + 12.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 8.5, + 13.5, + 12.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 8.5, + 13.5, + 12.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 12.75, + 13.5, + 8.5 + ], + "texture": "#2" + } } }, { "name": "demekin_51", - "from": [13.5, 0, 8.75], - "to": [13.75, 0.25, 12.75], + "from": [ + 13.5, + 0, + 8.75 + ], + "to": [ + 13.75, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [13.75, 8.75, 13.5, 9], "texture": "#2"}, - "east": {"uv": [13.5, 8.75, 13.75, 12.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.5, 12.5, 13.75, 12.75], "texture": "#2"}, - "west": {"uv": [13.5, 8.75, 13.75, 12.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.5, 8.75, 13.75, 12.75], "texture": "#2"}, - "down": {"uv": [13.5, 12.75, 13.75, 8.75], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 8.75, + 13.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 8.75, + 13.75, + 12.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.5, + 12.5, + 13.75, + 12.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.5, + 8.75, + 13.75, + 12.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.5, + 8.75, + 13.75, + 12.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.5, + 12.75, + 13.75, + 8.75 + ], + "texture": "#2" + } } }, { "name": "demekin_52", - "from": [0.75, 0, 9], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 9 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 9, 0.75, 9.25], "texture": "#2"}, - "east": {"uv": [0.75, 9, 1, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#2"}, - "west": {"uv": [0.75, 9, 1, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 9, 1, 9.75], "texture": "#2"}, - "down": {"uv": [0.75, 9.75, 1, 9], "texture": "#2"} + "north": { + "uv": [ + 1, + 9, + 0.75, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 9, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 9, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 9, + 1, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 9 + ], + "texture": "#2" + } } }, { "name": "demekin_53", - "from": [0.5, 0, 9.25], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 9.25 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 9.25, 0.5, 9.5], "texture": "#2"}, - "east": {"uv": [0.5, 9.25, 0.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#2"}, - "west": {"uv": [0.5, 9.25, 0.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#2"}, - "down": {"uv": [0.5, 9.5, 0.75, 9.25], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 9.25, + 0.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 9.25 + ], + "texture": "#2" + } } }, { "name": "demekin_54", - "from": [13.75, 0, 9.25], - "to": [14, 0.25, 12.5], + "from": [ + 13.75, + 0, + 9.25 + ], + "to": [ + 14, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [14, 9.25, 13.75, 9.5], "texture": "#2"}, - "east": {"uv": [13.75, 9.25, 14, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 12.25, 14, 12.5], "texture": "#2"}, - "west": {"uv": [13.75, 9.25, 14, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 9.25, 14, 12.5], "texture": "#2"}, - "down": {"uv": [13.75, 12.5, 14, 9.25], "texture": "#2"} + "north": { + "uv": [ + 14, + 9.25, + 13.75, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 9.25, + 14, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 12.25, + 14, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 9.25, + 14, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 9.25, + 14, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 12.5, + 14, + 9.25 + ], + "texture": "#2" + } } }, { "name": "demekin_55", - "from": [7.75, 0, 9.75], - "to": [8, 0.25, 12.5], + "from": [ + 7.75, + 0, + 9.75 + ], + "to": [ + 8, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8, 9.75, 7.75, 10], "texture": "#2"}, - "east": {"uv": [7.75, 9.75, 8, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 12.25, 8, 12.5], "texture": "#2"}, - "west": {"uv": [7.75, 9.75, 8, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 9.75, 8, 12.5], "texture": "#2"}, - "down": {"uv": [7.75, 12.5, 8, 9.75], "texture": "#2"} + "north": { + "uv": [ + 8, + 9.75, + 7.75, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 9.75, + 8, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 12.25, + 8, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 9.75, + 8, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 9.75, + 8, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 12.5, + 8, + 9.75 + ], + "texture": "#2" + } } }, { "name": "demekin_56", - "from": [14, 0, 9.75], - "to": [14.25, 0.25, 11.75], + "from": [ + 14, + 0, + 9.75 + ], + "to": [ + 14.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [14.25, 9.75, 14, 10], "texture": "#2"}, - "east": {"uv": [14, 9.75, 14.25, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 11.5, 14.25, 11.75], "texture": "#2"}, - "west": {"uv": [14, 9.75, 14.25, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 9.75, 14.25, 11.75], "texture": "#2"}, - "down": {"uv": [14, 11.75, 14.25, 9.75], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 9.75, + 14, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 9.75, + 14.25, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 11.5, + 14.25, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 9.75, + 14.25, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 9.75, + 14.25, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 11.75, + 14.25, + 9.75 + ], + "texture": "#2" + } } }, { "name": "demekin_57", - "from": [8, 0, 10], - "to": [8.25, 0.25, 12.5], + "from": [ + 8, + 0, + 10 + ], + "to": [ + 8.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.25, 10, 8, 10.25], "texture": "#2"}, - "east": {"uv": [8, 10, 8.25, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 12.25, 8.25, 12.5], "texture": "#2"}, - "west": {"uv": [8, 10, 8.25, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 10, 8.25, 12.5], "texture": "#2"}, - "down": {"uv": [8, 12.5, 8.25, 10], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 10, + 8, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 10, + 8.25, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 12.25, + 8.25, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 10, + 8.25, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 12.5, + 8.25, + 10 + ], + "texture": "#2" + } } }, { "name": "demekin_58", - "from": [4.25, 0, 10.25], - "to": [4.75, 0.25, 10.5], + "from": [ + 4.25, + 0, + 10.25 + ], + "to": [ + 4.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.75, 10.25, 4.25, 10.5], "texture": "#2"}, - "east": {"uv": [4.5, 10.25, 4.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.25, 10.25, 4.75, 10.5], "texture": "#2"}, - "west": {"uv": [4.25, 10.25, 4.5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.25, 10.25, 4.75, 10.5], "texture": "#2"}, - "down": {"uv": [4.25, 10.5, 4.75, 10.25], "texture": "#2"} + "north": { + "uv": [ + 4.75, + 10.25, + 4.25, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.25, + 10.25, + 4.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.25, + 10.25, + 4.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.25, + 10.5, + 4.75, + 10.25 + ], + "texture": "#2" + } } }, { "name": "demekin_59", - "from": [8.25, 0, 10.25], - "to": [8.5, 0.25, 12.5], + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 8.25, 10.5], "texture": "#2"}, - "east": {"uv": [8.25, 10.25, 8.5, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 12.25, 8.5, 12.5], "texture": "#2"}, - "west": {"uv": [8.25, 10.25, 8.5, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 10.25, 8.5, 12.5], "texture": "#2"}, - "down": {"uv": [8.25, 12.5, 8.5, 10.25], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 12.25, + 8.5, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 8.5, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 12.5, + 8.5, + 10.25 + ], + "texture": "#2" + } } }, { "name": "demekin_60", - "from": [9, 0, 10.25], - "to": [9.25, 0.25, 10.5], + "from": [ + 9, + 0, + 10.25 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.25, 10.25, 9, 10.5], "texture": "#2"}, - "east": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#2"}, - "west": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#2"}, - "down": {"uv": [9, 10.5, 9.25, 10.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 10.25, + 9, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 10.5, + 9.25, + 10.25 + ], + "texture": "#2" + } } }, { "name": "demekin_61", - "from": [14.25, 0, 10.25], - "to": [14.5, 0.25, 11.5], + "from": [ + 14.25, + 0, + 10.25 + ], + "to": [ + 14.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [14.5, 10.25, 14.25, 10.5], "texture": "#2"}, - "east": {"uv": [14.25, 10.25, 14.5, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 11.25, 14.5, 11.5], "texture": "#2"}, - "west": {"uv": [14.25, 10.25, 14.5, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 10.25, 14.5, 11.5], "texture": "#2"}, - "down": {"uv": [14.25, 11.5, 14.5, 10.25], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 10.25, + 14.25, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 10.25, + 14.5, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 11.25, + 14.5, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 10.25, + 14.5, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 10.25, + 14.5, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 11.5, + 14.5, + 10.25 + ], + "texture": "#2" + } } }, { "name": "demekin_62", - "from": [6, 0, 10.5], - "to": [6.5, 0.25, 11], + "from": [ + 6, + 0, + 10.5 + ], + "to": [ + 6.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.5, 10.5, 6, 10.75], "texture": "#2"}, - "east": {"uv": [6.25, 10.5, 6.5, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 10.75, 6.5, 11], "texture": "#2"}, - "west": {"uv": [6, 10.5, 6.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 10.5, 6.5, 11], "texture": "#2"}, - "down": {"uv": [6, 11, 6.5, 10.5], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 10.5, + 6, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 10.5, + 6.5, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 10.5, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 10.5, + 6.5, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11, + 6.5, + 10.5 + ], + "texture": "#2" + } } }, { "name": "demekin_63", - "from": [6.25, 0, 11], - "to": [6.5, 0.25, 11.25], + "from": [ + 6.25, + 0, + 11 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.5, 11, 6.25, 11.25], "texture": "#2"}, - "east": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#2"}, - "west": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#2"}, - "down": {"uv": [6.25, 11.25, 6.5, 11], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 11, + 6.25, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11 + ], + "texture": "#2" + } } }, { "name": "demekin_64", - "from": [9.75, 0, 11], - "to": [10, 0.25, 11.25], + "from": [ + 9.75, + 0, + 11 + ], + "to": [ + 10, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10, 11, 9.75, 11.25], "texture": "#2"}, - "east": {"uv": [9.75, 11, 10, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 11, 10, 11.25], "texture": "#2"}, - "west": {"uv": [9.75, 11, 10, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 11, 10, 11.25], "texture": "#2"}, - "down": {"uv": [9.75, 11.25, 10, 11], "texture": "#2"} + "north": { + "uv": [ + 10, + 11, + 9.75, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 11.25, + 10, + 11 + ], + "texture": "#2" + } } }, { "name": "demekin_65", - "from": [8.5, 0, 11.5], - "to": [8.75, 0.25, 12.25], + "from": [ + 8.5, + 0, + 11.5 + ], + "to": [ + 8.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8.75, 11.5, 8.5, 11.75], "texture": "#2"}, - "east": {"uv": [8.5, 11.5, 8.75, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 12, 8.75, 12.25], "texture": "#2"}, - "west": {"uv": [8.5, 11.5, 8.75, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 11.5, 8.75, 12.25], "texture": "#2"}, - "down": {"uv": [8.5, 12.25, 8.75, 11.5], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 11.5, + 8.5, + 11.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 11.5, + 8.75, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 12, + 8.75, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 11.5, + 8.75, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 11.5, + 8.75, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 12.25, + 8.75, + 11.5 + ], + "texture": "#2" + } } }, { "name": "demekin_66", - "from": [10.5, 0, 11.75], - "to": [10.75, 0.25, 12], + "from": [ + 10.5, + 0, + 11.75 + ], + "to": [ + 10.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [10.75, 11.75, 10.5, 12], "texture": "#2"}, - "east": {"uv": [10.5, 11.75, 10.75, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 11.75, 10.75, 12], "texture": "#2"}, - "west": {"uv": [10.5, 11.75, 10.75, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 11.75, 10.75, 12], "texture": "#2"}, - "down": {"uv": [10.5, 12, 10.75, 11.75], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 11.75, + 10.5, + 12 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 11.75, + 10.75, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 11.75, + 10.75, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 11.75, + 10.75, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 11.75, + 10.75, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 12, + 10.75, + 11.75 + ], + "texture": "#2" + } } }, { "name": "demekin_67", - "from": [11.25, 0, 12.25], - "to": [11.75, 0.25, 12.5], + "from": [ + 11.25, + 0, + 12.25 + ], + "to": [ + 11.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [11.75, 12.25, 11.25, 12.5], "texture": "#2"}, - "east": {"uv": [11.5, 12.25, 11.75, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 12.25, 11.75, 12.5], "texture": "#2"}, - "west": {"uv": [11.25, 12.25, 11.5, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 12.25, 11.75, 12.5], "texture": "#2"}, - "down": {"uv": [11.25, 12.5, 11.75, 12.25], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 12.25, + 11.25, + 12.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 12.25, + 11.75, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 12.25, + 11.75, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 12.25, + 11.5, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 12.25, + 11.75, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 12.5, + 11.75, + 12.25 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.25, 2.75], - "scale": [0.31, 0.31, 0.31] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 2.75 + ], + "scale": [ + 0.31, + 0.31, + 0.31 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.25, 2.75], - "scale": [0.31, 0.31, 0.31] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 2.75 + ], + "scale": [ + 0.31, + 0.31, + 0.31 + ] }, "firstperson_righthand": { - "rotation": [86, -23, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_lefthand": { - "rotation": [86, 21, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 21, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 9.75, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 9.75, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "demekin", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/demenigisu.json b/pack/assets/minecraft/models/fish/demenigisu.json index 1a14c0bf..056a26d8 100644 --- a/pack/assets/minecraft/models/fish/demenigisu.json +++ b/pack/assets/minecraft/models/fish/demenigisu.json @@ -2,721 +2,3827 @@ "__name": "デメニギス", "credit": "Made with Blockbench", "textures": { - "3": "fish/demenigisu", - "particle": "fish/ika" + "3": "item/fish/demenigisu", + "particle": "item/fish/ika" }, "elements": [ { "name": "demenigisu_0", - "from": [10, 0, 3.75], - "to": [10.75, 0.25, 12.25], + "from": [ + 10, + 0, + 3.75 + ], + "to": [ + 10.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [10.75, 3.75, 10, 4], "texture": "#3"}, - "east": {"uv": [10.5, 3.75, 10.75, 12.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 12, 10.75, 12.25], "texture": "#3"}, - "west": {"uv": [10, 3.75, 10.25, 12.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 3.75, 10.75, 12.25], "texture": "#3"}, - "down": {"uv": [10, 12.25, 10.75, 3.75], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 3.75, + 10, + 4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 3.75, + 10.75, + 12.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 12, + 10.75, + 12.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 3.75, + 10.25, + 12.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 3.75, + 10.75, + 12.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 12.25, + 10.75, + 3.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_1", - "from": [9.75, 0, 4], - "to": [10, 0.25, 12.75], + "from": [ + 9.75, + 0, + 4 + ], + "to": [ + 10, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [10, 4, 9.75, 4.25], "texture": "#3"}, - "east": {"uv": [9.75, 4, 10, 12.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.75, 12.5, 10, 12.75], "texture": "#3"}, - "west": {"uv": [9.75, 4, 10, 12.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.75, 4, 10, 12.75], "texture": "#3"}, - "down": {"uv": [9.75, 12.75, 10, 4], "texture": "#3"} + "north": { + "uv": [ + 10, + 4, + 9.75, + 4.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.75, + 4, + 10, + 12.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.75, + 12.5, + 10, + 12.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.75, + 4, + 10, + 12.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.75, + 4, + 10, + 12.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.75, + 12.75, + 10, + 4 + ], + "texture": "#3" + } } }, { "name": "demenigisu_2", - "from": [10.75, 0, 4], - "to": [11, 0.25, 6], + "from": [ + 10.75, + 0, + 4 + ], + "to": [ + 11, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11, 4, 10.75, 4.25], "texture": "#3"}, - "east": {"uv": [10.75, 4, 11, 6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 5.75, 11, 6], "texture": "#3"}, - "west": {"uv": [10.75, 4, 11, 6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 4, 11, 6], "texture": "#3"}, - "down": {"uv": [10.75, 6, 11, 4], "texture": "#3"} + "north": { + "uv": [ + 11, + 4, + 10.75, + 4.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.75, + 4, + 11, + 6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 5.75, + 11, + 6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 4, + 11, + 6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 4, + 11, + 6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 6, + 11, + 4 + ], + "texture": "#3" + } } }, { "name": "demenigisu_3", - "from": [9.5, 0, 4.25], - "to": [9.75, 0.25, 12.75], + "from": [ + 9.5, + 0, + 4.25 + ], + "to": [ + 9.75, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9.75, 4.25, 9.5, 4.5], "texture": "#3"}, - "east": {"uv": [9.5, 4.25, 9.75, 12.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.5, 12.5, 9.75, 12.75], "texture": "#3"}, - "west": {"uv": [9.5, 4.25, 9.75, 12.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.5, 4.25, 9.75, 12.75], "texture": "#3"}, - "down": {"uv": [9.5, 12.75, 9.75, 4.25], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 4.25, + 9.5, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 4.25, + 9.75, + 12.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.5, + 12.5, + 9.75, + 12.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.5, + 4.25, + 9.75, + 12.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.5, + 4.25, + 9.75, + 12.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.5, + 12.75, + 9.75, + 4.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_4", - "from": [11, 0, 4.25], - "to": [11.25, 0.25, 5.5], + "from": [ + 11, + 0, + 4.25 + ], + "to": [ + 11.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [11.25, 4.25, 11, 4.5], "texture": "#3"}, - "east": {"uv": [11, 4.25, 11.25, 5.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11, 5.25, 11.25, 5.5], "texture": "#3"}, - "west": {"uv": [11, 4.25, 11.25, 5.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11, 4.25, 11.25, 5.5], "texture": "#3"}, - "down": {"uv": [11, 5.5, 11.25, 4.25], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 4.25, + 11, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 4.25, + 11.25, + 5.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11, + 5.25, + 11.25, + 5.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11, + 4.25, + 11.25, + 5.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11, + 4.25, + 11.25, + 5.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11, + 5.5, + 11.25, + 4.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_5", - "from": [9, 0, 4.5], - "to": [9.5, 0.25, 12.75], + "from": [ + 9, + 0, + 4.5 + ], + "to": [ + 9.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9.5, 4.5, 9, 4.75], "texture": "#3"}, - "east": {"uv": [9.25, 4.5, 9.5, 12.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9, 12.5, 9.5, 12.75], "texture": "#3"}, - "west": {"uv": [9, 4.5, 9.25, 12.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9, 4.5, 9.5, 12.75], "texture": "#3"}, - "down": {"uv": [9, 12.75, 9.5, 4.5], "texture": "#3"} + "north": { + "uv": [ + 9.5, + 4.5, + 9, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.25, + 4.5, + 9.5, + 12.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9, + 12.5, + 9.5, + 12.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9, + 4.5, + 9.25, + 12.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9, + 4.5, + 9.5, + 12.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9, + 12.75, + 9.5, + 4.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_6", - "from": [11.25, 0, 4.5], - "to": [11.5, 0.25, 5.25], + "from": [ + 11.25, + 0, + 4.5 + ], + "to": [ + 11.5, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [11.5, 4.5, 11.25, 4.75], "texture": "#3"}, - "east": {"uv": [11.25, 4.5, 11.5, 5.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 5, 11.5, 5.25], "texture": "#3"}, - "west": {"uv": [11.25, 4.5, 11.5, 5.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 4.5, 11.5, 5.25], "texture": "#3"}, - "down": {"uv": [11.25, 5.25, 11.5, 4.5], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 4.5, + 11.25, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 4.5, + 11.5, + 5.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 5, + 11.5, + 5.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 4.5, + 11.5, + 5.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 4.5, + 11.5, + 5.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 5.25, + 11.5, + 4.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_7", - "from": [3.5, 0, 4.75], - "to": [7.25, 0.25, 11], + "from": [ + 3.5, + 0, + 4.75 + ], + "to": [ + 7.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.25, 4.75, 3.5, 5], "texture": "#3"}, - "east": {"uv": [7, 4.75, 7.25, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3.5, 10.75, 7.25, 11], "texture": "#3"}, - "west": {"uv": [3.5, 4.75, 3.75, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3.5, 4.75, 7.25, 11], "texture": "#3"}, - "down": {"uv": [3.5, 11, 7.25, 4.75], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 4.75, + 3.5, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 4.75, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3.5, + 10.75, + 7.25, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3.5, + 4.75, + 3.75, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3.5, + 4.75, + 7.25, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3.5, + 11, + 7.25, + 4.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_8", - "from": [8.75, 0, 4.75], - "to": [9, 0.25, 12.75], + "from": [ + 8.75, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9, 4.75, 8.75, 5], "texture": "#3"}, - "east": {"uv": [8.75, 4.75, 9, 12.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.75, 12.5, 9, 12.75], "texture": "#3"}, - "west": {"uv": [8.75, 4.75, 9, 12.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.75, 4.75, 9, 12.75], "texture": "#3"}, - "down": {"uv": [8.75, 12.75, 9, 4.75], "texture": "#3"} + "north": { + "uv": [ + 9, + 4.75, + 8.75, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 12.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.75, + 12.5, + 9, + 12.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.75, + 4.75, + 9, + 12.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.75, + 4.75, + 9, + 12.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.75, + 12.75, + 9, + 4.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_9", - "from": [2.75, 0, 5], - "to": [3.5, 0.25, 11], + "from": [ + 2.75, + 0, + 5 + ], + "to": [ + 3.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.5, 5, 2.75, 5.25], "texture": "#3"}, - "east": {"uv": [3.25, 5, 3.5, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.75, 10.75, 3.5, 11], "texture": "#3"}, - "west": {"uv": [2.75, 5, 3, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.75, 5, 3.5, 11], "texture": "#3"}, - "down": {"uv": [2.75, 11, 3.5, 5], "texture": "#3"} + "north": { + "uv": [ + 3.5, + 5, + 2.75, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.25, + 5, + 3.5, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.75, + 10.75, + 3.5, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.75, + 5, + 3, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.75, + 5, + 3.5, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.75, + 11, + 3.5, + 5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_10", - "from": [7.25, 0, 5], - "to": [8.75, 0.25, 12.5], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 8.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.75, 5, 7.25, 5.25], "texture": "#3"}, - "east": {"uv": [8.5, 5, 8.75, 12.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.25, 12.25, 8.75, 12.5], "texture": "#3"}, - "west": {"uv": [7.25, 5, 7.5, 12.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.25, 5, 8.75, 12.5], "texture": "#3"}, - "down": {"uv": [7.25, 12.5, 8.75, 5], "texture": "#3"} + "north": { + "uv": [ + 8.75, + 5, + 7.25, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.5, + 5, + 8.75, + 12.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.25, + 12.25, + 8.75, + 12.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 12.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.25, + 5, + 8.75, + 12.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.25, + 12.5, + 8.75, + 5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_11", - "from": [14.75, 0, 5], - "to": [15.25, 0.25, 7.25], + "from": [ + 14.75, + 0, + 5 + ], + "to": [ + 15.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.25, 5, 14.75, 5.25], "texture": "#3"}, - "east": {"uv": [15, 5, 15.25, 7.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 7, 15.25, 7.25], "texture": "#3"}, - "west": {"uv": [14.75, 5, 15, 7.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 5, 15.25, 7.25], "texture": "#3"}, - "down": {"uv": [14.75, 7.25, 15.25, 5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 5, + 14.75, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 5, + 15.25, + 7.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 7, + 15.25, + 7.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 5, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 5, + 15.25, + 7.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15.25, + 5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_12", - "from": [2.5, 0, 5.25], - "to": [2.75, 0.25, 10.75], + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 2.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.75, 5.25, 2.5, 5.5], "texture": "#3"}, - "east": {"uv": [2.5, 5.25, 2.75, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.5, 10.5, 2.75, 10.75], "texture": "#3"}, - "west": {"uv": [2.5, 5.25, 2.75, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.5, 5.25, 2.75, 10.75], "texture": "#3"}, - "down": {"uv": [2.5, 10.75, 2.75, 5.25], "texture": "#3"} + "north": { + "uv": [ + 2.75, + 5.25, + 2.5, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2.75, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.5, + 10.75, + 2.75, + 5.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_13", - "from": [14.25, 0, 5.25], - "to": [14.75, 0.25, 7.75], + "from": [ + 14.25, + 0, + 5.25 + ], + "to": [ + 14.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.75, 5.25, 14.25, 5.5], "texture": "#3"}, - "east": {"uv": [14.5, 5.25, 14.75, 7.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 7.5, 14.75, 7.75], "texture": "#3"}, - "west": {"uv": [14.25, 5.25, 14.5, 7.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 5.25, 14.75, 7.75], "texture": "#3"}, - "down": {"uv": [14.25, 7.75, 14.75, 5.25], "texture": "#3"} + "north": { + "uv": [ + 14.75, + 5.25, + 14.25, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.5, + 5.25, + 14.75, + 7.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 14.75, + 7.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 5.25, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 5.25, + 14.75, + 7.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 14.75, + 5.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_14", - "from": [15.25, 0, 5.25], - "to": [15.5, 0.25, 6.25], + "from": [ + 15.25, + 0, + 5.25 + ], + "to": [ + 15.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.5, 5.25, 15.25, 5.5], "texture": "#3"}, - "east": {"uv": [15.25, 5.25, 15.5, 6.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 6, 15.5, 6.25], "texture": "#3"}, - "west": {"uv": [15.25, 5.25, 15.5, 6.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 5.25, 15.5, 6.25], "texture": "#3"}, - "down": {"uv": [15.25, 6.25, 15.5, 5.25], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 5.25, + 15.25, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 6.25, + 15.5, + 5.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_15", - "from": [2, 0, 5.5], - "to": [2.5, 0.25, 10.5], + "from": [ + 2, + 0, + 5.5 + ], + "to": [ + 2.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.5, 5.5, 2, 5.75], "texture": "#3"}, - "east": {"uv": [2.25, 5.5, 2.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2, 10.25, 2.5, 10.5], "texture": "#3"}, - "west": {"uv": [2, 5.5, 2.25, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2, 5.5, 2.5, 10.5], "texture": "#3"}, - "down": {"uv": [2, 10.5, 2.5, 5.5], "texture": "#3"} + "north": { + "uv": [ + 2.5, + 5.5, + 2, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2, + 10.25, + 2.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2, + 5.5, + 2.25, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2, + 5.5, + 2.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2, + 10.5, + 2.5, + 5.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_16", - "from": [14, 0, 5.5], - "to": [14.25, 0.25, 10.75], + "from": [ + 14, + 0, + 5.5 + ], + "to": [ + 14.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14.25, 5.5, 14, 5.75], "texture": "#3"}, - "east": {"uv": [14, 5.5, 14.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14, 10.5, 14.25, 10.75], "texture": "#3"}, - "west": {"uv": [14, 5.5, 14.25, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14, 5.5, 14.25, 10.75], "texture": "#3"}, - "down": {"uv": [14, 10.75, 14.25, 5.5], "texture": "#3"} + "north": { + "uv": [ + 14.25, + 5.5, + 14, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14, + 5.5, + 14.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14, + 10.5, + 14.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14, + 5.5, + 14.25, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14, + 5.5, + 14.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14, + 10.75, + 14.25, + 5.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_17", - "from": [1.75, 0, 5.75], - "to": [2, 0.25, 10.25], + "from": [ + 1.75, + 0, + 5.75 + ], + "to": [ + 2, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2, 5.75, 1.75, 6], "texture": "#3"}, - "east": {"uv": [1.75, 5.75, 2, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.75, 10, 2, 10.25], "texture": "#3"}, - "west": {"uv": [1.75, 5.75, 2, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.75, 5.75, 2, 10.25], "texture": "#3"}, - "down": {"uv": [1.75, 10.25, 2, 5.75], "texture": "#3"} + "north": { + "uv": [ + 2, + 5.75, + 1.75, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.75, + 5.75, + 2, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.75, + 5.75, + 2, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.75, + 5.75, + 2, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.75, + 10.25, + 2, + 5.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_18", - "from": [13.75, 0, 5.75], - "to": [14, 0.25, 10.5], + "from": [ + 13.75, + 0, + 5.75 + ], + "to": [ + 14, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14, 5.75, 13.75, 6], "texture": "#3"}, - "east": {"uv": [13.75, 5.75, 14, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.75, 10.25, 14, 10.5], "texture": "#3"}, - "west": {"uv": [13.75, 5.75, 14, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.75, 5.75, 14, 10.5], "texture": "#3"}, - "down": {"uv": [13.75, 10.5, 14, 5.75], "texture": "#3"} + "north": { + "uv": [ + 14, + 5.75, + 13.75, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.75, + 5.75, + 14, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.75, + 10.25, + 14, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.75, + 5.75, + 14, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.75, + 5.75, + 14, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.75, + 10.5, + 14, + 5.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_19", - "from": [1.5, 0, 6], - "to": [1.75, 0.25, 10], + "from": [ + 1.5, + 0, + 6 + ], + "to": [ + 1.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 6, 1.5, 6.25], "texture": "#3"}, - "east": {"uv": [1.5, 6, 1.75, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.5, 9.75, 1.75, 10], "texture": "#3"}, - "west": {"uv": [1.5, 6, 1.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.5, 6, 1.75, 10], "texture": "#3"}, - "down": {"uv": [1.5, 10, 1.75, 6], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 6, + 1.5, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 6, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 1.75, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.5, + 6, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.5, + 6, + 1.75, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.5, + 10, + 1.75, + 6 + ], + "texture": "#3" + } } }, { "name": "demenigisu_20", - "from": [13.5, 0, 6], - "to": [13.75, 0.25, 10.25], + "from": [ + 13.5, + 0, + 6 + ], + "to": [ + 13.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.75, 6, 13.5, 6.25], "texture": "#3"}, - "east": {"uv": [13.5, 6, 13.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.5, 10, 13.75, 10.25], "texture": "#3"}, - "west": {"uv": [13.5, 6, 13.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.5, 6, 13.75, 10.25], "texture": "#3"}, - "down": {"uv": [13.5, 10.25, 13.75, 6], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 6, + 13.5, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 6, + 13.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.5, + 10, + 13.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.5, + 6, + 13.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.5, + 6, + 13.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.5, + 10.25, + 13.75, + 6 + ], + "texture": "#3" + } } }, { "name": "demenigisu_21", - "from": [13.25, 0, 6.25], - "to": [13.5, 0.25, 10.25], + "from": [ + 13.25, + 0, + 6.25 + ], + "to": [ + 13.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.5, 6.25, 13.25, 6.5], "texture": "#3"}, - "east": {"uv": [13.25, 6.25, 13.5, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.25, 10, 13.5, 10.25], "texture": "#3"}, - "west": {"uv": [13.25, 6.25, 13.5, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.25, 6.25, 13.5, 10.25], "texture": "#3"}, - "down": {"uv": [13.25, 10.25, 13.5, 6.25], "texture": "#3"} + "north": { + "uv": [ + 13.5, + 6.25, + 13.25, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.25, + 6.25, + 13.5, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.25, + 10, + 13.5, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.25, + 6.25, + 13.5, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.25, + 6.25, + 13.5, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.25, + 10.25, + 13.5, + 6.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_22", - "from": [1.25, 0, 6.5], - "to": [1.5, 0.25, 9.5], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 6.5, 1.25, 6.75], "texture": "#3"}, - "east": {"uv": [1.25, 6.5, 1.5, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#3"}, - "west": {"uv": [1.25, 6.5, 1.5, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.25, 6.5, 1.5, 9.5], "texture": "#3"}, - "down": {"uv": [1.25, 9.5, 1.5, 6.5], "texture": "#3"} + "north": { + "uv": [ + 1.5, + 6.5, + 1.25, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.5, + 6.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_23", - "from": [10.75, 0, 6.5], - "to": [11.75, 0.25, 9.25], + "from": [ + 10.75, + 0, + 6.5 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 6.5, 10.75, 6.75], "texture": "#3"}, - "east": {"uv": [11.5, 6.5, 11.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 9, 11.75, 9.25], "texture": "#3"}, - "west": {"uv": [10.75, 6.5, 11, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 6.5, 11.75, 9.25], "texture": "#3"}, - "down": {"uv": [10.75, 9.25, 11.75, 6.5], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 6.5, + 10.75, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 9, + 11.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 6.5, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 6.5, + 11.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11.75, + 6.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_24", - "from": [12.75, 0, 6.5], - "to": [13.25, 0.25, 9.75], + "from": [ + 12.75, + 0, + 6.5 + ], + "to": [ + 13.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.25, 6.5, 12.75, 6.75], "texture": "#3"}, - "east": {"uv": [13, 6.5, 13.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.75, 9.5, 13.25, 9.75], "texture": "#3"}, - "west": {"uv": [12.75, 6.5, 13, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.75, 6.5, 13.25, 9.75], "texture": "#3"}, - "down": {"uv": [12.75, 9.75, 13.25, 6.5], "texture": "#3"} + "north": { + "uv": [ + 13.25, + 6.5, + 12.75, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13, + 6.5, + 13.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.75, + 9.5, + 13.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.75, + 6.5, + 13, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.75, + 6.5, + 13.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.75, + 9.75, + 13.25, + 6.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_25", - "from": [11.75, 0, 6.75], - "to": [12.75, 0.25, 9.25], + "from": [ + 11.75, + 0, + 6.75 + ], + "to": [ + 12.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.75, 6.75, 11.75, 7], "texture": "#3"}, - "east": {"uv": [12.5, 6.75, 12.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 9, 12.75, 9.25], "texture": "#3"}, - "west": {"uv": [11.75, 6.75, 12, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 6.75, 12.75, 9.25], "texture": "#3"}, - "down": {"uv": [11.75, 9.25, 12.75, 6.75], "texture": "#3"} + "north": { + "uv": [ + 12.75, + 6.75, + 11.75, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.5, + 6.75, + 12.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 9, + 12.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 6.75, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 6.75, + 12.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12.75, + 6.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_26", - "from": [14.75, 0, 7.25], - "to": [15, 0.25, 7.5], + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15, 7.25, 14.75, 7.5], "texture": "#3"}, - "east": {"uv": [14.75, 7.25, 15, 7.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#3"}, - "west": {"uv": [14.75, 7.25, 15, 7.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#3"}, - "down": {"uv": [14.75, 7.5, 15, 7.25], "texture": "#3"} + "north": { + "uv": [ + 15, + 7.25, + 14.75, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15, + 7.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_27", - "from": [14.25, 0, 7.75], - "to": [14.5, 0.25, 11], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 14.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.5, 7.75, 14.25, 8], "texture": "#3"}, - "east": {"uv": [14.25, 7.75, 14.5, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 10.75, 14.5, 11], "texture": "#3"}, - "west": {"uv": [14.25, 7.75, 14.5, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 7.75, 14.5, 11], "texture": "#3"}, - "down": {"uv": [14.25, 11, 14.5, 7.75], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 7.75, + 14.25, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 7.75, + 14.5, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 10.75, + 14.5, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 14.5, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 11, + 14.5, + 7.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_28", - "from": [1, 0, 8], - "to": [1.25, 0.25, 9.5], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#3"}, - "east": {"uv": [1, 8, 1.25, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1, 9.25, 1.25, 9.5], "texture": "#3"}, - "west": {"uv": [1, 8, 1.25, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1, 8, 1.25, 9.5], "texture": "#3"}, - "down": {"uv": [1, 9.5, 1.25, 8], "texture": "#3"} + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.25, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.25, + 8 + ], + "texture": "#3" + } } }, { "name": "demenigisu_29", - "from": [0.75, 0, 8.25], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 8.25, 0.75, 8.5], "texture": "#3"}, - "east": {"uv": [0.75, 8.25, 1, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#3"}, - "west": {"uv": [0.75, 8.25, 1, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 8.25, 1, 9.25], "texture": "#3"}, - "down": {"uv": [0.75, 9.25, 1, 8.25], "texture": "#3"} + "north": { + "uv": [ + 1, + 8.25, + 0.75, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 1, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 8.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_30", - "from": [0.5, 0, 8.5], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 8.5 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.5, 0.5, 8.75], "texture": "#3"}, - "east": {"uv": [0.5, 8.5, 0.75, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#3"}, - "west": {"uv": [0.5, 8.5, 0.75, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 8.5, 0.75, 9], "texture": "#3"}, - "down": {"uv": [0.5, 9, 0.75, 8.5], "texture": "#3"} + "north": { + "uv": [ + 0.75, + 8.5, + 0.5, + 8.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 8.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_31", - "from": [14.5, 0, 8.5], - "to": [14.75, 0.25, 11], + "from": [ + 14.5, + 0, + 8.5 + ], + "to": [ + 14.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.75, 8.5, 14.5, 8.75], "texture": "#3"}, - "east": {"uv": [14.5, 8.5, 14.75, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 10.75, 14.75, 11], "texture": "#3"}, - "west": {"uv": [14.5, 8.5, 14.75, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 8.5, 14.75, 11], "texture": "#3"}, - "down": {"uv": [14.5, 11, 14.75, 8.5], "texture": "#3"} + "north": { + "uv": [ + 14.75, + 8.5, + 14.5, + 8.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 10.75, + 14.75, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 11, + 14.75, + 8.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_32", - "from": [14.75, 0, 9], - "to": [15, 0.25, 11], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 11 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#3"}, - "east": {"uv": [14.75, 9, 15, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 10.75, 15, 11], "texture": "#3"}, - "west": {"uv": [14.75, 9, 15, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 9, 15, 11], "texture": "#3"}, - "down": {"uv": [14.75, 11, 15, 9], "texture": "#3"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 10.75, + 15, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 11, + 15, + 9 + ], + "texture": "#3" + } } }, { "name": "demenigisu_33", - "from": [10.75, 0, 9.25], - "to": [11.25, 0.25, 12], + "from": [ + 10.75, + 0, + 9.25 + ], + "to": [ + 11.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.25, 9.25, 10.75, 9.5], "texture": "#3"}, - "east": {"uv": [11, 9.25, 11.25, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 11.75, 11.25, 12], "texture": "#3"}, - "west": {"uv": [10.75, 9.25, 11, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 9.25, 11.25, 12], "texture": "#3"}, - "down": {"uv": [10.75, 12, 11.25, 9.25], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 9.25, + 10.75, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 9.25, + 11.25, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 11.75, + 11.25, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 9.25, + 11, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 9.25, + 11.25, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 12, + 11.25, + 9.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_34", - "from": [12.5, 0, 9.25], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 9.25 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 9.25, 12.5, 9.5], "texture": "#3"}, - "east": {"uv": [12.5, 9.25, 12.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#3"}, - "west": {"uv": [12.5, 9.25, 12.75, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#3"}, - "down": {"uv": [12.5, 9.5, 12.75, 9.25], "texture": "#3"} + "north": { + "uv": [ + 12.75, + 9.25, + 12.5, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 9.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_35", - "from": [15, 0, 9.25], - "to": [15.25, 0.25, 10.75], + "from": [ + 15, + 0, + 9.25 + ], + "to": [ + 15.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15.25, 9.25, 15, 9.5], "texture": "#3"}, - "east": {"uv": [15, 9.25, 15.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15, 10.5, 15.25, 10.75], "texture": "#3"}, - "west": {"uv": [15, 9.25, 15.25, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15, 9.25, 15.25, 10.75], "texture": "#3"}, - "down": {"uv": [15, 10.75, 15.25, 9.25], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 9.25, + 15, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 9.25, + 15.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15, + 10.5, + 15.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15, + 9.25, + 15.25, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15, + 9.25, + 15.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15, + 10.75, + 15.25, + 9.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_36", - "from": [11.25, 0, 9.75], - "to": [12.25, 0.25, 11], + "from": [ + 11.25, + 0, + 9.75 + ], + "to": [ + 12.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [12.25, 9.75, 11.25, 10], "texture": "#3"}, - "east": {"uv": [12, 9.75, 12.25, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 10.75, 12.25, 11], "texture": "#3"}, - "west": {"uv": [11.25, 9.75, 11.5, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 9.75, 12.25, 11], "texture": "#3"}, - "down": {"uv": [11.25, 11, 12.25, 9.75], "texture": "#3"} + "north": { + "uv": [ + 12.25, + 9.75, + 11.25, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12, + 9.75, + 12.25, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 10.75, + 12.25, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 9.75, + 11.5, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 9.75, + 12.25, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 11, + 12.25, + 9.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_37", - "from": [12.25, 0, 9.75], - "to": [12.5, 0.25, 10.5], + "from": [ + 12.25, + 0, + 9.75 + ], + "to": [ + 12.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.5, 9.75, 12.25, 10], "texture": "#3"}, - "east": {"uv": [12.25, 9.75, 12.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.25, 10.25, 12.5, 10.5], "texture": "#3"}, - "west": {"uv": [12.25, 9.75, 12.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.25, 9.75, 12.5, 10.5], "texture": "#3"}, - "down": {"uv": [12.25, 10.5, 12.5, 9.75], "texture": "#3"} + "north": { + "uv": [ + 12.5, + 9.75, + 12.25, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.25, + 9.75, + 12.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.25, + 10.25, + 12.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.25, + 9.75, + 12.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.25, + 9.75, + 12.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.25, + 10.5, + 12.5, + 9.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_38", - "from": [13, 0, 9.75], - "to": [13.25, 0.25, 10], + "from": [ + 13, + 0, + 9.75 + ], + "to": [ + 13.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.25, 9.75, 13, 10], "texture": "#3"}, - "east": {"uv": [13, 9.75, 13.25, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13, 9.75, 13.25, 10], "texture": "#3"}, - "west": {"uv": [13, 9.75, 13.25, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13, 9.75, 13.25, 10], "texture": "#3"}, - "down": {"uv": [13, 10, 13.25, 9.75], "texture": "#3"} + "north": { + "uv": [ + 13.25, + 9.75, + 13, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13, + 10, + 13.25, + 9.75 + ], + "texture": "#3" + } } }, { "name": "demenigisu_39", - "from": [12.5, 0, 10], - "to": [12.75, 0.25, 10.25], + "from": [ + 12.5, + 0, + 10 + ], + "to": [ + 12.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.75, 10, 12.5, 10.25], "texture": "#3"}, - "east": {"uv": [12.5, 10, 12.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.5, 10, 12.75, 10.25], "texture": "#3"}, - "west": {"uv": [12.5, 10, 12.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.5, 10, 12.75, 10.25], "texture": "#3"}, - "down": {"uv": [12.5, 10.25, 12.75, 10], "texture": "#3"} + "north": { + "uv": [ + 12.75, + 10, + 12.5, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.5, + 10, + 12.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.5, + 10, + 12.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.5, + 10, + 12.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.5, + 10, + 12.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.5, + 10.25, + 12.75, + 10 + ], + "texture": "#3" + } } }, { "name": "demenigisu_40", - "from": [2.25, 0, 10.5], - "to": [2.5, 0.25, 10.75], + "from": [ + 2.25, + 0, + 10.5 + ], + "to": [ + 2.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.5, 10.5, 2.25, 10.75], "texture": "#3"}, - "east": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#3"}, - "west": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#3"}, - "down": {"uv": [2.25, 10.75, 2.5, 10.5], "texture": "#3"} + "north": { + "uv": [ + 2.5, + 10.5, + 2.25, + 10.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.25, + 10.5, + 2.5, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.25, + 10.5, + 2.5, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.25, + 10.5, + 2.5, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.25, + 10.5, + 2.5, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.25, + 10.75, + 2.5, + 10.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_41", - "from": [5.25, 0, 11], - "to": [6.5, 0.25, 11.25], + "from": [ + 5.25, + 0, + 11 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.5, 11, 5.25, 11.25], "texture": "#3"}, - "east": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.25, 11, 6.5, 11.25], "texture": "#3"}, - "west": {"uv": [5.25, 11, 5.5, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.25, 11, 6.5, 11.25], "texture": "#3"}, - "down": {"uv": [5.25, 11.25, 6.5, 11], "texture": "#3"} + "north": { + "uv": [ + 6.5, + 11, + 5.25, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.25, + 11, + 6.5, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.25, + 11, + 6.5, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 6.5, + 11 + ], + "texture": "#3" + } } }, { "name": "demenigisu_42", - "from": [6.75, 0, 11], - "to": [7.25, 0.25, 12], + "from": [ + 6.75, + 0, + 11 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 11, 6.75, 11.25], "texture": "#3"}, - "east": {"uv": [7, 11, 7.25, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.75, 11.75, 7.25, 12], "texture": "#3"}, - "west": {"uv": [6.75, 11, 7, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.75, 11, 7.25, 12], "texture": "#3"}, - "down": {"uv": [6.75, 12, 7.25, 11], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 11, + 6.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 11, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.75, + 11.75, + 7.25, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.75, + 11, + 7, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.75, + 11, + 7.25, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.75, + 12, + 7.25, + 11 + ], + "texture": "#3" + } } }, { "name": "demenigisu_43", - "from": [11.25, 0, 11], - "to": [11.75, 0.25, 11.5], + "from": [ + 11.25, + 0, + 11 + ], + "to": [ + 11.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11.75, 11, 11.25, 11.25], "texture": "#3"}, - "east": {"uv": [11.5, 11, 11.75, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 11.25, 11.75, 11.5], "texture": "#3"}, - "west": {"uv": [11.25, 11, 11.5, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 11, 11.75, 11.5], "texture": "#3"}, - "down": {"uv": [11.25, 11.5, 11.75, 11], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 11, + 11.25, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 11, + 11.75, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 11.25, + 11.75, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 11, + 11.5, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 11, + 11.75, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 11.5, + 11.75, + 11 + ], + "texture": "#3" + } } }, { "name": "demenigisu_44", - "from": [11.75, 0, 11], - "to": [12, 0.25, 11.25], + "from": [ + 11.75, + 0, + 11 + ], + "to": [ + 12, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [12, 11, 11.75, 11.25], "texture": "#3"}, - "east": {"uv": [11.75, 11, 12, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 11, 12, 11.25], "texture": "#3"}, - "west": {"uv": [11.75, 11, 12, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 11, 12, 11.25], "texture": "#3"}, - "down": {"uv": [11.75, 11.25, 12, 11], "texture": "#3"} + "north": { + "uv": [ + 12, + 11, + 11.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.75, + 11, + 12, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 11, + 12, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 11, + 12, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 11, + 12, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 11.25, + 12, + 11 + ], + "texture": "#3" + } } }, { "name": "demenigisu_45", - "from": [5.5, 0, 11.25], - "to": [5.75, 0.25, 11.5], + "from": [ + 5.5, + 0, + 11.25 + ], + "to": [ + 5.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.75, 11.25, 5.5, 11.5], "texture": "#3"}, - "east": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#3"}, - "west": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#3"}, - "down": {"uv": [5.5, 11.5, 5.75, 11.25], "texture": "#3"} + "north": { + "uv": [ + 5.75, + 11.25, + 5.5, + 11.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 5.75, + 11.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_46", - "from": [11.25, 0, 11.5], - "to": [11.5, 0.25, 11.75], + "from": [ + 11.25, + 0, + 11.5 + ], + "to": [ + 11.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [11.5, 11.5, 11.25, 11.75], "texture": "#3"}, - "east": {"uv": [11.25, 11.5, 11.5, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 11.5, 11.5, 11.75], "texture": "#3"}, - "west": {"uv": [11.25, 11.5, 11.5, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 11.5, 11.5, 11.75], "texture": "#3"}, - "down": {"uv": [11.25, 11.75, 11.5, 11.5], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 11.5, + 11.25, + 11.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 11.5, + 11.5, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 11.5, + 11.5, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 11.5, + 11.5, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 11.5, + 11.5, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 11.75, + 11.5, + 11.5 + ], + "texture": "#3" + } } }, { "name": "demenigisu_47", - "from": [7, 0, 12], - "to": [7.25, 0.25, 12.25], + "from": [ + 7, + 0, + 12 + ], + "to": [ + 7.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.25, 12, 7, 12.25], "texture": "#3"}, - "east": {"uv": [7, 12, 7.25, 12.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7, 12, 7.25, 12.25], "texture": "#3"}, - "west": {"uv": [7, 12, 7.25, 12.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7, 12, 7.25, 12.25], "texture": "#3"}, - "down": {"uv": [7, 12.25, 7.25, 12], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 12, + 7, + 12.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7, + 12.25, + 7.25, + 12 + ], + "texture": "#3" + } } }, { "name": "demenigisu_48", - "from": [10.75, 0, 12], - "to": [11, 0.25, 12.25], + "from": [ + 10.75, + 0, + 12 + ], + "to": [ + 11, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11, 12, 10.75, 12.25], "texture": "#3"}, - "east": {"uv": [10.75, 12, 11, 12.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 12, 11, 12.25], "texture": "#3"}, - "west": {"uv": [10.75, 12, 11, 12.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 12, 11, 12.25], "texture": "#3"}, - "down": {"uv": [10.75, 12.25, 11, 12], "texture": "#3"} + "north": { + "uv": [ + 11, + 12, + 10.75, + 12.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.75, + 12, + 11, + 12.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 12, + 11, + 12.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 12, + 11, + 12.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 12, + 11, + 12.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 12.25, + 11, + 12 + ], + "texture": "#3" + } } }, { "name": "demenigisu_49", - "from": [10, 0, 12.25], - "to": [10.5, 0.25, 12.5], + "from": [ + 10, + 0, + 12.25 + ], + "to": [ + 10.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10.5, 12.25, 10, 12.5], "texture": "#3"}, - "east": {"uv": [10.25, 12.25, 10.5, 12.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 12.25, 10.5, 12.5], "texture": "#3"}, - "west": {"uv": [10, 12.25, 10.25, 12.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 12.25, 10.5, 12.5], "texture": "#3"}, - "down": {"uv": [10, 12.5, 10.5, 12.25], "texture": "#3"} + "north": { + "uv": [ + 10.5, + 12.25, + 10, + 12.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.25, + 12.25, + 10.5, + 12.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 12.25, + 10.5, + 12.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 12.25, + 10.5, + 12.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 12.5, + 10.5, + 12.25 + ], + "texture": "#3" + } } }, { "name": "demenigisu_50", - "from": [7.5, 0, 12.5], - "to": [8.75, 0.25, 12.75], + "from": [ + 7.5, + 0, + 12.5 + ], + "to": [ + 8.75, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [8.75, 12.5, 7.5, 12.75], "texture": "#3"}, - "east": {"uv": [8.5, 12.5, 8.75, 12.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.5, 12.5, 8.75, 12.75], "texture": "#3"}, - "west": {"uv": [7.5, 12.5, 7.75, 12.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.5, 12.5, 8.75, 12.75], "texture": "#3"}, - "down": {"uv": [7.5, 12.75, 8.75, 12.5], "texture": "#3"} + "north": { + "uv": [ + 8.75, + 12.5, + 7.5, + 12.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.5, + 12.5, + 8.75, + 12.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.5, + 12.5, + 8.75, + 12.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.5, + 12.5, + 7.75, + 12.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.5, + 12.5, + 8.75, + 12.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.5, + 12.75, + 8.75, + 12.5 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [129, -2.75, 1.75], - "translation": [-0.25, -5.25, 2.5], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 129, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + -5.25, + 2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "thirdperson_lefthand": { - "rotation": [129, -2.75, 1.75], - "translation": [-0.25, -5.25, 2.5], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 129, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + -5.25, + 2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_righthand": { - "rotation": [86, 38, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 38, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_lefthand": { - "rotation": [86, 38, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 38, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [1.39, 1.39, 1.39] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 1.39, + 1.39, + 1.39 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 12.5, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 12.5, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "demenigisu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/doctorfish.json b/pack/assets/minecraft/models/fish/doctorfish.json index 0aeb7742..816db149 100644 --- a/pack/assets/minecraft/models/fish/doctorfish.json +++ b/pack/assets/minecraft/models/fish/doctorfish.json @@ -2,786 +2,4191 @@ "__name": "ドクターフィッシュ", "credit": "Made with Blockbench", "textures": { - "0": "fish/doctorfish", - "particle": "fish/doctorfish" + "0": "item/fish/doctorfish", + "particle": "item/fish/doctorfish" }, "elements": [ { "name": "doctorfish_0", - "from": [7.75, 0, 4], - "to": [8.5, 0.25, 10.5], + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 4, 7.75, 4.25], "texture": "#0"}, - "east": {"uv": [8.25, 4, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [7.75, 4, 8, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [7.75, 10.5, 8.5, 4], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8.5, + 4 + ], + "texture": "#0" + } } }, { "name": "doctorfish_1", - "from": [7.5, 0, 4.25], - "to": [7.75, 0.25, 10.25], + "from": [ + 7.5, + 0, + 4.25 + ], + "to": [ + 7.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.75, 4.25, 7.5, 4.5], "texture": "#0"}, - "east": {"uv": [7.5, 4.25, 7.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#0"}, - "west": {"uv": [7.5, 4.25, 7.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.25, 7.75, 10.25], "texture": "#0"}, - "down": {"uv": [7.5, 10.25, 7.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 4.25, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 7.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_2", - "from": [8.5, 0, 4.25], - "to": [8.75, 0.25, 11.25], + "from": [ + 8.5, + 0, + 4.25 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 4.25, 8.5, 4.5], "texture": "#0"}, - "east": {"uv": [8.5, 4.25, 8.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#0"}, - "west": {"uv": [8.5, 4.25, 8.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.25, 8.75, 11.25], "texture": "#0"}, - "down": {"uv": [8.5, 11.25, 8.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.25, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.25, + 8.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.25, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 11.25, + 8.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_3", - "from": [7.25, 0, 4.5], - "to": [7.5, 0.25, 10], + "from": [ + 7.25, + 0, + 4.5 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 4.5, 7.25, 4.75], "texture": "#0"}, - "east": {"uv": [7.25, 4.5, 7.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#0"}, - "west": {"uv": [7.25, 4.5, 7.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.5, 7.5, 10], "texture": "#0"}, - "down": {"uv": [7.25, 10, 7.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_4", - "from": [8.75, 0, 4.5], - "to": [9, 0.25, 11.25], + "from": [ + 8.75, + 0, + 4.5 + ], + "to": [ + 9, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9, 4.5, 8.75, 4.75], "texture": "#0"}, - "east": {"uv": [8.75, 4.5, 9, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11, 9, 11.25], "texture": "#0"}, - "west": {"uv": [8.75, 4.5, 9, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.5, 9, 11.25], "texture": "#0"}, - "down": {"uv": [8.75, 11.25, 9, 4.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.5, + 8.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.5, + 9, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.5, + 9, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 9, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11.25, + 9, + 4.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_5", - "from": [9, 0, 4.75], - "to": [9.25, 0.25, 9.25], + "from": [ + 9, + 0, + 4.75 + ], + "to": [ + 9.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.25, 4.75, 9, 5], "texture": "#0"}, - "east": {"uv": [9, 4.75, 9.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9, 9.25, 9.25], "texture": "#0"}, - "west": {"uv": [9, 4.75, 9.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4.75, 9.25, 9.25], "texture": "#0"}, - "down": {"uv": [9, 9.25, 9.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 4.75, + 9, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.75, + 9.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.75, + 9.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4.75, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.25, + 9.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_6", - "from": [7, 0, 5.25], - "to": [7.25, 0.25, 9.5], + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.25, 5.25, 7, 5.5], "texture": "#0"}, - "east": {"uv": [7, 5.25, 7.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.25, 7.25, 9.5], "texture": "#0"}, - "west": {"uv": [7, 5.25, 7.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.25, 7.25, 9.5], "texture": "#0"}, - "down": {"uv": [7, 9.5, 7.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.25, + 7.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.5, + 7.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_7", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 9.25], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "east": {"uv": [9.25, 5.25, 9.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9, 9.5, 9.25], "texture": "#0"}, - "west": {"uv": [9.25, 5.25, 9.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.25, 9.5, 9.25], "texture": "#0"}, - "down": {"uv": [9.25, 9.25, 9.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 9.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_8", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 9.25], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9, 7, 9.25], "texture": "#0"}, - "west": {"uv": [6.75, 5.5, 7, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.5, 7, 9.25], "texture": "#0"}, - "down": {"uv": [6.75, 9.25, 7, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9, + 7, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.25, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_9", - "from": [9.5, 0, 5.5], - "to": [9.75, 0.25, 6.5], + "from": [ + 9.5, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [9.75, 5.5, 9.5, 5.75], "texture": "#0"}, - "east": {"uv": [9.5, 5.5, 9.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6.25, 9.75, 6.5], "texture": "#0"}, - "west": {"uv": [9.5, 5.5, 9.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5.5, 9.75, 6.5], "texture": "#0"}, - "down": {"uv": [9.5, 6.5, 9.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5.5, + 9.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.5, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.5, + 9.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_10", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 9.25], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#0"}, - "east": {"uv": [6.5, 5.75, 6.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9, 6.75, 9.25], "texture": "#0"}, - "west": {"uv": [6.5, 5.75, 6.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.75, 6.75, 9.25], "texture": "#0"}, - "down": {"uv": [6.5, 9.25, 6.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.25, + 6.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_11", - "from": [9.75, 0, 5.75], - "to": [10, 0.25, 6.25], + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [10, 5.75, 9.75, 6], "texture": "#0"}, - "east": {"uv": [9.75, 5.75, 10, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 6, 10, 6.25], "texture": "#0"}, - "west": {"uv": [9.75, 5.75, 10, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.75, 10, 6.25], "texture": "#0"}, - "down": {"uv": [9.75, 6.25, 10, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5.75, + 10, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 6.25, + 10, + 5.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_12", - "from": [4.25, 0, 6], - "to": [6.5, 0.25, 9.25], + "from": [ + 4.25, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.5, 6, 4.25, 6.25], "texture": "#0"}, - "east": {"uv": [6.25, 6, 6.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9, 6.5, 9.25], "texture": "#0"}, - "west": {"uv": [4.25, 6, 4.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6, 6.5, 9.25], "texture": "#0"}, - "down": {"uv": [4.25, 9.25, 6.5, 6], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 6, + 4.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 6.5, + 6 + ], + "texture": "#0" + } } }, { "name": "doctorfish_13", - "from": [3, 0, 6.25], - "to": [4.25, 0.25, 9.25], + "from": [ + 3, + 0, + 6.25 + ], + "to": [ + 4.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.25, 6.25, 3, 6.5], "texture": "#0"}, - "east": {"uv": [4, 6.25, 4.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9, 4.25, 9.25], "texture": "#0"}, - "west": {"uv": [3, 6.25, 3.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.25, 4.25, 9.25], "texture": "#0"}, - "down": {"uv": [3, 9.25, 4.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.25, + 4.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.25, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.25, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.25, + 4.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_14", - "from": [14.5, 0, 6.25], - "to": [15.25, 0.25, 7.5], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.25, 6.25, 14.5, 6.5], "texture": "#0"}, - "east": {"uv": [15, 6.25, 15.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.25, 15.25, 7.5], "texture": "#0"}, - "west": {"uv": [14.5, 6.25, 14.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.25, 15.25, 7.5], "texture": "#0"}, - "down": {"uv": [14.5, 7.5, 15.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 15.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_15", - "from": [2.25, 0, 6.5], - "to": [3, 0.25, 9.25], + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 6.5, 2.25, 6.75], "texture": "#0"}, - "east": {"uv": [2.75, 6.5, 3, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 3, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 6.5, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.5, 3, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 3, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.5, + 2.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.5, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 3, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 3, + 6.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_16", - "from": [13.5, 0, 6.5], - "to": [14.5, 0.25, 9.25], + "from": [ + 13.5, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 6.5, 13.5, 6.75], "texture": "#0"}, - "east": {"uv": [14.25, 6.5, 14.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 14.5, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 6.5, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.5, 14.5, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 14.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.5, + 13.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.5, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.5, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 14.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_17", - "from": [15.25, 0, 6.5], - "to": [15.5, 0.25, 7.25], + "from": [ + 15.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.5, 6.5, 15.25, 6.75], "texture": "#0"}, - "east": {"uv": [15.25, 6.5, 15.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#0"}, - "west": {"uv": [15.25, 6.5, 15.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.5, 15.5, 7.25], "texture": "#0"}, - "down": {"uv": [15.25, 7.25, 15.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.5, + 15.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.5, + 15.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7.25, + 15.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_18", - "from": [1.75, 0, 6.75], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 6.75, 1.75, 7], "texture": "#0"}, - "east": {"uv": [2, 6.75, 2.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9, 2.25, 9.25], "texture": "#0"}, - "west": {"uv": [1.75, 6.75, 2, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.75, 2.25, 9.25], "texture": "#0"}, - "down": {"uv": [1.75, 9.25, 2.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.75, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_19", - "from": [12.75, 0, 6.75], - "to": [13.5, 0.25, 9], + "from": [ + 12.75, + 0, + 6.75 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 6.75, 12.75, 7], "texture": "#0"}, - "east": {"uv": [13.25, 6.75, 13.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8.75, 13.5, 9], "texture": "#0"}, - "west": {"uv": [12.75, 6.75, 13, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.75, 13.5, 9], "texture": "#0"}, - "down": {"uv": [12.75, 9, 13.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6.75, + 12.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.75, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.75, + 13, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9, + 13.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_20", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#0"}, - "east": {"uv": [1.5, 7, 1.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#0"}, - "west": {"uv": [1.5, 7, 1.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7, 1.75, 9.25], "texture": "#0"}, - "down": {"uv": [1.5, 9.25, 1.75, 7], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 7 + ], + "texture": "#0" + } } }, { "name": "doctorfish_21", - "from": [9.5, 0, 7], - "to": [10.25, 0.25, 9.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.25, 7, 9.5, 7.25], "texture": "#0"}, - "east": {"uv": [10, 7, 10.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9, 10.25, 9.25], "texture": "#0"}, - "west": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7, 10.25, 9.25], "texture": "#0"}, - "down": {"uv": [9.5, 9.25, 10.25, 7], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 10.25, + 7 + ], + "texture": "#0" + } } }, { "name": "doctorfish_22", - "from": [12, 0, 7], - "to": [12.75, 0.25, 8.75], + "from": [ + 12, + 0, + 7 + ], + "to": [ + 12.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.75, 7, 12, 7.25], "texture": "#0"}, - "east": {"uv": [12.5, 7, 12.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.5, 12.75, 8.75], "texture": "#0"}, - "west": {"uv": [12, 7, 12.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7, 12.75, 8.75], "texture": "#0"}, - "down": {"uv": [12, 8.75, 12.75, 7], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 7, + 12, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7, + 12.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.5, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.75, + 12.75, + 7 + ], + "texture": "#0" + } } }, { "name": "doctorfish_23", - "from": [1.25, 0, 7.25], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1.25, 7.5], "texture": "#0"}, - "east": {"uv": [1.25, 7.25, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 7.25, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.25, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_24", - "from": [10.25, 0, 7.25], - "to": [12, 0.25, 8.75], + "from": [ + 10.25, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12, 7.25, 10.25, 7.5], "texture": "#0"}, - "east": {"uv": [11.75, 7.25, 12, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8.5, 12, 8.75], "texture": "#0"}, - "west": {"uv": [10.25, 7.25, 10.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7.25, 12, 8.75], "texture": "#0"}, - "down": {"uv": [10.25, 8.75, 12, 7.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7.25, + 10.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7.25, + 12, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8.75, + 12, + 7.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_25", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 9.25], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1, 7.5, 1.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 9, 1.25, 9.25], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.25, 9.25], "texture": "#0"}, - "down": {"uv": [1, 9.25, 1.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_26", - "from": [14.5, 0, 7.5], - "to": [14.75, 0.25, 7.75], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#0"}, - "east": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#0"}, - "west": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#0"}, - "down": {"uv": [14.5, 7.75, 14.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.75, + 14.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_27", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 9], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#0"}, - "east": {"uv": [0.75, 7.75, 1, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.75, 1, 9], "texture": "#0"}, - "west": {"uv": [0.75, 7.75, 1, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.75, 1, 9], "texture": "#0"}, - "down": {"uv": [0.75, 9, 1, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9, + 1, + 7.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_28", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [0.5, 8, 0.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 0.75, 9], "texture": "#0"}, - "down": {"uv": [0.5, 9, 0.75, 8], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 8 + ], + "texture": "#0" + } } }, { "name": "doctorfish_29", - "from": [0.25, 0, 8.25], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8.25, 0.25, 8.5], "texture": "#0"}, - "east": {"uv": [0.25, 8.25, 0.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#0"}, - "west": {"uv": [0.25, 8.25, 0.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 8.25, 0.5, 8.75], "texture": "#0"}, - "down": {"uv": [0.25, 8.75, 0.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 0.5, + 8.25, + 0.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_30", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#0"}, - "east": {"uv": [14.5, 8.25, 14.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#0"}, - "west": {"uv": [14.5, 8.25, 14.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.25, 14.75, 9.5], "texture": "#0"}, - "down": {"uv": [14.5, 9.5, 14.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_31", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 9.5], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#0"}, - "east": {"uv": [14.75, 8.5, 15, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#0"}, - "west": {"uv": [14.75, 8.5, 15, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.5, 15, 9.5], "texture": "#0"}, - "down": {"uv": [14.75, 9.5, 15, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.5, + 15, + 8.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_32", - "from": [10.25, 0, 8.75], - "to": [11.25, 0.25, 10], + "from": [ + 10.25, + 0, + 8.75 + ], + "to": [ + 11.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.25, 8.75, 10.25, 9], "texture": "#0"}, - "east": {"uv": [11, 8.75, 11.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.75, 11.25, 10], "texture": "#0"}, - "west": {"uv": [10.25, 8.75, 10.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 8.75, 11.25, 10], "texture": "#0"}, - "down": {"uv": [10.25, 10, 11.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.75, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 8.75, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 8.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10, + 11.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_33", - "from": [11.25, 0, 8.75], - "to": [11.5, 0.25, 9], + "from": [ + 11.25, + 0, + 8.75 + ], + "to": [ + 11.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.5, 8.75, 11.25, 9], "texture": "#0"}, - "east": {"uv": [11.25, 8.75, 11.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.75, 11.5, 9], "texture": "#0"}, - "west": {"uv": [11.25, 8.75, 11.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.75, 11.5, 9], "texture": "#0"}, - "down": {"uv": [11.25, 9, 11.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 8.75, + 11.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9, + 11.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_34", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#0"}, - "east": {"uv": [15, 8.75, 15.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#0"}, - "west": {"uv": [15, 8.75, 15.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.75, 15.25, 9.5], "texture": "#0"}, - "down": {"uv": [15, 9.5, 15.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_35", - "from": [13.25, 0, 9], - "to": [13.5, 0.25, 9.25], + "from": [ + 13.25, + 0, + 9 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 9, 13.25, 9.25], "texture": "#0"}, - "east": {"uv": [13.25, 9, 13.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#0"}, - "west": {"uv": [13.25, 9, 13.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#0"}, - "down": {"uv": [13.25, 9.25, 13.5, 9], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 9, + 13.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9 + ], + "texture": "#0" + } } }, { "name": "doctorfish_36", - "from": [15.25, 0, 9], - "to": [15.5, 0.25, 9.25], + "from": [ + 15.25, + 0, + 9 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.5, 9, 15.25, 9.25], "texture": "#0"}, - "east": {"uv": [15.25, 9, 15.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#0"}, - "west": {"uv": [15.25, 9, 15.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#0"}, - "down": {"uv": [15.25, 9.25, 15.5, 9], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9 + ], + "texture": "#0" + } } }, { "name": "doctorfish_37", - "from": [3.5, 0, 9.25], - "to": [5.25, 0.25, 10], + "from": [ + 3.5, + 0, + 9.25 + ], + "to": [ + 5.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.25, 9.25, 3.5, 9.5], "texture": "#0"}, - "east": {"uv": [5, 9.25, 5.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.75, 5.25, 10], "texture": "#0"}, - "west": {"uv": [3.5, 9.25, 3.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.25, 5.25, 10], "texture": "#0"}, - "down": {"uv": [3.5, 10, 5.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.25, + 5.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.25, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.25, + 5.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10, + 5.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_38", - "from": [9.75, 0, 9.25], - "to": [10.25, 0.25, 9.5], + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.25, 9.25, 9.75, 9.5], "texture": "#0"}, - "east": {"uv": [10, 9.25, 10.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.25, 10.25, 9.5], "texture": "#0"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.25, 10.25, 9.5], "texture": "#0"}, - "down": {"uv": [9.75, 9.5, 10.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_39", - "from": [11.25, 0, 9.25], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 9.25 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 9.25, 11.25, 9.5], "texture": "#0"}, - "east": {"uv": [11.25, 9.25, 11.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#0"}, - "west": {"uv": [11.25, 9.25, 11.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9.25, 11.5, 10.5], "texture": "#0"}, - "down": {"uv": [11.25, 10.5, 11.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_40", - "from": [14.25, 0, 9.25], - "to": [14.5, 0.25, 9.5], + "from": [ + 14.25, + 0, + 9.25 + ], + "to": [ + 14.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.5, 9.25, 14.25, 9.5], "texture": "#0"}, - "east": {"uv": [14.25, 9.25, 14.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.25, 14.5, 9.5], "texture": "#0"}, - "west": {"uv": [14.25, 9.25, 14.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 9.25, 14.5, 9.5], "texture": "#0"}, - "down": {"uv": [14.25, 9.5, 14.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "doctorfish_41", - "from": [5.25, 0, 9.5], - "to": [5.75, 0.25, 10.75], + "from": [ + 5.25, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.75, 9.5, 5.25, 9.75], "texture": "#0"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.5, 5.75, 10.75], "texture": "#0"}, - "west": {"uv": [5.25, 9.5, 5.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.5, 5.75, 10.75], "texture": "#0"}, - "down": {"uv": [5.25, 10.75, 5.75, 9.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 5.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_42", - "from": [9, 0, 9.5], - "to": [9.25, 0.25, 11.25], + "from": [ + 9, + 0, + 9.5 + ], + "to": [ + 9.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.25, 9.5, 9, 9.75], "texture": "#0"}, - "east": {"uv": [9, 9.5, 9.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 11, 9.25, 11.25], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.5, 9.25, 11.25], "texture": "#0"}, - "down": {"uv": [9, 11.25, 9.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.5, + 9.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.5, + 9.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11.25, + 9.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_43", - "from": [10, 0, 9.5], - "to": [10.25, 0.25, 9.75], + "from": [ + 10, + 0, + 9.5 + ], + "to": [ + 10.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.25, 9.5, 10, 9.75], "texture": "#0"}, - "east": {"uv": [10, 9.5, 10.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#0"}, - "west": {"uv": [10, 9.5, 10.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#0"}, - "down": {"uv": [10, 9.75, 10.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.75, + 10.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_44", - "from": [11.5, 0, 9.5], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 9.5 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 9.5, 11.5, 9.75], "texture": "#0"}, - "east": {"uv": [11.5, 9.5, 11.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#0"}, - "west": {"uv": [11.5, 9.5, 11.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9.5, 11.75, 10.5], "texture": "#0"}, - "down": {"uv": [11.5, 10.5, 11.75, 9.5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9.5, + 11.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.5, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9.5, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9.5, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_45", - "from": [5.75, 0, 9.75], - "to": [6, 0.25, 10.5], + "from": [ + 5.75, + 0, + 9.75 + ], + "to": [ + 6, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6, 9.75, 5.75, 10], "texture": "#0"}, - "east": {"uv": [5.75, 9.75, 6, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10.25, 6, 10.5], "texture": "#0"}, - "west": {"uv": [5.75, 9.75, 6, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9.75, 6, 10.5], "texture": "#0"}, - "down": {"uv": [5.75, 10.5, 6, 9.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.75, + 6, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9.75, + 6, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.75, + 6, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.5, + 6, + 9.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_46", - "from": [9.25, 0, 9.75], - "to": [9.5, 0.25, 11], + "from": [ + 9.25, + 0, + 9.75 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 9.75, 9.25, 10], "texture": "#0"}, - "east": {"uv": [9.25, 9.75, 9.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#0"}, - "west": {"uv": [9.25, 9.75, 9.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9.75, 9.5, 11], "texture": "#0"}, - "down": {"uv": [9.25, 11, 9.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9.75, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.75, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_47", - "from": [11.75, 0, 9.75], - "to": [12, 0.25, 10.25], + "from": [ + 11.75, + 0, + 9.75 + ], + "to": [ + 12, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12, 9.75, 11.75, 10], "texture": "#0"}, - "east": {"uv": [11.75, 9.75, 12, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 10, 12, 10.25], "texture": "#0"}, - "west": {"uv": [11.75, 9.75, 12, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9.75, 12, 10.25], "texture": "#0"}, - "down": {"uv": [11.75, 10.25, 12, 9.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 9.75, + 11.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 9.75, + 12, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 10, + 12, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9.75, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9.75, + 12, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12, + 9.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_48", - "from": [3.75, 0, 10], - "to": [5.25, 0.25, 10.5], + "from": [ + 3.75, + 0, + 10 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.25, 10, 3.75, 10.25], "texture": "#0"}, - "east": {"uv": [5, 10, 5.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.25, 5.25, 10.5], "texture": "#0"}, - "west": {"uv": [3.75, 10, 4, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10, 5.25, 10.5], "texture": "#0"}, - "down": {"uv": [3.75, 10.5, 5.25, 10], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10, + 3.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 5.25, + 10 + ], + "texture": "#0" + } } }, { "name": "doctorfish_49", - "from": [9.5, 0, 10], - "to": [9.75, 0.25, 10.75], + "from": [ + 9.5, + 0, + 10 + ], + "to": [ + 9.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.75, 10, 9.5, 10.25], "texture": "#0"}, - "east": {"uv": [9.5, 10, 9.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.5, 9.75, 10.75], "texture": "#0"}, - "west": {"uv": [9.5, 10, 9.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10, 9.75, 10.75], "texture": "#0"}, - "down": {"uv": [9.5, 10.75, 9.75, 10], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 10, + 9.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10, + 9.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.75, + 9.75, + 10 + ], + "texture": "#0" + } } }, { "name": "doctorfish_50", - "from": [10.75, 0, 10], - "to": [11.25, 0.25, 10.25], + "from": [ + 10.75, + 0, + 10 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 10, 10.75, 10.25], "texture": "#0"}, - "east": {"uv": [11, 10, 11.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10, 11.25, 10.25], "texture": "#0"}, - "west": {"uv": [10.75, 10, 11, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 10, 11.25, 10.25], "texture": "#0"}, - "down": {"uv": [10.75, 10.25, 11.25, 10], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 10, + 10.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10, + 11.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 10, + 11.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11.25, + 10 + ], + "texture": "#0" + } } }, { "name": "doctorfish_51", - "from": [4, 0, 10.5], - "to": [5.25, 0.25, 10.75], + "from": [ + 4, + 0, + 10.5 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 10.5, 4, 10.75], "texture": "#0"}, - "east": {"uv": [5, 10.5, 5.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.5, 5.25, 10.75], "texture": "#0"}, - "west": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 10.5, 5.25, 10.75], "texture": "#0"}, - "down": {"uv": [4, 10.75, 5.25, 10.5], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10.75, + 5.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_52", - "from": [8, 0, 10.5], - "to": [8.5, 0.25, 10.75], + "from": [ + 8, + 0, + 10.5 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.5, 10.5, 8, 10.75], "texture": "#0"}, - "east": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.5, 8.5, 10.75], "texture": "#0"}, - "west": {"uv": [8, 10.5, 8.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10.5, 8.5, 10.75], "texture": "#0"}, - "down": {"uv": [8, 10.75, 8.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.75, + 8.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "doctorfish_53", - "from": [4.25, 0, 10.75], - "to": [5.5, 0.25, 11], + "from": [ + 4.25, + 0, + 10.75 + ], + "to": [ + 5.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.5, 10.75, 4.25, 11], "texture": "#0"}, - "east": {"uv": [5.25, 10.75, 5.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.75, 5.5, 11], "texture": "#0"}, - "west": {"uv": [4.25, 10.75, 4.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10.75, 5.5, 11], "texture": "#0"}, - "down": {"uv": [4.25, 11, 5.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11, + 5.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_54", - "from": [8.25, 0, 10.75], - "to": [8.5, 0.25, 11], + "from": [ + 8.25, + 0, + 10.75 + ], + "to": [ + 8.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.5, 10.75, 8.25, 11], "texture": "#0"}, - "east": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "west": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "down": {"uv": [8.25, 11, 8.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11, + 8.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "doctorfish_55", - "from": [4.75, 0, 11], - "to": [5.25, 0.25, 11.25], + "from": [ + 4.75, + 0, + 11 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 11, 4.75, 11.25], "texture": "#0"}, - "east": {"uv": [5, 11, 5.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 11, 5.25, 11.25], "texture": "#0"}, - "west": {"uv": [4.75, 11, 5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 11, 5.25, 11.25], "texture": "#0"}, - "down": {"uv": [4.75, 11.25, 5.25, 11], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 11, + 4.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 11, + 5.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 11, + 5.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 11.25, + 5.25, + 11 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "doctorfish", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/dojou.json b/pack/assets/minecraft/models/fish/dojou.json index 3e87b6bd..a9e9a230 100644 --- a/pack/assets/minecraft/models/fish/dojou.json +++ b/pack/assets/minecraft/models/fish/dojou.json @@ -2,526 +2,2747 @@ "__name": "ドジョウ", "credit": "Made with Blockbench", "textures": { - "0": "fish/dojou", - "particle": "fish/dojou" + "0": "item/fish/dojou", + "particle": "item/fish/dojou" }, "elements": [ { "name": "dojou_0", - "from": [8, 0, 4.75], - "to": [9, 0.25, 9.25], + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9, 4.75, 8, 5], "texture": "#0"}, - "east": {"uv": [8.75, 4.75, 9, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9, 9, 9.25], "texture": "#0"}, - "west": {"uv": [8, 4.75, 8.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4.75, 9, 9.25], "texture": "#0"}, - "down": {"uv": [8, 9.25, 9, 4.75], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.75, + 9, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.25, + 9, + 4.75 + ], + "texture": "#0" + } } }, { "name": "dojou_1", - "from": [7.75, 0, 5], - "to": [8, 0.25, 9], + "from": [ + 7.75, + 0, + 5 + ], + "to": [ + 8, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8, 5, 7.75, 5.25], "texture": "#0"}, - "east": {"uv": [7.75, 5, 8, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#0"}, - "west": {"uv": [7.75, 5, 8, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5, 8, 9], "texture": "#0"}, - "down": {"uv": [7.75, 9, 8, 5], "texture": "#0"} + "north": { + "uv": [ + 8, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5, + 8, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5, + 8, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 5 + ], + "texture": "#0" + } } }, { "name": "dojou_2", - "from": [9, 0, 5], - "to": [9.25, 0.25, 9], + "from": [ + 9, + 0, + 5 + ], + "to": [ + 9.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.25, 5, 9, 5.25], "texture": "#0"}, - "east": {"uv": [9, 5, 9.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8.75, 9.25, 9], "texture": "#0"}, - "west": {"uv": [9, 5, 9.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5, 9.25, 9], "texture": "#0"}, - "down": {"uv": [9, 9, 9.25, 5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5, + 9.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9, + 9.25, + 5 + ], + "texture": "#0" + } } }, { "name": "dojou_3", - "from": [7.5, 0, 5.25], - "to": [7.75, 0.25, 9], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 7.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.75, 5.25, 7.5, 5.5], "texture": "#0"}, - "east": {"uv": [7.5, 5.25, 7.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.75, 7.75, 9], "texture": "#0"}, - "west": {"uv": [7.5, 5.25, 7.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.25, 7.75, 9], "texture": "#0"}, - "down": {"uv": [7.5, 9, 7.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.25, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 7.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9, + 7.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "dojou_4", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 9], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "east": {"uv": [9.25, 5.25, 9.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.75, 9.5, 9], "texture": "#0"}, - "west": {"uv": [9.25, 5.25, 9.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.25, 9.5, 9], "texture": "#0"}, - "down": {"uv": [9.25, 9, 9.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "dojou_5", - "from": [7.25, 0, 5.5], - "to": [7.5, 0.25, 9], + "from": [ + 7.25, + 0, + 5.5 + ], + "to": [ + 7.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.5, 5.5, 7.25, 5.75], "texture": "#0"}, - "east": {"uv": [7.25, 5.5, 7.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.75, 7.5, 9], "texture": "#0"}, - "west": {"uv": [7.25, 5.5, 7.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5.5, 7.5, 9], "texture": "#0"}, - "down": {"uv": [7.25, 9, 7.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 5.5, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5.5, + 7.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.75, + 7.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5.5, + 7.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.5, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9, + 7.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "dojou_6", - "from": [9.5, 0, 5.5], - "to": [9.75, 0.25, 9], + "from": [ + 9.5, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.75, 5.5, 9.5, 5.75], "texture": "#0"}, - "east": {"uv": [9.5, 5.5, 9.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8.75, 9.75, 9], "texture": "#0"}, - "west": {"uv": [9.5, 5.5, 9.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5.5, 9.75, 9], "texture": "#0"}, - "down": {"uv": [9.5, 9, 9.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9, + 9.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "dojou_7", - "from": [6.75, 0, 5.75], - "to": [7.25, 0.25, 9], + "from": [ + 6.75, + 0, + 5.75 + ], + "to": [ + 7.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.25, 5.75, 6.75, 6], "texture": "#0"}, - "east": {"uv": [7, 5.75, 7.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.75, 7.25, 9], "texture": "#0"}, - "west": {"uv": [6.75, 5.75, 7, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.75, 7.25, 9], "texture": "#0"}, - "down": {"uv": [6.75, 9, 7.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.75, + 6.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.75, + 7.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.75, + 7, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9, + 7.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "dojou_8", - "from": [5, 0, 6.25], - "to": [6.75, 0.25, 9], + "from": [ + 5, + 0, + 6.25 + ], + "to": [ + 6.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [6.75, 6.25, 5, 6.5], "texture": "#0"}, - "east": {"uv": [6.5, 6.25, 6.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.75, 6.75, 9], "texture": "#0"}, - "west": {"uv": [5, 6.25, 5.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.25, 6.75, 9], "texture": "#0"}, - "down": {"uv": [5, 9, 6.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.25, + 6.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.25, + 5.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.25, + 6.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 6.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "dojou_9", - "from": [3.25, 0, 6.5], - "to": [5, 0.25, 8.75], + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5, 6.5, 3.25, 6.75], "texture": "#0"}, - "east": {"uv": [4.75, 6.5, 5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.5, 5, 8.75], "texture": "#0"}, - "west": {"uv": [3.25, 6.5, 3.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.5, 5, 8.75], "texture": "#0"}, - "down": {"uv": [3.25, 8.75, 5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.75, + 5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "dojou_10", - "from": [14.5, 0, 6.5], - "to": [15.25, 0.25, 9.25], + "from": [ + 14.5, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.25, 6.5, 14.5, 6.75], "texture": "#0"}, - "east": {"uv": [15, 6.5, 15.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9, 15.25, 9.25], "texture": "#0"}, - "west": {"uv": [14.5, 6.5, 14.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.5, 15.25, 9.25], "texture": "#0"}, - "down": {"uv": [14.5, 9.25, 15.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.5, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.5, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 15.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "dojou_11", - "from": [2.25, 0, 6.75], - "to": [3.25, 0.25, 9], + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 3.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.25, 6.75, 2.25, 7], "texture": "#0"}, - "east": {"uv": [3, 6.75, 3.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8.75, 3.25, 9], "texture": "#0"}, - "west": {"uv": [2.25, 6.75, 2.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.75, 3.25, 9], "texture": "#0"}, - "down": {"uv": [2.25, 9, 3.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 6.75, + 2.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.75, + 3.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9, + 3.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "dojou_12", - "from": [9.75, 0, 6.75], - "to": [11.5, 0.25, 9], + "from": [ + 9.75, + 0, + 6.75 + ], + "to": [ + 11.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.5, 6.75, 9.75, 7], "texture": "#0"}, - "east": {"uv": [11.25, 6.75, 11.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 8.75, 11.5, 9], "texture": "#0"}, - "west": {"uv": [9.75, 6.75, 10, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.75, 11.5, 9], "texture": "#0"}, - "down": {"uv": [9.75, 9, 11.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6.75, + 9.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.75, + 11.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.75, + 10, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9, + 11.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "dojou_13", - "from": [14, 0, 6.75], - "to": [14.5, 0.25, 9], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 6.75, 14, 7], "texture": "#0"}, - "east": {"uv": [14.25, 6.75, 14.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.75, 14.5, 9], "texture": "#0"}, - "west": {"uv": [14, 6.75, 14.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.75, 14.5, 9], "texture": "#0"}, - "down": {"uv": [14, 9, 14.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 14.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "dojou_14", - "from": [15.25, 0, 6.75], - "to": [15.5, 0.25, 9.25], + "from": [ + 15.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.5, 6.75, 15.25, 7], "texture": "#0"}, - "east": {"uv": [15.25, 6.75, 15.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#0"}, - "west": {"uv": [15.25, 6.75, 15.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.75, 15.5, 9.25], "texture": "#0"}, - "down": {"uv": [15.25, 9.25, 15.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6.75, + 15.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.75, + 15.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.75, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.25, + 15.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "dojou_15", - "from": [1.75, 0, 7], - "to": [2.25, 0.25, 9], + "from": [ + 1.75, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 7, 1.75, 7.25], "texture": "#0"}, - "east": {"uv": [2, 7, 2.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2.25, 9], "texture": "#0"}, - "west": {"uv": [1.75, 7, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7, 2.25, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2.25, 7], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 7, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7, + 2.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2.25, + 7 + ], + "texture": "#0" + } } }, { "name": "dojou_16", - "from": [11.5, 0, 7], - "to": [14, 0.25, 9], + "from": [ + 11.5, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 7, 11.5, 7.25], "texture": "#0"}, - "east": {"uv": [13.75, 7, 14, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 14, 9], "texture": "#0"}, - "west": {"uv": [11.5, 7, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7, 14, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 14, 7], "texture": "#0"} + "north": { + "uv": [ + 14, + 7, + 11.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 14, + 7 + ], + "texture": "#0" + } } }, { "name": "dojou_17", - "from": [1.5, 0, 7.25], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1.5, 7.5], "texture": "#0"}, - "east": {"uv": [1.5, 7.25, 1.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#0"}, - "west": {"uv": [1.5, 7.25, 1.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.25, 1.75, 9.75], "texture": "#0"}, - "down": {"uv": [1.5, 9.75, 1.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 1.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "dojou_18", - "from": [1.25, 0, 7.5], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 7.5, 1.25, 7.75], "texture": "#0"}, - "east": {"uv": [1.25, 7.5, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 7.5, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.5, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "dojou_19", - "from": [1, 0, 7.75], - "to": [1.25, 0.25, 10], + "from": [ + 1, + 0, + 7.75 + ], + "to": [ + 1.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.25, 7.75, 1, 8], "texture": "#0"}, - "east": {"uv": [1, 7.75, 1.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 9.75, 1.25, 10], "texture": "#0"}, - "west": {"uv": [1, 7.75, 1.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.75, 1.25, 10], "texture": "#0"}, - "down": {"uv": [1, 10, 1.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.75, + 1.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.75, + 1.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 10, + 1.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "dojou_20", - "from": [0.75, 0, 8], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 8, 0.75, 8.25], "texture": "#0"}, - "east": {"uv": [0.75, 8, 1, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 8, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8, 1, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 1, 8], "texture": "#0"} + "north": { + "uv": [ + 1, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 8 + ], + "texture": "#0" + } } }, { "name": "dojou_21", - "from": [0.75, 0, 8.75], - "to": [1, 0.25, 10.25], + "from": [ + 0.75, + 0, + 8.75 + ], + "to": [ + 1, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1, 8.75, 0.75, 9], "texture": "#0"}, - "east": {"uv": [0.75, 8.75, 1, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 10, 1, 10.25], "texture": "#0"}, - "west": {"uv": [0.75, 8.75, 1, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.75, 1, 10.25], "texture": "#0"}, - "down": {"uv": [0.75, 10.25, 1, 8.75], "texture": "#0"} + "north": { + "uv": [ + 1, + 8.75, + 0.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.75, + 1, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.75, + 1, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.75, + 1, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 10.25, + 1, + 8.75 + ], + "texture": "#0" + } } }, { "name": "dojou_22", - "from": [3.25, 0, 8.75], - "to": [3.5, 0.25, 9], + "from": [ + 3.25, + 0, + 8.75 + ], + "to": [ + 3.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.5, 8.75, 3.25, 9], "texture": "#0"}, - "east": {"uv": [3.25, 8.75, 3.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.75, 3.5, 9], "texture": "#0"}, - "west": {"uv": [3.25, 8.75, 3.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.75, 3.5, 9], "texture": "#0"}, - "down": {"uv": [3.25, 9, 3.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9, + 3.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "dojou_23", - "from": [3.75, 0, 8.75], - "to": [5, 0.25, 9], + "from": [ + 3.75, + 0, + 8.75 + ], + "to": [ + 5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [5, 8.75, 3.75, 9], "texture": "#0"}, - "east": {"uv": [4.75, 8.75, 5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.75, 5, 9], "texture": "#0"}, - "west": {"uv": [3.75, 8.75, 4, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.75, 5, 9], "texture": "#0"}, - "down": {"uv": [3.75, 9, 5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9, + 5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "dojou_24", - "from": [1.75, 0, 9], - "to": [2, 0.25, 10], + "from": [ + 1.75, + 0, + 9 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 9, 1.75, 9.25], "texture": "#0"}, - "east": {"uv": [1.75, 9, 2, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.75, 2, 10], "texture": "#0"}, - "west": {"uv": [1.75, 9, 2, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9, 2, 10], "texture": "#0"}, - "down": {"uv": [1.75, 10, 2, 9], "texture": "#0"} + "north": { + "uv": [ + 2, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9, + 2, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9, + 2, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9, + 2, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 10, + 2, + 9 + ], + "texture": "#0" + } } }, { "name": "dojou_25", - "from": [4.25, 0, 9], - "to": [6, 0.25, 9.25], + "from": [ + 4.25, + 0, + 9 + ], + "to": [ + 6, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6, 9, 4.25, 9.25], "texture": "#0"}, - "east": {"uv": [5.75, 9, 6, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9, 6, 9.25], "texture": "#0"}, - "west": {"uv": [4.25, 9, 4.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9, 6, 9.25], "texture": "#0"}, - "down": {"uv": [4.25, 9.25, 6, 9], "texture": "#0"} + "north": { + "uv": [ + 6, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 6, + 9 + ], + "texture": "#0" + } } }, { "name": "dojou_26", - "from": [11.25, 0, 9], - "to": [12.5, 0.25, 9.25], + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 9, 11.25, 9.25], "texture": "#0"}, - "east": {"uv": [12.25, 9, 12.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9, 12.5, 9.25], "texture": "#0"}, - "west": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9, 12.5, 9.25], "texture": "#0"}, - "down": {"uv": [11.25, 9.25, 12.5, 9], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 12.5, + 9 + ], + "texture": "#0" + } } }, { "name": "dojou_27", - "from": [0.5, 0, 9.25], - "to": [0.75, 0.25, 10], + "from": [ + 0.5, + 0, + 9.25 + ], + "to": [ + 0.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [0.75, 9.25, 0.5, 9.5], "texture": "#0"}, - "east": {"uv": [0.5, 9.25, 0.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 9.75, 0.75, 10], "texture": "#0"}, - "west": {"uv": [0.5, 9.25, 0.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 9.25, 0.75, 10], "texture": "#0"}, - "down": {"uv": [0.5, 10, 0.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 9.25, + 0.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 0.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 10, + 0.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_28", - "from": [2, 0, 9.25], - "to": [2.25, 0.25, 10.25], + "from": [ + 2, + 0, + 9.25 + ], + "to": [ + 2.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.25, 9.25, 2, 9.5], "texture": "#0"}, - "east": {"uv": [2, 9.25, 2.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10, 2.25, 10.25], "texture": "#0"}, - "west": {"uv": [2, 9.25, 2.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9.25, 2.25, 10.25], "texture": "#0"}, - "down": {"uv": [2, 10.25, 2.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.25, + 2.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9.25, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_29", - "from": [4.5, 0, 9.25], - "to": [6, 0.25, 9.5], + "from": [ + 4.5, + 0, + 9.25 + ], + "to": [ + 6, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [6, 9.25, 4.5, 9.5], "texture": "#0"}, - "east": {"uv": [5.75, 9.25, 6, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.25, 6, 9.5], "texture": "#0"}, - "west": {"uv": [4.5, 9.25, 4.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9.25, 6, 9.5], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 6, 9.25], "texture": "#0"} + "north": { + "uv": [ + 6, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 6, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_30", - "from": [8.25, 0, 9.25], - "to": [8.75, 0.25, 9.5], + "from": [ + 8.25, + 0, + 9.25 + ], + "to": [ + 8.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.75, 9.25, 8.25, 9.5], "texture": "#0"}, - "east": {"uv": [8.5, 9.25, 8.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#0"}, - "west": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#0"}, - "down": {"uv": [8.25, 9.5, 8.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_31", - "from": [11.75, 0, 9.25], - "to": [12.25, 0.25, 9.5], + "from": [ + 11.75, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.25, 9.25, 11.75, 9.5], "texture": "#0"}, - "east": {"uv": [12, 9.25, 12.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9.25, 12.25, 9.5], "texture": "#0"}, - "west": {"uv": [11.75, 9.25, 12, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9.25, 12.25, 9.5], "texture": "#0"}, - "down": {"uv": [11.75, 9.5, 12.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.25, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9.25, + 12, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.5, + 12.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_32", - "from": [14.75, 0, 9.25], - "to": [15.25, 0.25, 9.5], + "from": [ + 14.75, + 0, + 9.25 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 9.25, 14.75, 9.5], "texture": "#0"}, - "east": {"uv": [15, 9.25, 15.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.25, 15.25, 9.5], "texture": "#0"}, - "west": {"uv": [14.75, 9.25, 15, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9.25, 15.25, 9.5], "texture": "#0"}, - "down": {"uv": [14.75, 9.5, 15.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.5, + 15.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "dojou_33", - "from": [4.75, 0, 9.5], - "to": [5.75, 0.25, 9.75], + "from": [ + 4.75, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.75, 9.5, 4.75, 9.75], "texture": "#0"}, - "east": {"uv": [5.5, 9.5, 5.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.5, 5.75, 9.75], "texture": "#0"}, - "west": {"uv": [4.75, 9.5, 5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9.5, 5.75, 9.75], "texture": "#0"}, - "down": {"uv": [4.75, 9.75, 5.75, 9.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 9.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.5, + 5.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.5, + 5.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.75, + 5.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "dojou_34", - "from": [2.25, 0, 9.75], - "to": [2.5, 0.25, 10], + "from": [ + 2.25, + 0, + 9.75 + ], + "to": [ + 2.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.5, 9.75, 2.25, 10], "texture": "#0"}, - "east": {"uv": [2.25, 9.75, 2.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#0"}, - "west": {"uv": [2.25, 9.75, 2.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#0"}, - "down": {"uv": [2.25, 10, 2.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 9.75, + 2.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10, + 2.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "dojou_35", - "from": [5, 0, 9.75], - "to": [5.5, 0.25, 10], + "from": [ + 5, + 0, + 9.75 + ], + "to": [ + 5.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.5, 9.75, 5, 10], "texture": "#0"}, - "east": {"uv": [5.25, 9.75, 5.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.75, 5.5, 10], "texture": "#0"}, - "west": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.75, 5.5, 10], "texture": "#0"}, - "down": {"uv": [5, 10, 5.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 9.75, + 5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.75, + 5.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10, + 5.5, + 9.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.25, 2.75], - "scale": [0.31, 0.31, 0.31] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 2.75 + ], + "scale": [ + 0.31, + 0.31, + 0.31 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.25, 2.75], - "scale": [0.31, 0.31, 0.31] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 2.75 + ], + "scale": [ + 0.31, + 0.31, + 0.31 + ] }, "firstperson_righthand": { - "rotation": [86, -23, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_lefthand": { - "rotation": [86, 21, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 21, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 9.75, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 9.75, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "dojou", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/donko.json b/pack/assets/minecraft/models/fish/donko.json index 1a63d1b4..6e1f4f9a 100644 --- a/pack/assets/minecraft/models/fish/donko.json +++ b/pack/assets/minecraft/models/fish/donko.json @@ -2,721 +2,3827 @@ "__name": "ドンコ", "credit": "Made with Blockbench", "textures": { - "1": "fish/donko", - "particle": "fish/dojou" + "1": "item/fish/donko", + "particle": "item/fish/dojou" }, "elements": [ { "name": "donko_0", - "from": [6.75, 0, 4.5], - "to": [8, 0.25, 10.25], + "from": [ + 6.75, + 0, + 4.5 + ], + "to": [ + 8, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8, 4.5, 6.75, 4.75], "texture": "#1"}, - "east": {"uv": [7.75, 4.5, 8, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 10, 8, 10.25], "texture": "#1"}, - "west": {"uv": [6.75, 4.5, 7, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 4.5, 8, 10.25], "texture": "#1"}, - "down": {"uv": [6.75, 10.25, 8, 4.5], "texture": "#1"} + "north": { + "uv": [ + 8, + 4.5, + 6.75, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 4.5, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 10, + 8, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 4.5, + 7, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 4.5, + 8, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10.25, + 8, + 4.5 + ], + "texture": "#1" + } } }, { "name": "donko_1", - "from": [6.5, 0, 4.75], - "to": [6.75, 0.25, 11.25], + "from": [ + 6.5, + 0, + 4.75 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 4.75, 6.5, 5], "texture": "#1"}, - "east": {"uv": [6.5, 4.75, 6.75, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 11, 6.75, 11.25], "texture": "#1"}, - "west": {"uv": [6.5, 4.75, 6.75, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 4.75, 6.75, 11.25], "texture": "#1"}, - "down": {"uv": [6.5, 11.25, 6.75, 4.75], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 4.75, + 6.5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 4.75, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 4.75, + 6.75, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 4.75, + 6.75, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 11.25, + 6.75, + 4.75 + ], + "texture": "#1" + } } }, { "name": "donko_2", - "from": [8, 0, 4.75], - "to": [8.25, 0.25, 10], + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 8.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.25, 4.75, 8, 5], "texture": "#1"}, - "east": {"uv": [8, 4.75, 8.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9.75, 8.25, 10], "texture": "#1"}, - "west": {"uv": [8, 4.75, 8.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 4.75, 8.25, 10], "texture": "#1"}, - "down": {"uv": [8, 10, 8.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 4.75, + 8, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.75, + 8.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 4.75, + 8.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "donko_3", - "from": [6.25, 0, 5], - "to": [6.5, 0.25, 11.25], + "from": [ + 6.25, + 0, + 5 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.5, 5, 6.25, 5.25], "texture": "#1"}, - "east": {"uv": [6.25, 5, 6.5, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 5, 6.5, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 5, 6.5, 11.25], "texture": "#1"}, - "down": {"uv": [6.25, 11.25, 6.5, 5], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 5, + 6.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 5, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 5, + 6.5, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.5, + 5 + ], + "texture": "#1" + } } }, { "name": "donko_4", - "from": [6, 0, 5.25], - "to": [6.25, 0.25, 11], + "from": [ + 6, + 0, + 5.25 + ], + "to": [ + 6.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.25, 5.25, 6, 5.5], "texture": "#1"}, - "east": {"uv": [6, 5.25, 6.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 10.75, 6.25, 11], "texture": "#1"}, - "west": {"uv": [6, 5.25, 6.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 5.25, 6.25, 11], "texture": "#1"}, - "down": {"uv": [6, 11, 6.25, 5.25], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 5.25, + 6, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5.25, + 6.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 11, + 6.25, + 5.25 + ], + "texture": "#1" + } } }, { "name": "donko_5", - "from": [8.25, 0, 5.25], - "to": [8.5, 0.25, 9.75], + "from": [ + 8.25, + 0, + 5.25 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.5, 5.25, 8.25, 5.5], "texture": "#1"}, - "east": {"uv": [8.25, 5.25, 8.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 9.75], "texture": "#1"}, - "west": {"uv": [8.25, 5.25, 8.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 5.25, 8.5, 9.75], "texture": "#1"}, - "down": {"uv": [8.25, 9.75, 8.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 5.25, + 8.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9.75, + 8.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "donko_6", - "from": [9.25, 0, 5.25], - "to": [10.25, 0.25, 10.5], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 10.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.25, 5.25, 9.25, 5.5], "texture": "#1"}, - "east": {"uv": [10, 5.25, 10.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 10.25, 10.25, 10.5], "texture": "#1"}, - "west": {"uv": [9.25, 5.25, 9.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 5.25, 10.25, 10.5], "texture": "#1"}, - "down": {"uv": [9.25, 10.5, 10.25, 5.25], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 5.25, + 9.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 10.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 10.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 10.25, + 5.25 + ], + "texture": "#1" + } } }, { "name": "donko_7", - "from": [5.75, 0, 5.5], - "to": [6, 0.25, 11], + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6, 5.5, 5.75, 5.75], "texture": "#1"}, - "east": {"uv": [5.75, 5.5, 6, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 10.75, 6, 11], "texture": "#1"}, - "west": {"uv": [5.75, 5.5, 6, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 5.5, 6, 11], "texture": "#1"}, - "down": {"uv": [5.75, 11, 6, 5.5], "texture": "#1"} + "north": { + "uv": [ + 6, + 5.5, + 5.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 11, + 6, + 5.5 + ], + "texture": "#1" + } } }, { "name": "donko_8", - "from": [9, 0, 5.5], - "to": [9.25, 0.25, 10.25], + "from": [ + 9, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 5.5, 9, 5.75], "texture": "#1"}, - "east": {"uv": [9, 5.5, 9.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 10, 9.25, 10.25], "texture": "#1"}, - "west": {"uv": [9, 5.5, 9.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 5.5, 9.25, 10.25], "texture": "#1"}, - "down": {"uv": [9, 10.25, 9.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 5.5, + 9, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 5.5, + 9.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 10.25, + 9.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "donko_9", - "from": [10.25, 0, 5.5], - "to": [10.5, 0.25, 11], + "from": [ + 10.25, + 0, + 5.5 + ], + "to": [ + 10.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.5, 5.5, 10.25, 5.75], "texture": "#1"}, - "east": {"uv": [10.25, 5.5, 10.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 10.75, 10.5, 11], "texture": "#1"}, - "west": {"uv": [10.25, 5.5, 10.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 5.5, 10.5, 11], "texture": "#1"}, - "down": {"uv": [10.25, 11, 10.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 5.5, + 10.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 5.5, + 10.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 10.75, + 10.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 5.5, + 10.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 5.5, + 10.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 11, + 10.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "donko_10", - "from": [8.75, 0, 5.75], - "to": [9, 0.25, 10], + "from": [ + 8.75, + 0, + 5.75 + ], + "to": [ + 9, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9, 5.75, 8.75, 6], "texture": "#1"}, - "east": {"uv": [8.75, 5.75, 9, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9.75, 9, 10], "texture": "#1"}, - "west": {"uv": [8.75, 5.75, 9, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 5.75, 9, 10], "texture": "#1"}, - "down": {"uv": [8.75, 10, 9, 5.75], "texture": "#1"} + "north": { + "uv": [ + 9, + 5.75, + 8.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 5.75, + 9, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 5.75, + 9, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 5.75, + 9, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 10, + 9, + 5.75 + ], + "texture": "#1" + } } }, { "name": "donko_11", - "from": [10.5, 0, 5.75], - "to": [10.75, 0.25, 11], + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 10.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.75, 5.75, 10.5, 6], "texture": "#1"}, - "east": {"uv": [10.5, 5.75, 10.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 10.75, 10.75, 11], "texture": "#1"}, - "west": {"uv": [10.5, 5.75, 10.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 5.75, 10.75, 11], "texture": "#1"}, - "down": {"uv": [10.5, 11, 10.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 5.75, + 10.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 5.75, + 10.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 10.75, + 10.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 10.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 11, + 10.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "donko_12", - "from": [5, 0, 6], - "to": [5.75, 0.25, 10.5], + "from": [ + 5, + 0, + 6 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 6, 5, 6.25], "texture": "#1"}, - "east": {"uv": [5.5, 6, 5.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 10.25, 5.75, 10.5], "texture": "#1"}, - "west": {"uv": [5, 6, 5.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 6, 5.75, 10.5], "texture": "#1"}, - "down": {"uv": [5, 10.5, 5.75, 6], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 6, + 5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 6, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 6, + 5.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.75, + 6 + ], + "texture": "#1" + } } }, { "name": "donko_13", - "from": [8.5, 0, 6], - "to": [8.75, 0.25, 9.75], + "from": [ + 8.5, + 0, + 6 + ], + "to": [ + 8.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.75, 6, 8.5, 6.25], "texture": "#1"}, - "east": {"uv": [8.5, 6, 8.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 9.75], "texture": "#1"}, - "west": {"uv": [8.5, 6, 8.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 6, 8.75, 9.75], "texture": "#1"}, - "down": {"uv": [8.5, 9.75, 8.75, 6], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 6, + 8.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6, + 8.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6, + 8.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 6, + 8.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 9.75, + 8.75, + 6 + ], + "texture": "#1" + } } }, { "name": "donko_14", - "from": [10.75, 0, 6], - "to": [11, 0.25, 11], + "from": [ + 10.75, + 0, + 6 + ], + "to": [ + 11, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11, 6, 10.75, 6.25], "texture": "#1"}, - "east": {"uv": [10.75, 6, 11, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 10.75, 11, 11], "texture": "#1"}, - "west": {"uv": [10.75, 6, 11, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 6, 11, 11], "texture": "#1"}, - "down": {"uv": [10.75, 11, 11, 6], "texture": "#1"} + "north": { + "uv": [ + 11, + 6, + 10.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 6, + 11, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 10.75, + 11, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 6, + 11, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 6, + 11, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 11, + 11, + 6 + ], + "texture": "#1" + } } }, { "name": "donko_15", - "from": [4, 0, 6.25], - "to": [5, 0.25, 10.5], + "from": [ + 4, + 0, + 6.25 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 6.25, 4, 6.5], "texture": "#1"}, - "east": {"uv": [4.75, 6.25, 5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 10.25, 5, 10.5], "texture": "#1"}, - "west": {"uv": [4, 6.25, 4.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 6.25, 5, 10.5], "texture": "#1"}, - "down": {"uv": [4, 10.5, 5, 6.25], "texture": "#1"} + "north": { + "uv": [ + 5, + 6.25, + 4, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 6.25, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10.25, + 5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 6.25, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 6.25, + 5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 10.5, + 5, + 6.25 + ], + "texture": "#1" + } } }, { "name": "donko_16", - "from": [11, 0, 6.25], - "to": [11.25, 0.25, 7.25], + "from": [ + 11, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [11.25, 6.25, 11, 6.5], "texture": "#1"}, - "east": {"uv": [11, 6.25, 11.25, 7.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 7, 11.25, 7.25], "texture": "#1"}, - "west": {"uv": [11, 6.25, 11.25, 7.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 6.25, 11.25, 7.25], "texture": "#1"}, - "down": {"uv": [11, 7.25, 11.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 6.25, + 11, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 7.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 7, + 11.25, + 7.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 6.25, + 11.25, + 7.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 6.25, + 11.25, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 7.25, + 11.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "donko_17", - "from": [2.5, 0, 6.5], - "to": [4, 0.25, 10.75], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 4, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4, 6.5, 2.5, 6.75], "texture": "#1"}, - "east": {"uv": [3.75, 6.5, 4, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 10.5, 4, 10.75], "texture": "#1"}, - "west": {"uv": [2.5, 6.5, 2.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 6.5, 4, 10.75], "texture": "#1"}, - "down": {"uv": [2.5, 10.75, 4, 6.5], "texture": "#1"} + "north": { + "uv": [ + 4, + 6.5, + 2.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 6.5, + 4, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 4, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 4, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10.75, + 4, + 6.5 + ], + "texture": "#1" + } } }, { "name": "donko_18", - "from": [2.25, 0, 6.75], - "to": [2.5, 0.25, 11], + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2.5, 6.75, 2.25, 7], "texture": "#1"}, - "east": {"uv": [2.25, 6.75, 2.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 10.75, 2.5, 11], "texture": "#1"}, - "west": {"uv": [2.25, 6.75, 2.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 6.75, 2.5, 11], "texture": "#1"}, - "down": {"uv": [2.25, 11, 2.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 6.75, + 2.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 10.75, + 2.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 2.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 11, + 2.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "donko_19", - "from": [14.25, 0, 6.75], - "to": [15, 0.25, 10.25], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 6.75, 14.25, 7], "texture": "#1"}, - "east": {"uv": [14.75, 6.75, 15, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 10, 15, 10.25], "texture": "#1"}, - "west": {"uv": [14.25, 6.75, 14.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 6.75, 15, 10.25], "texture": "#1"}, - "down": {"uv": [14.25, 10.25, 15, 6.75], "texture": "#1"} + "north": { + "uv": [ + 15, + 6.75, + 14.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6.75, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 10, + 15, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 15, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 15, + 6.75 + ], + "texture": "#1" + } } }, { "name": "donko_20", - "from": [2, 0, 7], - "to": [2.25, 0.25, 11], + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2.25, 7, 2, 7.25], "texture": "#1"}, - "east": {"uv": [2, 7, 2.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 10.75, 2.25, 11], "texture": "#1"}, - "west": {"uv": [2, 7, 2.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 7, 2.25, 11], "texture": "#1"}, - "down": {"uv": [2, 11, 2.25, 7], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7, + 2, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10.75, + 2.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7, + 2.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 11, + 2.25, + 7 + ], + "texture": "#1" + } } }, { "name": "donko_21", - "from": [13.75, 0, 7], - "to": [14.25, 0.25, 10.25], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.25, 7, 13.75, 7.25], "texture": "#1"}, - "east": {"uv": [14, 7, 14.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 10, 14.25, 10.25], "texture": "#1"}, - "west": {"uv": [13.75, 7, 14, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 7, 14.25, 10.25], "texture": "#1"}, - "down": {"uv": [13.75, 10.25, 14.25, 7], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 7, + 13.75, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 10, + 14.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 7, + 14.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 10.25, + 14.25, + 7 + ], + "texture": "#1" + } } }, { "name": "donko_22", - "from": [15, 0, 7], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 7 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 7, 15, 7.25], "texture": "#1"}, - "east": {"uv": [15, 7, 15.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#1"}, - "west": {"uv": [15, 7, 15.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 7, 15.25, 10.25], "texture": "#1"}, - "down": {"uv": [15, 10.25, 15.25, 7], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 7, + 15, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 7, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 7, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 7, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 7 + ], + "texture": "#1" + } } }, { "name": "donko_23", - "from": [1.75, 0, 7.25], - "to": [2, 0.25, 10.75], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2, 7.25, 1.75, 7.5], "texture": "#1"}, - "east": {"uv": [1.75, 7.25, 2, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 10.5, 2, 10.75], "texture": "#1"}, - "west": {"uv": [1.75, 7.25, 2, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7.25, 2, 10.75], "texture": "#1"}, - "down": {"uv": [1.75, 10.75, 2, 7.25], "texture": "#1"} + "north": { + "uv": [ + 2, + 7.25, + 1.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 7.25, + 2, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 10.5, + 2, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 10.75, + 2, + 7.25 + ], + "texture": "#1" + } } }, { "name": "donko_24", - "from": [13.25, 0, 7.25], - "to": [13.75, 0.25, 10], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.75, 7.25, 13.25, 7.5], "texture": "#1"}, - "east": {"uv": [13.5, 7.25, 13.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 9.75, 13.75, 10], "texture": "#1"}, - "west": {"uv": [13.25, 7.25, 13.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 7.25, 13.75, 10], "texture": "#1"}, - "down": {"uv": [13.25, 10, 13.75, 7.25], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7.25, + 13.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 9.75, + 13.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 10, + 13.75, + 7.25 + ], + "texture": "#1" + } } }, { "name": "donko_25", - "from": [15.25, 0, 7.25], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 7.25, 15.25, 7.5], "texture": "#1"}, - "east": {"uv": [15.25, 7.25, 15.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#1"}, - "west": {"uv": [15.25, 7.25, 15.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 7.25, 15.5, 10], "texture": "#1"}, - "down": {"uv": [15.25, 10, 15.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "donko_26", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#1"}, - "east": {"uv": [1, 7.5, 1.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#1"}, - "west": {"uv": [1, 7.5, 1.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.5, 1.25, 8.5], "texture": "#1"}, - "down": {"uv": [1, 8.5, 1.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "donko_27", - "from": [1.5, 0, 7.5], - "to": [1.75, 0.25, 10.75], + "from": [ + 1.5, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [1.75, 7.5, 1.5, 7.75], "texture": "#1"}, - "east": {"uv": [1.5, 7.5, 1.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 10.5, 1.75, 10.75], "texture": "#1"}, - "west": {"uv": [1.5, 7.5, 1.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7.5, 1.75, 10.75], "texture": "#1"}, - "down": {"uv": [1.5, 10.75, 1.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7.5, + 1.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 10.5, + 1.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 1.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 10.75, + 1.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "donko_28", - "from": [11, 0, 7.5], - "to": [11.75, 0.25, 9.5], + "from": [ + 11, + 0, + 7.5 + ], + "to": [ + 11.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.75, 7.5, 11, 7.75], "texture": "#1"}, - "east": {"uv": [11.5, 7.5, 11.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 9.25, 11.75, 9.5], "texture": "#1"}, - "west": {"uv": [11, 7.5, 11.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 7.5, 11.75, 9.5], "texture": "#1"}, - "down": {"uv": [11, 9.5, 11.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 7.5, + 11, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 9.25, + 11.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 7.5, + 11.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 7.5, + 11.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 9.5, + 11.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "donko_29", - "from": [12.75, 0, 7.5], - "to": [13.25, 0.25, 9.75], + "from": [ + 12.75, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.25, 7.5, 12.75, 7.75], "texture": "#1"}, - "east": {"uv": [13, 7.5, 13.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 9.5, 13.25, 9.75], "texture": "#1"}, - "west": {"uv": [12.75, 7.5, 13, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 7.5, 13.25, 9.75], "texture": "#1"}, - "down": {"uv": [12.75, 9.75, 13.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 7.5, + 12.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 9.5, + 13.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 7.5, + 13, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 7.5, + 13.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 9.75, + 13.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "donko_30", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 8.25], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#1"}, - "east": {"uv": [0.75, 7.75, 1, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#1"}, - "west": {"uv": [0.75, 7.75, 1, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.75, 1, 8.25], "texture": "#1"}, - "down": {"uv": [0.75, 8.25, 1, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 7.75 + ], + "texture": "#1" + } } }, { "name": "donko_31", - "from": [1.25, 0, 7.75], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 7.75 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 7.75, 1.25, 8], "texture": "#1"}, - "east": {"uv": [1.25, 7.75, 1.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#1"}, - "west": {"uv": [1.25, 7.75, 1.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 7.75, 1.5, 8.75], "texture": "#1"}, - "down": {"uv": [1.25, 8.75, 1.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.75, + 1.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "donko_32", - "from": [11.75, 0, 7.75], - "to": [12.75, 0.25, 9.5], + "from": [ + 11.75, + 0, + 7.75 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 7.75, 11.75, 8], "texture": "#1"}, - "east": {"uv": [12.5, 7.75, 12.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 9.25, 12.75, 9.5], "texture": "#1"}, - "west": {"uv": [11.75, 7.75, 12, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 7.75, 12.75, 9.5], "texture": "#1"}, - "down": {"uv": [11.75, 9.5, 12.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 7.75, + 11.75, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 7.75, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 9.25, + 12.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 7.75, + 12, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 7.75, + 12.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 9.5, + 12.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "donko_33", - "from": [15.5, 0, 7.75], - "to": [15.75, 0.25, 9.5], + "from": [ + 15.5, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15.5, 8], "texture": "#1"}, - "east": {"uv": [15.5, 7.75, 15.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 9.25, 15.75, 9.5], "texture": "#1"}, - "west": {"uv": [15.5, 7.75, 15.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 7.75, 15.75, 9.5], "texture": "#1"}, - "down": {"uv": [15.5, 9.5, 15.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 7.75, + 15.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 7.75, + 15.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 7.75, + 15.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 9.5, + 15.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "donko_34", - "from": [0.5, 0, 8.25], - "to": [0.75, 0.25, 9.75], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 0.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#1"}, - "east": {"uv": [0.5, 8.25, 0.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 9.5, 0.75, 9.75], "texture": "#1"}, - "west": {"uv": [0.5, 8.25, 0.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 8.25, 0.75, 9.75], "texture": "#1"}, - "down": {"uv": [0.5, 9.75, 0.75, 8.25], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 8.25, + 0.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9.75, + 0.75, + 8.25 + ], + "texture": "#1" + } } }, { "name": "donko_35", - "from": [0.25, 0, 8.5], - "to": [0.5, 0.25, 9], + "from": [ + 0.25, + 0, + 8.5 + ], + "to": [ + 0.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.5, 8.5, 0.25, 8.75], "texture": "#1"}, - "east": {"uv": [0.25, 8.5, 0.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.75, 0.5, 9], "texture": "#1"}, - "west": {"uv": [0.25, 8.5, 0.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 8.5, 0.5, 9], "texture": "#1"}, - "down": {"uv": [0.25, 9, 0.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 8.5, + 0.25, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 9, + 0.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "donko_36", - "from": [0.75, 0, 8.5], - "to": [1, 0.25, 10], + "from": [ + 0.75, + 0, + 8.5 + ], + "to": [ + 1, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1, 8.5, 0.75, 8.75], "texture": "#1"}, - "east": {"uv": [0.75, 8.5, 1, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9.75, 1, 10], "texture": "#1"}, - "west": {"uv": [0.75, 8.5, 1, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 8.5, 1, 10], "texture": "#1"}, - "down": {"uv": [0.75, 10, 1, 8.5], "texture": "#1"} + "north": { + "uv": [ + 1, + 8.5, + 0.75, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 8.5, + 1, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9.75, + 1, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 8.5, + 1, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 8.5, + 1, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 10, + 1, + 8.5 + ], + "texture": "#1" + } } }, { "name": "donko_37", - "from": [1, 0, 8.75], - "to": [1.25, 0.25, 10.25], + "from": [ + 1, + 0, + 8.75 + ], + "to": [ + 1.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.25, 8.75, 1, 9], "texture": "#1"}, - "east": {"uv": [1, 8.75, 1.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 10, 1.25, 10.25], "texture": "#1"}, - "west": {"uv": [1, 8.75, 1.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8.75, 1.25, 10.25], "texture": "#1"}, - "down": {"uv": [1, 10.25, 1.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8.75, + 1, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8.75, + 1.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 10, + 1.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.75, + 1.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8.75, + 1.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 10.25, + 1.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "donko_38", - "from": [1.25, 0, 9], - "to": [1.5, 0.25, 10.5], + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#1"}, - "east": {"uv": [1.25, 9, 1.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 10.25, 1.5, 10.5], "texture": "#1"}, - "west": {"uv": [1.25, 9, 1.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 9, 1.5, 10.5], "texture": "#1"}, - "down": {"uv": [1.25, 10.5, 1.5, 9], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 1.5, + 9 + ], + "texture": "#1" + } } }, { "name": "donko_39", - "from": [11, 0, 9.5], - "to": [11.5, 0.25, 10.75], + "from": [ + 11, + 0, + 9.5 + ], + "to": [ + 11.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.5, 9.5, 11, 9.75], "texture": "#1"}, - "east": {"uv": [11.25, 9.5, 11.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 10.5, 11.5, 10.75], "texture": "#1"}, - "west": {"uv": [11, 9.5, 11.25, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 9.5, 11.5, 10.75], "texture": "#1"}, - "down": {"uv": [11, 10.75, 11.5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 9.5, + 11, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 10.5, + 11.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 9.5, + 11.25, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 9.5, + 11.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 10.75, + 11.5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "donko_40", - "from": [11.5, 0, 10], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 10 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 10, 11.5, 10.25], "texture": "#1"}, - "east": {"uv": [11.5, 10, 11.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#1"}, - "west": {"uv": [11.5, 10, 11.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 10, 11.75, 10.5], "texture": "#1"}, - "down": {"uv": [11.5, 10.5, 11.75, 10], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 10, + 11.5, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 10, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 10, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 10, + 11.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10 + ], + "texture": "#1" + } } }, { "name": "donko_41", - "from": [6.75, 0, 10.25], - "to": [7.5, 0.25, 10.75], + "from": [ + 6.75, + 0, + 10.25 + ], + "to": [ + 7.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7.5, 10.25, 6.75, 10.5], "texture": "#1"}, - "east": {"uv": [7.25, 10.25, 7.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 10.5, 7.5, 10.75], "texture": "#1"}, - "west": {"uv": [6.75, 10.25, 7, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 10.25, 7.5, 10.75], "texture": "#1"}, - "down": {"uv": [6.75, 10.75, 7.5, 10.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 10.5, + 7.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 10.25, + 7, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 10.25, + 7.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10.75, + 7.5, + 10.25 + ], + "texture": "#1" + } } }, { "name": "donko_42", - "from": [7.5, 0, 10.25], - "to": [7.75, 0.25, 10.5], + "from": [ + 7.5, + 0, + 10.25 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.75, 10.25, 7.5, 10.5], "texture": "#1"}, - "east": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#1"}, - "west": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#1"}, - "down": {"uv": [7.5, 10.5, 7.75, 10.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.25 + ], + "texture": "#1" + } } }, { "name": "donko_43", - "from": [14.25, 0, 10.25], - "to": [14.75, 0.25, 10.5], + "from": [ + 14.25, + 0, + 10.25 + ], + "to": [ + 14.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.75, 10.25, 14.25, 10.5], "texture": "#1"}, - "east": {"uv": [14.5, 10.25, 14.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 10.25, 14.75, 10.5], "texture": "#1"}, - "west": {"uv": [14.25, 10.25, 14.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 10.25, 14.75, 10.5], "texture": "#1"}, - "down": {"uv": [14.25, 10.5, 14.75, 10.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 10.25, + 14.25, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 10.25, + 14.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 10.25, + 14.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 10.25, + 14.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 10.5, + 14.75, + 10.25 + ], + "texture": "#1" + } } }, { "name": "donko_44", - "from": [4, 0, 10.5], - "to": [4.25, 0.25, 10.75], + "from": [ + 4, + 0, + 10.5 + ], + "to": [ + 4.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4.25, 10.5, 4, 10.75], "texture": "#1"}, - "east": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 10.5, 4.25, 10.75], "texture": "#1"}, - "west": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 10.5, 4.25, 10.75], "texture": "#1"}, - "down": {"uv": [4, 10.75, 4.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 10.5, + 4, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 10.75, + 4.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "donko_45", - "from": [5.5, 0, 10.5], - "to": [5.75, 0.25, 10.75], + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.75, 10.5, 5.5, 10.75], "texture": "#1"}, - "east": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#1"}, - "west": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#1"}, - "down": {"uv": [5.5, 10.75, 5.75, 10.5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 5.75, + 10.5 + ], + "texture": "#1" + } } }, { "name": "donko_46", - "from": [9.5, 0, 10.5], - "to": [10.25, 0.25, 10.75], + "from": [ + 9.5, + 0, + 10.5 + ], + "to": [ + 10.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.25, 10.5, 9.5, 10.75], "texture": "#1"}, - "east": {"uv": [10, 10.5, 10.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 10.5, 10.25, 10.75], "texture": "#1"}, - "west": {"uv": [9.5, 10.5, 9.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 10.5, 10.25, 10.75], "texture": "#1"}, - "down": {"uv": [9.5, 10.75, 10.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 10.5, + 10.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10.5, + 10.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 10.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 10.75, + 10.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "donko_47", - "from": [2.5, 0, 10.75], - "to": [3.25, 0.25, 11], + "from": [ + 2.5, + 0, + 10.75 + ], + "to": [ + 3.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.25, 10.75, 2.5, 11], "texture": "#1"}, - "east": {"uv": [3, 10.75, 3.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 10.75, 3.25, 11], "texture": "#1"}, - "west": {"uv": [2.5, 10.75, 2.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 10.75, 3.25, 11], "texture": "#1"}, - "down": {"uv": [2.5, 11, 3.25, 10.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 10.75, + 2.5, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 10.75, + 3.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.75, + 3.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 10.75, + 2.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 10.75, + 3.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 11, + 3.25, + 10.75 + ], + "texture": "#1" + } } }, { "name": "donko_48", - "from": [6.75, 0, 10.75], - "to": [7, 0.25, 11], + "from": [ + 6.75, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7, 10.75, 6.75, 11], "texture": "#1"}, - "east": {"uv": [6.75, 10.75, 7, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 10.75, 7, 11], "texture": "#1"}, - "west": {"uv": [6.75, 10.75, 7, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 10.75, 7, 11], "texture": "#1"}, - "down": {"uv": [6.75, 11, 7, 10.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 10.75, + 6.75, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 11, + 7, + 10.75 + ], + "texture": "#1" + } } }, { "name": "donko_49", - "from": [9.75, 0, 10.75], - "to": [10.25, 0.25, 11], + "from": [ + 9.75, + 0, + 10.75 + ], + "to": [ + 10.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.25, 10.75, 9.75, 11], "texture": "#1"}, - "east": {"uv": [10, 10.75, 10.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#1"}, - "west": {"uv": [9.75, 10.75, 10, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#1"}, - "down": {"uv": [9.75, 11, 10.25, 10.75], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 10.75, + 9.75, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 10.75, + 10.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 10.75, + 10, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 11, + 10.25, + 10.75 + ], + "texture": "#1" + } } }, { "name": "donko_50", - "from": [11, 0, 10.75], - "to": [11.25, 0.25, 11], + "from": [ + 11, + 0, + 10.75 + ], + "to": [ + 11.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.25, 10.75, 11, 11], "texture": "#1"}, - "east": {"uv": [11, 10.75, 11.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 10.75, 11.25, 11], "texture": "#1"}, - "west": {"uv": [11, 10.75, 11.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 10.75, 11.25, 11], "texture": "#1"}, - "down": {"uv": [11, 11, 11.25, 10.75], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 10.75, + 11, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 10.75, + 11.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 10.75, + 11.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 10.75, + 11.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 10.75, + 11.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 11, + 11.25, + 10.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 3, 7.5], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 3, + 7.5 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 3, 7.5], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 3, + 7.5 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "firstperson_righthand": { - "rotation": [86, -23, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_lefthand": { - "rotation": [86, -23, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [1.47, 1.47, 1.47] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 1.47, + 1.47, + 1.47 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 9.75, 16.5], - "scale": [1.31, 1.31, 1.31] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 9.75, + 16.5 + ], + "scale": [ + 1.31, + 1.31, + 1.31 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "donko", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/dorado.json b/pack/assets/minecraft/models/fish/dorado.json index 23f50a97..3cf83f87 100644 --- a/pack/assets/minecraft/models/fish/dorado.json +++ b/pack/assets/minecraft/models/fish/dorado.json @@ -2,720 +2,3830 @@ "__name": "ドラド", "credit": "Made with Blockbench", "textures": { - "1": "fish/dorado" + "1": "item/fish/dorado" }, "elements": [ { "name": "dorado_0", - "from": [8.75, 0, 3.5], - "to": [9.75, 0.25, 4.75], + "from": [ + 8.75, + 0, + 3.5 + ], + "to": [ + 9.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [9.75, 3.5, 8.75, 3.75], "texture": "#1"}, - "east": {"uv": [9.5, 3.5, 9.75, 4.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 4.5, 9.75, 4.75], "texture": "#1"}, - "west": {"uv": [8.75, 3.5, 9, 4.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 3.5, 9.75, 4.75], "texture": "#1"}, - "down": {"uv": [8.75, 4.75, 9.75, 3.5], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 3.5, + 8.75, + 3.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 9.75, + 4.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 4.5, + 9.75, + 4.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 3.5, + 9, + 4.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 3.5, + 9.75, + 4.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 4.75, + 9.75, + 3.5 + ], + "texture": "#1" + } } }, { "name": "dorado_1", - "from": [9.75, 0, 3.5], - "to": [10, 0.25, 4.25], + "from": [ + 9.75, + 0, + 3.5 + ], + "to": [ + 10, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [10, 3.5, 9.75, 3.75], "texture": "#1"}, - "east": {"uv": [9.75, 3.5, 10, 4.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 4, 10, 4.25], "texture": "#1"}, - "west": {"uv": [9.75, 3.5, 10, 4.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 3.5, 10, 4.25], "texture": "#1"}, - "down": {"uv": [9.75, 4.25, 10, 3.5], "texture": "#1"} + "north": { + "uv": [ + 10, + 3.5, + 9.75, + 3.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 3.5, + 10, + 4.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 4, + 10, + 4.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 3.5, + 10, + 4.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 3.5, + 10, + 4.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 4.25, + 10, + 3.5 + ], + "texture": "#1" + } } }, { "name": "dorado_2", - "from": [8.25, 0, 3.75], - "to": [8.75, 0.25, 11.25], + "from": [ + 8.25, + 0, + 3.75 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 3.75, 8.25, 4], "texture": "#1"}, - "east": {"uv": [8.5, 3.75, 8.75, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 11, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [8.25, 3.75, 8.5, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 3.75, 8.75, 11.25], "texture": "#1"}, - "down": {"uv": [8.25, 11.25, 8.75, 3.75], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 3.75, + 8.25, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 3.75, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 11, + 8.75, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 3.75, + 8.5, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 3.75, + 8.75, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 11.25, + 8.75, + 3.75 + ], + "texture": "#1" + } } }, { "name": "dorado_3", - "from": [10, 0, 3.75], - "to": [10.25, 0.25, 4], + "from": [ + 10, + 0, + 3.75 + ], + "to": [ + 10.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [10.25, 3.75, 10, 4], "texture": "#1"}, - "east": {"uv": [10, 3.75, 10.25, 4], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 3.75, 10.25, 4], "texture": "#1"}, - "west": {"uv": [10, 3.75, 10.25, 4], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 3.75, 10.25, 4], "texture": "#1"}, - "down": {"uv": [10, 4, 10.25, 3.75], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 3.75, + 10, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 3.75, + 10.25, + 4 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 3.75, + 10.25, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 3.75, + 10.25, + 4 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 3.75, + 10.25, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 4, + 10.25, + 3.75 + ], + "texture": "#1" + } } }, { "name": "dorado_4", - "from": [7.75, 0, 4], - "to": [8.25, 0.25, 11], + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.25, 4, 7.75, 4.25], "texture": "#1"}, - "east": {"uv": [8, 4, 8.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 10.75, 8.25, 11], "texture": "#1"}, - "west": {"uv": [7.75, 4, 8, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 4, 8.25, 11], "texture": "#1"}, - "down": {"uv": [7.75, 11, 8.25, 4], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 4, + 7.75, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 10.75, + 8.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 4, + 8.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 11, + 8.25, + 4 + ], + "texture": "#1" + } } }, { "name": "dorado_5", - "from": [7.5, 0, 4.25], - "to": [7.75, 0.25, 10.75], + "from": [ + 7.5, + 0, + 4.25 + ], + "to": [ + 7.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7.75, 4.25, 7.5, 4.5], "texture": "#1"}, - "east": {"uv": [7.5, 4.25, 7.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 10.5, 7.75, 10.75], "texture": "#1"}, - "west": {"uv": [7.5, 4.25, 7.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 4.25, 7.75, 10.75], "texture": "#1"}, - "down": {"uv": [7.5, 10.75, 7.75, 4.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 4.25, + 7.5, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 4.25, + 7.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 10.75, + 7.75, + 4.25 + ], + "texture": "#1" + } } }, { "name": "dorado_6", - "from": [4.75, 0, 4.5], - "to": [7.5, 0.25, 10.25], + "from": [ + 4.75, + 0, + 4.5 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.5, 4.5, 4.75, 4.75], "texture": "#1"}, - "east": {"uv": [7.25, 4.5, 7.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 10, 7.5, 10.25], "texture": "#1"}, - "west": {"uv": [4.75, 4.5, 5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 4.5, 7.5, 10.25], "texture": "#1"}, - "down": {"uv": [4.75, 10.25, 7.5, 4.5], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 10, + 7.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 4.5, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 4.5, + 7.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 7.5, + 4.5 + ], + "texture": "#1" + } } }, { "name": "dorado_7", - "from": [4, 0, 4.75], - "to": [4.75, 0.25, 10.5], + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.75, 4.75, 4, 5], "texture": "#1"}, - "east": {"uv": [4.5, 4.75, 4.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 10.25, 4.75, 10.5], "texture": "#1"}, - "west": {"uv": [4, 4.75, 4.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 4.75, 4.75, 10.5], "texture": "#1"}, - "down": {"uv": [4, 10.5, 4.75, 4.75], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 4.75, + 4, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 4.75, + 4.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10.25, + 4.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 10.5, + 4.75, + 4.75 + ], + "texture": "#1" + } } }, { "name": "dorado_8", - "from": [8.75, 0, 4.75], - "to": [9.5, 0.25, 10], + "from": [ + 8.75, + 0, + 4.75 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 4.75, 8.75, 5], "texture": "#1"}, - "east": {"uv": [9.25, 4.75, 9.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9.75, 9.5, 10], "texture": "#1"}, - "west": {"uv": [8.75, 4.75, 9, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 4.75, 9.5, 10], "texture": "#1"}, - "down": {"uv": [8.75, 10, 9.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 4.75, + 8.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 4.75, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 4.75, + 9, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 4.75, + 9.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "dorado_9", - "from": [15, 0, 4.75], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 4.75 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 4.75, 15, 5], "texture": "#1"}, - "east": {"uv": [15, 4.75, 15.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#1"}, - "west": {"uv": [15, 4.75, 15.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 4.75, 15.25, 10.25], "texture": "#1"}, - "down": {"uv": [15, 10.25, 15.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 4.75, + 15, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 4.75, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 4.75, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 4.75, + 15.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "dorado_10", - "from": [3.5, 0, 5], - "to": [4, 0.25, 10.5], + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4, 5, 3.5, 5.25], "texture": "#1"}, - "east": {"uv": [3.75, 5, 4, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 10.25, 4, 10.5], "texture": "#1"}, - "west": {"uv": [3.5, 5, 3.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 5, 4, 10.5], "texture": "#1"}, - "down": {"uv": [3.5, 10.5, 4, 5], "texture": "#1"} + "north": { + "uv": [ + 4, + 5, + 3.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.25, + 4, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 5, + 4, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 4, + 5 + ], + "texture": "#1" + } } }, { "name": "dorado_11", - "from": [14.75, 0, 5], - "to": [15, 0.25, 10], + "from": [ + 14.75, + 0, + 5 + ], + "to": [ + 15, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15, 5, 14.75, 5.25], "texture": "#1"}, - "east": {"uv": [14.75, 5, 15, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9.75, 15, 10], "texture": "#1"}, - "west": {"uv": [14.75, 5, 15, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 5, 15, 10], "texture": "#1"}, - "down": {"uv": [14.75, 10, 15, 5], "texture": "#1"} + "north": { + "uv": [ + 15, + 5, + 14.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 5, + 15, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9.75, + 15, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 5, + 15, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 5, + 15, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 10, + 15, + 5 + ], + "texture": "#1" + } } }, { "name": "dorado_12", - "from": [15.25, 0, 5], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 5 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 5, 15.25, 5.25], "texture": "#1"}, - "east": {"uv": [15.25, 5, 15.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#1"}, - "west": {"uv": [15.25, 5, 15.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 5, 15.5, 10], "texture": "#1"}, - "down": {"uv": [15.25, 10, 15.5, 5], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 5, + 15.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 5, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 5, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 5, + 15.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 5 + ], + "texture": "#1" + } } }, { "name": "dorado_13", - "from": [3, 0, 5.25], - "to": [3.5, 0.25, 10.5], + "from": [ + 3, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.5, 5.25, 3, 5.5], "texture": "#1"}, - "east": {"uv": [3.25, 5.25, 3.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 10.25, 3.5, 10.5], "texture": "#1"}, - "west": {"uv": [3, 5.25, 3.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 5.25, 3.5, 10.5], "texture": "#1"}, - "down": {"uv": [3, 10.5, 3.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 5.25, + 3, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 5.25, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "dorado_14", - "from": [9.5, 0, 5.25], - "to": [9.75, 0.25, 10], + "from": [ + 9.5, + 0, + 5.25 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 5.25, 9.5, 5.5], "texture": "#1"}, - "east": {"uv": [9.5, 5.25, 9.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#1"}, - "west": {"uv": [9.5, 5.25, 9.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 5.25, 9.75, 10], "texture": "#1"}, - "down": {"uv": [9.5, 10, 9.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 5.25, + 9.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 5.25, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 5.25, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 5.25, + 9.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 10, + 9.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "dorado_15", - "from": [14.5, 0, 5.25], - "to": [14.75, 0.25, 9.75], + "from": [ + 14.5, + 0, + 5.25 + ], + "to": [ + 14.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.75, 5.25, 14.5, 5.5], "texture": "#1"}, - "east": {"uv": [14.5, 5.25, 14.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.5, 14.75, 9.75], "texture": "#1"}, - "west": {"uv": [14.5, 5.25, 14.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 5.25, 14.75, 9.75], "texture": "#1"}, - "down": {"uv": [14.5, 9.75, 14.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 5.25, + 14.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 5.25, + 14.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 5.25, + 14.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 5.25, + 14.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9.75, + 14.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "dorado_16", - "from": [2.75, 0, 5.5], - "to": [3, 0.25, 10.25], + "from": [ + 2.75, + 0, + 5.5 + ], + "to": [ + 3, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3, 5.5, 2.75, 5.75], "texture": "#1"}, - "east": {"uv": [2.75, 5.5, 3, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 10, 3, 10.25], "texture": "#1"}, - "west": {"uv": [2.75, 5.5, 3, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 5.5, 3, 10.25], "texture": "#1"}, - "down": {"uv": [2.75, 10.25, 3, 5.5], "texture": "#1"} + "north": { + "uv": [ + 3, + 5.5, + 2.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 5.5, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 5.5, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 5.5, + 3, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 3, + 5.5 + ], + "texture": "#1" + } } }, { "name": "dorado_17", - "from": [9.75, 0, 5.5], - "to": [10.5, 0.25, 10], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 5.5, 9.75, 5.75], "texture": "#1"}, - "east": {"uv": [10.25, 5.5, 10.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9.75, 10.5, 10], "texture": "#1"}, - "west": {"uv": [9.75, 5.5, 10, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 5.5, 10.5, 10], "texture": "#1"}, - "down": {"uv": [9.75, 10, 10.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 5.5, + 9.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 10, + 10.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "dorado_18", - "from": [14.25, 0, 5.5], - "to": [14.5, 0.25, 9.5], + "from": [ + 14.25, + 0, + 5.5 + ], + "to": [ + 14.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.5, 5.5, 14.25, 5.75], "texture": "#1"}, - "east": {"uv": [14.25, 5.5, 14.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 9.25, 14.5, 9.5], "texture": "#1"}, - "west": {"uv": [14.25, 5.5, 14.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 5.5, 14.5, 9.5], "texture": "#1"}, - "down": {"uv": [14.25, 9.5, 14.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 5.5, + 14.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "dorado_19", - "from": [2.5, 0, 5.75], - "to": [2.75, 0.25, 10.25], + "from": [ + 2.5, + 0, + 5.75 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.75, 5.75, 2.5, 6], "texture": "#1"}, - "east": {"uv": [2.5, 5.75, 2.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#1"}, - "west": {"uv": [2.5, 5.75, 2.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 5.75, 2.75, 10.25], "texture": "#1"}, - "down": {"uv": [2.5, 10.25, 2.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 5.75, + 2.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 2.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "dorado_20", - "from": [10.5, 0, 5.75], - "to": [11.25, 0.25, 10.5], + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 5.75, 10.5, 6], "texture": "#1"}, - "east": {"uv": [11, 5.75, 11.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 10.25, 11.25, 10.5], "texture": "#1"}, - "west": {"uv": [10.5, 5.75, 10.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 5.75, 11.25, 10.5], "texture": "#1"}, - "down": {"uv": [10.5, 10.5, 11.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 5.75, + 10.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 5.75, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 10.25, + 11.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 11.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 11.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "dorado_21", - "from": [12.5, 0, 5.75], - "to": [12.75, 0.25, 9], + "from": [ + 12.5, + 0, + 5.75 + ], + "to": [ + 12.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.75, 5.75, 12.5, 6], "texture": "#1"}, - "east": {"uv": [12.5, 5.75, 12.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.5, 8.75, 12.75, 9], "texture": "#1"}, - "west": {"uv": [12.5, 5.75, 12.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.5, 5.75, 12.75, 9], "texture": "#1"}, - "down": {"uv": [12.5, 9, 12.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 5.75, + 12.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 5.75, + 12.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 5.75, + 12.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.5, + 5.75, + 12.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 9, + 12.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "dorado_22", - "from": [14, 0, 5.75], - "to": [14.25, 0.25, 9.25], + "from": [ + 14, + 0, + 5.75 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.25, 5.75, 14, 6], "texture": "#1"}, - "east": {"uv": [14, 5.75, 14.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9, 14.25, 9.25], "texture": "#1"}, - "west": {"uv": [14, 5.75, 14.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 5.75, 14.25, 9.25], "texture": "#1"}, - "down": {"uv": [14, 9.25, 14.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 5.75, + 14, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 5.75, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 5.75, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 5.75, + 14.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "dorado_23", - "from": [2.25, 0, 6], - "to": [2.5, 0.25, 10.25], + "from": [ + 2.25, + 0, + 6 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 6, 2.25, 6.25], "texture": "#1"}, - "east": {"uv": [2.25, 6, 2.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#1"}, - "west": {"uv": [2.25, 6, 2.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 6, 2.5, 10.25], "texture": "#1"}, - "down": {"uv": [2.25, 10.25, 2.5, 6], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 6, + 2.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 6, + 2.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 6 + ], + "texture": "#1" + } } }, { "name": "dorado_24", - "from": [11.25, 0, 6], - "to": [12, 0.25, 9.5], + "from": [ + 11.25, + 0, + 6 + ], + "to": [ + 12, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12, 6, 11.25, 6.25], "texture": "#1"}, - "east": {"uv": [11.75, 6, 12, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 9.25, 12, 9.5], "texture": "#1"}, - "west": {"uv": [11.25, 6, 11.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 6, 12, 9.5], "texture": "#1"}, - "down": {"uv": [11.25, 9.5, 12, 6], "texture": "#1"} + "north": { + "uv": [ + 12, + 6, + 11.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 6, + 12, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 12, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 6, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 6, + 12, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 12, + 6 + ], + "texture": "#1" + } } }, { "name": "dorado_25", - "from": [12.25, 0, 6], - "to": [12.5, 0.25, 9], + "from": [ + 12.25, + 0, + 6 + ], + "to": [ + 12.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.5, 6, 12.25, 6.25], "texture": "#1"}, - "east": {"uv": [12.25, 6, 12.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 8.75, 12.5, 9], "texture": "#1"}, - "west": {"uv": [12.25, 6, 12.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 6, 12.5, 9], "texture": "#1"}, - "down": {"uv": [12.25, 9, 12.5, 6], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 6, + 12.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 6, + 12.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 8.75, + 12.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 6, + 12.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 6, + 12.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 9, + 12.5, + 6 + ], + "texture": "#1" + } } }, { "name": "dorado_26", - "from": [12.75, 0, 6], - "to": [13, 0.25, 9], + "from": [ + 12.75, + 0, + 6 + ], + "to": [ + 13, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13, 6, 12.75, 6.25], "texture": "#1"}, - "east": {"uv": [12.75, 6, 13, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 8.75, 13, 9], "texture": "#1"}, - "west": {"uv": [12.75, 6, 13, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 6, 13, 9], "texture": "#1"}, - "down": {"uv": [12.75, 9, 13, 6], "texture": "#1"} + "north": { + "uv": [ + 13, + 6, + 12.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 6, + 13, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 8.75, + 13, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 6, + 13, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 6, + 13, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 9, + 13, + 6 + ], + "texture": "#1" + } } }, { "name": "dorado_27", - "from": [13.75, 0, 6], - "to": [14, 0.25, 9], + "from": [ + 13.75, + 0, + 6 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 6, 13.75, 6.25], "texture": "#1"}, - "east": {"uv": [13.75, 6, 14, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 8.75, 14, 9], "texture": "#1"}, - "west": {"uv": [13.75, 6, 14, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6, 14, 9], "texture": "#1"}, - "down": {"uv": [13.75, 9, 14, 6], "texture": "#1"} + "north": { + "uv": [ + 14, + 6, + 13.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 6, + 14, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6, + 14, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6, + 14, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 9, + 14, + 6 + ], + "texture": "#1" + } } }, { "name": "dorado_28", - "from": [1.75, 0, 6.25], - "to": [2.25, 0.25, 10], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.25, 6.25, 1.75, 6.5], "texture": "#1"}, - "east": {"uv": [2, 6.25, 2.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.75, 2.25, 10], "texture": "#1"}, - "west": {"uv": [1.75, 6.25, 2, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 6.25, 2.25, 10], "texture": "#1"}, - "down": {"uv": [1.75, 10, 2.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 6.25, + 1.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 6.25, + 2.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 10, + 2.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "dorado_29", - "from": [12, 0, 6.25], - "to": [12.25, 0.25, 9.25], + "from": [ + 12, + 0, + 6.25 + ], + "to": [ + 12.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.25, 6.25, 12, 6.5], "texture": "#1"}, - "east": {"uv": [12, 6.25, 12.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 9, 12.25, 9.25], "texture": "#1"}, - "west": {"uv": [12, 6.25, 12.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 6.25, 12.25, 9.25], "texture": "#1"}, - "down": {"uv": [12, 9.25, 12.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 6.25, + 12, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 6.25, + 12.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 9, + 12.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 6.25, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 6.25, + 12.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "dorado_30", - "from": [13.5, 0, 6.25], - "to": [13.75, 0.25, 8.5], + "from": [ + 13.5, + 0, + 6.25 + ], + "to": [ + 13.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.75, 6.25, 13.5, 6.5], "texture": "#1"}, - "east": {"uv": [13.5, 6.25, 13.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8.25, 13.75, 8.5], "texture": "#1"}, - "west": {"uv": [13.5, 6.25, 13.75, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 6.25, 13.75, 8.5], "texture": "#1"}, - "down": {"uv": [13.5, 8.5, 13.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 6.25, + 13.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 6.25, + 13.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 6.25, + 13.75, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 6.25, + 13.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 8.5, + 13.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "dorado_31", - "from": [1.5, 0, 6.5], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.5, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 6.5, 1.5, 6.75], "texture": "#1"}, - "east": {"uv": [1.5, 6.5, 1.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#1"}, - "west": {"uv": [1.5, 6.5, 1.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 6.5, 1.75, 9.75], "texture": "#1"}, - "down": {"uv": [1.5, 9.75, 1.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 6.5, + 1.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 6.5, + 1.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "dorado_32", - "from": [13, 0, 6.5], - "to": [13.5, 0.25, 8.25], + "from": [ + 13, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.5, 6.5, 13, 6.75], "texture": "#1"}, - "east": {"uv": [13.25, 6.5, 13.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 8, 13.5, 8.25], "texture": "#1"}, - "west": {"uv": [13, 6.5, 13.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6.5, 13.5, 8.25], "texture": "#1"}, - "down": {"uv": [13, 8.25, 13.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 6.5, + 13, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 8, + 13.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6.5, + 13.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6.5, + 13.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 8.25, + 13.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "dorado_33", - "from": [1.25, 0, 6.75], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 6.75, 1.25, 7], "texture": "#1"}, - "east": {"uv": [1.25, 6.75, 1.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "west": {"uv": [1.25, 6.75, 1.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 6.75, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [1.25, 9.75, 1.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 6.75, + 1.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 6.75, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "dorado_34", - "from": [1, 0, 7], - "to": [1.25, 0.25, 9.5], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#1"}, - "east": {"uv": [1, 7, 1.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 9.25, 1.25, 9.5], "texture": "#1"}, - "west": {"uv": [1, 7, 1.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7, 1.25, 9.5], "texture": "#1"}, - "down": {"uv": [1, 9.5, 1.25, 7], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.25, + 7 + ], + "texture": "#1" + } } }, { "name": "dorado_35", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#1"}, - "east": {"uv": [0.75, 7.25, 1, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#1"}, - "west": {"uv": [0.75, 7.25, 1, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.25, 1, 9.25], "texture": "#1"}, - "down": {"uv": [0.75, 9.25, 1, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 7.25 + ], + "texture": "#1" + } } }, { "name": "dorado_36", - "from": [15.5, 0, 7.25], - "to": [15.75, 0.25, 7.75], + "from": [ + 15.5, + 0, + 7.25 + ], + "to": [ + 15.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.75, 7.25, 15.5, 7.5], "texture": "#1"}, - "east": {"uv": [15.5, 7.25, 15.75, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 7.5, 15.75, 7.75], "texture": "#1"}, - "west": {"uv": [15.5, 7.25, 15.75, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 7.25, 15.75, 7.75], "texture": "#1"}, - "down": {"uv": [15.5, 7.75, 15.75, 7.25], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 7.25, + 15.5, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 7.5, + 15.75, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 7.75, + 15.75, + 7.25 + ], + "texture": "#1" + } } }, { "name": "dorado_37", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#1"}, - "east": {"uv": [0.5, 7.5, 0.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#1"}, - "west": {"uv": [0.5, 7.5, 0.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.5, 0.75, 9], "texture": "#1"}, - "down": {"uv": [0.5, 9, 0.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "dorado_38", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#1"}, - "east": {"uv": [0.25, 7.75, 0.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#1"}, - "west": {"uv": [0.25, 7.75, 0.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7.75, 0.5, 8.75], "texture": "#1"}, - "down": {"uv": [0.25, 8.75, 0.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "dorado_39", - "from": [13, 0, 8.5], - "to": [13.25, 0.25, 8.75], + "from": [ + 13, + 0, + 8.5 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 8.5, 13, 8.75], "texture": "#1"}, - "east": {"uv": [13, 8.5, 13.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#1"}, - "west": {"uv": [13, 8.5, 13.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#1"}, - "down": {"uv": [13, 8.75, 13.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 8.5, + 13, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "dorado_40", - "from": [11.25, 0, 9.5], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.25, + 0, + 9.5 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 9.5, 11.25, 9.75], "texture": "#1"}, - "east": {"uv": [11.5, 9.5, 11.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 10.25, 11.75, 10.5], "texture": "#1"}, - "west": {"uv": [11.25, 9.5, 11.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 9.5, 11.75, 10.5], "texture": "#1"}, - "down": {"uv": [11.25, 10.5, 11.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 9.5, + 11.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 9.5, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 9.5, + 11.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "dorado_41", - "from": [8.75, 0, 10], - "to": [9, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 10, 8.75, 10.25], "texture": "#1"}, - "east": {"uv": [8.75, 10, 9, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#1"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 10, 9, 10.25], "texture": "#1"}, - "down": {"uv": [8.75, 10.25, 9, 10], "texture": "#1"} + "north": { + "uv": [ + 9, + 10, + 8.75, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 10 + ], + "texture": "#1" + } } }, { "name": "dorado_42", - "from": [10, 0, 10], - "to": [10.5, 0.25, 10.25], + "from": [ + 10, + 0, + 10 + ], + "to": [ + 10.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.5, 10, 10, 10.25], "texture": "#1"}, - "east": {"uv": [10.25, 10, 10.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 10, 10.5, 10.25], "texture": "#1"}, - "west": {"uv": [10, 10, 10.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 10, 10.5, 10.25], "texture": "#1"}, - "down": {"uv": [10, 10.25, 10.5, 10], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 10, + 10, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 10.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 10, + 10.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.5, + 10 + ], + "texture": "#1" + } } }, { "name": "dorado_43", - "from": [4.75, 0, 10.25], - "to": [6.75, 0.25, 10.5], + "from": [ + 4.75, + 0, + 10.25 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 10.25, 4.75, 10.5], "texture": "#1"}, - "east": {"uv": [6.5, 10.25, 6.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 10.25, 6.75, 10.5], "texture": "#1"}, - "west": {"uv": [4.75, 10.25, 5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 10.25, 6.75, 10.5], "texture": "#1"}, - "down": {"uv": [4.75, 10.5, 6.75, 10.25], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 10.25, + 4.75, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 10.25, + 6.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 10.25, + 6.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 10.5, + 6.75, + 10.25 + ], + "texture": "#1" + } } }, { "name": "dorado_44", - "from": [7.25, 0, 10.25], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 10.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 10.25, 7.25, 10.5], "texture": "#1"}, - "east": {"uv": [7.25, 10.25, 7.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#1"}, - "west": {"uv": [7.25, 10.25, 7.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#1"}, - "down": {"uv": [7.25, 10.5, 7.5, 10.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 10.25, + 7.25, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.25 + ], + "texture": "#1" + } } }, { "name": "dorado_45", - "from": [5.25, 0, 10.5], - "to": [7, 0.25, 10.75], + "from": [ + 5.25, + 0, + 10.5 + ], + "to": [ + 7, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7, 10.5, 5.25, 10.75], "texture": "#1"}, - "east": {"uv": [6.75, 10.5, 7, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 10.5, 7, 10.75], "texture": "#1"}, - "west": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 10.5, 7, 10.75], "texture": "#1"}, - "down": {"uv": [5.25, 10.75, 7, 10.5], "texture": "#1"} + "north": { + "uv": [ + 7, + 10.5, + 5.25, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 7, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 10.5, + 7, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 7, + 10.5 + ], + "texture": "#1" + } } }, { "name": "dorado_46", - "from": [8.75, 0, 10.5], - "to": [9, 0.25, 11], + "from": [ + 8.75, + 0, + 10.5 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 10.5, 8.75, 10.75], "texture": "#1"}, - "east": {"uv": [8.75, 10.5, 9, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 10.75, 9, 11], "texture": "#1"}, - "west": {"uv": [8.75, 10.5, 9, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 10.5, 9, 11], "texture": "#1"}, - "down": {"uv": [8.75, 11, 9, 10.5], "texture": "#1"} + "north": { + "uv": [ + 9, + 10.5, + 8.75, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 10.5, + 9, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 10.5, + 9, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 10.5, + 9, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 11, + 9, + 10.5 + ], + "texture": "#1" + } } }, { "name": "dorado_47", - "from": [10.75, 0, 10.5], - "to": [11.5, 0.25, 10.75], + "from": [ + 10.75, + 0, + 10.5 + ], + "to": [ + 11.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.5, 10.5, 10.75, 10.75], "texture": "#1"}, - "east": {"uv": [11.25, 10.5, 11.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 10.5, 11.5, 10.75], "texture": "#1"}, - "west": {"uv": [10.75, 10.5, 11, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 10.5, 11.5, 10.75], "texture": "#1"}, - "down": {"uv": [10.75, 10.75, 11.5, 10.5], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 10.5, + 10.75, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 10.5, + 11.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 10.5, + 11.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11.5, + 10.5 + ], + "texture": "#1" + } } }, { "name": "dorado_48", - "from": [5.5, 0, 10.75], - "to": [7, 0.25, 11], + "from": [ + 5.5, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7, 10.75, 5.5, 11], "texture": "#1"}, - "east": {"uv": [6.75, 10.75, 7, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 10.75, 7, 11], "texture": "#1"}, - "west": {"uv": [5.5, 10.75, 5.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 10.75, 7, 11], "texture": "#1"}, - "down": {"uv": [5.5, 11, 7, 10.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 10.75, + 5.5, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10.75, + 7, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 10.75, + 7, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 11, + 7, + 10.75 + ], + "texture": "#1" + } } }, { "name": "dorado_49", - "from": [6, 0, 11], - "to": [7, 0.25, 11.25], + "from": [ + 6, + 0, + 11 + ], + "to": [ + 7, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7, 11, 6, 11.25], "texture": "#1"}, - "east": {"uv": [6.75, 11, 7, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 11, 7, 11.25], "texture": "#1"}, - "west": {"uv": [6, 11, 6.25, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 11, 7, 11.25], "texture": "#1"}, - "down": {"uv": [6, 11.25, 7, 11], "texture": "#1"} + "north": { + "uv": [ + 7, + 11, + 6, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 11, + 7, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 11, + 7, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 11, + 7, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 11.25, + 7, + 11 + ], + "texture": "#1" + } } }, { "name": "dorado_50", - "from": [6.5, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.5, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.5, 11.5], "texture": "#1"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#1"}, - "west": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#1"}, - "down": {"uv": [6.5, 11.5, 6.75, 11.25], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.5, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.25 + ], + "texture": "#1" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.5, 6.75], - "scale": [0.83, 0.83, 0.83] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.5, + 6.75 + ], + "scale": [ + 0.83, + 0.83, + 0.83 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "dorado", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ei.json b/pack/assets/minecraft/models/fish/ei.json index 86464624..45be2de9 100644 --- a/pack/assets/minecraft/models/fish/ei.json +++ b/pack/assets/minecraft/models/fish/ei.json @@ -2,371 +2,1888 @@ "__name": "エイ", "credit": "Made with Blockbench", "textures": { - "1": "fish/ei", - "particle": "fish/ei" + "1": "item/fish/ei", + "particle": "item/fish/ei" }, "elements": [ { "name": "ei_0", - "from": [3.5, 0, 4.25], - "to": [4.25, 0.25, 11.75], + "from": [ + 3.5, + 0, + 4.25 + ], + "to": [ + 4.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [4.25, 4.25, 3.5, 4.5], "texture": "#1"}, - "east": {"uv": [4, 4.25, 4.25, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 11.5, 4.25, 11.75], "texture": "#1"}, - "west": {"uv": [3.5, 4.25, 3.75, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 4.25, 4.25, 11.75], "texture": "#1"}, - "down": {"uv": [3.5, 11.75, 4.25, 4.25], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 4.25, + 3.5, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 4.25, + 4.25, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 11.5, + 4.25, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 4.25, + 3.75, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 4.25, + 4.25, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 11.75, + 4.25, + 4.25 + ], + "texture": "#1" + } } }, { "name": "ei_1", - "from": [3.25, 0, 4.5], - "to": [3.5, 0.25, 11.5], + "from": [ + 3.25, + 0, + 4.5 + ], + "to": [ + 3.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [3.5, 4.5, 3.25, 4.75], "texture": "#1"}, - "east": {"uv": [3.25, 4.5, 3.5, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 11.25, 3.5, 11.5], "texture": "#1"}, - "west": {"uv": [3.25, 4.5, 3.5, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 4.5, 3.5, 11.5], "texture": "#1"}, - "down": {"uv": [3.25, 11.5, 3.5, 4.5], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 4.5, + 3.25, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 4.5, + 3.5, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 11.25, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 4.5, + 3.5, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 4.5, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 11.5, + 3.5, + 4.5 + ], + "texture": "#1" + } } }, { "name": "ei_2", - "from": [4.25, 0, 4.5], - "to": [4.75, 0.25, 11.5], + "from": [ + 4.25, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4.75, 4.5, 4.25, 4.75], "texture": "#1"}, - "east": {"uv": [4.5, 4.5, 4.75, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 11.25, 4.75, 11.5], "texture": "#1"}, - "west": {"uv": [4.25, 4.5, 4.5, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 4.5, 4.75, 11.5], "texture": "#1"}, - "down": {"uv": [4.25, 11.5, 4.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 4.5, + 4.25, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 11.25, + 4.75, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 4.5, + 4.5, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 4.5, + 4.75, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 11.5, + 4.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "ei_3", - "from": [3, 0, 4.75], - "to": [3.25, 0.25, 11.25], + "from": [ + 3, + 0, + 4.75 + ], + "to": [ + 3.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [3.25, 4.75, 3, 5], "texture": "#1"}, - "east": {"uv": [3, 4.75, 3.25, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 11, 3.25, 11.25], "texture": "#1"}, - "west": {"uv": [3, 4.75, 3.25, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 4.75, 3.25, 11.25], "texture": "#1"}, - "down": {"uv": [3, 11.25, 3.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 4.75, + 3, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 4.75, + 3.25, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 4.75, + 3.25, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 4.75, + 3.25, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 11.25, + 3.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "ei_4", - "from": [4.75, 0, 4.75], - "to": [5.25, 0.25, 11.25], + "from": [ + 4.75, + 0, + 4.75 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 4.75, 4.75, 5], "texture": "#1"}, - "east": {"uv": [5, 4.75, 5.25, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 11, 5.25, 11.25], "texture": "#1"}, - "west": {"uv": [4.75, 4.75, 5, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 4.75, 5.25, 11.25], "texture": "#1"}, - "down": {"uv": [4.75, 11.25, 5.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 4.75, + 4.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 11, + 5.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 4.75, + 5, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 4.75, + 5.25, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 11.25, + 5.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "ei_5", - "from": [2.75, 0, 5], - "to": [3, 0.25, 11], + "from": [ + 2.75, + 0, + 5 + ], + "to": [ + 3, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3, 5, 2.75, 5.25], "texture": "#1"}, - "east": {"uv": [2.75, 5, 3, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 10.75, 3, 11], "texture": "#1"}, - "west": {"uv": [2.75, 5, 3, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 5, 3, 11], "texture": "#1"}, - "down": {"uv": [2.75, 11, 3, 5], "texture": "#1"} + "north": { + "uv": [ + 3, + 5, + 2.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 5, + 3, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 10.75, + 3, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 5, + 3, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 5, + 3, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 11, + 3, + 5 + ], + "texture": "#1" + } } }, { "name": "ei_6", - "from": [5.25, 0, 5], - "to": [5.75, 0.25, 11], + "from": [ + 5.25, + 0, + 5 + ], + "to": [ + 5.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.75, 5, 5.25, 5.25], "texture": "#1"}, - "east": {"uv": [5.5, 5, 5.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 10.75, 5.75, 11], "texture": "#1"}, - "west": {"uv": [5.25, 5, 5.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 5, 5.75, 11], "texture": "#1"}, - "down": {"uv": [5.25, 11, 5.75, 5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 5, + 5.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 5, + 5.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 10.75, + 5.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 5, + 5.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 5, + 5.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 11, + 5.75, + 5 + ], + "texture": "#1" + } } }, { "name": "ei_7", - "from": [2.5, 0, 5.25], - "to": [2.75, 0.25, 10.75], + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 2.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.75, 5.25, 2.5, 5.5], "texture": "#1"}, - "east": {"uv": [2.5, 5.25, 2.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 10.5, 2.75, 10.75], "texture": "#1"}, - "west": {"uv": [2.5, 5.25, 2.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 5.25, 2.75, 10.75], "texture": "#1"}, - "down": {"uv": [2.5, 10.75, 2.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 5.25, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10.75, + 2.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "ei_8", - "from": [5.75, 0, 5.25], - "to": [6, 0.25, 10.75], + "from": [ + 5.75, + 0, + 5.25 + ], + "to": [ + 6, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6, 5.25, 5.75, 5.5], "texture": "#1"}, - "east": {"uv": [5.75, 5.25, 6, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#1"}, - "west": {"uv": [5.75, 5.25, 6, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 5.25, 6, 10.75], "texture": "#1"}, - "down": {"uv": [5.75, 10.75, 6, 5.25], "texture": "#1"} + "north": { + "uv": [ + 6, + 5.25, + 5.75, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 5.25, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 5.25, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 5.25, + 6, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 6, + 5.25 + ], + "texture": "#1" + } } }, { "name": "ei_9", - "from": [2.25, 0, 5.5], - "to": [2.5, 0.25, 10.5], + "from": [ + 2.25, + 0, + 5.5 + ], + "to": [ + 2.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.5, 5.5, 2.25, 5.75], "texture": "#1"}, - "east": {"uv": [2.25, 5.5, 2.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 10.25, 2.5, 10.5], "texture": "#1"}, - "west": {"uv": [2.25, 5.5, 2.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 5.5, 2.5, 10.5], "texture": "#1"}, - "down": {"uv": [2.25, 10.5, 2.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 5.5, + 2.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 10.5, + 2.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "ei_10", - "from": [6, 0, 5.5], - "to": [6.25, 0.25, 10.5], + "from": [ + 6, + 0, + 5.5 + ], + "to": [ + 6.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.25, 5.5, 6, 5.75], "texture": "#1"}, - "east": {"uv": [6, 5.5, 6.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 10.25, 6.25, 10.5], "texture": "#1"}, - "west": {"uv": [6, 5.5, 6.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 5.5, 6.25, 10.5], "texture": "#1"}, - "down": {"uv": [6, 10.5, 6.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 5.5, + 6, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5.5, + 6.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5.5, + 6.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5.5, + 6.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 10.5, + 6.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "ei_11", - "from": [2, 0, 5.75], - "to": [2.25, 0.25, 10.25], + "from": [ + 2, + 0, + 5.75 + ], + "to": [ + 2.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.25, 5.75, 2, 6], "texture": "#1"}, - "east": {"uv": [2, 5.75, 2.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 10, 2.25, 10.25], "texture": "#1"}, - "west": {"uv": [2, 5.75, 2.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 5.75, 2.25, 10.25], "texture": "#1"}, - "down": {"uv": [2, 10.25, 2.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 5.75, + 2, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 5.75, + 2.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 5.75, + 2.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ei_12", - "from": [6.25, 0, 5.75], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 5.75 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 5.75, 6.25, 6], "texture": "#1"}, - "east": {"uv": [6.25, 5.75, 6.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#1"}, - "west": {"uv": [6.25, 5.75, 6.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 5.75, 6.5, 10.25], "texture": "#1"}, - "down": {"uv": [6.25, 10.25, 6.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 5.75, + 6.25, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ei_13", - "from": [6.5, 0, 6], - "to": [6.75, 0.25, 10], + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.75, 6, 6.5, 6.25], "texture": "#1"}, - "east": {"uv": [6.5, 6, 6.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.75, 6.75, 10], "texture": "#1"}, - "west": {"uv": [6.5, 6, 6.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 6, 6.75, 10], "texture": "#1"}, - "down": {"uv": [6.5, 10, 6.75, 6], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 6, + 6.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 6, + 6.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 10, + 6.75, + 6 + ], + "texture": "#1" + } } }, { "name": "ei_14", - "from": [1.75, 0, 6.25], - "to": [2, 0.25, 9.75], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2, 6.25, 1.75, 6.5], "texture": "#1"}, - "east": {"uv": [1.75, 6.25, 2, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.5, 2, 9.75], "texture": "#1"}, - "west": {"uv": [1.75, 6.25, 2, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 6.25, 2, 9.75], "texture": "#1"}, - "down": {"uv": [1.75, 9.75, 2, 6.25], "texture": "#1"} + "north": { + "uv": [ + 2, + 6.25, + 1.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 6.25, + 2, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 2, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ei_15", - "from": [6.75, 0, 6.25], - "to": [7, 0.25, 9.75], + "from": [ + 6.75, + 0, + 6.25 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 6.25, 6.75, 6.5], "texture": "#1"}, - "east": {"uv": [6.75, 6.25, 7, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#1"}, - "west": {"uv": [6.75, 6.25, 7, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 6.25, 7, 9.75], "texture": "#1"}, - "down": {"uv": [6.75, 9.75, 7, 6.25], "texture": "#1"} + "north": { + "uv": [ + 7, + 6.25, + 6.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 6.25, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 6.25, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 6.25, + 7, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ei_16", - "from": [7, 0, 6.5], - "to": [7.25, 0.25, 9.5], + "from": [ + 7, + 0, + 6.5 + ], + "to": [ + 7.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.25, 6.5, 7, 6.75], "texture": "#1"}, - "east": {"uv": [7, 6.5, 7.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 9.25, 7.25, 9.5], "texture": "#1"}, - "west": {"uv": [7, 6.5, 7.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 6.5, 7.25, 9.5], "texture": "#1"}, - "down": {"uv": [7, 9.5, 7.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 6.5, + 7, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 6.5, + 7.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6.5, + 7.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 6.5, + 7.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 9.5, + 7.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ei_17", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#1"}, - "east": {"uv": [1.5, 6.75, 1.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#1"}, - "west": {"uv": [1.5, 6.75, 1.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 6.75, 1.75, 9.25], "texture": "#1"}, - "down": {"uv": [1.5, 9.25, 1.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ei_18", - "from": [7.25, 0, 6.75], - "to": [7.5, 0.25, 9.25], + "from": [ + 7.25, + 0, + 6.75 + ], + "to": [ + 7.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [7.5, 6.75, 7.25, 7], "texture": "#1"}, - "east": {"uv": [7.25, 6.75, 7.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 9, 7.5, 9.25], "texture": "#1"}, - "west": {"uv": [7.25, 6.75, 7.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 6.75, 7.5, 9.25], "texture": "#1"}, - "down": {"uv": [7.25, 9.25, 7.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 6.75, + 7.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 6.75, + 7.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 6.75, + 7.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 6.75, + 7.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 9.25, + 7.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ei_19", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 9], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#1"}, - "east": {"uv": [1.25, 7, 1.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.75, 1.5, 9], "texture": "#1"}, - "west": {"uv": [1.25, 7, 1.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 7, 1.5, 9], "texture": "#1"}, - "down": {"uv": [1.25, 9, 1.5, 7], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9, + 1.5, + 7 + ], + "texture": "#1" + } } }, { "name": "ei_20", - "from": [7.5, 0, 7], - "to": [7.75, 0.25, 9], + "from": [ + 7.5, + 0, + 7 + ], + "to": [ + 7.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.75, 7, 7.5, 7.25], "texture": "#1"}, - "east": {"uv": [7.5, 7, 7.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 8.75, 7.75, 9], "texture": "#1"}, - "west": {"uv": [7.5, 7, 7.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 7, 7.75, 9], "texture": "#1"}, - "down": {"uv": [7.5, 9, 7.75, 7], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 7, + 7.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 7, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 7, + 7.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 7, + 7.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 9, + 7.75, + 7 + ], + "texture": "#1" + } } }, { "name": "ei_21", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#1"}, - "east": {"uv": [1, 7.5, 1.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#1"}, - "west": {"uv": [1, 7.5, 1.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.5, 1.25, 8.5], "texture": "#1"}, - "down": {"uv": [1, 8.5, 1.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "ei_22", - "from": [7.75, 0, 7.5], - "to": [10.5, 0.25, 8.5], + "from": [ + 7.75, + 0, + 7.5 + ], + "to": [ + 10.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [10.5, 7.5, 7.75, 7.75], "texture": "#1"}, - "east": {"uv": [10.25, 7.5, 10.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 8.25, 10.5, 8.5], "texture": "#1"}, - "west": {"uv": [7.75, 7.5, 8, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 7.5, 10.5, 8.5], "texture": "#1"}, - "down": {"uv": [7.75, 8.5, 10.5, 7.5], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 7.5, + 7.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 7.5, + 10.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 8.25, + 10.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 7.5, + 8, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 7.5, + 10.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 8.5, + 10.5, + 7.5 + ], + "texture": "#1" + } } }, { "name": "ei_23", - "from": [10.5, 0, 7.75], - "to": [13.75, 0.25, 8.25], + "from": [ + 10.5, + 0, + 7.75 + ], + "to": [ + 13.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.75, 7.75, 10.5, 8], "texture": "#1"}, - "east": {"uv": [13.5, 7.75, 13.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 8, 13.75, 8.25], "texture": "#1"}, - "west": {"uv": [10.5, 7.75, 10.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 7.75, 13.75, 8.25], "texture": "#1"}, - "down": {"uv": [10.5, 8.25, 13.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7.75, + 10.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 8, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 7.75, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 8.25, + 13.75, + 7.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 4.5, 17.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 4.5, + 17.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-5, 4.5, 17.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5, + 4.5, + 17.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 4.5, 17.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 4.5, + 17.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 4.5, 17.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 4.5, + 17.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 4.5, 17.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 4.5, + 17.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 11, 21.25], - "scale": [2.1, 2.1, 2.1] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 11, + 21.25 + ], + "scale": [ + 2.1, + 2.1, + 2.1 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "ei", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/endlicheri.json b/pack/assets/minecraft/models/fish/endlicheri.json index 5f51ce34..2f096405 100644 --- a/pack/assets/minecraft/models/fish/endlicheri.json +++ b/pack/assets/minecraft/models/fish/endlicheri.json @@ -2,695 +2,3687 @@ "__name": "エンドリケリー", "credit": "Made with Blockbench", "textures": { - "0": "fish/endlicheri", - "particle": "fish/endlicheri" + "0": "item/fish/endlicheri", + "particle": "item/fish/endlicheri" }, "elements": [ { "name": "endlicheri_0", - "from": [4.75, 0, 5.5], - "to": [5, 0.25, 8.75], + "from": [ + 4.75, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5, 5.5, 4.75, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8.5, 5, 8.75], "texture": "#0"}, - "west": {"uv": [4.75, 5.5, 5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5.5, 5, 8.75], "texture": "#0"}, - "down": {"uv": [4.75, 8.75, 5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5.5, + 5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8.75, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_1", - "from": [5.75, 0, 5.5], - "to": [6, 0.25, 8.75], + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6, 5.5, 5.75, 5.75], "texture": "#0"}, - "east": {"uv": [5.75, 5.5, 6, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 8.5, 6, 8.75], "texture": "#0"}, - "west": {"uv": [5.75, 5.5, 6, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.5, 6, 8.75], "texture": "#0"}, - "down": {"uv": [5.75, 8.75, 6, 5.5], "texture": "#0"} + "north": { + "uv": [ + 6, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8.75, + 6, + 5.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_2", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 8.75], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.5, 7, 8.75], "texture": "#0"}, - "west": {"uv": [6.75, 5.5, 7, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.5, 7, 8.75], "texture": "#0"}, - "down": {"uv": [6.75, 8.75, 7, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8.75, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_3", - "from": [7.75, 0, 5.5], - "to": [8, 0.25, 8.75], + "from": [ + 7.75, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8, 5.5, 7.75, 5.75], "texture": "#0"}, - "east": {"uv": [7.75, 5.5, 8, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.5, 8, 8.75], "texture": "#0"}, - "west": {"uv": [7.75, 5.5, 8, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5.5, 8, 8.75], "texture": "#0"}, - "down": {"uv": [7.75, 8.75, 8, 5.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 5.5, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.5, + 8, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8.75, + 8, + 5.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_4", - "from": [8.75, 0, 5.5], - "to": [9, 0.25, 9.25], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9, 5.5, 8.75, 5.75], "texture": "#0"}, - "east": {"uv": [8.75, 5.5, 9, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9, 9, 9.25], "texture": "#0"}, - "west": {"uv": [8.75, 5.5, 9, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.5, 9, 9.25], "texture": "#0"}, - "down": {"uv": [8.75, 9.25, 9, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.25, + 9, + 5.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_5", - "from": [4.5, 0, 5.75], - "to": [4.75, 0.25, 8.75], + "from": [ + 4.5, + 0, + 5.75 + ], + "to": [ + 4.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [4.75, 5.75, 4.5, 6], "texture": "#0"}, - "east": {"uv": [4.5, 5.75, 4.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8.5, 4.75, 8.75], "texture": "#0"}, - "west": {"uv": [4.5, 5.75, 4.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.75, 4.75, 8.75], "texture": "#0"}, - "down": {"uv": [4.5, 8.75, 4.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8.75, + 4.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_6", - "from": [5, 0, 5.75], - "to": [5.25, 0.25, 8.75], + "from": [ + 5, + 0, + 5.75 + ], + "to": [ + 5.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5.25, 5.75, 5, 6], "texture": "#0"}, - "east": {"uv": [5, 5.75, 5.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.5, 5.25, 8.75], "texture": "#0"}, - "west": {"uv": [5, 5.75, 5.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.75, 5.25, 8.75], "texture": "#0"}, - "down": {"uv": [5, 8.75, 5.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 5.75, + 5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.75, + 5.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.75, + 5.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.75, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.75, + 5.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_7", - "from": [5.5, 0, 5.75], - "to": [5.75, 0.25, 8.75], + "from": [ + 5.5, + 0, + 5.75 + ], + "to": [ + 5.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5.75, 5.75, 5.5, 6], "texture": "#0"}, - "east": {"uv": [5.5, 5.75, 5.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8.5, 5.75, 8.75], "texture": "#0"}, - "west": {"uv": [5.5, 5.75, 5.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.75, 5.75, 8.75], "texture": "#0"}, - "down": {"uv": [5.5, 8.75, 5.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.75, + 5.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.75, + 5.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.75, + 5.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8.75, + 5.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_8", - "from": [6, 0, 5.75], - "to": [6.25, 0.25, 8.75], + "from": [ + 6, + 0, + 5.75 + ], + "to": [ + 6.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6.25, 5.75, 6, 6], "texture": "#0"}, - "east": {"uv": [6, 5.75, 6.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8.5, 6.25, 8.75], "texture": "#0"}, - "west": {"uv": [6, 5.75, 6.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.75, 6.25, 8.75], "texture": "#0"}, - "down": {"uv": [6, 8.75, 6.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.75, + 6.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8.5, + 6.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.75, + 6.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.75, + 6.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8.75, + 6.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_9", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 8.75], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#0"}, - "east": {"uv": [6.5, 5.75, 6.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.5, 6.75, 8.75], "texture": "#0"}, - "west": {"uv": [6.5, 5.75, 6.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.75, 6.75, 8.75], "texture": "#0"}, - "down": {"uv": [6.5, 8.75, 6.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8.75, + 6.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_10", - "from": [7, 0, 5.75], - "to": [7.25, 0.25, 8.75], + "from": [ + 7, + 0, + 5.75 + ], + "to": [ + 7.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.25, 5.75, 7, 6], "texture": "#0"}, - "east": {"uv": [7, 5.75, 7.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8.5, 7.25, 8.75], "texture": "#0"}, - "west": {"uv": [7, 5.75, 7.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.75, 7.25, 8.75], "texture": "#0"}, - "down": {"uv": [7, 8.75, 7.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.75, + 7, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.75, + 7.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.75, + 7.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.75, + 7.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 8.75, + 7.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_11", - "from": [7.5, 0, 5.75], - "to": [7.75, 0.25, 8.75], + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 7.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.75, 5.75, 7.5, 6], "texture": "#0"}, - "east": {"uv": [7.5, 5.75, 7.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.5, 7.75, 8.75], "texture": "#0"}, - "west": {"uv": [7.5, 5.75, 7.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.75, 7.75, 8.75], "texture": "#0"}, - "down": {"uv": [7.5, 8.75, 7.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.75, + 7.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8.75, + 7.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_12", - "from": [8, 0, 5.75], - "to": [8.25, 0.25, 8.75], + "from": [ + 8, + 0, + 5.75 + ], + "to": [ + 8.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8.25, 5.75, 8, 6], "texture": "#0"}, - "east": {"uv": [8, 5.75, 8.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8.5, 8.25, 8.75], "texture": "#0"}, - "west": {"uv": [8, 5.75, 8.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.75, 8.25, 8.75], "texture": "#0"}, - "down": {"uv": [8, 8.75, 8.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5.75, + 8.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.75, + 8.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.75, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8.75, + 8.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_13", - "from": [8.5, 0, 5.75], - "to": [8.75, 0.25, 9], + "from": [ + 8.5, + 0, + 5.75 + ], + "to": [ + 8.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.75, 5.75, 8.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5.75, 8.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 8.75, 8.75, 9], "texture": "#0"}, - "west": {"uv": [8.5, 5.75, 8.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.75, 8.75, 9], "texture": "#0"}, - "down": {"uv": [8.5, 9, 8.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9, + 8.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_14", - "from": [9, 0, 5.75], - "to": [9.25, 0.25, 9.25], + "from": [ + 9, + 0, + 5.75 + ], + "to": [ + 9.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.25, 5.75, 9, 6], "texture": "#0"}, - "east": {"uv": [9, 5.75, 9.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9, 9.25, 9.25], "texture": "#0"}, - "west": {"uv": [9, 5.75, 9.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.75, 9.25, 9.25], "texture": "#0"}, - "down": {"uv": [9, 9.25, 9.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5.75, + 9, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.75, + 9.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.75, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.25, + 9.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_15", - "from": [9.75, 0, 5.75], - "to": [10, 0.25, 9.25], + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10, 5.75, 9.75, 6], "texture": "#0"}, - "east": {"uv": [9.75, 5.75, 10, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9, 10, 9.25], "texture": "#0"}, - "west": {"uv": [9.75, 5.75, 10, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.75, 10, 9.25], "texture": "#0"}, - "down": {"uv": [9.75, 9.25, 10, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5.75, + 10, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_16", - "from": [10.5, 0, 5.75], - "to": [10.75, 0.25, 8.5], + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 10.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [10.75, 5.75, 10.5, 6], "texture": "#0"}, - "east": {"uv": [10.5, 5.75, 10.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.25, 10.75, 8.5], "texture": "#0"}, - "west": {"uv": [10.5, 5.75, 10.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.75, 10.75, 8.5], "texture": "#0"}, - "down": {"uv": [10.5, 8.5, 10.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.75, + 10.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.75, + 10.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 10.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.5, + 10.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_17", - "from": [6.25, 0, 6], - "to": [6.5, 0.25, 8.75], + "from": [ + 6.25, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6.5, 6, 6.25, 6.25], "texture": "#0"}, - "east": {"uv": [6.25, 6, 6.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.5, 6.5, 8.75], "texture": "#0"}, - "west": {"uv": [6.25, 6, 6.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6, 6.5, 8.75], "texture": "#0"}, - "down": {"uv": [6.25, 8.75, 6.5, 6], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 6, + 6.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6, + 6.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6, + 6.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.75, + 6.5, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_18", - "from": [7.25, 0, 6], - "to": [7.5, 0.25, 8.75], + "from": [ + 7.25, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.5, 6, 7.25, 6.25], "texture": "#0"}, - "east": {"uv": [7.25, 6, 7.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.5, 7.5, 8.75], "texture": "#0"}, - "west": {"uv": [7.25, 6, 7.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 6, 7.5, 8.75], "texture": "#0"}, - "down": {"uv": [7.25, 8.75, 7.5, 6], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 6, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 6, + 7.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 6, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.75, + 7.5, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_19", - "from": [8.25, 0, 6], - "to": [8.5, 0.25, 8.5], + "from": [ + 8.25, + 0, + 6 + ], + "to": [ + 8.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [8.5, 6, 8.25, 6.25], "texture": "#0"}, - "east": {"uv": [8.25, 6, 8.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.25, 8.5, 8.5], "texture": "#0"}, - "west": {"uv": [8.25, 6, 8.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6, 8.5, 8.5], "texture": "#0"}, - "down": {"uv": [8.25, 8.5, 8.5, 6], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 6, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 6, + 8.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6, + 8.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8.5, + 8.5, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_20", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#0"}, - "east": {"uv": [9.5, 6, 9.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#0"}, - "west": {"uv": [9.5, 6, 9.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6, 9.75, 9.25], "texture": "#0"}, - "down": {"uv": [9.5, 9.25, 9.75, 6], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.75, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_21", - "from": [10, 0, 6], - "to": [10.5, 0.25, 8.5], + "from": [ + 10, + 0, + 6 + ], + "to": [ + 10.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [10.5, 6, 10, 6.25], "texture": "#0"}, - "east": {"uv": [10.25, 6, 10.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.25, 10.5, 8.5], "texture": "#0"}, - "west": {"uv": [10, 6, 10.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6, 10.5, 8.5], "texture": "#0"}, - "down": {"uv": [10, 8.5, 10.5, 6], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6, + 10.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.25, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6, + 10.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8.5, + 10.5, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_22", - "from": [10.75, 0, 6], - "to": [11, 0.25, 8.5], + "from": [ + 10.75, + 0, + 6 + ], + "to": [ + 11, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11, 6, 10.75, 6.25], "texture": "#0"}, - "east": {"uv": [10.75, 6, 11, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.25, 11, 8.5], "texture": "#0"}, - "west": {"uv": [10.75, 6, 11, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6, 11, 8.5], "texture": "#0"}, - "down": {"uv": [10.75, 8.5, 11, 6], "texture": "#0"} + "north": { + "uv": [ + 11, + 6, + 10.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6, + 11, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.25, + 11, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6, + 11, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6, + 11, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.5, + 11, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_23", - "from": [11.25, 0, 6], - "to": [11.5, 0.25, 8.75], + "from": [ + 11.25, + 0, + 6 + ], + "to": [ + 11.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [11.5, 6, 11.25, 6.25], "texture": "#0"}, - "east": {"uv": [11.25, 6, 11.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.5, 11.5, 8.75], "texture": "#0"}, - "west": {"uv": [11.25, 6, 11.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6, 11.5, 8.75], "texture": "#0"}, - "down": {"uv": [11.25, 8.75, 11.5, 6], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6, + 11.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 11.5, + 6 + ], + "texture": "#0" + } } }, { "name": "endlicheri_24", - "from": [4.25, 0, 6.25], - "to": [4.5, 0.25, 9.25], + "from": [ + 4.25, + 0, + 6.25 + ], + "to": [ + 4.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.5, 6.25, 4.25, 6.5], "texture": "#0"}, - "east": {"uv": [4.25, 6.25, 4.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9, 4.5, 9.25], "texture": "#0"}, - "west": {"uv": [4.25, 6.25, 4.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6.25, 4.5, 9.25], "texture": "#0"}, - "down": {"uv": [4.25, 9.25, 4.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 6.25, + 4.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6.25, + 4.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.25, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6.25, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 4.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_25", - "from": [5.25, 0, 6.25], - "to": [5.5, 0.25, 8.75], + "from": [ + 5.25, + 0, + 6.25 + ], + "to": [ + 5.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5.5, 6.25, 5.25, 6.5], "texture": "#0"}, - "east": {"uv": [5.25, 6.25, 5.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 8.5, 5.5, 8.75], "texture": "#0"}, - "west": {"uv": [5.25, 6.25, 5.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 6.25, 5.5, 8.75], "texture": "#0"}, - "down": {"uv": [5.25, 8.75, 5.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.25, + 5.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 6.25, + 5.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6.25, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.75, + 5.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_26", - "from": [9.25, 0, 6.25], - "to": [9.5, 0.25, 9.25], + "from": [ + 9.25, + 0, + 6.25 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 6.25, 9.25, 6.5], "texture": "#0"}, - "east": {"uv": [9.25, 6.25, 9.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9, 9.5, 9.25], "texture": "#0"}, - "west": {"uv": [9.25, 6.25, 9.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.25, 9.5, 9.25], "texture": "#0"}, - "down": {"uv": [9.25, 9.25, 9.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 6.25, + 9.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.25, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.25, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.25, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 9.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_27", - "from": [11, 0, 6.25], - "to": [11.25, 0.25, 8.5], + "from": [ + 11, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.25, 6.25, 11, 6.5], "texture": "#0"}, - "east": {"uv": [11, 6.25, 11.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.25, 11.25, 8.5], "texture": "#0"}, - "west": {"uv": [11, 6.25, 11.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.25, 11.25, 8.5], "texture": "#0"}, - "down": {"uv": [11, 8.5, 11.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.25, + 11.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.5, + 11.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_28", - "from": [11.5, 0, 6.25], - "to": [11.75, 0.25, 9], + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 6.25, 11.5, 6.5], "texture": "#0"}, - "east": {"uv": [11.5, 6.25, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [11.5, 6.25, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.25, 11.75, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 11.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6.25, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.25, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_29", - "from": [12, 0, 6.25], - "to": [12.5, 0.25, 9.25], + "from": [ + 12, + 0, + 6.25 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 6.25, 12, 6.5], "texture": "#0"}, - "east": {"uv": [12.25, 6.25, 12.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 9, 12.5, 9.25], "texture": "#0"}, - "west": {"uv": [12, 6.25, 12.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.25, 12.5, 9.25], "texture": "#0"}, - "down": {"uv": [12, 9.25, 12.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.25, + 12, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.25, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.25, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.25, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_30", - "from": [11.75, 0, 6.5], - "to": [12, 0.25, 9.25], + "from": [ + 11.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12, 6.5, 11.75, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9, 12, 9.25], "texture": "#0"}, - "west": {"uv": [11.75, 6.5, 12, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 6.5, 12, 9.25], "texture": "#0"}, - "down": {"uv": [11.75, 9.25, 12, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.5, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 6.5, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 6.5, + 12, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_31", - "from": [12.5, 0, 6.5], - "to": [13, 0.25, 8.75], + "from": [ + 12.5, + 0, + 6.5 + ], + "to": [ + 13, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13, 6.5, 12.5, 6.75], "texture": "#0"}, - "east": {"uv": [12.75, 6.5, 13, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 13, 8.75], "texture": "#0"}, - "west": {"uv": [12.5, 6.5, 12.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6.5, 13, 8.75], "texture": "#0"}, - "down": {"uv": [12.5, 8.75, 13, 6.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 6.5, + 12.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 6.5, + 13, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6.5, + 12.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.75, + 13, + 6.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_32", - "from": [3, 0, 6.75], - "to": [4.25, 0.25, 8.5], + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 4.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [4.25, 6.75, 3, 7], "texture": "#0"}, - "east": {"uv": [4, 6.75, 4.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.25, 4.25, 8.5], "texture": "#0"}, - "west": {"uv": [3, 6.75, 3.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.75, 4.25, 8.5], "texture": "#0"}, - "down": {"uv": [3, 8.5, 4.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 6.75, + 3, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.75, + 4.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.25, + 4.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.75, + 4.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 4.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_33", - "from": [13, 0, 6.75], - "to": [14.25, 0.25, 8.75], + "from": [ + 13, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 6.75, 13, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 14.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 6.75, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.75, 14.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 14.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.75, + 13, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.75, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.75, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_34", - "from": [0.75, 0, 7], - "to": [3, 0.25, 8.5], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3, 7, 0.75, 7.25], "texture": "#0"}, - "east": {"uv": [2.75, 7, 3, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 3, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 7, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7, 3, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 3, 7], "texture": "#0"} + "north": { + "uv": [ + 3, + 7, + 0.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 3, + 7 + ], + "texture": "#0" + } } }, { "name": "endlicheri_35", - "from": [14.25, 0, 7], - "to": [14.75, 0.25, 8.75], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.75, 7, 14.25, 7.25], "texture": "#0"}, - "east": {"uv": [14.5, 7, 14.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.5, 14.75, 8.75], "texture": "#0"}, - "west": {"uv": [14.25, 7, 14.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7, 14.75, 8.75], "texture": "#0"}, - "down": {"uv": [14.25, 8.75, 14.75, 7], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7, + 14.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.75, + 7 + ], + "texture": "#0" + } } }, { "name": "endlicheri_36", - "from": [0.25, 0, 7.25], - "to": [0.75, 0.25, 8], + "from": [ + 0.25, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.25, 7.5], "texture": "#0"}, - "east": {"uv": [0.5, 7.25, 0.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7.75, 0.75, 8], "texture": "#0"}, - "west": {"uv": [0.25, 7.25, 0.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.25, 0.75, 8], "texture": "#0"}, - "down": {"uv": [0.25, 8, 0.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.25, + 0.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.25, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 8, + 0.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_37", - "from": [14.75, 0, 7.25], - "to": [15.25, 0.25, 8.5], + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.25, 7.25, 14.75, 7.5], "texture": "#0"}, - "east": {"uv": [15, 7.25, 15.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.25, 15.25, 8.5], "texture": "#0"}, - "west": {"uv": [14.75, 7.25, 15, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.25, 15.25, 8.5], "texture": "#0"}, - "down": {"uv": [14.75, 8.5, 15.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "endlicheri_38", - "from": [0, 0, 7.5], - "to": [0.25, 0.25, 7.75], + "from": [ + 0, + 0, + 7.5 + ], + "to": [ + 0.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.25, 7.5, 0, 7.75], "texture": "#0"}, - "east": {"uv": [0, 7.5, 0.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 7.5, 0.25, 7.75], "texture": "#0"}, - "west": {"uv": [0, 7.5, 0.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 7.5, 0.25, 7.75], "texture": "#0"}, - "down": {"uv": [0, 7.75, 0.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 0.25, + 7.5, + 0, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 7.75, + 0.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_39", - "from": [15.25, 0, 7.5], - "to": [15.5, 0.25, 8.5], + "from": [ + 15.25, + 0, + 7.5 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.5, 7.5, 15.25, 7.75], "texture": "#0"}, - "east": {"uv": [15.25, 7.5, 15.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "west": {"uv": [15.25, 7.5, 15.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.5, 15.5, 8.5], "texture": "#0"}, - "down": {"uv": [15.25, 8.5, 15.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 7.5, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.5, + 15.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_40", - "from": [15.5, 0, 7.75], - "to": [15.75, 0.25, 8.25], + "from": [ + 15.5, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15.5, 8], "texture": "#0"}, - "east": {"uv": [15.5, 7.75, 15.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 8, 15.75, 8.25], "texture": "#0"}, - "west": {"uv": [15.5, 7.75, 15.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 7.75, 15.75, 8.25], "texture": "#0"}, - "down": {"uv": [15.5, 8.25, 15.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 7.75, + 15.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 8, + 15.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 8.25, + 15.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_41", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.25], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "down": {"uv": [0.5, 8.25, 0.75, 8], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8 + ], + "texture": "#0" + } } }, { "name": "endlicheri_42", - "from": [1.75, 0, 8.5], - "to": [3, 0.25, 8.75], + "from": [ + 1.75, + 0, + 8.5 + ], + "to": [ + 3, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [3, 8.5, 1.75, 8.75], "texture": "#0"}, - "east": {"uv": [2.75, 8.5, 3, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.5, 3, 8.75], "texture": "#0"}, - "west": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.5, 3, 8.75], "texture": "#0"}, - "down": {"uv": [1.75, 8.75, 3, 8.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.5, + 3, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8.75, + 3, + 8.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_43", - "from": [3.25, 0, 8.5], - "to": [4.25, 0.25, 9], + "from": [ + 3.25, + 0, + 8.5 + ], + "to": [ + 4.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [4.25, 8.5, 3.25, 8.75], "texture": "#0"}, - "east": {"uv": [4, 8.5, 4.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.75, 4.25, 9], "texture": "#0"}, - "west": {"uv": [3.25, 8.5, 3.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.5, 4.25, 9], "texture": "#0"}, - "down": {"uv": [3.25, 9, 4.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 8.5, + 3.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.5, + 3.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.5, + 4.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9, + 4.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "endlicheri_44", - "from": [10, 0, 8.75], - "to": [10.25, 0.25, 9], + "from": [ + 10, + 0, + 8.75 + ], + "to": [ + 10.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.25, 8.75, 10, 9], "texture": "#0"}, - "east": {"uv": [10, 8.75, 10.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.75, 10.25, 9], "texture": "#0"}, - "west": {"uv": [10, 8.75, 10.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.75, 10.25, 9], "texture": "#0"}, - "down": {"uv": [10, 9, 10.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 8.75, + 10, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9, + 10.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_45", - "from": [12.5, 0, 8.75], - "to": [12.75, 0.25, 9], + "from": [ + 12.5, + 0, + 8.75 + ], + "to": [ + 12.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.75, 8.75, 12.5, 9], "texture": "#0"}, - "east": {"uv": [12.5, 8.75, 12.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.75, 12.75, 9], "texture": "#0"}, - "west": {"uv": [12.5, 8.75, 12.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.75, 12.75, 9], "texture": "#0"}, - "down": {"uv": [12.5, 9, 12.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 8.75, + 12.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9, + 12.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_46", - "from": [13.25, 0, 8.75], - "to": [14, 0.25, 9], + "from": [ + 13.25, + 0, + 8.75 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 8.75, 13.25, 9], "texture": "#0"}, - "east": {"uv": [13.75, 8.75, 14, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 14, 9], "texture": "#0"}, - "west": {"uv": [13.25, 8.75, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8.75, 14, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 14, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 8.75, + 13.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 14, + 8.75 + ], + "texture": "#0" + } } }, { "name": "endlicheri_47", - "from": [3.5, 0, 9], - "to": [4.25, 0.25, 9.5], + "from": [ + 3.5, + 0, + 9 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.25, 9, 3.5, 9.25], "texture": "#0"}, - "east": {"uv": [4, 9, 4.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.25, 4.25, 9.5], "texture": "#0"}, - "west": {"uv": [3.5, 9, 3.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9, 4.25, 9.5], "texture": "#0"}, - "down": {"uv": [3.5, 9.5, 4.25, 9], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.5, + 4.25, + 9 + ], + "texture": "#0" + } } }, { "name": "endlicheri_48", - "from": [3.75, 0, 9.5], - "to": [4, 0.25, 9.75], + "from": [ + 3.75, + 0, + 9.5 + ], + "to": [ + 4, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4, 9.5, 3.75, 9.75], "texture": "#0"}, - "east": {"uv": [3.75, 9.5, 4, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.5, 4, 9.75], "texture": "#0"}, - "west": {"uv": [3.75, 9.5, 4, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.5, 4, 9.75], "texture": "#0"}, - "down": {"uv": [3.75, 9.75, 4, 9.5], "texture": "#0"} + "north": { + "uv": [ + 4, + 9.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 4, + 9.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "endlicheri", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/engelfish.json b/pack/assets/minecraft/models/fish/engelfish.json index 1d7ae103..22ad319c 100644 --- a/pack/assets/minecraft/models/fish/engelfish.json +++ b/pack/assets/minecraft/models/fish/engelfish.json @@ -2,1085 +2,5847 @@ "__name": "エンゼルフィッシュ", "credit": "Made with Blockbench", "textures": { - "0": "fish/engelfish", - "particle": "fish/engelfish" + "0": "item/fish/engelfish", + "particle": "item/fish/engelfish" }, "elements": [ { "name": "engelfish_0", - "from": [9.75, 0, 0.5], - "to": [10, 0.25, 1.75], + "from": [ + 9.75, + 0, + 0.5 + ], + "to": [ + 10, + 0.25, + 1.75 + ], "faces": { - "north": {"uv": [10, 0.5, 9.75, 0.75], "texture": "#0"}, - "east": {"uv": [9.75, 0.5, 10, 1.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 1.5, 10, 1.75], "texture": "#0"}, - "west": {"uv": [9.75, 0.5, 10, 1.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 0.5, 10, 1.75], "texture": "#0"}, - "down": {"uv": [9.75, 1.75, 10, 0.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 0.5, + 9.75, + 0.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 0.5, + 10, + 1.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 1.5, + 10, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 0.5, + 10, + 1.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 0.5, + 10, + 1.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 1.75, + 10, + 0.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_1", - "from": [9.5, 0, 0.75], - "to": [9.75, 0.25, 2.25], + "from": [ + 9.5, + 0, + 0.75 + ], + "to": [ + 9.75, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [9.75, 0.75, 9.5, 1], "texture": "#0"}, - "east": {"uv": [9.5, 0.75, 9.75, 2.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 2, 9.75, 2.25], "texture": "#0"}, - "west": {"uv": [9.5, 0.75, 9.75, 2.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 0.75, 9.75, 2.25], "texture": "#0"}, - "down": {"uv": [9.5, 2.25, 9.75, 0.75], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 0.75, + 9.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 0.75, + 9.75, + 2.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 2, + 9.75, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 0.75, + 9.75, + 2.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 0.75, + 9.75, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 2.25, + 9.75, + 0.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_2", - "from": [10, 0, 0.75], - "to": [10.25, 0.25, 1], + "from": [ + 10, + 0, + 0.75 + ], + "to": [ + 10.25, + 0.25, + 1 + ], "faces": { - "north": {"uv": [10.25, 0.75, 10, 1], "texture": "#0"}, - "east": {"uv": [10, 0.75, 10.25, 1], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 0.75, 10.25, 1], "texture": "#0"}, - "west": {"uv": [10, 0.75, 10.25, 1], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 0.75, 10.25, 1], "texture": "#0"}, - "down": {"uv": [10, 1, 10.25, 0.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 0.75, + 10, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 0.75, + 10.25, + 1 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0.75, + 10.25, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 0.75, + 10.25, + 1 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0.75, + 10.25, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 10.25, + 0.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_3", - "from": [9.25, 0, 1], - "to": [9.5, 0.25, 7.5], + "from": [ + 9.25, + 0, + 1 + ], + "to": [ + 9.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [9.5, 1, 9.25, 1.25], "texture": "#0"}, - "east": {"uv": [9.25, 1, 9.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7.25, 9.5, 7.5], "texture": "#0"}, - "west": {"uv": [9.25, 1, 9.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 1, 9.5, 7.5], "texture": "#0"}, - "down": {"uv": [9.25, 7.5, 9.5, 1], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 1, + 9.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 1, + 9.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 1, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.5, + 9.5, + 1 + ], + "texture": "#0" + } } }, { "name": "engelfish_4", - "from": [9, 0, 1.25], - "to": [9.25, 0.25, 7.5], + "from": [ + 9, + 0, + 1.25 + ], + "to": [ + 9.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [9.25, 1.25, 9, 1.5], "texture": "#0"}, - "east": {"uv": [9, 1.25, 9.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.25, 9.25, 7.5], "texture": "#0"}, - "west": {"uv": [9, 1.25, 9.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 1.25, 9.25, 7.5], "texture": "#0"}, - "down": {"uv": [9, 7.5, 9.25, 1.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 1.25, + 9, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 1.25, + 9.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1.25, + 9.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 1.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.5, + 9.25, + 1.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_5", - "from": [8.75, 0, 1.5], - "to": [9, 0.25, 11.5], + "from": [ + 8.75, + 0, + 1.5 + ], + "to": [ + 9, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [9, 1.5, 8.75, 1.75], "texture": "#0"}, - "east": {"uv": [8.75, 1.5, 9, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11.25, 9, 11.5], "texture": "#0"}, - "west": {"uv": [8.75, 1.5, 9, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 1.5, 9, 11.5], "texture": "#0"}, - "down": {"uv": [8.75, 11.5, 9, 1.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 1.5, + 8.75, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 1.5, + 9, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 1.5, + 9, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 1.5, + 9, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11.5, + 9, + 1.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_6", - "from": [8.5, 0, 1.75], - "to": [8.75, 0.25, 11.25], + "from": [ + 8.5, + 0, + 1.75 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 1.75, 8.5, 2], "texture": "#0"}, - "east": {"uv": [8.5, 1.75, 8.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#0"}, - "west": {"uv": [8.5, 1.75, 8.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 1.75, 8.75, 11.25], "texture": "#0"}, - "down": {"uv": [8.5, 11.25, 8.75, 1.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 1.75, + 8.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 1.75, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 1.75, + 8.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 1.75, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 11.25, + 8.75, + 1.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_7", - "from": [8.25, 0, 2], - "to": [8.5, 0.25, 11.25], + "from": [ + 8.25, + 0, + 2 + ], + "to": [ + 8.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.5, 2, 8.25, 2.25], "texture": "#0"}, - "east": {"uv": [8.25, 2, 8.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 11, 8.5, 11.25], "texture": "#0"}, - "west": {"uv": [8.25, 2, 8.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 2, 8.5, 11.25], "texture": "#0"}, - "down": {"uv": [8.25, 11.25, 8.5, 2], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 2, + 8.25, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2, + 8.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 2, + 8.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 2, + 8.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11.25, + 8.5, + 2 + ], + "texture": "#0" + } } }, { "name": "engelfish_8", - "from": [8, 0, 2.5], - "to": [8.25, 0.25, 11], + "from": [ + 8, + 0, + 2.5 + ], + "to": [ + 8.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.25, 2.5, 8, 2.75], "texture": "#0"}, - "east": {"uv": [8, 2.5, 8.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.75, 8.25, 11], "texture": "#0"}, - "west": {"uv": [8, 2.5, 8.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 2.5, 8.25, 11], "texture": "#0"}, - "down": {"uv": [8, 11, 8.25, 2.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 2.5, + 8, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 2.5, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 2.5, + 8.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.5, + 8.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 11, + 8.25, + 2.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_9", - "from": [7.75, 0, 2.75], - "to": [8, 0.25, 10.75], + "from": [ + 7.75, + 0, + 2.75 + ], + "to": [ + 8, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8, 2.75, 7.75, 3], "texture": "#0"}, - "east": {"uv": [7.75, 2.75, 8, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.5, 8, 10.75], "texture": "#0"}, - "west": {"uv": [7.75, 2.75, 8, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 2.75, 8, 10.75], "texture": "#0"}, - "down": {"uv": [7.75, 10.75, 8, 2.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 2.75, + 7.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 2.75, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 2.75, + 8, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 2.75, + 8, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.75, + 8, + 2.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_10", - "from": [7.5, 0, 3], - "to": [7.75, 0.25, 10.5], + "from": [ + 7.5, + 0, + 3 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.75, 3, 7.5, 3.25], "texture": "#0"}, - "east": {"uv": [7.5, 3, 7.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#0"}, - "west": {"uv": [7.5, 3, 7.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 3, 7.75, 10.5], "texture": "#0"}, - "down": {"uv": [7.5, 10.5, 7.75, 3], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 3, + 7.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 3, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7.75, + 3 + ], + "texture": "#0" + } } }, { "name": "engelfish_11", - "from": [7.25, 0, 3.25], - "to": [7.5, 0.25, 10.25], + "from": [ + 7.25, + 0, + 3.25 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.5, 3.25, 7.25, 3.5], "texture": "#0"}, - "east": {"uv": [7.25, 3.25, 7.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10, 7.5, 10.25], "texture": "#0"}, - "west": {"uv": [7.25, 3.25, 7.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 3.25, 7.5, 10.25], "texture": "#0"}, - "down": {"uv": [7.25, 10.25, 7.5, 3.25], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 3.25, + 7.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3.25, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.25, + 7.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 3.25, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10.25, + 7.5, + 3.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_12", - "from": [7, 0, 3.5], - "to": [7.25, 0.25, 10], + "from": [ + 7, + 0, + 3.5 + ], + "to": [ + 7.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.25, 3.5, 7, 3.75], "texture": "#0"}, - "east": {"uv": [7, 3.5, 7.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.75, 7.25, 10], "texture": "#0"}, - "west": {"uv": [7, 3.5, 7.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 3.5, 7.25, 10], "texture": "#0"}, - "down": {"uv": [7, 10, 7.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 3.5, + 7, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.5, + 7.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.5, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 3.5, + 7.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10, + 7.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_13", - "from": [6.75, 0, 3.75], - "to": [7, 0.25, 9.75], + "from": [ + 6.75, + 0, + 3.75 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 3.75, 6.75, 4], "texture": "#0"}, - "east": {"uv": [6.75, 3.75, 7, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#0"}, - "west": {"uv": [6.75, 3.75, 7, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.75, 7, 9.75], "texture": "#0"}, - "down": {"uv": [6.75, 9.75, 7, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 3.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_14", - "from": [6.5, 0, 4], - "to": [6.75, 0.25, 9.5], + "from": [ + 6.5, + 0, + 4 + ], + "to": [ + 6.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [6.75, 4, 6.5, 4.25], "texture": "#0"}, - "east": {"uv": [6.5, 4, 6.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.25, 6.75, 9.5], "texture": "#0"}, - "west": {"uv": [6.5, 4, 6.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4, 6.75, 9.5], "texture": "#0"}, - "down": {"uv": [6.5, 9.5, 6.75, 4], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 4, + 6.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4, + 6.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4, + 6.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4, + 6.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.5, + 6.75, + 4 + ], + "texture": "#0" + } } }, { "name": "engelfish_15", - "from": [6, 0, 4.25], - "to": [6.5, 0.25, 9.25], + "from": [ + 6, + 0, + 4.25 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.5, 4.25, 6, 4.5], "texture": "#0"}, - "east": {"uv": [6.25, 4.25, 6.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9, 6.5, 9.25], "texture": "#0"}, - "west": {"uv": [6, 4.25, 6.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.25, 6.5, 9.25], "texture": "#0"}, - "down": {"uv": [6, 9.25, 6.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 4.25, + 6, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.25, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.25, + 6.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.25, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.25, + 6.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_16", - "from": [5.75, 0, 4.5], - "to": [6, 0.25, 11.5], + "from": [ + 5.75, + 0, + 4.5 + ], + "to": [ + 6, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6, 4.5, 5.75, 4.75], "texture": "#0"}, - "east": {"uv": [5.75, 4.5, 6, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.25, 6, 11.5], "texture": "#0"}, - "west": {"uv": [5.75, 4.5, 6, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.5, 6, 11.5], "texture": "#0"}, - "down": {"uv": [5.75, 11.5, 6, 4.5], "texture": "#0"} + "north": { + "uv": [ + 6, + 4.5, + 5.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.5, + 6, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.5, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.5, + 6, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 6, + 4.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_17", - "from": [13.25, 0, 4.5], - "to": [14, 0.25, 5.25], + "from": [ + 13.25, + 0, + 4.5 + ], + "to": [ + 14, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [14, 4.5, 13.25, 4.75], "texture": "#0"}, - "east": {"uv": [13.75, 4.5, 14, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 5, 14, 5.25], "texture": "#0"}, - "west": {"uv": [13.25, 4.5, 13.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 4.5, 14, 5.25], "texture": "#0"}, - "down": {"uv": [13.25, 5.25, 14, 4.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 4.5, + 13.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 4.5, + 14, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 5, + 14, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 4.5, + 13.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 4.5, + 14, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 5.25, + 14, + 4.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_18", - "from": [5.5, 0, 4.75], - "to": [5.75, 0.25, 11], + "from": [ + 5.5, + 0, + 4.75 + ], + "to": [ + 5.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.75, 4.75, 5.5, 5], "texture": "#0"}, - "east": {"uv": [5.5, 4.75, 5.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.75, 5.75, 11], "texture": "#0"}, - "west": {"uv": [5.5, 4.75, 5.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4.75, 5.75, 11], "texture": "#0"}, - "down": {"uv": [5.5, 11, 5.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 4.75, + 5.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.75, + 5.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.75, + 5.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4.75, + 5.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 11, + 5.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_19", - "from": [12.25, 0, 4.75], - "to": [13.25, 0.25, 5.5], + "from": [ + 12.25, + 0, + 4.75 + ], + "to": [ + 13.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [13.25, 4.75, 12.25, 5], "texture": "#0"}, - "east": {"uv": [13, 4.75, 13.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 5.25, 13.25, 5.5], "texture": "#0"}, - "west": {"uv": [12.25, 4.75, 12.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 4.75, 13.25, 5.5], "texture": "#0"}, - "down": {"uv": [12.25, 5.5, 13.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 4.75, + 12.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 4.75, + 13.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 5.25, + 13.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 4.75, + 12.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 4.75, + 13.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 5.5, + 13.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_20", - "from": [14, 0, 4.75], - "to": [14.25, 0.25, 5], + "from": [ + 14, + 0, + 4.75 + ], + "to": [ + 14.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [14.25, 4.75, 14, 5], "texture": "#0"}, - "east": {"uv": [14, 4.75, 14.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 4.75, 14.25, 5], "texture": "#0"}, - "west": {"uv": [14, 4.75, 14.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 4.75, 14.25, 5], "texture": "#0"}, - "down": {"uv": [14, 5, 14.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 4.75, + 14, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 4.75, + 14.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 4.75, + 14.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 4.75, + 14.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 4.75, + 14.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 5, + 14.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_21", - "from": [5.25, 0, 5], - "to": [5.5, 0.25, 10.75], + "from": [ + 5.25, + 0, + 5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.5, 5, 5.25, 5.25], "texture": "#0"}, - "east": {"uv": [5.25, 5, 5.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#0"}, - "west": {"uv": [5.25, 5, 5.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5, 5.5, 10.75], "texture": "#0"}, - "down": {"uv": [5.25, 10.75, 5.5, 5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 5, + 5.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 5.5, + 5 + ], + "texture": "#0" + } } }, { "name": "engelfish_22", - "from": [9.5, 0, 5], - "to": [9.75, 0.25, 7.75], + "from": [ + 9.5, + 0, + 5 + ], + "to": [ + 9.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [9.75, 5, 9.5, 5.25], "texture": "#0"}, - "east": {"uv": [9.5, 5, 9.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.5, 9.75, 7.75], "texture": "#0"}, - "west": {"uv": [9.5, 5, 9.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5, 9.75, 7.75], "texture": "#0"}, - "down": {"uv": [9.5, 7.75, 9.75, 5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7.75, + 9.75, + 5 + ], + "texture": "#0" + } } }, { "name": "engelfish_23", - "from": [11.5, 0, 5], - "to": [12.25, 0.25, 8.75], + "from": [ + 11.5, + 0, + 5 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 5, 11.5, 5.25], "texture": "#0"}, - "east": {"uv": [12, 5, 12.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.5, 12.25, 8.75], "texture": "#0"}, - "west": {"uv": [11.5, 5, 11.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 5, 12.25, 8.75], "texture": "#0"}, - "down": {"uv": [11.5, 8.75, 12.25, 5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 5, + 11.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 5, + 11.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8.75, + 12.25, + 5 + ], + "texture": "#0" + } } }, { "name": "engelfish_24", - "from": [5, 0, 5.25], - "to": [5.25, 0.25, 8.75], + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5.25, 5.25, 5, 5.5], "texture": "#0"}, - "east": {"uv": [5, 5.25, 5.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.5, 5.25, 8.75], "texture": "#0"}, - "west": {"uv": [5, 5.25, 5.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.25, 5.25, 8.75], "texture": "#0"}, - "down": {"uv": [5, 8.75, 5.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.25, + 5.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.75, + 5.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_25", - "from": [10.75, 0, 5.25], - "to": [11.5, 0.25, 8.5], + "from": [ + 10.75, + 0, + 5.25 + ], + "to": [ + 11.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.5, 5.25, 10.75, 5.5], "texture": "#0"}, - "east": {"uv": [11.25, 5.25, 11.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.25, 11.5, 8.5], "texture": "#0"}, - "west": {"uv": [10.75, 5.25, 11, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.25, 11.5, 8.5], "texture": "#0"}, - "down": {"uv": [10.75, 8.5, 11.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 5.25, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 5.25, + 11.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.25, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.25, + 11, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.25, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.5, + 11.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_26", - "from": [13.25, 0, 5.25], - "to": [13.5, 0.25, 5.5], + "from": [ + 13.25, + 0, + 5.25 + ], + "to": [ + 13.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [13.5, 5.25, 13.25, 5.5], "texture": "#0"}, - "east": {"uv": [13.25, 5.25, 13.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 5.25, 13.5, 5.5], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 13.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 5.25, 13.5, 5.5], "texture": "#0"}, - "down": {"uv": [13.25, 5.5, 13.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 5.25, + 13.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 5.25, + 13.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 5.25, + 13.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 5.25, + 13.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 5.25, + 13.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 5.5, + 13.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_27", - "from": [4.75, 0, 5.5], - "to": [5, 0.25, 8.5], + "from": [ + 4.75, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [5, 5.5, 4.75, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8.25, 5, 8.5], "texture": "#0"}, - "west": {"uv": [4.75, 5.5, 5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5.5, 5, 8.5], "texture": "#0"}, - "down": {"uv": [4.75, 8.5, 5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5.5, + 5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5.5, + 5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8.5, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_28", - "from": [10.25, 0, 5.5], - "to": [10.75, 0.25, 8.25], + "from": [ + 10.25, + 0, + 5.5 + ], + "to": [ + 10.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [10.75, 5.5, 10.25, 5.75], "texture": "#0"}, - "east": {"uv": [10.5, 5.5, 10.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8, 10.75, 8.25], "texture": "#0"}, - "west": {"uv": [10.25, 5.5, 10.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5.5, 10.75, 8.25], "texture": "#0"}, - "down": {"uv": [10.25, 8.25, 10.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.5, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.5, + 10.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8, + 10.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.5, + 10.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.5, + 10.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8.25, + 10.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_29", - "from": [12.25, 0, 5.5], - "to": [12.75, 0.25, 5.75], + "from": [ + 12.25, + 0, + 5.5 + ], + "to": [ + 12.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [12.75, 5.5, 12.25, 5.75], "texture": "#0"}, - "east": {"uv": [12.5, 5.5, 12.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 5.5, 12.75, 5.75], "texture": "#0"}, - "west": {"uv": [12.25, 5.5, 12.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 5.5, 12.75, 5.75], "texture": "#0"}, - "down": {"uv": [12.25, 5.75, 12.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 5.5, + 12.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 5.5, + 12.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 5.5, + 12.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 5.5, + 12.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 5.5, + 12.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 5.75, + 12.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_30", - "from": [4.5, 0, 5.75], - "to": [4.75, 0.25, 8.25], + "from": [ + 4.5, + 0, + 5.75 + ], + "to": [ + 4.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [4.75, 5.75, 4.5, 6], "texture": "#0"}, - "east": {"uv": [4.5, 5.75, 4.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8, 4.75, 8.25], "texture": "#0"}, - "west": {"uv": [4.5, 5.75, 4.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.75, 4.75, 8.25], "texture": "#0"}, - "down": {"uv": [4.5, 8.25, 4.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.75, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8.25, + 4.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_31", - "from": [10, 0, 5.75], - "to": [10.25, 0.25, 8], + "from": [ + 10, + 0, + 5.75 + ], + "to": [ + 10.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [10.25, 5.75, 10, 6], "texture": "#0"}, - "east": {"uv": [10, 5.75, 10.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.75, 10.25, 8], "texture": "#0"}, - "west": {"uv": [10, 5.75, 10.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5.75, 10.25, 8], "texture": "#0"}, - "down": {"uv": [10, 8, 10.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 5.75, + 10, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.75, + 10.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.75, + 10.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.75, + 10.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.75, + 10.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8, + 10.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_32", - "from": [12.25, 0, 5.75], - "to": [12.5, 0.25, 6], + "from": [ + 12.25, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12.25, 6], "texture": "#0"}, - "east": {"uv": [12.25, 5.75, 12.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 5.75, 12.5, 6], "texture": "#0"}, - "west": {"uv": [12.25, 5.75, 12.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 5.75, 12.5, 6], "texture": "#0"}, - "down": {"uv": [12.25, 6, 12.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.75, + 12.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 5.75, + 12.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 5.75, + 12.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 5.75, + 12.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 6, + 12.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_33", - "from": [4.25, 0, 6], - "to": [4.5, 0.25, 8], + "from": [ + 4.25, + 0, + 6 + ], + "to": [ + 4.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [4.5, 6, 4.25, 6.25], "texture": "#0"}, - "east": {"uv": [4.25, 6, 4.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.75, 4.5, 8], "texture": "#0"}, - "west": {"uv": [4.25, 6, 4.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6, 4.5, 8], "texture": "#0"}, - "down": {"uv": [4.25, 8, 4.5, 6], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 6, + 4.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6, + 4.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.75, + 4.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6, + 4.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6, + 4.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 8, + 4.5, + 6 + ], + "texture": "#0" + } } }, { "name": "engelfish_34", - "from": [9.75, 0, 6], - "to": [10, 0.25, 8], + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10, + 0.25, + 8 + ], "faces": { - "north": {"uv": [10, 6, 9.75, 6.25], "texture": "#0"}, - "east": {"uv": [9.75, 6, 10, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 7.75, 10, 8], "texture": "#0"}, - "west": {"uv": [9.75, 6, 10, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6, 10, 8], "texture": "#0"}, - "down": {"uv": [9.75, 8, 10, 6], "texture": "#0"} + "north": { + "uv": [ + 10, + 6, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6, + 10, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 7.75, + 10, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6, + 10, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 10, + 6 + ], + "texture": "#0" + } } }, { "name": "engelfish_35", - "from": [4, 0, 6.25], - "to": [4.25, 0.25, 7.75], + "from": [ + 4, + 0, + 6.25 + ], + "to": [ + 4.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [4.25, 6.25, 4, 6.5], "texture": "#0"}, - "east": {"uv": [4, 6.25, 4.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7.5, 4.25, 7.75], "texture": "#0"}, - "west": {"uv": [4, 6.25, 4.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6.25, 4.25, 7.75], "texture": "#0"}, - "down": {"uv": [4, 7.75, 4.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 6.25, + 4, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.25, + 4.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6.25, + 4.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.25, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.75, + 4.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_36", - "from": [3.75, 0, 6.5], - "to": [4, 0.25, 7.25], + "from": [ + 3.75, + 0, + 6.5 + ], + "to": [ + 4, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [4, 6.5, 3.75, 6.75], "texture": "#0"}, - "east": {"uv": [3.75, 6.5, 4, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 7, 4, 7.25], "texture": "#0"}, - "west": {"uv": [3.75, 6.5, 4, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.5, 4, 7.25], "texture": "#0"}, - "down": {"uv": [3.75, 7.25, 4, 6.5], "texture": "#0"} + "north": { + "uv": [ + 4, + 6.5, + 3.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6.5, + 4, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 4, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 4, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.25, + 4, + 6.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_37", - "from": [3.5, 0, 6.75], - "to": [3.75, 0.25, 7], + "from": [ + 3.5, + 0, + 6.75 + ], + "to": [ + 3.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [3.75, 6.75, 3.5, 7], "texture": "#0"}, - "east": {"uv": [3.5, 6.75, 3.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6.75, 3.75, 7], "texture": "#0"}, - "west": {"uv": [3.5, 6.75, 3.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.75, 3.75, 7], "texture": "#0"}, - "down": {"uv": [3.5, 7, 3.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 6.75, + 3.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7, + 3.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_38", - "from": [9, 0, 7.75], - "to": [9.25, 0.25, 11.75], + "from": [ + 9, + 0, + 7.75 + ], + "to": [ + 9.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [9.25, 7.75, 9, 8], "texture": "#0"}, - "east": {"uv": [9, 7.75, 9.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 11.5, 9.25, 11.75], "texture": "#0"}, - "west": {"uv": [9, 7.75, 9.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.75, 9.25, 11.75], "texture": "#0"}, - "down": {"uv": [9, 11.75, 9.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 7.75, + 9, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.75, + 9.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 11.5, + 9.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.75, + 9.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.75, + 9.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11.75, + 9.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_39", - "from": [12.25, 0, 8], - "to": [12.5, 0.25, 9.25], + "from": [ + 12.25, + 0, + 8 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 8, 12.25, 8.25], "texture": "#0"}, - "east": {"uv": [12.25, 8, 12.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 9, 12.5, 9.25], "texture": "#0"}, - "west": {"uv": [12.25, 8, 12.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 8, 12.5, 9.25], "texture": "#0"}, - "down": {"uv": [12.25, 9.25, 12.5, 8], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 8, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 8, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 8, + 12.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 8, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 9.25, + 12.5, + 8 + ], + "texture": "#0" + } } }, { "name": "engelfish_40", - "from": [12.5, 0, 8.25], - "to": [12.75, 0.25, 9.25], + "from": [ + 12.5, + 0, + 8.25 + ], + "to": [ + 12.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.75, 8.25, 12.5, 8.5], "texture": "#0"}, - "east": {"uv": [12.5, 8.25, 12.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 9, 12.75, 9.25], "texture": "#0"}, - "west": {"uv": [12.5, 8.25, 12.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.25, 12.75, 9.25], "texture": "#0"}, - "down": {"uv": [12.5, 9.25, 12.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.25, + 12.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 9, + 12.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.25, + 12.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.25, + 12.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9.25, + 12.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_41", - "from": [9.25, 0, 8.5], - "to": [9.5, 0.25, 12], + "from": [ + 9.25, + 0, + 8.5 + ], + "to": [ + 9.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.5, 8.5, 9.25, 8.75], "texture": "#0"}, - "east": {"uv": [9.25, 8.5, 9.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 11.75, 9.5, 12], "texture": "#0"}, - "west": {"uv": [9.25, 8.5, 9.5, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8.5, 9.5, 12], "texture": "#0"}, - "down": {"uv": [9.25, 12, 9.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 8.5, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8.5, + 9.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 11.75, + 9.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8.5, + 9.5, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.5, + 9.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 12, + 9.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_42", - "from": [11.25, 0, 8.5], - "to": [11.5, 0.25, 8.75], + "from": [ + 11.25, + 0, + 8.5 + ], + "to": [ + 11.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [11.5, 8.5, 11.25, 8.75], "texture": "#0"}, - "east": {"uv": [11.25, 8.5, 11.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.5, 11.5, 8.75], "texture": "#0"}, - "west": {"uv": [11.25, 8.5, 11.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.5, 11.5, 8.75], "texture": "#0"}, - "down": {"uv": [11.25, 8.75, 11.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 11.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_43", - "from": [12.75, 0, 8.5], - "to": [13, 0.25, 9.25], + "from": [ + 12.75, + 0, + 8.5 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 8.5, 12.75, 8.75], "texture": "#0"}, - "east": {"uv": [12.75, 8.5, 13, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 9, 13, 9.25], "texture": "#0"}, - "west": {"uv": [12.75, 8.5, 13, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.5, 13, 9.25], "texture": "#0"}, - "down": {"uv": [12.75, 9.25, 13, 8.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 8.5, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.5, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.5, + 13, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.5, + 13, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9.25, + 13, + 8.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_44", - "from": [12, 0, 8.75], - "to": [12.25, 0.25, 9], + "from": [ + 12, + 0, + 8.75 + ], + "to": [ + 12.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.25, 8.75, 12, 9], "texture": "#0"}, - "east": {"uv": [12, 8.75, 12.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, - "west": {"uv": [12, 8.75, 12.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, - "down": {"uv": [12, 9, 12.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9, + 12.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_45", - "from": [13, 0, 8.75], - "to": [13.5, 0.25, 9.5], + "from": [ + 13, + 0, + 8.75 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 8.75, 13, 9], "texture": "#0"}, - "east": {"uv": [13.25, 8.75, 13.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9.25, 13.5, 9.5], "texture": "#0"}, - "west": {"uv": [13, 8.75, 13.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8.75, 13.5, 9.5], "texture": "#0"}, - "down": {"uv": [13, 9.5, 13.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 8.75, + 13, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.75, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8.75, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_46", - "from": [9.5, 0, 9], - "to": [9.75, 0.25, 12.25], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 9.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [9.75, 9, 9.5, 9.25], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 12, 9.75, 12.25], "texture": "#0"}, - "west": {"uv": [9.5, 9, 9.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9, 9.75, 12.25], "texture": "#0"}, - "down": {"uv": [9.5, 12.25, 9.75, 9], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 12, + 9.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9, + 9.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 12.25, + 9.75, + 9 + ], + "texture": "#0" + } } }, { "name": "engelfish_47", - "from": [13.5, 0, 9], - "to": [14.25, 0.25, 9.75], + "from": [ + 13.5, + 0, + 9 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 9, 13.5, 9.25], "texture": "#0"}, - "east": {"uv": [14, 9, 14.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9.5, 14.25, 9.75], "texture": "#0"}, - "west": {"uv": [13.5, 9, 13.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 9, 14.25, 9.75], "texture": "#0"}, - "down": {"uv": [13.5, 9.75, 14.25, 9], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 9, + 13.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 9, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.75, + 14.25, + 9 + ], + "texture": "#0" + } } }, { "name": "engelfish_48", - "from": [14.25, 0, 9.25], - "to": [14.5, 0.25, 9.5], + "from": [ + 14.25, + 0, + 9.25 + ], + "to": [ + 14.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.5, 9.25, 14.25, 9.5], "texture": "#0"}, - "east": {"uv": [14.25, 9.25, 14.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.25, 14.5, 9.5], "texture": "#0"}, - "west": {"uv": [14.25, 9.25, 14.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 9.25, 14.5, 9.5], "texture": "#0"}, - "down": {"uv": [14.25, 9.5, 14.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_49", - "from": [9.75, 0, 9.5], - "to": [10, 0.25, 12.5], + "from": [ + 9.75, + 0, + 9.5 + ], + "to": [ + 10, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10, 9.5, 9.75, 9.75], "texture": "#0"}, - "east": {"uv": [9.75, 9.5, 10, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 12.25, 10, 12.5], "texture": "#0"}, - "west": {"uv": [9.75, 9.5, 10, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.5, 10, 12.5], "texture": "#0"}, - "down": {"uv": [9.75, 12.5, 10, 9.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.5, + 10, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 12.25, + 10, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 10, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.5, + 10, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 12.5, + 10, + 9.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_50", - "from": [6, 0, 10.25], - "to": [6.25, 0.25, 12], + "from": [ + 6, + 0, + 10.25 + ], + "to": [ + 6.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [6.25, 10.25, 6, 10.5], "texture": "#0"}, - "east": {"uv": [6, 10.25, 6.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11.75, 6.25, 12], "texture": "#0"}, - "west": {"uv": [6, 10.25, 6.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10.25, 6.25, 12], "texture": "#0"}, - "down": {"uv": [6, 12, 6.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 10.25, + 6, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10.25, + 6.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10.25, + 6.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.25, + 6.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 12, + 6.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_51", - "from": [10, 0, 10.5], - "to": [10.25, 0.25, 12.75], + "from": [ + 10, + 0, + 10.5 + ], + "to": [ + 10.25, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [10.25, 10.5, 10, 10.75], "texture": "#0"}, - "east": {"uv": [10, 10.5, 10.25, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 12.5, 10.25, 12.75], "texture": "#0"}, - "west": {"uv": [10, 10.5, 10.25, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10.5, 10.25, 12.75], "texture": "#0"}, - "down": {"uv": [10, 12.75, 10.25, 10.5], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 10.5, + 10.25, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 12.5, + 10.25, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.5, + 10.25, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10.5, + 10.25, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 12.75, + 10.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_52", - "from": [6.25, 0, 10.75], - "to": [6.5, 0.25, 12.25], + "from": [ + 6.25, + 0, + 10.75 + ], + "to": [ + 6.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6.5, 10.75, 6.25, 11], "texture": "#0"}, - "east": {"uv": [6.25, 10.75, 6.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 12, 6.5, 12.25], "texture": "#0"}, - "west": {"uv": [6.25, 10.75, 6.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10.75, 6.5, 12.25], "texture": "#0"}, - "down": {"uv": [6.25, 12.25, 6.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10.75, + 6.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10.75, + 6.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 12, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.75, + 6.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10.75, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12.25, + 6.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_53", - "from": [10.25, 0, 11], - "to": [10.5, 0.25, 13], + "from": [ + 10.25, + 0, + 11 + ], + "to": [ + 10.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [10.5, 11, 10.25, 11.25], "texture": "#0"}, - "east": {"uv": [10.25, 11, 10.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 12.75, 10.5, 13], "texture": "#0"}, - "west": {"uv": [10.25, 11, 10.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 11, 10.5, 13], "texture": "#0"}, - "down": {"uv": [10.25, 13, 10.5, 11], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 11, + 10.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 11, + 10.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 11, + 10.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 11, + 10.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 13, + 10.5, + 11 + ], + "texture": "#0" + } } }, { "name": "engelfish_54", - "from": [6.5, 0, 11.25], - "to": [6.75, 0.25, 12.5], + "from": [ + 6.5, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.5, 11.5], "texture": "#0"}, - "east": {"uv": [6.5, 11.25, 6.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 12.25, 6.75, 12.5], "texture": "#0"}, - "west": {"uv": [6.5, 11.25, 6.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 11.25, 6.75, 12.5], "texture": "#0"}, - "down": {"uv": [6.5, 12.5, 6.75, 11.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12.25, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 11.25, + 6.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 11.25, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 12.5, + 6.75, + 11.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_55", - "from": [10.5, 0, 11.5], - "to": [10.75, 0.25, 13.25], + "from": [ + 10.5, + 0, + 11.5 + ], + "to": [ + 10.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [10.75, 11.5, 10.5, 11.75], "texture": "#0"}, - "east": {"uv": [10.5, 11.5, 10.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 13, 10.75, 13.25], "texture": "#0"}, - "west": {"uv": [10.5, 11.5, 10.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 11.5, 10.75, 13.25], "texture": "#0"}, - "down": {"uv": [10.5, 13.25, 10.75, 11.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 11.5, + 10.5, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 11.5, + 10.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13, + 10.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 11.5, + 10.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 11.5, + 10.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13.25, + 10.75, + 11.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_56", - "from": [6.75, 0, 11.75], - "to": [7, 0.25, 13], + "from": [ + 6.75, + 0, + 11.75 + ], + "to": [ + 7, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7, 11.75, 6.75, 12], "texture": "#0"}, - "east": {"uv": [6.75, 11.75, 7, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 12.75, 7, 13], "texture": "#0"}, - "west": {"uv": [6.75, 11.75, 7, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 11.75, 7, 13], "texture": "#0"}, - "down": {"uv": [6.75, 13, 7, 11.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 11.75, + 6.75, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 11.75, + 7, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 12.75, + 7, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 11.75, + 7, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 11.75, + 7, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 13, + 7, + 11.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_57", - "from": [10.75, 0, 12], - "to": [11, 0.25, 13.5], + "from": [ + 10.75, + 0, + 12 + ], + "to": [ + 11, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [11, 12, 10.75, 12.25], "texture": "#0"}, - "east": {"uv": [10.75, 12, 11, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 13.25, 11, 13.5], "texture": "#0"}, - "west": {"uv": [10.75, 12, 11, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 12, 11, 13.5], "texture": "#0"}, - "down": {"uv": [10.75, 13.5, 11, 12], "texture": "#0"} + "north": { + "uv": [ + 11, + 12, + 10.75, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 12, + 11, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 13.25, + 11, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 12, + 11, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 12, + 11, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 13.5, + 11, + 12 + ], + "texture": "#0" + } } }, { "name": "engelfish_58", - "from": [7, 0, 12.25], - "to": [7.25, 0.25, 13.25], + "from": [ + 7, + 0, + 12.25 + ], + "to": [ + 7.25, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [7.25, 12.25, 7, 12.5], "texture": "#0"}, - "east": {"uv": [7, 12.25, 7.25, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 13, 7.25, 13.25], "texture": "#0"}, - "west": {"uv": [7, 12.25, 7.25, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 12.25, 7.25, 13.25], "texture": "#0"}, - "down": {"uv": [7, 13.25, 7.25, 12.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 12.25, + 7, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 12.25, + 7.25, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 13, + 7.25, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 12.25, + 7.25, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 12.25, + 7.25, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 13.25, + 7.25, + 12.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_59", - "from": [11, 0, 12.25], - "to": [11.25, 0.25, 13.5], + "from": [ + 11, + 0, + 12.25 + ], + "to": [ + 11.25, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [11.25, 12.25, 11, 12.5], "texture": "#0"}, - "east": {"uv": [11, 12.25, 11.25, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 13.25, 11.25, 13.5], "texture": "#0"}, - "west": {"uv": [11, 12.25, 11.25, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 12.25, 11.25, 13.5], "texture": "#0"}, - "down": {"uv": [11, 13.5, 11.25, 12.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 12.25, + 11, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 12.25, + 11.25, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 13.25, + 11.25, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 12.25, + 11.25, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 12.25, + 11.25, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 13.5, + 11.25, + 12.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_60", - "from": [7.25, 0, 12.5], - "to": [7.5, 0.25, 13.5], + "from": [ + 7.25, + 0, + 12.5 + ], + "to": [ + 7.5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [7.5, 12.5, 7.25, 12.75], "texture": "#0"}, - "east": {"uv": [7.25, 12.5, 7.5, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 13.25, 7.5, 13.5], "texture": "#0"}, - "west": {"uv": [7.25, 12.5, 7.5, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 12.5, 7.5, 13.5], "texture": "#0"}, - "down": {"uv": [7.25, 13.5, 7.5, 12.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 12.5, + 7.25, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 13.25, + 7.5, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 13.5, + 7.5, + 12.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_61", - "from": [11.25, 0, 12.5], - "to": [11.5, 0.25, 13.75], + "from": [ + 11.25, + 0, + 12.5 + ], + "to": [ + 11.5, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [11.5, 12.5, 11.25, 12.75], "texture": "#0"}, - "east": {"uv": [11.25, 12.5, 11.5, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 13.5, 11.5, 13.75], "texture": "#0"}, - "west": {"uv": [11.25, 12.5, 11.5, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 12.5, 11.5, 13.75], "texture": "#0"}, - "down": {"uv": [11.25, 13.75, 11.5, 12.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 12.5, + 11.25, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 12.5, + 11.5, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 13.5, + 11.5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 12.5, + 11.5, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 12.5, + 11.5, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 13.75, + 11.5, + 12.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_62", - "from": [7.5, 0, 12.75], - "to": [7.75, 0.25, 13.75], + "from": [ + 7.5, + 0, + 12.75 + ], + "to": [ + 7.75, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [7.75, 12.75, 7.5, 13], "texture": "#0"}, - "east": {"uv": [7.5, 12.75, 7.75, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 13.5, 7.75, 13.75], "texture": "#0"}, - "west": {"uv": [7.5, 12.75, 7.75, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 12.75, 7.75, 13.75], "texture": "#0"}, - "down": {"uv": [7.5, 13.75, 7.75, 12.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 12.75, + 7.5, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 12.75, + 7.75, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 13.5, + 7.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 12.75, + 7.75, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 12.75, + 7.75, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 13.75, + 7.75, + 12.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_63", - "from": [7.75, 0, 13], - "to": [8, 0.25, 14], + "from": [ + 7.75, + 0, + 13 + ], + "to": [ + 8, + 0.25, + 14 + ], "faces": { - "north": {"uv": [8, 13, 7.75, 13.25], "texture": "#0"}, - "east": {"uv": [7.75, 13, 8, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 13.75, 8, 14], "texture": "#0"}, - "west": {"uv": [7.75, 13, 8, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 13, 8, 14], "texture": "#0"}, - "down": {"uv": [7.75, 14, 8, 13], "texture": "#0"} + "north": { + "uv": [ + 8, + 13, + 7.75, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 13, + 8, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 13.75, + 8, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 13, + 8, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 13, + 8, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 14, + 8, + 13 + ], + "texture": "#0" + } } }, { "name": "engelfish_64", - "from": [11.5, 0, 13], - "to": [11.75, 0.25, 13.75], + "from": [ + 11.5, + 0, + 13 + ], + "to": [ + 11.75, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [11.75, 13, 11.5, 13.25], "texture": "#0"}, - "east": {"uv": [11.5, 13, 11.75, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 13.5, 11.75, 13.75], "texture": "#0"}, - "west": {"uv": [11.5, 13, 11.75, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 13, 11.75, 13.75], "texture": "#0"}, - "down": {"uv": [11.5, 13.75, 11.75, 13], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 13, + 11.5, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 13, + 11.75, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 13.5, + 11.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 13, + 11.75, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 13, + 11.75, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 13.75, + 11.75, + 13 + ], + "texture": "#0" + } } }, { "name": "engelfish_65", - "from": [8, 0, 13.25], - "to": [8.25, 0.25, 14.25], + "from": [ + 8, + 0, + 13.25 + ], + "to": [ + 8.25, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [8.25, 13.25, 8, 13.5], "texture": "#0"}, - "east": {"uv": [8, 13.25, 8.25, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 14, 8.25, 14.25], "texture": "#0"}, - "west": {"uv": [8, 13.25, 8.25, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 13.25, 8.25, 14.25], "texture": "#0"}, - "down": {"uv": [8, 14.25, 8.25, 13.25], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 13.25, + 8, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 13.25, + 8.25, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 14, + 8.25, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 13.25, + 8.25, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 13.25, + 8.25, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 14.25, + 8.25, + 13.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_66", - "from": [11.75, 0, 13.25], - "to": [12, 0.25, 14], + "from": [ + 11.75, + 0, + 13.25 + ], + "to": [ + 12, + 0.25, + 14 + ], "faces": { - "north": {"uv": [12, 13.25, 11.75, 13.5], "texture": "#0"}, - "east": {"uv": [11.75, 13.25, 12, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 13.75, 12, 14], "texture": "#0"}, - "west": {"uv": [11.75, 13.25, 12, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 13.25, 12, 14], "texture": "#0"}, - "down": {"uv": [11.75, 14, 12, 13.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 13.25, + 11.75, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 13.25, + 12, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 13.75, + 12, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 13.25, + 12, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 13.25, + 12, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 14, + 12, + 13.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_67", - "from": [8.25, 0, 13.5], - "to": [8.5, 0.25, 14.5], + "from": [ + 8.25, + 0, + 13.5 + ], + "to": [ + 8.5, + 0.25, + 14.5 + ], "faces": { - "north": {"uv": [8.5, 13.5, 8.25, 13.75], "texture": "#0"}, - "east": {"uv": [8.25, 13.5, 8.5, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 14.25, 8.5, 14.5], "texture": "#0"}, - "west": {"uv": [8.25, 13.5, 8.5, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 13.5, 8.5, 14.5], "texture": "#0"}, - "down": {"uv": [8.25, 14.5, 8.5, 13.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 13.5, + 8.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 13.5, + 8.5, + 14.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 14.25, + 8.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 13.5, + 8.5, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 13.5, + 8.5, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 14.5, + 8.5, + 13.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_68", - "from": [12, 0, 13.5], - "to": [12.25, 0.25, 14.25], + "from": [ + 12, + 0, + 13.5 + ], + "to": [ + 12.25, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [12.25, 13.5, 12, 13.75], "texture": "#0"}, - "east": {"uv": [12, 13.5, 12.25, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 14, 12.25, 14.25], "texture": "#0"}, - "west": {"uv": [12, 13.5, 12.25, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 13.5, 12.25, 14.25], "texture": "#0"}, - "down": {"uv": [12, 14.25, 12.25, 13.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 13.5, + 12, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 13.5, + 12.25, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 14, + 12.25, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 13.5, + 12.25, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 13.5, + 12.25, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 14.25, + 12.25, + 13.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_69", - "from": [8.5, 0, 13.75], - "to": [8.75, 0.25, 14.75], + "from": [ + 8.5, + 0, + 13.75 + ], + "to": [ + 8.75, + 0.25, + 14.75 + ], "faces": { - "north": {"uv": [8.75, 13.75, 8.5, 14], "texture": "#0"}, - "east": {"uv": [8.5, 13.75, 8.75, 14.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 14.5, 8.75, 14.75], "texture": "#0"}, - "west": {"uv": [8.5, 13.75, 8.75, 14.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 13.75, 8.75, 14.75], "texture": "#0"}, - "down": {"uv": [8.5, 14.75, 8.75, 13.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 13.75, + 8.5, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 13.75, + 8.75, + 14.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 14.5, + 8.75, + 14.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 13.75, + 8.75, + 14.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 13.75, + 8.75, + 14.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 14.75, + 8.75, + 13.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_70", - "from": [12.25, 0, 13.75], - "to": [12.5, 0.25, 14.5], + "from": [ + 12.25, + 0, + 13.75 + ], + "to": [ + 12.5, + 0.25, + 14.5 + ], "faces": { - "north": {"uv": [12.5, 13.75, 12.25, 14], "texture": "#0"}, - "east": {"uv": [12.25, 13.75, 12.5, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 14.25, 12.5, 14.5], "texture": "#0"}, - "west": {"uv": [12.25, 13.75, 12.5, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 13.75, 12.5, 14.5], "texture": "#0"}, - "down": {"uv": [12.25, 14.5, 12.5, 13.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 13.75, + 12.25, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 13.75, + 12.5, + 14.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 14.25, + 12.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 13.75, + 12.5, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 13.75, + 12.5, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 14.5, + 12.5, + 13.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_71", - "from": [8.75, 0, 14], - "to": [9, 0.25, 14.75], + "from": [ + 8.75, + 0, + 14 + ], + "to": [ + 9, + 0.25, + 14.75 + ], "faces": { - "north": {"uv": [9, 14, 8.75, 14.25], "texture": "#0"}, - "east": {"uv": [8.75, 14, 9, 14.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 14.5, 9, 14.75], "texture": "#0"}, - "west": {"uv": [8.75, 14, 9, 14.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 14, 9, 14.75], "texture": "#0"}, - "down": {"uv": [8.75, 14.75, 9, 14], "texture": "#0"} + "north": { + "uv": [ + 9, + 14, + 8.75, + 14.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 14, + 9, + 14.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 14.5, + 9, + 14.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 14, + 9, + 14.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 14, + 9, + 14.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 14.75, + 9, + 14 + ], + "texture": "#0" + } } }, { "name": "engelfish_72", - "from": [12.5, 0, 14], - "to": [12.75, 0.25, 14.25], + "from": [ + 12.5, + 0, + 14 + ], + "to": [ + 12.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [12.75, 14, 12.5, 14.25], "texture": "#0"}, - "east": {"uv": [12.5, 14, 12.75, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 14, 12.75, 14.25], "texture": "#0"}, - "west": {"uv": [12.5, 14, 12.75, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 14, 12.75, 14.25], "texture": "#0"}, - "down": {"uv": [12.5, 14.25, 12.75, 14], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 14, + 12.5, + 14.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 14, + 12.75, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 14, + 12.75, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 14, + 12.75, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 14, + 12.75, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 14.25, + 12.75, + 14 + ], + "texture": "#0" + } } }, { "name": "engelfish_73", - "from": [9, 0, 14.25], - "to": [9.5, 0.25, 15], + "from": [ + 9, + 0, + 14.25 + ], + "to": [ + 9.5, + 0.25, + 15 + ], "faces": { - "north": {"uv": [9.5, 14.25, 9, 14.5], "texture": "#0"}, - "east": {"uv": [9.25, 14.25, 9.5, 15], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 14.75, 9.5, 15], "texture": "#0"}, - "west": {"uv": [9, 14.25, 9.25, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 14.25, 9.5, 15], "texture": "#0"}, - "down": {"uv": [9, 15, 9.5, 14.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 14.25, + 9, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 14.25, + 9.5, + 15 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 14.75, + 9.5, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 14.25, + 9.25, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 14.25, + 9.5, + 15 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 15, + 9.5, + 14.25 + ], + "texture": "#0" + } } }, { "name": "engelfish_74", - "from": [9.5, 0, 14.5], - "to": [10, 0.25, 15.25], + "from": [ + 9.5, + 0, + 14.5 + ], + "to": [ + 10, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [10, 14.5, 9.5, 14.75], "texture": "#0"}, - "east": {"uv": [9.75, 14.5, 10, 15.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 15, 10, 15.25], "texture": "#0"}, - "west": {"uv": [9.5, 14.5, 9.75, 15.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 14.5, 10, 15.25], "texture": "#0"}, - "down": {"uv": [9.5, 15.25, 10, 14.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 14.5, + 9.5, + 14.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 14.5, + 10, + 15.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 15, + 10, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 14.5, + 9.75, + 15.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 14.5, + 10, + 15.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 15.25, + 10, + 14.5 + ], + "texture": "#0" + } } }, { "name": "engelfish_75", - "from": [10, 0, 14.75], - "to": [10.25, 0.25, 15.5], + "from": [ + 10, + 0, + 14.75 + ], + "to": [ + 10.25, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [10.25, 14.75, 10, 15], "texture": "#0"}, - "east": {"uv": [10, 14.75, 10.25, 15.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 15.25, 10.25, 15.5], "texture": "#0"}, - "west": {"uv": [10, 14.75, 10.25, 15.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 14.75, 10.25, 15.5], "texture": "#0"}, - "down": {"uv": [10, 15.5, 10.25, 14.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 14.75, + 10, + 15 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 14.75, + 10.25, + 15.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 15.25, + 10.25, + 15.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 14.75, + 10.25, + 15.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 14.75, + 10.25, + 15.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 15.5, + 10.25, + 14.75 + ], + "texture": "#0" + } } }, { "name": "engelfish_76", - "from": [9.25, 0, 15], - "to": [9.5, 0.25, 15.25], + "from": [ + 9.25, + 0, + 15 + ], + "to": [ + 9.5, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [9.5, 15, 9.25, 15.25], "texture": "#0"}, - "east": {"uv": [9.25, 15, 9.5, 15.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 15, 9.5, 15.25], "texture": "#0"}, - "west": {"uv": [9.25, 15, 9.5, 15.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 15, 9.5, 15.25], "texture": "#0"}, - "down": {"uv": [9.25, 15.25, 9.5, 15], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 15, + 9.25, + 15.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 15, + 9.5, + 15.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 15, + 9.5, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 15, + 9.5, + 15.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 15, + 9.5, + 15.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 15.25, + 9.5, + 15 + ], + "texture": "#0" + } } }, { "name": "engelfish_77", - "from": [10.25, 0, 15], - "to": [10.5, 0.25, 15.25], + "from": [ + 10.25, + 0, + 15 + ], + "to": [ + 10.5, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [10.5, 15, 10.25, 15.25], "texture": "#0"}, - "east": {"uv": [10.25, 15, 10.5, 15.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 15, 10.5, 15.25], "texture": "#0"}, - "west": {"uv": [10.25, 15, 10.5, 15.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 15, 10.5, 15.25], "texture": "#0"}, - "down": {"uv": [10.25, 15.25, 10.5, 15], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 15, + 10.25, + 15.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 15, + 10.5, + 15.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 15, + 10.5, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 15, + 10.5, + 15.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 15, + 10.5, + 15.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 15.25, + 10.5, + 15 + ], + "texture": "#0" + } } }, { "name": "engelfish_78", - "from": [9.75, 0, 15.25], - "to": [10, 0.25, 15.5], + "from": [ + 9.75, + 0, + 15.25 + ], + "to": [ + 10, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [10, 15.25, 9.75, 15.5], "texture": "#0"}, - "east": {"uv": [9.75, 15.25, 10, 15.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 15.25, 10, 15.5], "texture": "#0"}, - "west": {"uv": [9.75, 15.25, 10, 15.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 15.25, 10, 15.5], "texture": "#0"}, - "down": {"uv": [9.75, 15.5, 10, 15.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 15.25, + 9.75, + 15.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 15.25, + 10, + 15.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 15.25, + 10, + 15.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 15.25, + 10, + 15.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 15.25, + 10, + 15.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 15.5, + 10, + 15.25 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "engelfish", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/fugu.json b/pack/assets/minecraft/models/fish/fugu.json index ceb4214d..eb2bad37 100644 --- a/pack/assets/minecraft/models/fish/fugu.json +++ b/pack/assets/minecraft/models/fish/fugu.json @@ -2,422 +2,2171 @@ "__name": "フグ", "credit": "Made with Blockbench", "textures": { - "2": "fish/fugu", - "particle": "fish/dojou" + "2": "item/fish/fugu", + "particle": "item/fish/dojou" }, "elements": [ { "name": "fugu_0", - "from": [10, 0, 5.25], - "to": [10.75, 0.25, 9], + "from": [ + 10, + 0, + 5.25 + ], + "to": [ + 10.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.75, 5.25, 10, 5.5], "texture": "#2"}, - "east": {"uv": [10.5, 5.25, 10.75, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 8.75, 10.75, 9], "texture": "#2"}, - "west": {"uv": [10, 5.25, 10.25, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 5.25, 10.75, 9], "texture": "#2"}, - "down": {"uv": [10, 9, 10.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 5.25, + 10, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 5.25, + 10.75, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 8.75, + 10.75, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 5.25, + 10.25, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 5.25, + 10.75, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 9, + 10.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "fugu_1", - "from": [9.75, 0, 5.5], - "to": [10, 0.25, 10.25], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10, 5.5, 9.75, 5.75], "texture": "#2"}, - "east": {"uv": [9.75, 5.5, 10, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#2"}, - "west": {"uv": [9.75, 5.5, 10, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 5.5, 10, 10.25], "texture": "#2"}, - "down": {"uv": [9.75, 10.25, 10, 5.5], "texture": "#2"} + "north": { + "uv": [ + 10, + 5.5, + 9.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 5.5 + ], + "texture": "#2" + } } }, { "name": "fugu_2", - "from": [10.75, 0, 5.5], - "to": [11, 0.25, 6.5], + "from": [ + 10.75, + 0, + 5.5 + ], + "to": [ + 11, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11, 5.5, 10.75, 5.75], "texture": "#2"}, - "east": {"uv": [10.75, 5.5, 11, 6.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 6.25, 11, 6.5], "texture": "#2"}, - "west": {"uv": [10.75, 5.5, 11, 6.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 5.5, 11, 6.5], "texture": "#2"}, - "down": {"uv": [10.75, 6.5, 11, 5.5], "texture": "#2"} + "north": { + "uv": [ + 11, + 5.5, + 10.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5.5, + 11, + 6.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 5.5, + 11, + 6.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 5.5, + 11, + 6.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 6.5, + 11, + 5.5 + ], + "texture": "#2" + } } }, { "name": "fugu_3", - "from": [9.5, 0, 5.75], - "to": [9.75, 0.25, 10.25], + "from": [ + 9.5, + 0, + 5.75 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 5.75, 9.5, 6], "texture": "#2"}, - "east": {"uv": [9.5, 5.75, 9.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 10, 9.75, 10.25], "texture": "#2"}, - "west": {"uv": [9.5, 5.75, 9.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 5.75, 9.75, 10.25], "texture": "#2"}, - "down": {"uv": [9.5, 10.25, 9.75, 5.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 5.75, + 9.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 5.75, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 5.75, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 9.75, + 5.75 + ], + "texture": "#2" + } } }, { "name": "fugu_4", - "from": [3, 0, 6], - "to": [6.75, 0.25, 9.75], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 6, 3, 6.25], "texture": "#2"}, - "east": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 9.5, 6.75, 9.75], "texture": "#2"}, - "west": {"uv": [3, 6, 3.25, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 6, 6.75, 9.75], "texture": "#2"}, - "down": {"uv": [3, 9.75, 6.75, 6], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 6, + 3, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 9.5, + 6.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 6, + 6.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 9.75, + 6.75, + 6 + ], + "texture": "#2" + } } }, { "name": "fugu_5", - "from": [9.25, 0, 6], - "to": [9.5, 0.25, 10], + "from": [ + 9.25, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 6, 9.25, 6.25], "texture": "#2"}, - "east": {"uv": [9.25, 6, 9.5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#2"}, - "west": {"uv": [9.25, 6, 9.5, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 6, 9.5, 10], "texture": "#2"}, - "down": {"uv": [9.25, 10, 9.5, 6], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 6, + 9.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 6, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 6, + 9.5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10, + 9.5, + 6 + ], + "texture": "#2" + } } }, { "name": "fugu_6", - "from": [1.75, 0, 6.25], - "to": [3, 0.25, 9.75], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 6.25, 1.75, 6.5], "texture": "#2"}, - "east": {"uv": [2.75, 6.25, 3, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 9.5, 3, 9.75], "texture": "#2"}, - "west": {"uv": [1.75, 6.25, 2, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 6.25, 3, 9.75], "texture": "#2"}, - "down": {"uv": [1.75, 9.75, 3, 6.25], "texture": "#2"} + "north": { + "uv": [ + 3, + 6.25, + 1.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 3, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 3, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 3, + 6.25 + ], + "texture": "#2" + } } }, { "name": "fugu_7", - "from": [6.75, 0, 6.25], - "to": [8.25, 0.25, 9.75], + "from": [ + 6.75, + 0, + 6.25 + ], + "to": [ + 8.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.25, 6.25, 6.75, 6.5], "texture": "#2"}, - "east": {"uv": [8, 6.25, 8.25, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 9.5, 8.25, 9.75], "texture": "#2"}, - "west": {"uv": [6.75, 6.25, 7, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 6.25, 8.25, 9.75], "texture": "#2"}, - "down": {"uv": [6.75, 9.75, 8.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 6.25, + 6.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.25, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 8.25, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 6.25, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 6.25, + 8.25, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 8.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "fugu_8", - "from": [9, 0, 6.25], - "to": [9.25, 0.25, 9.75], + "from": [ + 9, + 0, + 6.25 + ], + "to": [ + 9.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.25, 6.25, 9, 6.5], "texture": "#2"}, - "east": {"uv": [9, 6.25, 9.25, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#2"}, - "west": {"uv": [9, 6.25, 9.25, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 6.25, 9.25, 9.75], "texture": "#2"}, - "down": {"uv": [9, 9.75, 9.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 6.25, + 9, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 6.25, + 9.25, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 6.25, + 9.25, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "fugu_9", - "from": [1.25, 0, 6.5], - "to": [1.75, 0.25, 9.5], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.75, 6.5, 1.25, 6.75], "texture": "#2"}, - "east": {"uv": [1.5, 6.5, 1.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 9.25, 1.75, 9.5], "texture": "#2"}, - "west": {"uv": [1.25, 6.5, 1.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 6.5, 1.75, 9.5], "texture": "#2"}, - "down": {"uv": [1.25, 9.5, 1.75, 6.5], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 6.5, + 1.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.75, + 6.5 + ], + "texture": "#2" + } } }, { "name": "fugu_10", - "from": [8.25, 0, 6.5], - "to": [9, 0.25, 9.25], + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 9, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9, 6.5, 8.25, 6.75], "texture": "#2"}, - "east": {"uv": [8.75, 6.5, 9, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 9, 9, 9.25], "texture": "#2"}, - "west": {"uv": [8.25, 6.5, 8.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 6.5, 9, 9.25], "texture": "#2"}, - "down": {"uv": [8.25, 9.25, 9, 6.5], "texture": "#2"} + "north": { + "uv": [ + 9, + 6.5, + 8.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 6.5, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 9, + 9, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 9, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 9.25, + 9, + 6.5 + ], + "texture": "#2" + } } }, { "name": "fugu_11", - "from": [1, 0, 6.75], - "to": [1.25, 0.25, 9.5], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.25, 6.75, 1, 7], "texture": "#2"}, - "east": {"uv": [1, 6.75, 1.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9.25, 1.25, 9.5], "texture": "#2"}, - "west": {"uv": [1, 6.75, 1.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 6.75, 1.25, 9.5], "texture": "#2"}, - "down": {"uv": [1, 9.5, 1.25, 6.75], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 6.75, + 1, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.25, + 6.75 + ], + "texture": "#2" + } } }, { "name": "fugu_12", - "from": [10.75, 0, 6.75], - "to": [11.5, 0.25, 9], + "from": [ + 10.75, + 0, + 6.75 + ], + "to": [ + 11.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.5, 6.75, 10.75, 7], "texture": "#2"}, - "east": {"uv": [11.25, 6.75, 11.5, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 8.75, 11.5, 9], "texture": "#2"}, - "west": {"uv": [10.75, 6.75, 11, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 6.75, 11.5, 9], "texture": "#2"}, - "down": {"uv": [10.75, 9, 11.5, 6.75], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 6.75, + 10.75, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 6.75, + 11.5, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 8.75, + 11.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 6.75, + 11, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 6.75, + 11.5, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 9, + 11.5, + 6.75 + ], + "texture": "#2" + } } }, { "name": "fugu_13", - "from": [0.75, 0, 7], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#2"}, - "east": {"uv": [0.75, 7, 1, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#2"}, - "west": {"uv": [0.75, 7, 1, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 7, 1, 9.25], "texture": "#2"}, - "down": {"uv": [0.75, 9.25, 1, 7], "texture": "#2"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 7 + ], + "texture": "#2" + } } }, { "name": "fugu_14", - "from": [11.5, 0, 7], - "to": [12, 0.25, 8.75], + "from": [ + 11.5, + 0, + 7 + ], + "to": [ + 12, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12, 7, 11.5, 7.25], "texture": "#2"}, - "east": {"uv": [11.75, 7, 12, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 8.5, 12, 8.75], "texture": "#2"}, - "west": {"uv": [11.5, 7, 11.75, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 7, 12, 8.75], "texture": "#2"}, - "down": {"uv": [11.5, 8.75, 12, 7], "texture": "#2"} + "north": { + "uv": [ + 12, + 7, + 11.5, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 7, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 8.5, + 12, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 7, + 11.75, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 7, + 12, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 8.75, + 12, + 7 + ], + "texture": "#2" + } } }, { "name": "fugu_15", - "from": [13.25, 0, 7], - "to": [15, 0.25, 8.75], + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15, 7, 13.25, 7.25], "texture": "#2"}, - "east": {"uv": [14.75, 7, 15, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 8.5, 15, 8.75], "texture": "#2"}, - "west": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 7, 15, 8.75], "texture": "#2"}, - "down": {"uv": [13.25, 8.75, 15, 7], "texture": "#2"} + "north": { + "uv": [ + 15, + 7, + 13.25, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 15, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 7, + 15, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 15, + 7 + ], + "texture": "#2" + } } }, { "name": "fugu_16", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#2"}, - "east": {"uv": [0.5, 7.25, 0.75, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#2"}, - "west": {"uv": [0.5, 7.25, 0.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.25, 0.75, 9], "texture": "#2"}, - "down": {"uv": [0.5, 9, 0.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "fugu_17", - "from": [12, 0, 7.25], - "to": [13.25, 0.25, 8.75], + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 7.25, 12, 7.5], "texture": "#2"}, - "east": {"uv": [13, 7.25, 13.25, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 8.5, 13.25, 8.75], "texture": "#2"}, - "west": {"uv": [12, 7.25, 12.25, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 7.25, 13.25, 8.75], "texture": "#2"}, - "down": {"uv": [12, 8.75, 13.25, 7.25], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 7.25, + 12, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 7.25, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 8.5, + 13.25, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 7.25, + 13.25, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 8.75, + 13.25, + 7.25 + ], + "texture": "#2" + } } }, { "name": "fugu_18", - "from": [15, 0, 7.25], - "to": [15.25, 0.25, 8.5], + "from": [ + 15, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.25, 7.25, 15, 7.5], "texture": "#2"}, - "east": {"uv": [15, 7.25, 15.25, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 8.25, 15.25, 8.5], "texture": "#2"}, - "west": {"uv": [15, 7.25, 15.25, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 7.25, 15.25, 8.5], "texture": "#2"}, - "down": {"uv": [15, 8.5, 15.25, 7.25], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 7.25, + 15, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 8.5, + 15.25, + 7.25 + ], + "texture": "#2" + } } }, { "name": "fugu_19", - "from": [0.25, 0, 7.5], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.5, 0.25, 7.75], "texture": "#2"}, - "east": {"uv": [0.25, 7.5, 0.5, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#2"}, - "west": {"uv": [0.25, 7.5, 0.5, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 7.5, 0.5, 8.25], "texture": "#2"}, - "down": {"uv": [0.25, 8.25, 0.5, 7.5], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 7.5, + 0.25, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 7.5 + ], + "texture": "#2" + } } }, { "name": "fugu_20", - "from": [15.25, 0, 7.5], - "to": [15.5, 0.25, 8.25], + "from": [ + 15.25, + 0, + 7.5 + ], + "to": [ + 15.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.5, 7.5, 15.25, 7.75], "texture": "#2"}, - "east": {"uv": [15.25, 7.5, 15.5, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#2"}, - "west": {"uv": [15.25, 7.5, 15.5, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 7.5, 15.5, 8.25], "texture": "#2"}, - "down": {"uv": [15.25, 8.25, 15.5, 7.5], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 7.5, + 15.25, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 8.25, + 15.5, + 7.5 + ], + "texture": "#2" + } } }, { "name": "fugu_21", - "from": [0.25, 0, 8.5], - "to": [0.5, 0.25, 9], + "from": [ + 0.25, + 0, + 8.5 + ], + "to": [ + 0.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.5, 8.5, 0.25, 8.75], "texture": "#2"}, - "east": {"uv": [0.25, 8.5, 0.5, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 8.75, 0.5, 9], "texture": "#2"}, - "west": {"uv": [0.25, 8.5, 0.5, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 8.5, 0.5, 9], "texture": "#2"}, - "down": {"uv": [0.25, 9, 0.5, 8.5], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 8.5, + 0.25, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 8.5, + 0.5, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 9, + 0.5, + 8.5 + ], + "texture": "#2" + } } }, { "name": "fugu_22", - "from": [10, 0, 9], - "to": [10.5, 0.25, 10.5], + "from": [ + 10, + 0, + 9 + ], + "to": [ + 10.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.5, 9, 10, 9.25], "texture": "#2"}, - "east": {"uv": [10.25, 9, 10.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 10.25, 10.5, 10.5], "texture": "#2"}, - "west": {"uv": [10, 9, 10.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 9, 10.5, 10.5], "texture": "#2"}, - "down": {"uv": [10, 10.5, 10.5, 9], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 9, + 10, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 9, + 10.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 9, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 9, + 10.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.5, + 9 + ], + "texture": "#2" + } } }, { "name": "fugu_23", - "from": [8.25, 0, 9.25], - "to": [8.5, 0.25, 9.5], + "from": [ + 8.25, + 0, + 9.25 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 9.25, 8.25, 9.5], "texture": "#2"}, - "east": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#2"}, - "west": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#2"}, - "down": {"uv": [8.25, 9.5, 8.5, 9.25], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 9.25, + 8.25, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.25 + ], + "texture": "#2" + } } }, { "name": "fugu_24", - "from": [8.75, 0, 9.25], - "to": [9, 0.25, 9.5], + "from": [ + 8.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 9.25, 8.75, 9.5], "texture": "#2"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#2"}, - "west": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#2"}, - "down": {"uv": [8.75, 9.5, 9, 9.25], "texture": "#2"} + "north": { + "uv": [ + 9, + 9.25, + 8.75, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 9.5, + 9, + 9.25 + ], + "texture": "#2" + } } }, { "name": "fugu_25", - "from": [1.5, 0, 9.5], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.5, + 0, + 9.5 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 9.5, 1.5, 9.75], "texture": "#2"}, - "east": {"uv": [1.5, 9.5, 1.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#2"}, - "west": {"uv": [1.5, 9.5, 1.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#2"}, - "down": {"uv": [1.5, 9.75, 1.75, 9.5], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 9.5, + 1.5, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 9.5 + ], + "texture": "#2" + } } }, { "name": "fugu_26", - "from": [10.5, 0, 9.5], - "to": [10.75, 0.25, 10.25], + "from": [ + 10.5, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.75, 9.5, 10.5, 9.75], "texture": "#2"}, - "east": {"uv": [10.5, 9.5, 10.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#2"}, - "west": {"uv": [10.5, 9.5, 10.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 9.5, 10.75, 10.25], "texture": "#2"}, - "down": {"uv": [10.5, 10.25, 10.75, 9.5], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 9.5, + 10.5, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 9.5, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 9.5, + 10.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 10.75, + 9.5 + ], + "texture": "#2" + } } }, { "name": "fugu_27", - "from": [2.75, 0, 9.75], - "to": [6.5, 0.25, 10], + "from": [ + 2.75, + 0, + 9.75 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 9.75, 2.75, 10], "texture": "#2"}, - "east": {"uv": [6.25, 9.75, 6.5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 9.75, 6.5, 10], "texture": "#2"}, - "west": {"uv": [2.75, 9.75, 3, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 9.75, 6.5, 10], "texture": "#2"}, - "down": {"uv": [2.75, 10, 6.5, 9.75], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 9.75, + 2.75, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 9.75, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 9.75, + 6.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 9.75, + 6.5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 10, + 6.5, + 9.75 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 5.75], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 5.75 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 5.75], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 5.75 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "firstperson_righthand": { - "rotation": [86, -23, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_lefthand": { - "rotation": [86, -23, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + -23, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [0.94, 0.94, 0.94] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 0.94, + 0.94, + 0.94 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 9.5, 16.5], - "scale": [1.31, 1.31, 1.31] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 9.5, + 16.5 + ], + "scale": [ + 1.31, + 1.31, + 1.31 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "fugu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/funa.json b/pack/assets/minecraft/models/fish/funa.json index d4e4a0e1..e93dd0ea 100644 --- a/pack/assets/minecraft/models/fish/funa.json +++ b/pack/assets/minecraft/models/fish/funa.json @@ -2,1310 +2,7068 @@ "__name": "フナ", "credit": "Made with Blockbench", "textures": { - "1": "fish/ugui", - "2": "fish/funa", - "particle": "fish/funa" + "1": "item/fish/ugui", + "2": "item/fish/funa", + "particle": "item/fish/funa" }, "elements": [ { "name": "ugui_0", - "from": [8, 0, 4.75], - "to": [8.25, 0.25, 9.5], + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.25, 4.75, 8, 5], "texture": "#1"}, - "east": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#1"}, - "west": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 4.75, 8.25, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 8.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 4.75, + 8, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "ugui_1", - "from": [7.5, 0, 5], - "to": [8, 0.25, 10.75], + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 8, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8, 5, 7.5, 5.25], "texture": "#1"}, - "east": {"uv": [7.75, 5, 8, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 10.5, 8, 10.75], "texture": "#1"}, - "west": {"uv": [7.5, 5, 7.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 5, 8, 10.75], "texture": "#1"}, - "down": {"uv": [7.5, 10.75, 8, 5], "texture": "#1"} + "north": { + "uv": [ + 8, + 5, + 7.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 5, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 5, + 8, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 10.75, + 8, + 5 + ], + "texture": "#1" + } } }, { "name": "ugui_2", - "from": [7.25, 0, 5.25], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 5.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 5.25, 7.25, 5.5], "texture": "#1"}, - "east": {"uv": [7.25, 5.25, 7.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#1"}, - "west": {"uv": [7.25, 5.25, 7.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 5.25, 7.5, 10.5], "texture": "#1"}, - "down": {"uv": [7.25, 10.5, 7.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 5.25, + 7.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "ugui_3", - "from": [7, 0, 5.5], - "to": [7.25, 0.25, 10.25], + "from": [ + 7, + 0, + 5.5 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.25, 5.5, 7, 5.75], "texture": "#1"}, - "east": {"uv": [7, 5.5, 7.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 10, 7.25, 10.25], "texture": "#1"}, - "west": {"uv": [7, 5.5, 7.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 5.5, 7.25, 10.25], "texture": "#1"}, - "down": {"uv": [7, 10.25, 7.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 5.5, + 7, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10.25, + 7.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "ugui_4", - "from": [6.75, 0, 5.75], - "to": [7, 0.25, 10], + "from": [ + 6.75, + 0, + 5.75 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 5.75, 6.75, 6], "texture": "#1"}, - "east": {"uv": [6.75, 5.75, 7, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#1"}, - "west": {"uv": [6.75, 5.75, 7, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 5.75, 7, 10], "texture": "#1"}, - "down": {"uv": [6.75, 10, 7, 5.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 5.75, + 6.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_5", - "from": [15, 0, 5.75], - "to": [15.5, 0.25, 6.5], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.5, 5.75, 15, 6], "texture": "#1"}, - "east": {"uv": [15.25, 5.75, 15.5, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 6.25, 15.5, 6.5], "texture": "#1"}, - "west": {"uv": [15, 5.75, 15.25, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 5.75, 15.5, 6.5], "texture": "#1"}, - "down": {"uv": [15, 6.5, 15.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 5.75, + 15, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 6.25, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 6.5, + 15.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_6", - "from": [15.5, 0, 5.75], - "to": [15.75, 0.25, 6], + "from": [ + 15.5, + 0, + 5.75 + ], + "to": [ + 15.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.75, 5.75, 15.5, 6], "texture": "#1"}, - "east": {"uv": [15.5, 5.75, 15.75, 6], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 5.75, 15.75, 6], "texture": "#1"}, - "west": {"uv": [15.5, 5.75, 15.75, 6], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 5.75, 15.75, 6], "texture": "#1"}, - "down": {"uv": [15.5, 6, 15.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 5.75, + 15.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 6, + 15.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_7", - "from": [6.5, 0, 6], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 6, 6.5, 6.25], "texture": "#1"}, - "east": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#1"}, - "west": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 6, 6.75, 9.75], "texture": "#1"}, - "down": {"uv": [6.5, 9.75, 6.75, 6], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 6, + 6.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 6 + ], + "texture": "#1" + } } }, { "name": "ugui_8", - "from": [14.75, 0, 6], - "to": [15, 0.25, 7.5], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#1"}, - "east": {"uv": [14.75, 6, 15, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#1"}, - "west": {"uv": [14.75, 6, 15, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6, 15, 7.5], "texture": "#1"}, - "down": {"uv": [14.75, 7.5, 15, 6], "texture": "#1"} + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15, + 6 + ], + "texture": "#1" + } } }, { "name": "ugui_9", - "from": [5.25, 0, 6.25], - "to": [6.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 6.25, 5.25, 6.5], "texture": "#1"}, - "east": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 9.5, 6.5, 9.75], "texture": "#1"}, - "west": {"uv": [5.25, 6.25, 5.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 6.25, 6.5, 9.75], "texture": "#1"}, - "down": {"uv": [5.25, 9.75, 6.5, 6.25], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 6.25, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 6.25, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 6.5, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ugui_10", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#1"}, - "east": {"uv": [14.5, 6.25, 14.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#1"}, - "west": {"uv": [14.5, 6.25, 14.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.25, 14.75, 9.5], "texture": "#1"}, - "down": {"uv": [14.5, 9.5, 14.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ugui_11", - "from": [3.75, 0, 6.5], - "to": [5.25, 0.25, 9.75], + "from": [ + 3.75, + 0, + 6.5 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.25, 6.5, 3.75, 6.75], "texture": "#1"}, - "east": {"uv": [5, 6.5, 5.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 9.5, 5.25, 9.75], "texture": "#1"}, - "west": {"uv": [3.75, 6.5, 4, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 6.5, 5.25, 9.75], "texture": "#1"}, - "down": {"uv": [3.75, 9.75, 5.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 6.5, + 3.75, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 5.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_12", - "from": [8.25, 0, 6.5], - "to": [8.75, 0.25, 9.5], + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 8.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.75, 6.5, 8.25, 6.75], "texture": "#1"}, - "east": {"uv": [8.5, 6.5, 8.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#1"}, - "west": {"uv": [8.25, 6.5, 8.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 6.5, 8.75, 9.5], "texture": "#1"}, - "down": {"uv": [8.25, 9.5, 8.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 6.5, + 8.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_13", - "from": [14, 0, 6.5], - "to": [14.5, 0.25, 9.25], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14, 6.75], "texture": "#1"}, - "east": {"uv": [14.25, 6.5, 14.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9, 14.5, 9.25], "texture": "#1"}, - "west": {"uv": [14, 6.5, 14.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 6.5, 14.5, 9.25], "texture": "#1"}, - "down": {"uv": [14, 9.25, 14.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 6.5, + 14, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_14", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 7], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#1"}, - "east": {"uv": [15, 6.5, 15.25, 7], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 6.75, 15.25, 7], "texture": "#1"}, - "west": {"uv": [15, 6.5, 15.25, 7], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 6.5, 15.25, 7], "texture": "#1"}, - "down": {"uv": [15, 7, 15.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 7, + 15.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_15", - "from": [3, 0, 6.75], - "to": [3.75, 0.25, 9.5], + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 3.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.75, 6.75, 3, 7], "texture": "#1"}, - "east": {"uv": [3.5, 6.75, 3.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 9.25, 3.75, 9.5], "texture": "#1"}, - "west": {"uv": [3, 6.75, 3.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 6.75, 3.75, 9.5], "texture": "#1"}, - "down": {"uv": [3, 9.5, 3.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 6.75, + 3, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 3.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 6.75, + 3.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9.5, + 3.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_16", - "from": [8.75, 0, 6.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 8.75, + 0, + 6.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 6.75, 8.75, 7], "texture": "#1"}, - "east": {"uv": [9.25, 6.75, 9.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9, 9.5, 9.25], "texture": "#1"}, - "west": {"uv": [8.75, 6.75, 9, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 6.75, 9.5, 9.25], "texture": "#1"}, - "down": {"uv": [8.75, 9.25, 9.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 6.75, + 8.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 6.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 9, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 6.75, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 9.25, + 9.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_17", - "from": [13.5, 0, 6.75], - "to": [14, 0.25, 9], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 6.75, 13.5, 7], "texture": "#1"}, - "east": {"uv": [13.75, 6.75, 14, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8.75, 14, 9], "texture": "#1"}, - "west": {"uv": [13.5, 6.75, 13.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 6.75, 14, 9], "texture": "#1"}, - "down": {"uv": [13.5, 9, 14, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14, + 6.75, + 13.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 14, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 9, + 14, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_18", - "from": [2.25, 0, 7], - "to": [3, 0.25, 9.25], + "from": [ + 2.25, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 7, 2.25, 7.25], "texture": "#1"}, - "east": {"uv": [2.75, 7, 3, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9, 3, 9.25], "texture": "#1"}, - "west": {"uv": [2.25, 7, 2.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 7, 3, 9.25], "texture": "#1"}, - "down": {"uv": [2.25, 9.25, 3, 7], "texture": "#1"} + "north": { + "uv": [ + 3, + 7, + 2.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9, + 3, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 7, + 3, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 3, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_19", - "from": [9.5, 0, 7], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 7, 9.5, 7.25], "texture": "#1"}, - "east": {"uv": [10.5, 7, 10.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9, 10.75, 9.25], "texture": "#1"}, - "west": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 7, 10.75, 9.25], "texture": "#1"}, - "down": {"uv": [9.5, 9.25, 10.75, 7], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 7, + 9.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9, + 10.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 7, + 10.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 10.75, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_20", - "from": [12.25, 0, 7], - "to": [13.5, 0.25, 8.75], + "from": [ + 12.25, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 7, 12.25, 7.25], "texture": "#1"}, - "east": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 8.5, 13.5, 8.75], "texture": "#1"}, - "west": {"uv": [12.25, 7, 12.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 7, 13.5, 8.75], "texture": "#1"}, - "down": {"uv": [12.25, 8.75, 13.5, 7], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 7, + 12.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 7, + 12.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 7, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 8.75, + 13.5, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_21", - "from": [1.75, 0, 7.25], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 7.25, 1.75, 7.5], "texture": "#1"}, - "east": {"uv": [2, 7.25, 2.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9, 2.25, 9.25], "texture": "#1"}, - "west": {"uv": [1.75, 7.25, 2, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7.25, 2.25, 9.25], "texture": "#1"}, - "down": {"uv": [1.75, 9.25, 2.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9, + 2.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "ugui_22", - "from": [10.75, 0, 7.25], - "to": [12.25, 0.25, 8.75], + "from": [ + 10.75, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 7.25, 10.75, 7.5], "texture": "#1"}, - "east": {"uv": [12, 7.25, 12.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 8.5, 12.25, 8.75], "texture": "#1"}, - "west": {"uv": [10.75, 7.25, 11, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 7.25, 12.25, 8.75], "texture": "#1"}, - "down": {"uv": [10.75, 8.75, 12.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 7.25, + 10.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 12.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 7.25, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 7.25, + 12.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 12.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "ugui_23", - "from": [1.5, 0, 7.5], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7.5, 1.5, 7.75], "texture": "#1"}, - "east": {"uv": [1.5, 7.5, 1.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#1"}, - "west": {"uv": [1.5, 7.5, 1.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7.5, 1.75, 9], "texture": "#1"}, - "down": {"uv": [1.5, 9, 1.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7.5, + 1.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "ugui_24", - "from": [1.25, 0, 7.75], - "to": [1.5, 0.25, 9], + "from": [ + 1.25, + 0, + 7.75 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 7.75, 1.25, 8], "texture": "#1"}, - "east": {"uv": [1.25, 7.75, 1.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.75, 1.5, 9], "texture": "#1"}, - "west": {"uv": [1.25, 7.75, 1.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 7.75, 1.5, 9], "texture": "#1"}, - "down": {"uv": [1.25, 9, 1.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.75, + 1.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9, + 1.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "ugui_25", - "from": [1, 0, 8], - "to": [1.25, 0.25, 8.25], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#1"}, - "east": {"uv": [1, 8, 1.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#1"}, - "west": {"uv": [1, 8, 1.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8, 1.25, 8.25], "texture": "#1"}, - "down": {"uv": [1, 8.25, 1.25, 8], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 8 + ], + "texture": "#1" + } } }, { "name": "ugui_26", - "from": [14.75, 0, 8], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 8 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 8, 14.75, 8.25], "texture": "#1"}, - "east": {"uv": [14.75, 8, 15, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#1"}, - "west": {"uv": [14.75, 8, 15, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 8, 15, 9.75], "texture": "#1"}, - "down": {"uv": [14.75, 9.75, 15, 8], "texture": "#1"} + "north": { + "uv": [ + 15, + 8, + 14.75, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 8 + ], + "texture": "#1" + } } }, { "name": "ugui_27", - "from": [1, 0, 8.5], - "to": [1.25, 0.25, 8.75], + "from": [ + 1, + 0, + 8.5 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 8.5, 1, 8.75], "texture": "#1"}, - "east": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#1"}, - "west": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#1"}, - "down": {"uv": [1, 8.75, 1.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8.5, + 1, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "ugui_28", - "from": [15, 0, 8.5], - "to": [15.25, 0.25, 10], + "from": [ + 15, + 0, + 8.5 + ], + "to": [ + 15.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.25, 8.5, 15, 8.75], "texture": "#1"}, - "east": {"uv": [15, 8.5, 15.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 9.75, 15.25, 10], "texture": "#1"}, - "west": {"uv": [15, 8.5, 15.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 8.5, 15.25, 10], "texture": "#1"}, - "down": {"uv": [15, 10, 15.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 8.5, + 15, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 9.75, + 15.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 10, + 15.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "ugui_29", - "from": [10.75, 0, 8.75], - "to": [11.25, 0.25, 10.25], + "from": [ + 10.75, + 0, + 8.75 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 8.75, 10.75, 9], "texture": "#1"}, - "east": {"uv": [11, 8.75, 11.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 10, 11.25, 10.25], "texture": "#1"}, - "west": {"uv": [10.75, 8.75, 11, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 8.75, 11.25, 10.25], "texture": "#1"}, - "down": {"uv": [10.75, 10.25, 11.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 8.75, + 10.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 8.75, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 10, + 11.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 8.75, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 8.75, + 11.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "ugui_30", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#1"}, - "east": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#1"}, - "west": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 8.75, 15.5, 10], "texture": "#1"}, - "down": {"uv": [15.25, 10, 15.5, 8.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 8.75 + ], + "texture": "#1" + } } }, { "name": "ugui_31", - "from": [2.75, 0, 9.25], - "to": [3, 0.25, 9.5], + "from": [ + 2.75, + 0, + 9.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 9.25, 2.75, 9.5], "texture": "#1"}, - "east": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#1"}, - "west": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#1"}, - "down": {"uv": [2.75, 9.5, 3, 9.25], "texture": "#1"} + "north": { + "uv": [ + 3, + 9.25, + 2.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 3, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_32", - "from": [8.75, 0, 9.25], - "to": [9, 0.25, 9.5], + "from": [ + 8.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 9.25, 8.75, 9.5], "texture": "#1"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#1"}, - "west": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#1"}, - "down": {"uv": [8.75, 9.5, 9, 9.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 9.25, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 9.5, + 9, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_33", - "from": [9.75, 0, 9.25], - "to": [10.75, 0.25, 9.5], + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.75, 9.25, 9.75, 9.5], "texture": "#1"}, - "east": {"uv": [10.5, 9.25, 10.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9.25, 10.75, 9.5], "texture": "#1"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 9.25, 10.75, 9.5], "texture": "#1"}, - "down": {"uv": [9.75, 9.5, 10.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.25, + 9.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_34", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#1"}, - "east": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#1"}, - "west": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 9.25, 15.75, 10], "texture": "#1"}, - "down": {"uv": [15.5, 10, 15.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_35", - "from": [3.5, 0, 9.5], - "to": [3.75, 0.25, 9.75], + "from": [ + 3.5, + 0, + 9.5 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.75, 9.5, 3.5, 9.75], "texture": "#1"}, - "east": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#1"}, - "west": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#1"}, - "down": {"uv": [3.5, 9.75, 3.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 9.5, + 3.5, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 3.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "ugui_36", - "from": [10.25, 0, 9.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.25, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 9.5, 10.25, 9.75], "texture": "#1"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 9.5, 10.75, 9.75], "texture": "#1"}, - "west": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 9.5, 10.75, 9.75], "texture": "#1"}, - "down": {"uv": [10.25, 9.75, 10.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.5, + 10.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 10.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "ugui_37", - "from": [8, 0, 9.75], - "to": [8.25, 0.25, 10.5], + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.25, 9.75, 8, 10], "texture": "#1"}, - "east": {"uv": [8, 9.75, 8.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#1"}, - "west": {"uv": [8, 9.75, 8.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 9.75, 8.25, 10.5], "texture": "#1"}, - "down": {"uv": [8, 10.5, 8.25, 9.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 9.75, + 8, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.25, + 9.75 + ], + "texture": "#1" + } } }, { "name": "ugui_38", - "from": [10.5, 0, 9.75], - "to": [10.75, 0.25, 10], + "from": [ + 10.5, + 0, + 9.75 + ], + "to": [ + 10.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.75, 9.75, 10.5, 10], "texture": "#1"}, - "east": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#1"}, - "west": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#1"}, - "down": {"uv": [10.5, 10, 10.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 10, + 10.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "ugui_39", - "from": [15.75, 0, 9.75], - "to": [16, 0.25, 10], + "from": [ + 15.75, + 0, + 9.75 + ], + "to": [ + 16, + 0.25, + 10 + ], "faces": { - "north": {"uv": [16, 9.75, 15.75, 10], "texture": "#1"}, - "east": {"uv": [15.75, 9.75, 16, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.75, 9.75, 16, 10], "texture": "#1"}, - "west": {"uv": [15.75, 9.75, 16, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.75, 9.75, 16, 10], "texture": "#1"}, - "down": {"uv": [15.75, 10, 16, 9.75], "texture": "#1"} + "north": { + "uv": [ + 16, + 9.75, + 15.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.75, + 10, + 16, + 9.75 + ], + "texture": "#1" + } } }, { "name": "funa_0", - "from": [8, 0, 3.25], - "to": [8.75, 0.25, 10.5], + "from": [ + 8, + 0, + 3.25 + ], + "to": [ + 8.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.75, 3.25, 8, 3.5], "texture": "#2"}, - "east": {"uv": [8.5, 3.25, 8.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 10.25, 8.75, 10.5], "texture": "#2"}, - "west": {"uv": [8, 3.25, 8.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 3.25, 8.75, 10.5], "texture": "#2"}, - "down": {"uv": [8, 10.5, 8.75, 3.25], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 3.25, + 8, + 3.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 3.25, + 8.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 3.25, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 3.25, + 8.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.75, + 3.25 + ], + "texture": "#2" + } } }, { "name": "funa_1", - "from": [7.75, 0, 3.5], - "to": [8, 0.25, 10.5], + "from": [ + 7.75, + 0, + 3.5 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 3.5, 7.75, 3.75], "texture": "#2"}, - "east": {"uv": [7.75, 3.5, 8, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#2"}, - "west": {"uv": [7.75, 3.5, 8, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 3.5, 8, 10.5], "texture": "#2"}, - "down": {"uv": [7.75, 10.5, 8, 3.5], "texture": "#2"} + "north": { + "uv": [ + 8, + 3.5, + 7.75, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 3.5, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 3.5, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 3.5, + 8, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8, + 3.5 + ], + "texture": "#2" + } } }, { "name": "funa_2", - "from": [8.75, 0, 3.5], - "to": [9.25, 0.25, 10.25], + "from": [ + 8.75, + 0, + 3.5 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 3.5, 8.75, 3.75], "texture": "#2"}, - "east": {"uv": [9, 3.5, 9.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#2"}, - "west": {"uv": [8.75, 3.5, 9, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 3.5, 9.25, 10.25], "texture": "#2"}, - "down": {"uv": [8.75, 10.25, 9.25, 3.5], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 3.5, + 8.75, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 3.5, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 3.5, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 3.5, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9.25, + 3.5 + ], + "texture": "#2" + } } }, { "name": "funa_3", - "from": [7.5, 0, 3.75], - "to": [7.75, 0.25, 10.5], + "from": [ + 7.5, + 0, + 3.75 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.75, 3.75, 7.5, 4], "texture": "#2"}, - "east": {"uv": [7.5, 3.75, 7.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#2"}, - "west": {"uv": [7.5, 3.75, 7.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 3.75, 7.75, 10.5], "texture": "#2"}, - "down": {"uv": [7.5, 10.5, 7.75, 3.75], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 3.75, + 7.5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 3.75, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 3.75, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 3.75, + 7.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7.75, + 3.75 + ], + "texture": "#2" + } } }, { "name": "funa_4", - "from": [9.25, 0, 3.75], - "to": [9.75, 0.25, 10.25], + "from": [ + 9.25, + 0, + 3.75 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 3.75, 9.25, 4], "texture": "#2"}, - "east": {"uv": [9.5, 3.75, 9.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10, 9.75, 10.25], "texture": "#2"}, - "west": {"uv": [9.25, 3.75, 9.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 3.75, 9.75, 10.25], "texture": "#2"}, - "down": {"uv": [9.25, 10.25, 9.75, 3.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 3.75, + 9.25, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 3.75, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 3.75, + 9.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 3.75, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10.25, + 9.75, + 3.75 + ], + "texture": "#2" + } } }, { "name": "funa_5", - "from": [7.25, 0, 4], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 4 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 4, 7.25, 4.25], "texture": "#2"}, - "east": {"uv": [7.25, 4, 7.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#2"}, - "west": {"uv": [7.25, 4, 7.5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 4, 7.5, 10.5], "texture": "#2"}, - "down": {"uv": [7.25, 10.5, 7.5, 4], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 4, + 7.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 4, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 4, + 7.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 4 + ], + "texture": "#2" + } } }, { "name": "funa_6", - "from": [9.75, 0, 4], - "to": [10, 0.25, 10], + "from": [ + 9.75, + 0, + 4 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 4, 9.75, 4.25], "texture": "#2"}, - "east": {"uv": [9.75, 4, 10, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 9.75, 10, 10], "texture": "#2"}, - "west": {"uv": [9.75, 4, 10, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 4, 10, 10], "texture": "#2"}, - "down": {"uv": [9.75, 10, 10, 4], "texture": "#2"} + "north": { + "uv": [ + 10, + 4, + 9.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 4, + 10, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 4, + 10, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 4, + 10, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10, + 10, + 4 + ], + "texture": "#2" + } } }, { "name": "funa_7", - "from": [6.75, 0, 4.25], - "to": [7.25, 0.25, 11.25], + "from": [ + 6.75, + 0, + 4.25 + ], + "to": [ + 7.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.25, 4.25, 6.75, 4.5], "texture": "#2"}, - "east": {"uv": [7, 4.25, 7.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 11, 7.25, 11.25], "texture": "#2"}, - "west": {"uv": [6.75, 4.25, 7, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 4.25, 7.25, 11.25], "texture": "#2"}, - "down": {"uv": [6.75, 11.25, 7.25, 4.25], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 4.25, + 6.75, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 4.25, + 7.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 11, + 7.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 4.25, + 7, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 4.25, + 7.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 11.25, + 7.25, + 4.25 + ], + "texture": "#2" + } } }, { "name": "funa_8", - "from": [10, 0, 4.25], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 4.25 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 4.25, 10, 4.5], "texture": "#2"}, - "east": {"uv": [10, 4.25, 10.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#2"}, - "west": {"uv": [10, 4.25, 10.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 4.25, 10.25, 10], "texture": "#2"}, - "down": {"uv": [10, 10, 10.25, 4.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 4.25, + 10, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 4.25, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 4.25, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 4.25, + 10.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 4.25 + ], + "texture": "#2" + } } }, { "name": "funa_9", - "from": [5.5, 0, 4.5], - "to": [6.75, 0.25, 10.5], + "from": [ + 5.5, + 0, + 4.5 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 4.5, 5.5, 4.75], "texture": "#2"}, - "east": {"uv": [6.5, 4.5, 6.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 10.25, 6.75, 10.5], "texture": "#2"}, - "west": {"uv": [5.5, 4.5, 5.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 4.5, 6.75, 10.5], "texture": "#2"}, - "down": {"uv": [5.5, 10.5, 6.75, 4.5], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 4.5, + 5.5, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 4.5, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 4.5, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 4.5, + 6.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 6.75, + 4.5 + ], + "texture": "#2" + } } }, { "name": "funa_10", - "from": [10.25, 0, 4.5], - "to": [10.5, 0.25, 9.75], + "from": [ + 10.25, + 0, + 4.5 + ], + "to": [ + 10.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.5, 4.5, 10.25, 4.75], "texture": "#2"}, - "east": {"uv": [10.25, 4.5, 10.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 9.5, 10.5, 9.75], "texture": "#2"}, - "west": {"uv": [10.25, 4.5, 10.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 4.5, 10.5, 9.75], "texture": "#2"}, - "down": {"uv": [10.25, 9.75, 10.5, 4.5], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 4.5, + 10.25, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 4.5, + 10.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 4.5, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 10.5, + 4.5 + ], + "texture": "#2" + } } }, { "name": "funa_11", - "from": [5, 0, 4.75], - "to": [5.5, 0.25, 10.25], + "from": [ + 5, + 0, + 4.75 + ], + "to": [ + 5.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.5, 4.75, 5, 5], "texture": "#2"}, - "east": {"uv": [5.25, 4.75, 5.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 10, 5.5, 10.25], "texture": "#2"}, - "west": {"uv": [5, 4.75, 5.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 4.75, 5.5, 10.25], "texture": "#2"}, - "down": {"uv": [5, 10.25, 5.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 4.75, + 5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 4.75, + 5.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 10, + 5.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 4.75, + 5.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 4.75, + 5.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 10.25, + 5.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "funa_12", - "from": [10.5, 0, 4.75], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 4.75 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 4.75, 10.5, 5], "texture": "#2"}, - "east": {"uv": [10.5, 4.75, 10.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#2"}, - "west": {"uv": [10.5, 4.75, 10.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 4.75, 10.75, 9.75], "texture": "#2"}, - "down": {"uv": [10.5, 9.75, 10.75, 4.75], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 4.75, + 10.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 4.75, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 4.75, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 4.75, + 10.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 4.75 + ], + "texture": "#2" + } } }, { "name": "funa_13", - "from": [15, 0, 4.75], - "to": [15.5, 0.25, 6.25], + "from": [ + 15, + 0, + 4.75 + ], + "to": [ + 15.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.5, 4.75, 15, 5], "texture": "#2"}, - "east": {"uv": [15.25, 4.75, 15.5, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 6, 15.5, 6.25], "texture": "#2"}, - "west": {"uv": [15, 4.75, 15.25, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 4.75, 15.5, 6.25], "texture": "#2"}, - "down": {"uv": [15, 6.25, 15.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 4.75, + 15, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 4.75, + 15.5, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 6, + 15.5, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 4.75, + 15.25, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 4.75, + 15.5, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 6.25, + 15.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "funa_14", - "from": [4.5, 0, 5], - "to": [5, 0.25, 10], + "from": [ + 4.5, + 0, + 5 + ], + "to": [ + 5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5, 5, 4.5, 5.25], "texture": "#2"}, - "east": {"uv": [4.75, 5, 5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 9.75, 5, 10], "texture": "#2"}, - "west": {"uv": [4.5, 5, 4.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 5, 5, 10], "texture": "#2"}, - "down": {"uv": [4.5, 10, 5, 5], "texture": "#2"} + "north": { + "uv": [ + 5, + 5, + 4.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 5, + 5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 5, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 5, + 5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 10, + 5, + 5 + ], + "texture": "#2" + } } }, { "name": "funa_15", - "from": [10.75, 0, 5], - "to": [11, 0.25, 10], + "from": [ + 10.75, + 0, + 5 + ], + "to": [ + 11, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11, 5, 10.75, 5.25], "texture": "#2"}, - "east": {"uv": [10.75, 5, 11, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 9.75, 11, 10], "texture": "#2"}, - "west": {"uv": [10.75, 5, 11, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 5, 11, 10], "texture": "#2"}, - "down": {"uv": [10.75, 10, 11, 5], "texture": "#2"} + "north": { + "uv": [ + 11, + 5, + 10.75, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5, + 11, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 5, + 11, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 5, + 11, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 10, + 11, + 5 + ], + "texture": "#2" + } } }, { "name": "funa_16", - "from": [14.75, 0, 5], - "to": [15, 0.25, 7.25], + "from": [ + 14.75, + 0, + 5 + ], + "to": [ + 15, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15, 5, 14.75, 5.25], "texture": "#2"}, - "east": {"uv": [14.75, 5, 15, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 7, 15, 7.25], "texture": "#2"}, - "west": {"uv": [14.75, 5, 15, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 5, 15, 7.25], "texture": "#2"}, - "down": {"uv": [14.75, 7.25, 15, 5], "texture": "#2"} + "north": { + "uv": [ + 15, + 5, + 14.75, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 5, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 5, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 5, + 15, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15, + 5 + ], + "texture": "#2" + } } }, { "name": "funa_17", - "from": [15.5, 0, 5], - "to": [15.75, 0.25, 5.5], + "from": [ + 15.5, + 0, + 5 + ], + "to": [ + 15.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [15.75, 5, 15.5, 5.25], "texture": "#2"}, - "east": {"uv": [15.5, 5, 15.75, 5.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 5.25, 15.75, 5.5], "texture": "#2"}, - "west": {"uv": [15.5, 5, 15.75, 5.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 5, 15.75, 5.5], "texture": "#2"}, - "down": {"uv": [15.5, 5.5, 15.75, 5], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 5, + 15.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 5, + 15.75, + 5.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 5.25, + 15.75, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 5, + 15.75, + 5.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 5, + 15.75, + 5.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 5.5, + 15.75, + 5 + ], + "texture": "#2" + } } }, { "name": "funa_18", - "from": [4.25, 0, 5.25], - "to": [4.5, 0.25, 10], + "from": [ + 4.25, + 0, + 5.25 + ], + "to": [ + 4.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.5, 5.25, 4.25, 5.5], "texture": "#2"}, - "east": {"uv": [4.25, 5.25, 4.5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.25, 9.75, 4.5, 10], "texture": "#2"}, - "west": {"uv": [4.25, 5.25, 4.5, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.25, 5.25, 4.5, 10], "texture": "#2"}, - "down": {"uv": [4.25, 10, 4.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 5.25, + 4.25, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.25, + 10, + 4.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "funa_19", - "from": [11, 0, 5.25], - "to": [11.25, 0.25, 10.25], + "from": [ + 11, + 0, + 5.25 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 5.25, 11, 5.5], "texture": "#2"}, - "east": {"uv": [11, 5.25, 11.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 10, 11.25, 10.25], "texture": "#2"}, - "west": {"uv": [11, 5.25, 11.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 5.25, 11.25, 10.25], "texture": "#2"}, - "down": {"uv": [11, 10.25, 11.25, 5.25], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 5.25, + 11, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 5.25, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 5.25, + 11.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 5.25, + 11.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 10.25, + 11.25, + 5.25 + ], + "texture": "#2" + } } }, { "name": "funa_20", - "from": [14.5, 0, 5.25], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 5.25 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 5.25, 14.5, 5.5], "texture": "#2"}, - "east": {"uv": [14.5, 5.25, 14.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#2"}, - "west": {"uv": [14.5, 5.25, 14.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.5, 5.25, 14.75, 10], "texture": "#2"}, - "down": {"uv": [14.5, 10, 14.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 5.25, + 14.5, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 5.25, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.5, + 5.25, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.5, + 5.25, + 14.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "funa_21", - "from": [4, 0, 5.5], - "to": [4.25, 0.25, 10], + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 4.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.25, 5.5, 4, 5.75], "texture": "#2"}, - "east": {"uv": [4, 5.5, 4.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 9.75, 4.25, 10], "texture": "#2"}, - "west": {"uv": [4, 5.5, 4.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 5.5, 4.25, 10], "texture": "#2"}, - "down": {"uv": [4, 10, 4.25, 5.5], "texture": "#2"} + "north": { + "uv": [ + 4.25, + 5.5, + 4, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 5.5, + 4.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 5.5, + 4.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 10, + 4.25, + 5.5 + ], + "texture": "#2" + } } }, { "name": "funa_22", - "from": [11.25, 0, 5.5], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 5.5 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 5.5, 11.25, 5.75], "texture": "#2"}, - "east": {"uv": [11.25, 5.5, 11.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#2"}, - "west": {"uv": [11.25, 5.5, 11.5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 5.5, 11.5, 10.5], "texture": "#2"}, - "down": {"uv": [11.25, 10.5, 11.5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 5.5, + 11.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 5.5, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 5.5, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 5.5, + 11.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "funa_23", - "from": [14.25, 0, 5.5], - "to": [14.5, 0.25, 9.75], + "from": [ + 14.25, + 0, + 5.5 + ], + "to": [ + 14.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.5, 5.5, 14.25, 5.75], "texture": "#2"}, - "east": {"uv": [14.25, 5.5, 14.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 9.5, 14.5, 9.75], "texture": "#2"}, - "west": {"uv": [14.25, 5.5, 14.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 5.5, 14.5, 9.75], "texture": "#2"}, - "down": {"uv": [14.25, 9.75, 14.5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 5.5, + 14.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 5.5, + 14.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "funa_24", - "from": [3.5, 0, 5.75], - "to": [4, 0.25, 9.75], + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4, 5.75, 3.5, 6], "texture": "#2"}, - "east": {"uv": [3.75, 5.75, 4, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.5, 9.5, 4, 9.75], "texture": "#2"}, - "west": {"uv": [3.5, 5.75, 3.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.5, 5.75, 4, 9.75], "texture": "#2"}, - "down": {"uv": [3.5, 9.75, 4, 5.75], "texture": "#2"} + "north": { + "uv": [ + 4, + 5.75, + 3.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 4, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 4, + 5.75 + ], + "texture": "#2" + } } }, { "name": "funa_25", - "from": [11.5, 0, 5.75], - "to": [11.75, 0.25, 6], + "from": [ + 11.5, + 0, + 5.75 + ], + "to": [ + 11.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11.75, 5.75, 11.5, 6], "texture": "#2"}, - "east": {"uv": [11.5, 5.75, 11.75, 6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [11.5, 5.75, 11.75, 6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 5.75, 11.75, 6], "texture": "#2"}, - "down": {"uv": [11.5, 6, 11.75, 5.75], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 5.75, + 11.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 6, + 11.75, + 5.75 + ], + "texture": "#2" + } } }, { "name": "funa_26", - "from": [14, 0, 5.75], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 5.75 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 5.75, 14, 6], "texture": "#2"}, - "east": {"uv": [14, 5.75, 14.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#2"}, - "west": {"uv": [14, 5.75, 14.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 5.75, 14.25, 9.5], "texture": "#2"}, - "down": {"uv": [14, 9.5, 14.25, 5.75], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 5.75, + 14, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 5.75, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 5.75, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 5.75, + 14.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 5.75 + ], + "texture": "#2" + } } }, { "name": "funa_27", - "from": [3, 0, 6], - "to": [3.5, 0.25, 9.5], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.5, 6, 3, 6.25], "texture": "#2"}, - "east": {"uv": [3.25, 6, 3.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 9.25, 3.5, 9.5], "texture": "#2"}, - "west": {"uv": [3, 6, 3.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 6, 3.5, 9.5], "texture": "#2"}, - "down": {"uv": [3, 9.5, 3.5, 6], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 6, + 3, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 6, + 3.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 9.5, + 3.5, + 6 + ], + "texture": "#2" + } } }, { "name": "funa_28", - "from": [13.75, 0, 6], - "to": [14, 0.25, 9.25], + "from": [ + 13.75, + 0, + 6 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 6, 13.75, 6.25], "texture": "#2"}, - "east": {"uv": [13.75, 6, 14, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 9, 14, 9.25], "texture": "#2"}, - "west": {"uv": [13.75, 6, 14, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 6, 14, 9.25], "texture": "#2"}, - "down": {"uv": [13.75, 9.25, 14, 6], "texture": "#2"} + "north": { + "uv": [ + 14, + 6, + 13.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 6, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 6, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 6, + 14, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14, + 6 + ], + "texture": "#2" + } } }, { "name": "funa_29", - "from": [2.75, 0, 6.25], - "to": [3, 0.25, 9.25], + "from": [ + 2.75, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 6.25, 2.75, 6.5], "texture": "#2"}, - "east": {"uv": [2.75, 6.25, 3, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 9, 3, 9.25], "texture": "#2"}, - "west": {"uv": [2.75, 6.25, 3, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 6.25, 3, 9.25], "texture": "#2"}, - "down": {"uv": [2.75, 9.25, 3, 6.25], "texture": "#2"} + "north": { + "uv": [ + 3, + 6.25, + 2.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 6.25, + 3, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 6.25, + 3, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 9.25, + 3, + 6.25 + ], + "texture": "#2" + } } }, { "name": "funa_30", - "from": [13.5, 0, 6.25], - "to": [13.75, 0.25, 9], + "from": [ + 13.5, + 0, + 6.25 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 6.25, 13.5, 6.5], "texture": "#2"}, - "east": {"uv": [13.5, 6.25, 13.75, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#2"}, - "west": {"uv": [13.5, 6.25, 13.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.5, 6.25, 13.75, 9], "texture": "#2"}, - "down": {"uv": [13.5, 9, 13.75, 6.25], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 6.25, + 13.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.5, + 6.25, + 13.75, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.5, + 9, + 13.75, + 6.25 + ], + "texture": "#2" + } } }, { "name": "funa_31", - "from": [15, 0, 6.25], - "to": [15.25, 0.25, 6.75], + "from": [ + 15, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 6.25, 15, 6.5], "texture": "#2"}, - "east": {"uv": [15, 6.25, 15.25, 6.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#2"}, - "west": {"uv": [15, 6.25, 15.25, 6.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 6.25, 15.25, 6.75], "texture": "#2"}, - "down": {"uv": [15, 6.75, 15.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 6.25, + 15, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 6.25, + 15.25, + 6.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 6.25, + 15.25, + 6.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 6.75, + 15.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "funa_32", - "from": [2.5, 0, 6.5], - "to": [2.75, 0.25, 9], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 2.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.75, 6.5, 2.5, 6.75], "texture": "#2"}, - "east": {"uv": [2.5, 6.5, 2.75, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.5, 8.75, 2.75, 9], "texture": "#2"}, - "west": {"uv": [2.5, 6.5, 2.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.5, 6.5, 2.75, 9], "texture": "#2"}, - "down": {"uv": [2.5, 9, 2.75, 6.5], "texture": "#2"} + "north": { + "uv": [ + 2.75, + 6.5, + 2.5, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.5, + 9, + 2.75, + 6.5 + ], + "texture": "#2" + } } }, { "name": "funa_33", - "from": [11.5, 0, 6.5], - "to": [12.25, 0.25, 8.75], + "from": [ + 11.5, + 0, + 6.5 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 6.5, 11.5, 6.75], "texture": "#2"}, - "east": {"uv": [12, 6.5, 12.25, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 8.5, 12.25, 8.75], "texture": "#2"}, - "west": {"uv": [11.5, 6.5, 11.75, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 6.5, 12.25, 8.75], "texture": "#2"}, - "down": {"uv": [11.5, 8.75, 12.25, 6.5], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 6.5, + 11.5, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 6.5, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 8.5, + 12.25, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 6.5, + 11.75, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 6.5, + 12.25, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 8.75, + 12.25, + 6.5 + ], + "texture": "#2" + } } }, { "name": "funa_34", - "from": [13.25, 0, 6.5], - "to": [13.5, 0.25, 8.75], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 6.5, 13.25, 6.75], "texture": "#2"}, - "east": {"uv": [13.25, 6.5, 13.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 8.5, 13.5, 8.75], "texture": "#2"}, - "west": {"uv": [13.25, 6.5, 13.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 6.5, 13.5, 8.75], "texture": "#2"}, - "down": {"uv": [13.25, 8.75, 13.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 6.5, + 13.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 13.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "funa_35", - "from": [2, 0, 6.75], - "to": [2.5, 0.25, 8.75], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2.5, 6.75, 2, 7], "texture": "#2"}, - "east": {"uv": [2.25, 6.75, 2.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 8.5, 2.5, 8.75], "texture": "#2"}, - "west": {"uv": [2, 6.75, 2.25, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 6.75, 2.5, 8.75], "texture": "#2"}, - "down": {"uv": [2, 8.75, 2.5, 6.75], "texture": "#2"} + "north": { + "uv": [ + 2.5, + 6.75, + 2, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 8.5, + 2.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 6.75, + 2.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 8.75, + 2.5, + 6.75 + ], + "texture": "#2" + } } }, { "name": "funa_36", - "from": [12.25, 0, 6.75], - "to": [13.25, 0.25, 8.5], + "from": [ + 12.25, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.25, 6.75, 12.25, 7], "texture": "#2"}, - "east": {"uv": [13, 6.75, 13.25, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.25, 8.25, 13.25, 8.5], "texture": "#2"}, - "west": {"uv": [12.25, 6.75, 12.5, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.25, 6.75, 13.25, 8.5], "texture": "#2"}, - "down": {"uv": [12.25, 8.5, 13.25, 6.75], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 6.75, + 12.25, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 13.25, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.25, + 6.75, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.25, + 6.75, + 13.25, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 13.25, + 6.75 + ], + "texture": "#2" + } } }, { "name": "funa_37", - "from": [1.75, 0, 7], - "to": [2, 0.25, 8.5], + "from": [ + 1.75, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [2, 7, 1.75, 7.25], "texture": "#2"}, - "east": {"uv": [1.75, 7, 2, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 8.25, 2, 8.5], "texture": "#2"}, - "west": {"uv": [1.75, 7, 2, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 7, 2, 8.5], "texture": "#2"}, - "down": {"uv": [1.75, 8.5, 2, 7], "texture": "#2"} + "north": { + "uv": [ + 2, + 7, + 1.75, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 8.25, + 2, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 7, + 2, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 7, + 2, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 8.5, + 2, + 7 + ], + "texture": "#2" + } } }, { "name": "funa_38", - "from": [1.5, 0, 7.25], - "to": [1.75, 0.25, 8.25], + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1.5, 7.5], "texture": "#2"}, - "east": {"uv": [1.5, 7.25, 1.75, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 8, 1.75, 8.25], "texture": "#2"}, - "west": {"uv": [1.5, 7.25, 1.75, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 7.25, 1.75, 8.25], "texture": "#2"}, - "down": {"uv": [1.5, 8.25, 1.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 7.25, + 1.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 8.25, + 1.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "funa_39", - "from": [1.25, 0, 7.5], - "to": [1.5, 0.25, 8], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.5, 7.5, 1.25, 7.75], "texture": "#2"}, - "east": {"uv": [1.25, 7.5, 1.5, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 7.75, 1.5, 8], "texture": "#2"}, - "west": {"uv": [1.25, 7.5, 1.5, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 7.5, 1.5, 8], "texture": "#2"}, - "down": {"uv": [1.25, 8, 1.5, 7.5], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 7.5, + 1.25, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 8, + 1.5, + 7.5 + ], + "texture": "#2" + } } }, { "name": "funa_40", - "from": [14.75, 0, 7.5], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 7.5, 14.75, 7.75], "texture": "#2"}, - "east": {"uv": [14.75, 7.5, 15, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#2"}, - "west": {"uv": [14.75, 7.5, 15, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 7.5, 15, 10.25], "texture": "#2"}, - "down": {"uv": [14.75, 10.25, 15, 7.5], "texture": "#2"} + "north": { + "uv": [ + 15, + 7.5, + 14.75, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 7.5 + ], + "texture": "#2" + } } }, { "name": "funa_41", - "from": [15, 0, 8], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 8 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 8, 15, 8.25], "texture": "#2"}, - "east": {"uv": [15, 8, 15.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#2"}, - "west": {"uv": [15, 8, 15.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 8, 15.25, 10.25], "texture": "#2"}, - "down": {"uv": [15, 10.25, 15.25, 8], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 8, + 15, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 8, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 8, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 8, + 15.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 8 + ], + "texture": "#2" + } } }, { "name": "funa_42", - "from": [11.5, 0, 8.75], - "to": [12, 0.25, 10.5], + "from": [ + 11.5, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12, 8.75, 11.5, 9], "texture": "#2"}, - "east": {"uv": [11.75, 8.75, 12, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 10.25, 12, 10.5], "texture": "#2"}, - "west": {"uv": [11.5, 8.75, 11.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 8.75, 12, 10.5], "texture": "#2"}, - "down": {"uv": [11.5, 10.5, 12, 8.75], "texture": "#2"} + "north": { + "uv": [ + 12, + 8.75, + 11.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 12, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 8.75, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 8.75, + 12, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 12, + 8.75 + ], + "texture": "#2" + } } }, { "name": "funa_43", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#2"}, - "east": {"uv": [15.25, 8.75, 15.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#2"}, - "west": {"uv": [15.25, 8.75, 15.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 8.75, 15.5, 10.25], "texture": "#2"}, - "down": {"uv": [15.25, 10.25, 15.5, 8.75], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 8.75 + ], + "texture": "#2" + } } }, { "name": "funa_44", - "from": [12, 0, 9], - "to": [12.25, 0.25, 10], + "from": [ + 12, + 0, + 9 + ], + "to": [ + 12.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.25, 9, 12, 9.25], "texture": "#2"}, - "east": {"uv": [12, 9, 12.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 9.75, 12.25, 10], "texture": "#2"}, - "west": {"uv": [12, 9, 12.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 9, 12.25, 10], "texture": "#2"}, - "down": {"uv": [12, 10, 12.25, 9], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 9, + 12, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 9, + 12.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 9.75, + 12.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 9, + 12.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 9, + 12.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 10, + 12.25, + 9 + ], + "texture": "#2" + } } }, { "name": "funa_45", - "from": [3.25, 0, 9.5], - "to": [3.5, 0.25, 9.75], + "from": [ + 3.25, + 0, + 9.5 + ], + "to": [ + 3.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.5, 9.5, 3.25, 9.75], "texture": "#2"}, - "east": {"uv": [3.25, 9.5, 3.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.25, 9.5, 3.5, 9.75], "texture": "#2"}, - "west": {"uv": [3.25, 9.5, 3.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.25, 9.5, 3.5, 9.75], "texture": "#2"}, - "down": {"uv": [3.25, 9.75, 3.5, 9.5], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 9.5, + 3.25, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.25, + 9.75, + 3.5, + 9.5 + ], + "texture": "#2" + } } }, { "name": "funa_46", - "from": [15.5, 0, 9.5], - "to": [15.75, 0.25, 10.25], + "from": [ + 15.5, + 0, + 9.5 + ], + "to": [ + 15.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.75, 9.5, 15.5, 9.75], "texture": "#2"}, - "east": {"uv": [15.5, 9.5, 15.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 10, 15.75, 10.25], "texture": "#2"}, - "west": {"uv": [15.5, 9.5, 15.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 9.5, 15.75, 10.25], "texture": "#2"}, - "down": {"uv": [15.5, 10.25, 15.75, 9.5], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 9.5, + 15.5, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 9.5, + 15.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 9.5, + 15.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 9.5, + 15.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 10.25, + 15.75, + 9.5 + ], + "texture": "#2" + } } }, { "name": "funa_47", - "from": [15.75, 0, 9.75], - "to": [16, 0.25, 10], + "from": [ + 15.75, + 0, + 9.75 + ], + "to": [ + 16, + 0.25, + 10 + ], "faces": { - "north": {"uv": [16, 9.75, 15.75, 10], "texture": "#2"}, - "east": {"uv": [15.75, 9.75, 16, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.75, 9.75, 16, 10], "texture": "#2"}, - "west": {"uv": [15.75, 9.75, 16, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.75, 9.75, 16, 10], "texture": "#2"}, - "down": {"uv": [15.75, 10, 16, 9.75], "texture": "#2"} + "north": { + "uv": [ + 16, + 9.75, + 15.75, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.75, + 10, + 16, + 9.75 + ], + "texture": "#2" + } } }, { "name": "funa_48", - "from": [4.75, 0, 10], - "to": [5, 0.25, 10.25], + "from": [ + 4.75, + 0, + 10 + ], + "to": [ + 5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5, 10, 4.75, 10.25], "texture": "#2"}, - "east": {"uv": [4.75, 10, 5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 10, 5, 10.25], "texture": "#2"}, - "west": {"uv": [4.75, 10, 5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 10, 5, 10.25], "texture": "#2"}, - "down": {"uv": [4.75, 10.25, 5, 10], "texture": "#2"} + "north": { + "uv": [ + 5, + 10, + 4.75, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 5, + 10 + ], + "texture": "#2" + } } }, { "name": "funa_49", - "from": [5, 0, 10.25], - "to": [5.25, 0.25, 10.5], + "from": [ + 5, + 0, + 10.25 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.25, 10.25, 5, 10.5], "texture": "#2"}, - "east": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#2"}, - "west": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#2"}, - "down": {"uv": [5, 10.5, 5.25, 10.25], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 10.25, + 5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.25, + 10.25 + ], + "texture": "#2" + } } }, { "name": "funa_50", - "from": [6.25, 0, 10.5], - "to": [6.75, 0.25, 10.75], + "from": [ + 6.25, + 0, + 10.5 + ], + "to": [ + 6.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6.75, 10.5, 6.25, 10.75], "texture": "#2"}, - "east": {"uv": [6.5, 10.5, 6.75, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 10.5, 6.75, 10.75], "texture": "#2"}, - "west": {"uv": [6.25, 10.5, 6.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 10.5, 6.75, 10.75], "texture": "#2"}, - "down": {"uv": [6.25, 10.75, 6.75, 10.5], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 10.5, + 6.25, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 10.5, + 6.75, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 10.5, + 6.75, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 10.75, + 6.75, + 10.5 + ], + "texture": "#2" + } } }, { "name": "funa_51", - "from": [11.5, 0, 10.5], - "to": [11.75, 0.25, 10.75], + "from": [ + 11.5, + 0, + 10.5 + ], + "to": [ + 11.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.75, 10.5, 11.5, 10.75], "texture": "#2"}, - "east": {"uv": [11.5, 10.5, 11.75, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 10.5, 11.75, 10.75], "texture": "#2"}, - "west": {"uv": [11.5, 10.5, 11.75, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 10.5, 11.75, 10.75], "texture": "#2"}, - "down": {"uv": [11.5, 10.75, 11.75, 10.5], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 10.5, + 11.5, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 10.75, + 11.75, + 10.5 + ], + "texture": "#2" + } } }, { "name": "funa_52", - "from": [6.5, 0, 10.75], - "to": [6.75, 0.25, 11], + "from": [ + 6.5, + 0, + 10.75 + ], + "to": [ + 6.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.75, 10.75, 6.5, 11], "texture": "#2"}, - "east": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 10.75, 6.75, 11], "texture": "#2"}, - "west": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 10.75, 6.75, 11], "texture": "#2"}, - "down": {"uv": [6.5, 11, 6.75, 10.75], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 10.75, + 6.5, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 11, + 6.75, + 10.75 + ], + "texture": "#2" + } } }, { "name": "funa_53", - "from": [7.25, 0, 10.75], - "to": [7.75, 0.25, 11.75], + "from": [ + 7.25, + 0, + 10.75 + ], + "to": [ + 7.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7.75, 10.75, 7.25, 11], "texture": "#2"}, - "east": {"uv": [7.5, 10.75, 7.75, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 11.5, 7.75, 11.75], "texture": "#2"}, - "west": {"uv": [7.25, 10.75, 7.5, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 10.75, 7.75, 11.75], "texture": "#2"}, - "down": {"uv": [7.25, 11.75, 7.75, 10.75], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 10.75, + 7.25, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 11.5, + 7.75, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 10.75, + 7.75, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 11.75, + 7.75, + 10.75 + ], + "texture": "#2" + } } }, { "name": "funa_54", - "from": [7.75, 0, 11], - "to": [8, 0.25, 11.5], + "from": [ + 7.75, + 0, + 11 + ], + "to": [ + 8, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [8, 11, 7.75, 11.25], "texture": "#2"}, - "east": {"uv": [7.75, 11, 8, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 11.25, 8, 11.5], "texture": "#2"}, - "west": {"uv": [7.75, 11, 8, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 11, 8, 11.5], "texture": "#2"}, - "down": {"uv": [7.75, 11.5, 8, 11], "texture": "#2"} + "north": { + "uv": [ + 8, + 11, + 7.75, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 11, + 8, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 11.25, + 8, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 11, + 8, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 11, + 8, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 11.5, + 8, + 11 + ], + "texture": "#2" + } } }, { "name": "funa_55", - "from": [7, 0, 11.25], - "to": [7.25, 0.25, 11.5], + "from": [ + 7, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 11.25, 7, 11.5], "texture": "#2"}, - "east": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#2"}, - "west": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#2"}, - "down": {"uv": [7, 11.5, 7.25, 11.25], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 11.25, + 7, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 11.5, + 7.25, + 11.25 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-2.25, 1.25, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -2.25, + 1.25, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-1, 1.25, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.25, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 1.75], - "translation": [1, 1, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + 1, + 1, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 1.75], - "translation": [1, 1, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + 1, + 1, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [-0.25, -0.5, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.25, + -0.5, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "ugui", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] }, { "name": "funa", - "origin": [8, 8, 8], - "children": [40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/gar.json b/pack/assets/minecraft/models/fish/gar.json index 9bcc2c00..6bcc975f 100644 --- a/pack/assets/minecraft/models/fish/gar.json +++ b/pack/assets/minecraft/models/fish/gar.json @@ -2,448 +2,2319 @@ "__name": "ガー", "credit": "Made with Blockbench", "textures": { - "0": "fish/gar", - "particle": "fish/gar" + "0": "item/fish/gar", + "particle": "item/fish/gar" }, "elements": [ { "name": "gar_0", - "from": [12.75, 0, 6.25], - "to": [13.25, 0.25, 8.25], + "from": [ + 12.75, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.25, 6.25, 12.75, 6.5], "texture": "#0"}, - "east": {"uv": [13, 6.25, 13.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8, 13.25, 8.25], "texture": "#0"}, - "west": {"uv": [12.75, 6.25, 13, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.25, 13.25, 8.25], "texture": "#0"}, - "down": {"uv": [12.75, 8.25, 13.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.25, + 12.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8, + 13.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.25, + 13, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.25, + 13.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.25, + 13.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "gar_1", - "from": [12.5, 0, 6.5], - "to": [12.75, 0.25, 8.25], + "from": [ + 12.5, + 0, + 6.5 + ], + "to": [ + 12.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12.75, 6.5, 12.5, 6.75], "texture": "#0"}, - "east": {"uv": [12.5, 6.5, 12.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8, 12.75, 8.25], "texture": "#0"}, - "west": {"uv": [12.5, 6.5, 12.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6.5, 12.75, 8.25], "texture": "#0"}, - "down": {"uv": [12.5, 8.25, 12.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 6.5, + 12.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 6.5, + 12.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6.5, + 12.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.25, + 12.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "gar_2", - "from": [13.25, 0, 6.5], - "to": [13.5, 0.25, 8.25], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.5, 6.5, 13.25, 6.75], "texture": "#0"}, - "east": {"uv": [13.25, 6.5, 13.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8, 13.5, 8.25], "texture": "#0"}, - "west": {"uv": [13.25, 6.5, 13.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6.5, 13.5, 8.25], "texture": "#0"}, - "down": {"uv": [13.25, 8.25, 13.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6.5, + 13.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.25, + 13.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "gar_3", - "from": [5, 0, 6.75], - "to": [10.5, 0.25, 9], + "from": [ + 5, + 0, + 6.75 + ], + "to": [ + 10.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.5, 6.75, 5, 7], "texture": "#0"}, - "east": {"uv": [10.25, 6.75, 10.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.75, 10.5, 9], "texture": "#0"}, - "west": {"uv": [5, 6.75, 5.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.75, 10.5, 9], "texture": "#0"}, - "down": {"uv": [5, 9, 10.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 6.75, + 5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.75, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.75, + 5.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 10.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "gar_4", - "from": [10.5, 0, 6.75], - "to": [12.5, 0.25, 8.5], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.5, 6.75, 10.5, 7], "texture": "#0"}, - "east": {"uv": [12.25, 6.75, 12.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.25, 12.5, 8.5], "texture": "#0"}, - "west": {"uv": [10.5, 6.75, 10.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.75, 12.5, 8.5], "texture": "#0"}, - "down": {"uv": [10.5, 8.5, 12.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.75, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.5, + 12.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "gar_5", - "from": [13.5, 0, 6.75], - "to": [13.75, 0.25, 7], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 13.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [13.75, 6.75, 13.5, 7], "texture": "#0"}, - "east": {"uv": [13.5, 6.75, 13.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 6.75, 13.75, 7], "texture": "#0"}, - "west": {"uv": [13.5, 6.75, 13.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.75, 13.75, 7], "texture": "#0"}, - "down": {"uv": [13.5, 7, 13.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 6.75, + 13.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7, + 13.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "gar_6", - "from": [14.25, 0, 6.75], - "to": [15.25, 0.25, 8.75], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 6.75, 14.25, 7], "texture": "#0"}, - "east": {"uv": [15, 6.75, 15.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.5, 15.25, 8.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.75, 14.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.75, 15.25, 8.75], "texture": "#0"}, - "down": {"uv": [14.25, 8.75, 15.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.75, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 15.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "gar_7", - "from": [2.75, 0, 7], - "to": [5, 0.25, 8.5], + "from": [ + 2.75, + 0, + 7 + ], + "to": [ + 5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [5, 7, 2.75, 7.25], "texture": "#0"}, - "east": {"uv": [4.75, 7, 5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.25, 5, 8.5], "texture": "#0"}, - "west": {"uv": [2.75, 7, 3, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7, 5, 8.5], "texture": "#0"}, - "down": {"uv": [2.75, 8.5, 5, 7], "texture": "#0"} + "north": { + "uv": [ + 5, + 7, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7, + 5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7, + 3, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7, + 5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.5, + 5, + 7 + ], + "texture": "#0" + } } }, { "name": "gar_8", - "from": [14, 0, 7], - "to": [14.25, 0.25, 9], + "from": [ + 14, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 7, 14, 7.25], "texture": "#0"}, - "east": {"uv": [14, 7, 14.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.75, 14.25, 9], "texture": "#0"}, - "west": {"uv": [14, 7, 14.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7, 14.25, 9], "texture": "#0"}, - "down": {"uv": [14, 9, 14.25, 7], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7, + 14.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 14.25, + 7 + ], + "texture": "#0" + } } }, { "name": "gar_9", - "from": [15.25, 0, 7], - "to": [15.5, 0.25, 8.5], + "from": [ + 15.25, + 0, + 7 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.5, 7, 15.25, 7.25], "texture": "#0"}, - "east": {"uv": [15.25, 7, 15.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "west": {"uv": [15.25, 7, 15.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7, 15.5, 8.5], "texture": "#0"}, - "down": {"uv": [15.25, 8.5, 15.5, 7], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.5, + 15.5, + 7 + ], + "texture": "#0" + } } }, { "name": "gar_10", - "from": [2, 0, 7.25], - "to": [2.75, 0.25, 8.5], + "from": [ + 2, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [2.75, 7.25, 2, 7.5], "texture": "#0"}, - "east": {"uv": [2.5, 7.25, 2.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2, 7.25, 2.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [2, 8.5, 2.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 7.25, + 2, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.25, + 2.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.5, + 2.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "gar_11", - "from": [13.5, 0, 7.25], - "to": [14, 0.25, 8.5], + "from": [ + 13.5, + 0, + 7.25 + ], + "to": [ + 14, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14, 7.25, 13.5, 7.5], "texture": "#0"}, - "east": {"uv": [13.75, 7.25, 14, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.25, 14, 8.5], "texture": "#0"}, - "west": {"uv": [13.5, 7.25, 13.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.25, 14, 8.5], "texture": "#0"}, - "down": {"uv": [13.5, 8.5, 14, 7.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7.25, + 14, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.25, + 13.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.5, + 14, + 7.25 + ], + "texture": "#0" + } } }, { "name": "gar_12", - "from": [15.5, 0, 7.25], - "to": [15.75, 0.25, 8.25], + "from": [ + 15.5, + 0, + 7.25 + ], + "to": [ + 15.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.75, 7.25, 15.5, 7.5], "texture": "#0"}, - "east": {"uv": [15.5, 7.25, 15.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 8, 15.75, 8.25], "texture": "#0"}, - "west": {"uv": [15.5, 7.25, 15.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 7.25, 15.75, 8.25], "texture": "#0"}, - "down": {"uv": [15.5, 8.25, 15.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 7.25, + 15.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 7.25, + 15.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 8, + 15.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 7.25, + 15.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 7.25, + 15.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 8.25, + 15.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "gar_13", - "from": [0.25, 0, 7.5], - "to": [2, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2, 7.5, 0.25, 7.75], "texture": "#0"}, - "east": {"uv": [1.75, 7.5, 2, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 8, 2, 8.25], "texture": "#0"}, - "west": {"uv": [0.25, 7.5, 0.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.5, 2, 8.25], "texture": "#0"}, - "down": {"uv": [0.25, 8.25, 2, 7.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 2, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 2, + 7.5 + ], + "texture": "#0" + } } }, { "name": "gar_14", - "from": [0, 0, 7.75], - "to": [0.25, 0.25, 8], + "from": [ + 0, + 0, + 7.75 + ], + "to": [ + 0.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.25, 7.75, 0, 8], "texture": "#0"}, - "east": {"uv": [0, 7.75, 0.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 7.75, 0.25, 8], "texture": "#0"}, - "west": {"uv": [0, 7.75, 0.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 7.75, 0.25, 8], "texture": "#0"}, - "down": {"uv": [0, 8, 0.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 0.25, + 7.75, + 0, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 8, + 0.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "gar_15", - "from": [3, 0, 8.5], - "to": [5, 0.25, 8.75], + "from": [ + 3, + 0, + 8.5 + ], + "to": [ + 5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [5, 8.5, 3, 8.75], "texture": "#0"}, - "east": {"uv": [4.75, 8.5, 5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.5, 5, 8.75], "texture": "#0"}, - "west": {"uv": [3, 8.5, 3.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8.5, 5, 8.75], "texture": "#0"}, - "down": {"uv": [3, 8.75, 5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.75, + 5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "gar_16", - "from": [10.5, 0, 8.5], - "to": [10.75, 0.25, 8.75], + "from": [ + 10.5, + 0, + 8.5 + ], + "to": [ + 10.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [10.75, 8.5, 10.5, 8.75], "texture": "#0"}, - "east": {"uv": [10.5, 8.5, 10.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.5, 10.75, 8.75], "texture": "#0"}, - "west": {"uv": [10.5, 8.5, 10.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.5, 10.75, 8.75], "texture": "#0"}, - "down": {"uv": [10.5, 8.75, 10.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 8.5, + 10.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.75, + 10.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "gar_17", - "from": [11.25, 0, 8.5], - "to": [12.75, 0.25, 8.75], + "from": [ + 11.25, + 0, + 8.5 + ], + "to": [ + 12.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.75, 8.5, 11.25, 8.75], "texture": "#0"}, - "east": {"uv": [12.5, 8.5, 12.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.5, 12.75, 8.75], "texture": "#0"}, - "west": {"uv": [11.25, 8.5, 11.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.5, 12.75, 8.75], "texture": "#0"}, - "down": {"uv": [11.25, 8.75, 12.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.5, + 12.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.5, + 12.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 12.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "gar_18", - "from": [13.75, 0, 8.5], - "to": [14, 0.25, 8.75], + "from": [ + 13.75, + 0, + 8.5 + ], + "to": [ + 14, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14, 8.5, 13.75, 8.75], "texture": "#0"}, - "east": {"uv": [13.75, 8.5, 14, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#0"}, - "west": {"uv": [13.75, 8.5, 14, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#0"}, - "down": {"uv": [13.75, 8.75, 14, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 8.5, + 13.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14, + 8.5 + ], + "texture": "#0" + } } }, { "name": "gar_19", - "from": [3.75, 0, 8.75], - "to": [5, 0.25, 9], + "from": [ + 3.75, + 0, + 8.75 + ], + "to": [ + 5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [5, 8.75, 3.75, 9], "texture": "#0"}, - "east": {"uv": [4.75, 8.75, 5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.75, 5, 9], "texture": "#0"}, - "west": {"uv": [3.75, 8.75, 4, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.75, 5, 9], "texture": "#0"}, - "down": {"uv": [3.75, 9, 5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9, + 5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "gar_20", - "from": [11.5, 0, 8.75], - "to": [13, 0.25, 9], + "from": [ + 11.5, + 0, + 8.75 + ], + "to": [ + 13, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13, 8.75, 11.5, 9], "texture": "#0"}, - "east": {"uv": [12.75, 8.75, 13, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 13, 9], "texture": "#0"}, - "west": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8.75, 13, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 13, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.75, + 13, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 13, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8.75, + 13, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 13, + 8.75 + ], + "texture": "#0" + } } }, { "name": "gar_21", - "from": [14.25, 0, 8.75], - "to": [14.75, 0.25, 9.25], + "from": [ + 14.25, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.25, 9], "texture": "#0"}, - "east": {"uv": [14.5, 8.75, 14.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9, 14.75, 9.25], "texture": "#0"}, - "west": {"uv": [14.25, 8.75, 14.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.75, 14.75, 9.25], "texture": "#0"}, - "down": {"uv": [14.25, 9.25, 14.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.75, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "gar_22", - "from": [14.75, 0, 8.75], - "to": [15, 0.25, 9], + "from": [ + 14.75, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15, 8.75, 14.75, 9], "texture": "#0"}, - "east": {"uv": [14.75, 8.75, 15, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.75, 15, 9], "texture": "#0"}, - "west": {"uv": [14.75, 8.75, 15, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.75, 15, 9], "texture": "#0"}, - "down": {"uv": [14.75, 9, 15, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9, + 15, + 8.75 + ], + "texture": "#0" + } } }, { "name": "gar_23", - "from": [4, 0, 9], - "to": [4.75, 0.25, 9.25], + "from": [ + 4, + 0, + 9 + ], + "to": [ + 4.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.75, 9, 4, 9.25], "texture": "#0"}, - "east": {"uv": [4.5, 9, 4.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9, 4.75, 9.25], "texture": "#0"}, - "west": {"uv": [4, 9, 4.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9, 4.75, 9.25], "texture": "#0"}, - "down": {"uv": [4, 9.25, 4.75, 9], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 4.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9, + 4.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9, + 4.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.25, + 4.75, + 9 + ], + "texture": "#0" + } } }, { "name": "gar_24", - "from": [7.25, 0, 9], - "to": [8.25, 0.25, 9.25], + "from": [ + 7.25, + 0, + 9 + ], + "to": [ + 8.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.25, 9, 7.25, 9.25], "texture": "#0"}, - "east": {"uv": [8, 9, 8.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9, 8.25, 9.25], "texture": "#0"}, - "west": {"uv": [7.25, 9, 7.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9, 8.25, 9.25], "texture": "#0"}, - "down": {"uv": [7.25, 9.25, 8.25, 9], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 9, + 7.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.25, + 8.25, + 9 + ], + "texture": "#0" + } } }, { "name": "gar_25", - "from": [11.75, 0, 9], - "to": [13, 0.25, 9.25], + "from": [ + 11.75, + 0, + 9 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 9, 11.75, 9.25], "texture": "#0"}, - "east": {"uv": [12.75, 9, 13, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9, 13, 9.25], "texture": "#0"}, - "west": {"uv": [11.75, 9, 12, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9, 13, 9.25], "texture": "#0"}, - "down": {"uv": [11.75, 9.25, 13, 9], "texture": "#0"} + "north": { + "uv": [ + 13, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 9, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 13, + 9 + ], + "texture": "#0" + } } }, { "name": "gar_26", - "from": [4.25, 0, 9.25], - "to": [4.5, 0.25, 9.5], + "from": [ + 4.25, + 0, + 9.25 + ], + "to": [ + 4.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.5, 9.25, 4.25, 9.5], "texture": "#0"}, - "east": {"uv": [4.25, 9.25, 4.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.25, 4.5, 9.5], "texture": "#0"}, - "west": {"uv": [4.25, 9.25, 4.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.25, 4.5, 9.5], "texture": "#0"}, - "down": {"uv": [4.25, 9.5, 4.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "gar_27", - "from": [7.5, 0, 9.25], - "to": [8.5, 0.25, 9.5], + "from": [ + 7.5, + 0, + 9.25 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 9.25, 7.5, 9.5], "texture": "#0"}, - "east": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.25, 8.5, 9.5], "texture": "#0"}, - "west": {"uv": [7.5, 9.25, 7.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9.25, 8.5, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 8.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 9.25, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 8.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "gar_28", - "from": [12.25, 0, 9.25], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.25, + 0, + 9.25 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 9.25, 12.25, 9.5], "texture": "#0"}, - "east": {"uv": [12.5, 9.25, 12.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 9.25, 12.75, 9.5], "texture": "#0"}, - "west": {"uv": [12.25, 9.25, 12.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 9.25, 12.75, 9.5], "texture": "#0"}, - "down": {"uv": [12.25, 9.5, 12.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 9.25, + 12.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 9.25, + 12.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 9.5, + 12.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "gar_29", - "from": [7.75, 0, 9.5], - "to": [8.25, 0.25, 9.75], + "from": [ + 7.75, + 0, + 9.5 + ], + "to": [ + 8.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.25, 9.5, 7.75, 9.75], "texture": "#0"}, - "east": {"uv": [8, 9.5, 8.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.5, 8.25, 9.75], "texture": "#0"}, - "west": {"uv": [7.75, 9.5, 8, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.5, 8.25, 9.75], "texture": "#0"}, - "down": {"uv": [7.75, 9.75, 8.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.75, + 8.25, + 9.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "gar", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/go-rudentorauto.json b/pack/assets/minecraft/models/fish/go-rudentorauto.json index 6eb0d29f..f679a47b 100644 --- a/pack/assets/minecraft/models/fish/go-rudentorauto.json +++ b/pack/assets/minecraft/models/fish/go-rudentorauto.json @@ -2,654 +2,3461 @@ "__name": "ゴールデントラウト", "credit": "Made with Blockbench", "textures": { - "2": "fish/go-rudentorauto" + "2": "item/fish/go-rudentorauto" }, "elements": [ { "name": "go-rudentorauto_0", - "from": [6.93333, 0, 5.6], - "to": [8, 0.26667, 10.4], + "from": [ + 6.93333, + 0, + 5.6 + ], + "to": [ + 8, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [8, 5.6, 6.93333, 5.86667], "texture": "#2"}, - "east": {"uv": [7.73333, 5.6, 8, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.93333, 10.13333, 8, 10.4], "texture": "#2"}, - "west": {"uv": [6.93333, 5.6, 7.2, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.93333, 5.6, 8, 10.4], "texture": "#2"}, - "down": {"uv": [6.93333, 10.4, 8, 5.6], "texture": "#2"} + "north": { + "uv": [ + 8, + 5.6, + 6.93333, + 5.86667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.73333, + 5.6, + 8, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.93333, + 10.13333, + 8, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.93333, + 5.6, + 7.2, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.93333, + 5.6, + 8, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.93333, + 10.4, + 8, + 5.6 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_1", - "from": [6.66667, 0, 5.86667], - "to": [6.93333, 0.26667, 10.4], + "from": [ + 6.66667, + 0, + 5.86667 + ], + "to": [ + 6.93333, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [6.93333, 5.86667, 6.66667, 6.13333], "texture": "#2"}, - "east": {"uv": [6.66667, 5.86667, 6.93333, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.66667, 10.13333, 6.93333, 10.4], "texture": "#2"}, - "west": {"uv": [6.66667, 5.86667, 6.93333, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.66667, 5.86667, 6.93333, 10.4], "texture": "#2"}, - "down": {"uv": [6.66667, 10.4, 6.93333, 5.86667], "texture": "#2"} + "north": { + "uv": [ + 6.93333, + 5.86667, + 6.66667, + 6.13333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.66667, + 5.86667, + 6.93333, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.66667, + 10.13333, + 6.93333, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.66667, + 5.86667, + 6.93333, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.66667, + 5.86667, + 6.93333, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.66667, + 10.4, + 6.93333, + 5.86667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_2", - "from": [8, 0, 5.86667], - "to": [8.53333, 0.26667, 10.93333], + "from": [ + 8, + 0, + 5.86667 + ], + "to": [ + 8.53333, + 0.26667, + 10.93333 + ], "faces": { - "north": {"uv": [8.53333, 5.86667, 8, 6.13333], "texture": "#2"}, - "east": {"uv": [8.26667, 5.86667, 8.53333, 10.93333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 10.66667, 8.53333, 10.93333], "texture": "#2"}, - "west": {"uv": [8, 5.86667, 8.26667, 10.93333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 5.86667, 8.53333, 10.93333], "texture": "#2"}, - "down": {"uv": [8, 10.93333, 8.53333, 5.86667], "texture": "#2"} + "north": { + "uv": [ + 8.53333, + 5.86667, + 8, + 6.13333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.26667, + 5.86667, + 8.53333, + 10.93333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 10.66667, + 8.53333, + 10.93333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 5.86667, + 8.26667, + 10.93333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 5.86667, + 8.53333, + 10.93333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 10.93333, + 8.53333, + 5.86667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_3", - "from": [6.4, 0, 6.13333], - "to": [6.66667, 0.26667, 10.4], + "from": [ + 6.4, + 0, + 6.13333 + ], + "to": [ + 6.66667, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [6.66667, 6.13333, 6.4, 6.4], "texture": "#2"}, - "east": {"uv": [6.4, 6.13333, 6.66667, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.4, 10.13333, 6.66667, 10.4], "texture": "#2"}, - "west": {"uv": [6.4, 6.13333, 6.66667, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.4, 6.13333, 6.66667, 10.4], "texture": "#2"}, - "down": {"uv": [6.4, 10.4, 6.66667, 6.13333], "texture": "#2"} + "north": { + "uv": [ + 6.66667, + 6.13333, + 6.4, + 6.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.4, + 6.13333, + 6.66667, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.4, + 10.13333, + 6.66667, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.4, + 6.13333, + 6.66667, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.4, + 6.13333, + 6.66667, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.4, + 10.4, + 6.66667, + 6.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_4", - "from": [8.53333, 0, 6.13333], - "to": [9.33333, 0.26667, 10.13333], + "from": [ + 8.53333, + 0, + 6.13333 + ], + "to": [ + 9.33333, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [9.33333, 6.13333, 8.53333, 6.4], "texture": "#2"}, - "east": {"uv": [9.06667, 6.13333, 9.33333, 10.13333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.53333, 9.86667, 9.33333, 10.13333], "texture": "#2"}, - "west": {"uv": [8.53333, 6.13333, 8.8, 10.13333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.53333, 6.13333, 9.33333, 10.13333], "texture": "#2"}, - "down": {"uv": [8.53333, 10.13333, 9.33333, 6.13333], "texture": "#2"} + "north": { + "uv": [ + 9.33333, + 6.13333, + 8.53333, + 6.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.06667, + 6.13333, + 9.33333, + 10.13333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.53333, + 9.86667, + 9.33333, + 10.13333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.53333, + 6.13333, + 8.8, + 10.13333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.53333, + 6.13333, + 9.33333, + 10.13333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.53333, + 10.13333, + 9.33333, + 6.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_5", - "from": [15.2, 0, 6.13333], - "to": [15.73333, 0.26667, 7.46667], + "from": [ + 15.2, + 0, + 6.13333 + ], + "to": [ + 15.73333, + 0.26667, + 7.46667 + ], "faces": { - "north": {"uv": [15.73333, 6.13333, 15.2, 6.4], "texture": "#2"}, - "east": {"uv": [15.46667, 6.13333, 15.73333, 7.46667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.2, 7.2, 15.73333, 7.46667], "texture": "#2"}, - "west": {"uv": [15.2, 6.13333, 15.46667, 7.46667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.2, 6.13333, 15.73333, 7.46667], "texture": "#2"}, - "down": {"uv": [15.2, 7.46667, 15.73333, 6.13333], "texture": "#2"} + "north": { + "uv": [ + 15.73333, + 6.13333, + 15.2, + 6.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.46667, + 6.13333, + 15.73333, + 7.46667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.2, + 7.2, + 15.73333, + 7.46667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.2, + 6.13333, + 15.46667, + 7.46667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.2, + 6.13333, + 15.73333, + 7.46667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.2, + 7.46667, + 15.73333, + 6.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_6", - "from": [9.33333, 0, 6.4], - "to": [9.6, 0.26667, 6.66667], + "from": [ + 9.33333, + 0, + 6.4 + ], + "to": [ + 9.6, + 0.26667, + 6.66667 + ], "faces": { - "north": {"uv": [9.6, 6.4, 9.33333, 6.66667], "texture": "#2"}, - "east": {"uv": [9.33333, 6.4, 9.6, 6.66667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.33333, 6.4, 9.6, 6.66667], "texture": "#2"}, - "west": {"uv": [9.33333, 6.4, 9.6, 6.66667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.33333, 6.4, 9.6, 6.66667], "texture": "#2"}, - "down": {"uv": [9.33333, 6.66667, 9.6, 6.4], "texture": "#2"} + "north": { + "uv": [ + 9.6, + 6.4, + 9.33333, + 6.66667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.33333, + 6.4, + 9.6, + 6.66667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.33333, + 6.4, + 9.6, + 6.66667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.33333, + 6.4, + 9.6, + 6.66667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.33333, + 6.4, + 9.6, + 6.66667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.33333, + 6.66667, + 9.6, + 6.4 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_7", - "from": [14.93333, 0, 6.4], - "to": [15.2, 0.26667, 9.86667], + "from": [ + 14.93333, + 0, + 6.4 + ], + "to": [ + 15.2, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [15.2, 6.4, 14.93333, 6.66667], "texture": "#2"}, - "east": {"uv": [14.93333, 6.4, 15.2, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.93333, 9.6, 15.2, 9.86667], "texture": "#2"}, - "west": {"uv": [14.93333, 6.4, 15.2, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.93333, 6.4, 15.2, 9.86667], "texture": "#2"}, - "down": {"uv": [14.93333, 9.86667, 15.2, 6.4], "texture": "#2"} + "north": { + "uv": [ + 15.2, + 6.4, + 14.93333, + 6.66667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.93333, + 6.4, + 15.2, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.93333, + 9.6, + 15.2, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.93333, + 6.4, + 15.2, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.93333, + 6.4, + 15.2, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.93333, + 9.86667, + 15.2, + 6.4 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_8", - "from": [15.73333, 0, 6.4], - "to": [16, 0.26667, 6.93333], + "from": [ + 15.73333, + 0, + 6.4 + ], + "to": [ + 16, + 0.26667, + 6.93333 + ], "faces": { - "north": {"uv": [16, 6.4, 15.73333, 6.66667], "texture": "#2"}, - "east": {"uv": [15.73333, 6.4, 16, 6.93333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.73333, 6.66667, 16, 6.93333], "texture": "#2"}, - "west": {"uv": [15.73333, 6.4, 16, 6.93333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.73333, 6.4, 16, 6.93333], "texture": "#2"}, - "down": {"uv": [15.73333, 6.93333, 16, 6.4], "texture": "#2"} + "north": { + "uv": [ + 16, + 6.4, + 15.73333, + 6.66667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.73333, + 6.4, + 16, + 6.93333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.73333, + 6.66667, + 16, + 6.93333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.73333, + 6.4, + 16, + 6.93333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.73333, + 6.4, + 16, + 6.93333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.73333, + 6.93333, + 16, + 6.4 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_9", - "from": [4, 0, 6.66667], - "to": [6.4, 0.26667, 10.4], + "from": [ + 4, + 0, + 6.66667 + ], + "to": [ + 6.4, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [6.4, 6.66667, 4, 6.93333], "texture": "#2"}, - "east": {"uv": [6.13333, 6.66667, 6.4, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 10.13333, 6.4, 10.4], "texture": "#2"}, - "west": {"uv": [4, 6.66667, 4.26667, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 6.66667, 6.4, 10.4], "texture": "#2"}, - "down": {"uv": [4, 10.4, 6.4, 6.66667], "texture": "#2"} + "north": { + "uv": [ + 6.4, + 6.66667, + 4, + 6.93333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.13333, + 6.66667, + 6.4, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 10.13333, + 6.4, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 6.66667, + 4.26667, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 6.66667, + 6.4, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 10.4, + 6.4, + 6.66667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_10", - "from": [12, 0, 6.66667], - "to": [12.26667, 0.26667, 10.4], + "from": [ + 12, + 0, + 6.66667 + ], + "to": [ + 12.26667, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [12.26667, 6.66667, 12, 6.93333], "texture": "#2"}, - "east": {"uv": [12, 6.66667, 12.26667, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 10.13333, 12.26667, 10.4], "texture": "#2"}, - "west": {"uv": [12, 6.66667, 12.26667, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 6.66667, 12.26667, 10.4], "texture": "#2"}, - "down": {"uv": [12, 10.4, 12.26667, 6.66667], "texture": "#2"} + "north": { + "uv": [ + 12.26667, + 6.66667, + 12, + 6.93333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 6.66667, + 12.26667, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 10.13333, + 12.26667, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 6.66667, + 12.26667, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 6.66667, + 12.26667, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 10.4, + 12.26667, + 6.66667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_11", - "from": [14.4, 0, 6.66667], - "to": [14.93333, 0.26667, 9.6], + "from": [ + 14.4, + 0, + 6.66667 + ], + "to": [ + 14.93333, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [14.93333, 6.66667, 14.4, 6.93333], "texture": "#2"}, - "east": {"uv": [14.66667, 6.66667, 14.93333, 9.6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.4, 9.33333, 14.93333, 9.6], "texture": "#2"}, - "west": {"uv": [14.4, 6.66667, 14.66667, 9.6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.4, 6.66667, 14.93333, 9.6], "texture": "#2"}, - "down": {"uv": [14.4, 9.6, 14.93333, 6.66667], "texture": "#2"} + "north": { + "uv": [ + 14.93333, + 6.66667, + 14.4, + 6.93333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.66667, + 6.66667, + 14.93333, + 9.6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.4, + 9.33333, + 14.93333, + 9.6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.4, + 6.66667, + 14.66667, + 9.6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.4, + 6.66667, + 14.93333, + 9.6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.4, + 9.6, + 14.93333, + 6.66667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_12", - "from": [2.93333, 0, 6.93333], - "to": [4, 0.26667, 10.4], + "from": [ + 2.93333, + 0, + 6.93333 + ], + "to": [ + 4, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [4, 6.93333, 2.93333, 7.2], "texture": "#2"}, - "east": {"uv": [3.73333, 6.93333, 4, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.93333, 10.13333, 4, 10.4], "texture": "#2"}, - "west": {"uv": [2.93333, 6.93333, 3.2, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.93333, 6.93333, 4, 10.4], "texture": "#2"}, - "down": {"uv": [2.93333, 10.4, 4, 6.93333], "texture": "#2"} + "north": { + "uv": [ + 4, + 6.93333, + 2.93333, + 7.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.73333, + 6.93333, + 4, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.93333, + 10.13333, + 4, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.93333, + 6.93333, + 3.2, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.93333, + 6.93333, + 4, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.93333, + 10.4, + 4, + 6.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_13", - "from": [9.33333, 0, 6.93333], - "to": [10.13333, 0.26667, 9.86667], + "from": [ + 9.33333, + 0, + 6.93333 + ], + "to": [ + 10.13333, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [10.13333, 6.93333, 9.33333, 7.2], "texture": "#2"}, - "east": {"uv": [9.86667, 6.93333, 10.13333, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.33333, 9.6, 10.13333, 9.86667], "texture": "#2"}, - "west": {"uv": [9.33333, 6.93333, 9.6, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.33333, 6.93333, 10.13333, 9.86667], "texture": "#2"}, - "down": {"uv": [9.33333, 9.86667, 10.13333, 6.93333], "texture": "#2"} + "north": { + "uv": [ + 10.13333, + 6.93333, + 9.33333, + 7.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.86667, + 6.93333, + 10.13333, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.33333, + 9.6, + 10.13333, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.33333, + 6.93333, + 9.6, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.33333, + 6.93333, + 10.13333, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.33333, + 9.86667, + 10.13333, + 6.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_14", - "from": [11.73333, 0, 6.93333], - "to": [12, 0.26667, 10.66667], + "from": [ + 11.73333, + 0, + 6.93333 + ], + "to": [ + 12, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [12, 6.93333, 11.73333, 7.2], "texture": "#2"}, - "east": {"uv": [11.73333, 6.93333, 12, 10.66667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.73333, 10.4, 12, 10.66667], "texture": "#2"}, - "west": {"uv": [11.73333, 6.93333, 12, 10.66667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.73333, 6.93333, 12, 10.66667], "texture": "#2"}, - "down": {"uv": [11.73333, 10.66667, 12, 6.93333], "texture": "#2"} + "north": { + "uv": [ + 12, + 6.93333, + 11.73333, + 7.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.73333, + 6.93333, + 12, + 10.66667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.73333, + 10.4, + 12, + 10.66667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.73333, + 6.93333, + 12, + 10.66667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.73333, + 6.93333, + 12, + 10.66667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.73333, + 10.66667, + 12, + 6.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_15", - "from": [12.26667, 0, 6.93333], - "to": [12.53333, 0.26667, 9.33333], + "from": [ + 12.26667, + 0, + 6.93333 + ], + "to": [ + 12.53333, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [12.53333, 6.93333, 12.26667, 7.2], "texture": "#2"}, - "east": {"uv": [12.26667, 6.93333, 12.53333, 9.33333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.26667, 9.06667, 12.53333, 9.33333], "texture": "#2"}, - "west": {"uv": [12.26667, 6.93333, 12.53333, 9.33333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.26667, 6.93333, 12.53333, 9.33333], "texture": "#2"}, - "down": {"uv": [12.26667, 9.33333, 12.53333, 6.93333], "texture": "#2"} + "north": { + "uv": [ + 12.53333, + 6.93333, + 12.26667, + 7.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.26667, + 6.93333, + 12.53333, + 9.33333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.26667, + 9.06667, + 12.53333, + 9.33333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.26667, + 6.93333, + 12.53333, + 9.33333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.26667, + 6.93333, + 12.53333, + 9.33333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.26667, + 9.33333, + 12.53333, + 6.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_16", - "from": [13.86667, 0, 6.93333], - "to": [14.4, 0.26667, 9.33333], + "from": [ + 13.86667, + 0, + 6.93333 + ], + "to": [ + 14.4, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [14.4, 6.93333, 13.86667, 7.2], "texture": "#2"}, - "east": {"uv": [14.13333, 6.93333, 14.4, 9.33333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.86667, 9.06667, 14.4, 9.33333], "texture": "#2"}, - "west": {"uv": [13.86667, 6.93333, 14.13333, 9.33333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.86667, 6.93333, 14.4, 9.33333], "texture": "#2"}, - "down": {"uv": [13.86667, 9.33333, 14.4, 6.93333], "texture": "#2"} + "north": { + "uv": [ + 14.4, + 6.93333, + 13.86667, + 7.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.13333, + 6.93333, + 14.4, + 9.33333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.86667, + 9.06667, + 14.4, + 9.33333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.86667, + 6.93333, + 14.13333, + 9.33333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.86667, + 6.93333, + 14.4, + 9.33333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.86667, + 9.33333, + 14.4, + 6.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_17", - "from": [1.86667, 0, 7.2], - "to": [2.93333, 0.26667, 10.13333], + "from": [ + 1.86667, + 0, + 7.2 + ], + "to": [ + 2.93333, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [2.93333, 7.2, 1.86667, 7.46667], "texture": "#2"}, - "east": {"uv": [2.66667, 7.2, 2.93333, 10.13333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.86667, 9.86667, 2.93333, 10.13333], "texture": "#2"}, - "west": {"uv": [1.86667, 7.2, 2.13333, 10.13333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.86667, 7.2, 2.93333, 10.13333], "texture": "#2"}, - "down": {"uv": [1.86667, 10.13333, 2.93333, 7.2], "texture": "#2"} + "north": { + "uv": [ + 2.93333, + 7.2, + 1.86667, + 7.46667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.66667, + 7.2, + 2.93333, + 10.13333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.86667, + 9.86667, + 2.93333, + 10.13333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.86667, + 7.2, + 2.13333, + 10.13333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.86667, + 7.2, + 2.93333, + 10.13333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.86667, + 10.13333, + 2.93333, + 7.2 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_18", - "from": [10.13333, 0, 7.2], - "to": [11.2, 0.26667, 9.86667], + "from": [ + 10.13333, + 0, + 7.2 + ], + "to": [ + 11.2, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [11.2, 7.2, 10.13333, 7.46667], "texture": "#2"}, - "east": {"uv": [10.93333, 7.2, 11.2, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.13333, 9.6, 11.2, 9.86667], "texture": "#2"}, - "west": {"uv": [10.13333, 7.2, 10.4, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.13333, 7.2, 11.2, 9.86667], "texture": "#2"}, - "down": {"uv": [10.13333, 9.86667, 11.2, 7.2], "texture": "#2"} + "north": { + "uv": [ + 11.2, + 7.2, + 10.13333, + 7.46667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.93333, + 7.2, + 11.2, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.13333, + 9.6, + 11.2, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.13333, + 7.2, + 10.4, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.13333, + 7.2, + 11.2, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.13333, + 9.86667, + 11.2, + 7.2 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_19", - "from": [11.46667, 0, 7.2], - "to": [11.73333, 0.26667, 10.66667], + "from": [ + 11.46667, + 0, + 7.2 + ], + "to": [ + 11.73333, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [11.73333, 7.2, 11.46667, 7.46667], "texture": "#2"}, - "east": {"uv": [11.46667, 7.2, 11.73333, 10.66667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.46667, 10.4, 11.73333, 10.66667], "texture": "#2"}, - "west": {"uv": [11.46667, 7.2, 11.73333, 10.66667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.46667, 7.2, 11.73333, 10.66667], "texture": "#2"}, - "down": {"uv": [11.46667, 10.66667, 11.73333, 7.2], "texture": "#2"} + "north": { + "uv": [ + 11.73333, + 7.2, + 11.46667, + 7.46667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.46667, + 7.2, + 11.73333, + 10.66667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.46667, + 10.4, + 11.73333, + 10.66667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.46667, + 7.2, + 11.73333, + 10.66667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.46667, + 7.2, + 11.73333, + 10.66667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.46667, + 10.66667, + 11.73333, + 7.2 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_20", - "from": [13.6, 0, 7.2], - "to": [13.86667, 0.26667, 9.06667], + "from": [ + 13.6, + 0, + 7.2 + ], + "to": [ + 13.86667, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [13.86667, 7.2, 13.6, 7.46667], "texture": "#2"}, - "east": {"uv": [13.6, 7.2, 13.86667, 9.06667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.6, 8.8, 13.86667, 9.06667], "texture": "#2"}, - "west": {"uv": [13.6, 7.2, 13.86667, 9.06667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.6, 7.2, 13.86667, 9.06667], "texture": "#2"}, - "down": {"uv": [13.6, 9.06667, 13.86667, 7.2], "texture": "#2"} + "north": { + "uv": [ + 13.86667, + 7.2, + 13.6, + 7.46667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.6, + 7.2, + 13.86667, + 9.06667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.6, + 8.8, + 13.86667, + 9.06667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.6, + 7.2, + 13.86667, + 9.06667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.6, + 7.2, + 13.86667, + 9.06667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.6, + 9.06667, + 13.86667, + 7.2 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_21", - "from": [1.33333, 0, 7.46667], - "to": [1.86667, 0.26667, 9.86667], + "from": [ + 1.33333, + 0, + 7.46667 + ], + "to": [ + 1.86667, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [1.86667, 7.46667, 1.33333, 7.73333], "texture": "#2"}, - "east": {"uv": [1.6, 7.46667, 1.86667, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.33333, 9.6, 1.86667, 9.86667], "texture": "#2"}, - "west": {"uv": [1.33333, 7.46667, 1.6, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.33333, 7.46667, 1.86667, 9.86667], "texture": "#2"}, - "down": {"uv": [1.33333, 9.86667, 1.86667, 7.46667], "texture": "#2"} + "north": { + "uv": [ + 1.86667, + 7.46667, + 1.33333, + 7.73333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.6, + 7.46667, + 1.86667, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.33333, + 9.6, + 1.86667, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.33333, + 7.46667, + 1.6, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.33333, + 7.46667, + 1.86667, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.33333, + 9.86667, + 1.86667, + 7.46667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_22", - "from": [11.2, 0, 7.46667], - "to": [11.46667, 0.26667, 10.4], + "from": [ + 11.2, + 0, + 7.46667 + ], + "to": [ + 11.46667, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [11.46667, 7.46667, 11.2, 7.73333], "texture": "#2"}, - "east": {"uv": [11.2, 7.46667, 11.46667, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.2, 10.13333, 11.46667, 10.4], "texture": "#2"}, - "west": {"uv": [11.2, 7.46667, 11.46667, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.2, 7.46667, 11.46667, 10.4], "texture": "#2"}, - "down": {"uv": [11.2, 10.4, 11.46667, 7.46667], "texture": "#2"} + "north": { + "uv": [ + 11.46667, + 7.46667, + 11.2, + 7.73333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.2, + 7.46667, + 11.46667, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.2, + 10.13333, + 11.46667, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.2, + 7.46667, + 11.46667, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.2, + 7.46667, + 11.46667, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.2, + 10.4, + 11.46667, + 7.46667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_23", - "from": [12.53333, 0, 7.46667], - "to": [13.6, 0.26667, 9.06667], + "from": [ + 12.53333, + 0, + 7.46667 + ], + "to": [ + 13.6, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [13.6, 7.46667, 12.53333, 7.73333], "texture": "#2"}, - "east": {"uv": [13.33333, 7.46667, 13.6, 9.06667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.53333, 8.8, 13.6, 9.06667], "texture": "#2"}, - "west": {"uv": [12.53333, 7.46667, 12.8, 9.06667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.53333, 7.46667, 13.6, 9.06667], "texture": "#2"}, - "down": {"uv": [12.53333, 9.06667, 13.6, 7.46667], "texture": "#2"} + "north": { + "uv": [ + 13.6, + 7.46667, + 12.53333, + 7.73333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.33333, + 7.46667, + 13.6, + 9.06667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.53333, + 8.8, + 13.6, + 9.06667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.53333, + 7.46667, + 12.8, + 9.06667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.53333, + 7.46667, + 13.6, + 9.06667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.53333, + 9.06667, + 13.6, + 7.46667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_24", - "from": [15.2, 0, 7.46667], - "to": [15.46667, 0.26667, 8], + "from": [ + 15.2, + 0, + 7.46667 + ], + "to": [ + 15.46667, + 0.26667, + 8 + ], "faces": { - "north": {"uv": [15.46667, 7.46667, 15.2, 7.73333], "texture": "#2"}, - "east": {"uv": [15.2, 7.46667, 15.46667, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.2, 7.73333, 15.46667, 8], "texture": "#2"}, - "west": {"uv": [15.2, 7.46667, 15.46667, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.2, 7.46667, 15.46667, 8], "texture": "#2"}, - "down": {"uv": [15.2, 8, 15.46667, 7.46667], "texture": "#2"} + "north": { + "uv": [ + 15.46667, + 7.46667, + 15.2, + 7.73333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.2, + 7.46667, + 15.46667, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.2, + 7.73333, + 15.46667, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.2, + 7.46667, + 15.46667, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.2, + 7.46667, + 15.46667, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.2, + 8, + 15.46667, + 7.46667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_25", - "from": [0.8, 0, 7.73333], - "to": [1.33333, 0.26667, 9.6], + "from": [ + 0.8, + 0, + 7.73333 + ], + "to": [ + 1.33333, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [1.33333, 7.73333, 0.8, 8], "texture": "#2"}, - "east": {"uv": [1.06667, 7.73333, 1.33333, 9.6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.8, 9.33333, 1.33333, 9.6], "texture": "#2"}, - "west": {"uv": [0.8, 7.73333, 1.06667, 9.6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.8, 7.73333, 1.33333, 9.6], "texture": "#2"}, - "down": {"uv": [0.8, 9.6, 1.33333, 7.73333], "texture": "#2"} + "north": { + "uv": [ + 1.33333, + 7.73333, + 0.8, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.06667, + 7.73333, + 1.33333, + 9.6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.8, + 9.33333, + 1.33333, + 9.6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.8, + 7.73333, + 1.06667, + 9.6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.8, + 7.73333, + 1.33333, + 9.6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.8, + 9.6, + 1.33333, + 7.73333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_26", - "from": [0.53333, 0, 8], - "to": [0.8, 0.26667, 8.8], + "from": [ + 0.53333, + 0, + 8 + ], + "to": [ + 0.8, + 0.26667, + 8.8 + ], "faces": { - "north": {"uv": [0.8, 8, 0.53333, 8.26667], "texture": "#2"}, - "east": {"uv": [0.53333, 8, 0.8, 8.8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.53333, 8.53333, 0.8, 8.8], "texture": "#2"}, - "west": {"uv": [0.53333, 8, 0.8, 8.8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.53333, 8, 0.8, 8.8], "texture": "#2"}, - "down": {"uv": [0.53333, 8.8, 0.8, 8], "texture": "#2"} + "north": { + "uv": [ + 0.8, + 8, + 0.53333, + 8.26667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.53333, + 8, + 0.8, + 8.8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.53333, + 8.53333, + 0.8, + 8.8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.53333, + 8, + 0.8, + 8.8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.53333, + 8, + 0.8, + 8.8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.53333, + 8.8, + 0.8, + 8 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_27", - "from": [0.26667, 0, 8.26667], - "to": [0.53333, 0.26667, 8.53333], + "from": [ + 0.26667, + 0, + 8.26667 + ], + "to": [ + 0.53333, + 0.26667, + 8.53333 + ], "faces": { - "north": {"uv": [0.53333, 8.26667, 0.26667, 8.53333], "texture": "#2"}, - "east": {"uv": [0.26667, 8.26667, 0.53333, 8.53333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.26667, 8.26667, 0.53333, 8.53333], "texture": "#2"}, - "west": {"uv": [0.26667, 8.26667, 0.53333, 8.53333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.26667, 8.26667, 0.53333, 8.53333], "texture": "#2"}, - "down": {"uv": [0.26667, 8.53333, 0.53333, 8.26667], "texture": "#2"} + "north": { + "uv": [ + 0.53333, + 8.26667, + 0.26667, + 8.53333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.53333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.53333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.53333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.53333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.26667, + 8.53333, + 0.53333, + 8.26667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_28", - "from": [15.2, 0, 8.26667], - "to": [15.46667, 0.26667, 9.86667], + "from": [ + 15.2, + 0, + 8.26667 + ], + "to": [ + 15.46667, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [15.46667, 8.26667, 15.2, 8.53333], "texture": "#2"}, - "east": {"uv": [15.2, 8.26667, 15.46667, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.2, 9.6, 15.46667, 9.86667], "texture": "#2"}, - "west": {"uv": [15.2, 8.26667, 15.46667, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.2, 8.26667, 15.46667, 9.86667], "texture": "#2"}, - "down": {"uv": [15.2, 9.86667, 15.46667, 8.26667], "texture": "#2"} + "north": { + "uv": [ + 15.46667, + 8.26667, + 15.2, + 8.53333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.2, + 8.26667, + 15.46667, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.2, + 9.6, + 15.46667, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.2, + 8.26667, + 15.46667, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.2, + 8.26667, + 15.46667, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.2, + 9.86667, + 15.46667, + 8.26667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_29", - "from": [15.46667, 0, 8.8], - "to": [15.73333, 0.26667, 9.86667], + "from": [ + 15.46667, + 0, + 8.8 + ], + "to": [ + 15.73333, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [15.73333, 8.8, 15.46667, 9.06667], "texture": "#2"}, - "east": {"uv": [15.46667, 8.8, 15.73333, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.46667, 9.6, 15.73333, 9.86667], "texture": "#2"}, - "west": {"uv": [15.46667, 8.8, 15.73333, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.46667, 8.8, 15.73333, 9.86667], "texture": "#2"}, - "down": {"uv": [15.46667, 9.86667, 15.73333, 8.8], "texture": "#2"} + "north": { + "uv": [ + 15.73333, + 8.8, + 15.46667, + 9.06667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.46667, + 8.8, + 15.73333, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.46667, + 9.6, + 15.73333, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.46667, + 8.8, + 15.73333, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.46667, + 8.8, + 15.73333, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.46667, + 9.86667, + 15.73333, + 8.8 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_30", - "from": [0.53333, 0, 9.06667], - "to": [0.8, 0.26667, 9.33333], + "from": [ + 0.53333, + 0, + 9.06667 + ], + "to": [ + 0.8, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [0.8, 9.06667, 0.53333, 9.33333], "texture": "#2"}, - "east": {"uv": [0.53333, 9.06667, 0.8, 9.33333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.53333, 9.06667, 0.8, 9.33333], "texture": "#2"}, - "west": {"uv": [0.53333, 9.06667, 0.8, 9.33333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.53333, 9.06667, 0.8, 9.33333], "texture": "#2"}, - "down": {"uv": [0.53333, 9.33333, 0.8, 9.06667], "texture": "#2"} + "north": { + "uv": [ + 0.8, + 9.06667, + 0.53333, + 9.33333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.53333, + 9.06667, + 0.8, + 9.33333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.53333, + 9.06667, + 0.8, + 9.33333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.53333, + 9.06667, + 0.8, + 9.33333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.53333, + 9.06667, + 0.8, + 9.33333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.53333, + 9.33333, + 0.8, + 9.06667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_31", - "from": [14.13333, 0, 9.33333], - "to": [14.4, 0.26667, 9.6], + "from": [ + 14.13333, + 0, + 9.33333 + ], + "to": [ + 14.4, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [14.4, 9.33333, 14.13333, 9.6], "texture": "#2"}, - "east": {"uv": [14.13333, 9.33333, 14.4, 9.6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.13333, 9.33333, 14.4, 9.6], "texture": "#2"}, - "west": {"uv": [14.13333, 9.33333, 14.4, 9.6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.13333, 9.33333, 14.4, 9.6], "texture": "#2"}, - "down": {"uv": [14.13333, 9.6, 14.4, 9.33333], "texture": "#2"} + "north": { + "uv": [ + 14.4, + 9.33333, + 14.13333, + 9.6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.13333, + 9.33333, + 14.4, + 9.6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.13333, + 9.33333, + 14.4, + 9.6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.13333, + 9.33333, + 14.4, + 9.6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.13333, + 9.33333, + 14.4, + 9.6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.13333, + 9.6, + 14.4, + 9.33333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_32", - "from": [15.73333, 0, 9.33333], - "to": [16, 0.26667, 9.6], + "from": [ + 15.73333, + 0, + 9.33333 + ], + "to": [ + 16, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [16, 9.33333, 15.73333, 9.6], "texture": "#2"}, - "east": {"uv": [15.73333, 9.33333, 16, 9.6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.73333, 9.33333, 16, 9.6], "texture": "#2"}, - "west": {"uv": [15.73333, 9.33333, 16, 9.6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.73333, 9.33333, 16, 9.6], "texture": "#2"}, - "down": {"uv": [15.73333, 9.6, 16, 9.33333], "texture": "#2"} + "north": { + "uv": [ + 16, + 9.33333, + 15.73333, + 9.6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.73333, + 9.33333, + 16, + 9.6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.73333, + 9.33333, + 16, + 9.6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.73333, + 9.33333, + 16, + 9.6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.73333, + 9.33333, + 16, + 9.6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.73333, + 9.6, + 16, + 9.33333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_33", - "from": [1.06667, 0, 9.6], - "to": [1.33333, 0.26667, 9.86667], + "from": [ + 1.06667, + 0, + 9.6 + ], + "to": [ + 1.33333, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [1.33333, 9.6, 1.06667, 9.86667], "texture": "#2"}, - "east": {"uv": [1.06667, 9.6, 1.33333, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.06667, 9.6, 1.33333, 9.86667], "texture": "#2"}, - "west": {"uv": [1.06667, 9.6, 1.33333, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.06667, 9.6, 1.33333, 9.86667], "texture": "#2"}, - "down": {"uv": [1.06667, 9.86667, 1.33333, 9.6], "texture": "#2"} + "north": { + "uv": [ + 1.33333, + 9.6, + 1.06667, + 9.86667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.06667, + 9.6, + 1.33333, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.06667, + 9.6, + 1.33333, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.06667, + 9.6, + 1.33333, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.06667, + 9.6, + 1.33333, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.06667, + 9.86667, + 1.33333, + 9.6 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_34", - "from": [14.66667, 0, 9.6], - "to": [14.93333, 0.26667, 9.86667], + "from": [ + 14.66667, + 0, + 9.6 + ], + "to": [ + 14.93333, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [14.93333, 9.6, 14.66667, 9.86667], "texture": "#2"}, - "east": {"uv": [14.66667, 9.6, 14.93333, 9.86667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.66667, 9.6, 14.93333, 9.86667], "texture": "#2"}, - "west": {"uv": [14.66667, 9.6, 14.93333, 9.86667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.66667, 9.6, 14.93333, 9.86667], "texture": "#2"}, - "down": {"uv": [14.66667, 9.86667, 14.93333, 9.6], "texture": "#2"} + "north": { + "uv": [ + 14.93333, + 9.6, + 14.66667, + 9.86667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.66667, + 9.6, + 14.93333, + 9.86667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.66667, + 9.6, + 14.93333, + 9.86667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.66667, + 9.6, + 14.93333, + 9.86667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.66667, + 9.6, + 14.93333, + 9.86667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.66667, + 9.86667, + 14.93333, + 9.6 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_35", - "from": [1.6, 0, 9.86667], - "to": [1.86667, 0.26667, 10.13333], + "from": [ + 1.6, + 0, + 9.86667 + ], + "to": [ + 1.86667, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [1.86667, 9.86667, 1.6, 10.13333], "texture": "#2"}, - "east": {"uv": [1.6, 9.86667, 1.86667, 10.13333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.6, 9.86667, 1.86667, 10.13333], "texture": "#2"}, - "west": {"uv": [1.6, 9.86667, 1.86667, 10.13333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.6, 9.86667, 1.86667, 10.13333], "texture": "#2"}, - "down": {"uv": [1.6, 10.13333, 1.86667, 9.86667], "texture": "#2"} + "north": { + "uv": [ + 1.86667, + 9.86667, + 1.6, + 10.13333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.6, + 9.86667, + 1.86667, + 10.13333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.6, + 9.86667, + 1.86667, + 10.13333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.6, + 9.86667, + 1.86667, + 10.13333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.6, + 9.86667, + 1.86667, + 10.13333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.6, + 10.13333, + 1.86667, + 9.86667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_36", - "from": [9.33333, 0, 9.86667], - "to": [9.6, 0.26667, 10.13333], + "from": [ + 9.33333, + 0, + 9.86667 + ], + "to": [ + 9.6, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [9.6, 9.86667, 9.33333, 10.13333], "texture": "#2"}, - "east": {"uv": [9.33333, 9.86667, 9.6, 10.13333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.33333, 9.86667, 9.6, 10.13333], "texture": "#2"}, - "west": {"uv": [9.33333, 9.86667, 9.6, 10.13333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.33333, 9.86667, 9.6, 10.13333], "texture": "#2"}, - "down": {"uv": [9.33333, 10.13333, 9.6, 9.86667], "texture": "#2"} + "north": { + "uv": [ + 9.6, + 9.86667, + 9.33333, + 10.13333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.33333, + 9.86667, + 9.6, + 10.13333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.33333, + 9.86667, + 9.6, + 10.13333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.33333, + 9.86667, + 9.6, + 10.13333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.33333, + 9.86667, + 9.6, + 10.13333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.33333, + 10.13333, + 9.6, + 9.86667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_37", - "from": [10.4, 0, 9.86667], - "to": [11.2, 0.26667, 10.13333], + "from": [ + 10.4, + 0, + 9.86667 + ], + "to": [ + 11.2, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [11.2, 9.86667, 10.4, 10.13333], "texture": "#2"}, - "east": {"uv": [10.93333, 9.86667, 11.2, 10.13333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.4, 9.86667, 11.2, 10.13333], "texture": "#2"}, - "west": {"uv": [10.4, 9.86667, 10.66667, 10.13333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.4, 9.86667, 11.2, 10.13333], "texture": "#2"}, - "down": {"uv": [10.4, 10.13333, 11.2, 9.86667], "texture": "#2"} + "north": { + "uv": [ + 11.2, + 9.86667, + 10.4, + 10.13333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.93333, + 9.86667, + 11.2, + 10.13333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.4, + 9.86667, + 11.2, + 10.13333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.4, + 9.86667, + 10.66667, + 10.13333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.4, + 9.86667, + 11.2, + 10.13333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.4, + 10.13333, + 11.2, + 9.86667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_38", - "from": [2.66667, 0, 10.13333], - "to": [2.93333, 0.26667, 10.4], + "from": [ + 2.66667, + 0, + 10.13333 + ], + "to": [ + 2.93333, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [2.93333, 10.13333, 2.66667, 10.4], "texture": "#2"}, - "east": {"uv": [2.66667, 10.13333, 2.93333, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.66667, 10.13333, 2.93333, 10.4], "texture": "#2"}, - "west": {"uv": [2.66667, 10.13333, 2.93333, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.66667, 10.13333, 2.93333, 10.4], "texture": "#2"}, - "down": {"uv": [2.66667, 10.4, 2.93333, 10.13333], "texture": "#2"} + "north": { + "uv": [ + 2.93333, + 10.13333, + 2.66667, + 10.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.66667, + 10.13333, + 2.93333, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.66667, + 10.13333, + 2.93333, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.66667, + 10.13333, + 2.93333, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.66667, + 10.13333, + 2.93333, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.66667, + 10.4, + 2.93333, + 10.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_39", - "from": [8.53333, 0, 10.13333], - "to": [9.06667, 0.26667, 10.93333], + "from": [ + 8.53333, + 0, + 10.13333 + ], + "to": [ + 9.06667, + 0.26667, + 10.93333 + ], "faces": { - "north": {"uv": [9.06667, 10.13333, 8.53333, 10.4], "texture": "#2"}, - "east": {"uv": [8.8, 10.13333, 9.06667, 10.93333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.53333, 10.66667, 9.06667, 10.93333], "texture": "#2"}, - "west": {"uv": [8.53333, 10.13333, 8.8, 10.93333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.53333, 10.13333, 9.06667, 10.93333], "texture": "#2"}, - "down": {"uv": [8.53333, 10.93333, 9.06667, 10.13333], "texture": "#2"} + "north": { + "uv": [ + 9.06667, + 10.13333, + 8.53333, + 10.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.8, + 10.13333, + 9.06667, + 10.93333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.53333, + 10.66667, + 9.06667, + 10.93333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.53333, + 10.13333, + 8.8, + 10.93333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.53333, + 10.13333, + 9.06667, + 10.93333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.53333, + 10.93333, + 9.06667, + 10.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_40", - "from": [10.93333, 0, 10.13333], - "to": [11.2, 0.26667, 10.4], + "from": [ + 10.93333, + 0, + 10.13333 + ], + "to": [ + 11.2, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [11.2, 10.13333, 10.93333, 10.4], "texture": "#2"}, - "east": {"uv": [10.93333, 10.13333, 11.2, 10.4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.93333, 10.13333, 11.2, 10.4], "texture": "#2"}, - "west": {"uv": [10.93333, 10.13333, 11.2, 10.4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.93333, 10.13333, 11.2, 10.4], "texture": "#2"}, - "down": {"uv": [10.93333, 10.4, 11.2, 10.13333], "texture": "#2"} + "north": { + "uv": [ + 11.2, + 10.13333, + 10.93333, + 10.4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.93333, + 10.13333, + 11.2, + 10.4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.93333, + 10.13333, + 11.2, + 10.4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.93333, + 10.13333, + 11.2, + 10.4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.93333, + 10.13333, + 11.2, + 10.4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.93333, + 10.4, + 11.2, + 10.13333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_41", - "from": [4.26667, 0, 10.4], - "to": [5.6, 0.26667, 10.66667], + "from": [ + 4.26667, + 0, + 10.4 + ], + "to": [ + 5.6, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [5.6, 10.4, 4.26667, 10.66667], "texture": "#2"}, - "east": {"uv": [5.33333, 10.4, 5.6, 10.66667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.26667, 10.4, 5.6, 10.66667], "texture": "#2"}, - "west": {"uv": [4.26667, 10.4, 4.53333, 10.66667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.26667, 10.4, 5.6, 10.66667], "texture": "#2"}, - "down": {"uv": [4.26667, 10.66667, 5.6, 10.4], "texture": "#2"} + "north": { + "uv": [ + 5.6, + 10.4, + 4.26667, + 10.66667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.33333, + 10.4, + 5.6, + 10.66667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.26667, + 10.4, + 5.6, + 10.66667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.26667, + 10.4, + 4.53333, + 10.66667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.26667, + 10.4, + 5.6, + 10.66667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.26667, + 10.66667, + 5.6, + 10.4 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_42", - "from": [7.73333, 0, 10.4], - "to": [8, 0.26667, 10.66667], + "from": [ + 7.73333, + 0, + 10.4 + ], + "to": [ + 8, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [8, 10.4, 7.73333, 10.66667], "texture": "#2"}, - "east": {"uv": [7.73333, 10.4, 8, 10.66667], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.73333, 10.4, 8, 10.66667], "texture": "#2"}, - "west": {"uv": [7.73333, 10.4, 8, 10.66667], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.73333, 10.4, 8, 10.66667], "texture": "#2"}, - "down": {"uv": [7.73333, 10.66667, 8, 10.4], "texture": "#2"} + "north": { + "uv": [ + 8, + 10.4, + 7.73333, + 10.66667 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.73333, + 10.4, + 8, + 10.66667 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.73333, + 10.4, + 8, + 10.66667 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.73333, + 10.4, + 8, + 10.66667 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.73333, + 10.4, + 8, + 10.66667 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.73333, + 10.66667, + 8, + 10.4 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_43", - "from": [4.53333, 0, 10.66667], - "to": [5.6, 0.26667, 10.93333], + "from": [ + 4.53333, + 0, + 10.66667 + ], + "to": [ + 5.6, + 0.26667, + 10.93333 + ], "faces": { - "north": {"uv": [5.6, 10.66667, 4.53333, 10.93333], "texture": "#2"}, - "east": {"uv": [5.33333, 10.66667, 5.6, 10.93333], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.53333, 10.66667, 5.6, 10.93333], "texture": "#2"}, - "west": {"uv": [4.53333, 10.66667, 4.8, 10.93333], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.53333, 10.66667, 5.6, 10.93333], "texture": "#2"}, - "down": {"uv": [4.53333, 10.93333, 5.6, 10.66667], "texture": "#2"} + "north": { + "uv": [ + 5.6, + 10.66667, + 4.53333, + 10.93333 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.33333, + 10.66667, + 5.6, + 10.93333 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.53333, + 10.66667, + 5.6, + 10.93333 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.53333, + 10.66667, + 4.8, + 10.93333 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.53333, + 10.66667, + 5.6, + 10.93333 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.53333, + 10.93333, + 5.6, + 10.66667 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_44", - "from": [4.8, 0, 10.93333], - "to": [5.33333, 0.26667, 11.2], + "from": [ + 4.8, + 0, + 10.93333 + ], + "to": [ + 5.33333, + 0.26667, + 11.2 + ], "faces": { - "north": {"uv": [5.33333, 10.93333, 4.8, 11.2], "texture": "#2"}, - "east": {"uv": [5.06667, 10.93333, 5.33333, 11.2], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.8, 10.93333, 5.33333, 11.2], "texture": "#2"}, - "west": {"uv": [4.8, 10.93333, 5.06667, 11.2], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.8, 10.93333, 5.33333, 11.2], "texture": "#2"}, - "down": {"uv": [4.8, 11.2, 5.33333, 10.93333], "texture": "#2"} + "north": { + "uv": [ + 5.33333, + 10.93333, + 4.8, + 11.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.06667, + 10.93333, + 5.33333, + 11.2 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.8, + 10.93333, + 5.33333, + 11.2 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.8, + 10.93333, + 5.06667, + 11.2 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.8, + 10.93333, + 5.33333, + 11.2 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.8, + 11.2, + 5.33333, + 10.93333 + ], + "texture": "#2" + } } }, { "name": "go-rudentorauto_45", - "from": [8.26667, 0, 10.93333], - "to": [8.8, 0.26667, 11.2], + "from": [ + 8.26667, + 0, + 10.93333 + ], + "to": [ + 8.8, + 0.26667, + 11.2 + ], "faces": { - "north": {"uv": [8.8, 10.93333, 8.26667, 11.2], "texture": "#2"}, - "east": {"uv": [8.53333, 10.93333, 8.8, 11.2], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.26667, 10.93333, 8.8, 11.2], "texture": "#2"}, - "west": {"uv": [8.26667, 10.93333, 8.53333, 11.2], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.26667, 10.93333, 8.8, 11.2], "texture": "#2"}, - "down": {"uv": [8.26667, 11.2, 8.8, 10.93333], "texture": "#2"} + "north": { + "uv": [ + 8.8, + 10.93333, + 8.26667, + 11.2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.53333, + 10.93333, + 8.8, + 11.2 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.26667, + 10.93333, + 8.8, + 11.2 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.26667, + 10.93333, + 8.53333, + 11.2 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.26667, + 10.93333, + 8.8, + 11.2 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.26667, + 11.2, + 8.8, + 10.93333 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [98, -4.5, -1.5], - "translation": [-5.75, 1, 8], - "scale": [1.01172, 1, 1] + "rotation": [ + 98, + -4.5, + -1.5 + ], + "translation": [ + -5.75, + 1, + 8 + ], + "scale": [ + 1.01172, + 1, + 1 + ] }, "thirdperson_lefthand": { - "rotation": [98, -4.5, -1.5], - "translation": [-5.75, 1, 8], - "scale": [1.01172, 1, 1] + "rotation": [ + 98, + -4.5, + -1.5 + ], + "translation": [ + -5.75, + 1, + 8 + ], + "scale": [ + 1.01172, + 1, + 1 + ] }, "firstperson_righthand": { - "rotation": [89, -44, -4], - "translation": [5, -1.5, 8], - "scale": [1.01172, 1, 1] + "rotation": [ + 89, + -44, + -4 + ], + "translation": [ + 5, + -1.5, + 8 + ], + "scale": [ + 1.01172, + 1, + 1 + ] }, "firstperson_lefthand": { - "rotation": [89, 129, -4], - "translation": [5, -1.5, 8], - "scale": [1.01172, 1, 1] + "rotation": [ + 89, + 129, + -4 + ], + "translation": [ + 5, + -1.5, + 8 + ], + "scale": [ + 1.01172, + 1, + 1 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [132, 1, 1], - "translation": [0, -0.75, -1.25] + "rotation": [ + 132, + 1, + 1 + ], + "translation": [ + 0, + -0.75, + -1.25 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.25, 1.25, 1.25] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] } }, "groups": [ { "name": "go-rudentorauto", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ] } ] -} +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/gokiburi.json b/pack/assets/minecraft/models/fish/gokiburi.json index 6073f472..4bc6a3af 100644 --- a/pack/assets/minecraft/models/fish/gokiburi.json +++ b/pack/assets/minecraft/models/fish/gokiburi.json @@ -2,1266 +2,6846 @@ "__name": "ザリガニ", "credit": "Made with Blockbench", "textures": { - "2": "fish/zarigani", - "particle": "fish/sake" + "2": "item/fish/zarigani", + "particle": "item/fish/sake" }, "elements": [ { "name": "zarigani_0", - "from": [4, 0, 0.75], - "to": [4.5, 0.25, 1], + "from": [ + 4, + 0, + 0.75 + ], + "to": [ + 4.5, + 0.25, + 1 + ], "faces": { - "north": {"uv": [4.5, 0.75, 4, 1], "texture": "#2"}, - "east": {"uv": [4.25, 0.75, 4.5, 1], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 0.75, 4.5, 1], "texture": "#2"}, - "west": {"uv": [4, 0.75, 4.25, 1], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 0.75, 4.5, 1], "texture": "#2"}, - "down": {"uv": [4, 1, 4.5, 0.75], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 0.75, + 4, + 1 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 0.75, + 4.5, + 1 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 0.75, + 4.5, + 1 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 0.75, + 4.25, + 1 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 0.75, + 4.5, + 1 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 1, + 4.5, + 0.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_1", - "from": [11.75, 0, 0.75], - "to": [12.25, 0.25, 1], + "from": [ + 11.75, + 0, + 0.75 + ], + "to": [ + 12.25, + 0.25, + 1 + ], "faces": { - "north": {"uv": [12.25, 0.75, 11.75, 1], "texture": "#2"}, - "east": {"uv": [12, 0.75, 12.25, 1], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 0.75, 12.25, 1], "texture": "#2"}, - "west": {"uv": [11.75, 0.75, 12, 1], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 0.75, 12.25, 1], "texture": "#2"}, - "down": {"uv": [11.75, 1, 12.25, 0.75], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 0.75, + 11.75, + 1 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 0.75, + 12.25, + 1 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 0.75, + 12.25, + 1 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 0.75, + 12, + 1 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 0.75, + 12.25, + 1 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 1, + 12.25, + 0.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_2", - "from": [4.5, 0, 1], - "to": [4.75, 0.25, 1.25], + "from": [ + 4.5, + 0, + 1 + ], + "to": [ + 4.75, + 0.25, + 1.25 + ], "faces": { - "north": {"uv": [4.75, 1, 4.5, 1.25], "texture": "#2"}, - "east": {"uv": [4.5, 1, 4.75, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 1, 4.75, 1.25], "texture": "#2"}, - "west": {"uv": [4.5, 1, 4.75, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 1, 4.75, 1.25], "texture": "#2"}, - "down": {"uv": [4.5, 1.25, 4.75, 1], "texture": "#2"} + "north": { + "uv": [ + 4.75, + 1, + 4.5, + 1.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 1, + 4.75, + 1.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 1, + 4.75, + 1.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 1, + 4.75, + 1.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 1, + 4.75, + 1.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 1.25, + 4.75, + 1 + ], + "texture": "#2" + } } }, { "name": "zarigani_3", - "from": [11.5, 0, 1], - "to": [11.75, 0.25, 1.25], + "from": [ + 11.5, + 0, + 1 + ], + "to": [ + 11.75, + 0.25, + 1.25 + ], "faces": { - "north": {"uv": [11.75, 1, 11.5, 1.25], "texture": "#2"}, - "east": {"uv": [11.5, 1, 11.75, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 1, 11.75, 1.25], "texture": "#2"}, - "west": {"uv": [11.5, 1, 11.75, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 1, 11.75, 1.25], "texture": "#2"}, - "down": {"uv": [11.5, 1.25, 11.75, 1], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 1, + 11.5, + 1.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 1, + 11.75, + 1.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 1, + 11.75, + 1.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 1, + 11.75, + 1.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 1, + 11.75, + 1.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 1.25, + 11.75, + 1 + ], + "texture": "#2" + } } }, { "name": "zarigani_4", - "from": [4.75, 0, 1.25], - "to": [5.25, 0.25, 1.5], + "from": [ + 4.75, + 0, + 1.25 + ], + "to": [ + 5.25, + 0.25, + 1.5 + ], "faces": { - "north": {"uv": [5.25, 1.25, 4.75, 1.5], "texture": "#2"}, - "east": {"uv": [5, 1.25, 5.25, 1.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 1.25, 5.25, 1.5], "texture": "#2"}, - "west": {"uv": [4.75, 1.25, 5, 1.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 1.25, 5.25, 1.5], "texture": "#2"}, - "down": {"uv": [4.75, 1.5, 5.25, 1.25], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 1.25, + 4.75, + 1.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 1.25, + 5.25, + 1.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 1.25, + 5.25, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 1.25, + 5, + 1.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 1.25, + 5.25, + 1.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 1.5, + 5.25, + 1.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_5", - "from": [11, 0, 1.25], - "to": [11.5, 0.25, 1.5], + "from": [ + 11, + 0, + 1.25 + ], + "to": [ + 11.5, + 0.25, + 1.5 + ], "faces": { - "north": {"uv": [11.5, 1.25, 11, 1.5], "texture": "#2"}, - "east": {"uv": [11.25, 1.25, 11.5, 1.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 1.25, 11.5, 1.5], "texture": "#2"}, - "west": {"uv": [11, 1.25, 11.25, 1.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 1.25, 11.5, 1.5], "texture": "#2"}, - "down": {"uv": [11, 1.5, 11.5, 1.25], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 1.25, + 11, + 1.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 1.25, + 11.5, + 1.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 1.25, + 11.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 1.25, + 11.25, + 1.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 1.25, + 11.5, + 1.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 1.5, + 11.5, + 1.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_6", - "from": [5.25, 0, 1.5], - "to": [5.5, 0.25, 1.75], + "from": [ + 5.25, + 0, + 1.5 + ], + "to": [ + 5.5, + 0.25, + 1.75 + ], "faces": { - "north": {"uv": [5.5, 1.5, 5.25, 1.75], "texture": "#2"}, - "east": {"uv": [5.25, 1.5, 5.5, 1.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 1.5, 5.5, 1.75], "texture": "#2"}, - "west": {"uv": [5.25, 1.5, 5.5, 1.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 1.5, 5.5, 1.75], "texture": "#2"}, - "down": {"uv": [5.25, 1.75, 5.5, 1.5], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 1.5, + 5.25, + 1.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 1.5, + 5.5, + 1.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 1.5, + 5.5, + 1.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 1.5, + 5.5, + 1.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 1.5, + 5.5, + 1.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 1.75, + 5.5, + 1.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_7", - "from": [10.75, 0, 1.5], - "to": [11, 0.25, 1.75], + "from": [ + 10.75, + 0, + 1.5 + ], + "to": [ + 11, + 0.25, + 1.75 + ], "faces": { - "north": {"uv": [11, 1.5, 10.75, 1.75], "texture": "#2"}, - "east": {"uv": [10.75, 1.5, 11, 1.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 1.5, 11, 1.75], "texture": "#2"}, - "west": {"uv": [10.75, 1.5, 11, 1.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 1.5, 11, 1.75], "texture": "#2"}, - "down": {"uv": [10.75, 1.75, 11, 1.5], "texture": "#2"} + "north": { + "uv": [ + 11, + 1.5, + 10.75, + 1.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 1.5, + 11, + 1.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 1.5, + 11, + 1.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 1.5, + 11, + 1.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 1.5, + 11, + 1.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 1.75, + 11, + 1.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_8", - "from": [5.5, 0, 1.75], - "to": [5.75, 0.25, 2], + "from": [ + 5.5, + 0, + 1.75 + ], + "to": [ + 5.75, + 0.25, + 2 + ], "faces": { - "north": {"uv": [5.75, 1.75, 5.5, 2], "texture": "#2"}, - "east": {"uv": [5.5, 1.75, 5.75, 2], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 1.75, 5.75, 2], "texture": "#2"}, - "west": {"uv": [5.5, 1.75, 5.75, 2], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 1.75, 5.75, 2], "texture": "#2"}, - "down": {"uv": [5.5, 2, 5.75, 1.75], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 1.75, + 5.5, + 2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 1.75, + 5.75, + 2 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 1.75, + 5.75, + 2 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 1.75, + 5.75, + 2 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 1.75, + 5.75, + 2 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 2, + 5.75, + 1.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_9", - "from": [10.5, 0, 1.75], - "to": [10.75, 0.25, 2], + "from": [ + 10.5, + 0, + 1.75 + ], + "to": [ + 10.75, + 0.25, + 2 + ], "faces": { - "north": {"uv": [10.75, 1.75, 10.5, 2], "texture": "#2"}, - "east": {"uv": [10.5, 1.75, 10.75, 2], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 1.75, 10.75, 2], "texture": "#2"}, - "west": {"uv": [10.5, 1.75, 10.75, 2], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 1.75, 10.75, 2], "texture": "#2"}, - "down": {"uv": [10.5, 2, 10.75, 1.75], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 1.75, + 10.5, + 2 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 1.75, + 10.75, + 2 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 1.75, + 10.75, + 2 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 1.75, + 10.75, + 2 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 1.75, + 10.75, + 2 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 2, + 10.75, + 1.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_10", - "from": [5.75, 0, 2], - "to": [6, 0.25, 2.25], + "from": [ + 5.75, + 0, + 2 + ], + "to": [ + 6, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [6, 2, 5.75, 2.25], "texture": "#2"}, - "east": {"uv": [5.75, 2, 6, 2.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 2, 6, 2.25], "texture": "#2"}, - "west": {"uv": [5.75, 2, 6, 2.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 2, 6, 2.25], "texture": "#2"}, - "down": {"uv": [5.75, 2.25, 6, 2], "texture": "#2"} + "north": { + "uv": [ + 6, + 2, + 5.75, + 2.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 2, + 6, + 2.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 2, + 6, + 2.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 2, + 6, + 2.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 2, + 6, + 2.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 2.25, + 6, + 2 + ], + "texture": "#2" + } } }, { "name": "zarigani_11", - "from": [10.25, 0, 2], - "to": [10.5, 0.25, 2.25], + "from": [ + 10.25, + 0, + 2 + ], + "to": [ + 10.5, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [10.5, 2, 10.25, 2.25], "texture": "#2"}, - "east": {"uv": [10.25, 2, 10.5, 2.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 2, 10.5, 2.25], "texture": "#2"}, - "west": {"uv": [10.25, 2, 10.5, 2.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 2, 10.5, 2.25], "texture": "#2"}, - "down": {"uv": [10.25, 2.25, 10.5, 2], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 2, + 10.25, + 2.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 2, + 10.5, + 2.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 2, + 10.5, + 2.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 2, + 10.5, + 2.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 2, + 10.5, + 2.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 2.25, + 10.5, + 2 + ], + "texture": "#2" + } } }, { "name": "zarigani_12", - "from": [6, 0, 2.25], - "to": [6.25, 0.25, 2.5], + "from": [ + 6, + 0, + 2.25 + ], + "to": [ + 6.25, + 0.25, + 2.5 + ], "faces": { - "north": {"uv": [6.25, 2.25, 6, 2.5], "texture": "#2"}, - "east": {"uv": [6, 2.25, 6.25, 2.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 2.25, 6.25, 2.5], "texture": "#2"}, - "west": {"uv": [6, 2.25, 6.25, 2.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 2.25, 6.25, 2.5], "texture": "#2"}, - "down": {"uv": [6, 2.5, 6.25, 2.25], "texture": "#2"} + "north": { + "uv": [ + 6.25, + 2.25, + 6, + 2.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 2.25, + 6.25, + 2.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 2.25, + 6.25, + 2.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 2.25, + 6.25, + 2.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 2.25, + 6.25, + 2.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 2.5, + 6.25, + 2.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_13", - "from": [10, 0, 2.25], - "to": [10.25, 0.25, 2.5], + "from": [ + 10, + 0, + 2.25 + ], + "to": [ + 10.25, + 0.25, + 2.5 + ], "faces": { - "north": {"uv": [10.25, 2.25, 10, 2.5], "texture": "#2"}, - "east": {"uv": [10, 2.25, 10.25, 2.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 2.25, 10.25, 2.5], "texture": "#2"}, - "west": {"uv": [10, 2.25, 10.25, 2.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 2.25, 10.25, 2.5], "texture": "#2"}, - "down": {"uv": [10, 2.5, 10.25, 2.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 2.25, + 10, + 2.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 2.25, + 10.25, + 2.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 2.25, + 10.25, + 2.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 2.25, + 10.25, + 2.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 2.25, + 10.25, + 2.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 2.5, + 10.25, + 2.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_14", - "from": [6.25, 0, 2.5], - "to": [6.5, 0.25, 2.75], + "from": [ + 6.25, + 0, + 2.5 + ], + "to": [ + 6.5, + 0.25, + 2.75 + ], "faces": { - "north": {"uv": [6.5, 2.5, 6.25, 2.75], "texture": "#2"}, - "east": {"uv": [6.25, 2.5, 6.5, 2.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 2.5, 6.5, 2.75], "texture": "#2"}, - "west": {"uv": [6.25, 2.5, 6.5, 2.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 2.5, 6.5, 2.75], "texture": "#2"}, - "down": {"uv": [6.25, 2.75, 6.5, 2.5], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 2.5, + 6.25, + 2.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 2.5, + 6.5, + 2.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 2.5, + 6.5, + 2.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 2.5, + 6.5, + 2.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 2.5, + 6.5, + 2.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 2.75, + 6.5, + 2.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_15", - "from": [9.75, 0, 2.5], - "to": [10, 0.25, 2.75], + "from": [ + 9.75, + 0, + 2.5 + ], + "to": [ + 10, + 0.25, + 2.75 + ], "faces": { - "north": {"uv": [10, 2.5, 9.75, 2.75], "texture": "#2"}, - "east": {"uv": [9.75, 2.5, 10, 2.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 2.5, 10, 2.75], "texture": "#2"}, - "west": {"uv": [9.75, 2.5, 10, 2.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 2.5, 10, 2.75], "texture": "#2"}, - "down": {"uv": [9.75, 2.75, 10, 2.5], "texture": "#2"} + "north": { + "uv": [ + 10, + 2.5, + 9.75, + 2.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 2.5, + 10, + 2.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 2.5, + 10, + 2.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 2.5, + 10, + 2.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 2.5, + 10, + 2.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 2.75, + 10, + 2.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_16", - "from": [6.5, 0, 2.75], - "to": [6.75, 0.25, 3], + "from": [ + 6.5, + 0, + 2.75 + ], + "to": [ + 6.75, + 0.25, + 3 + ], "faces": { - "north": {"uv": [6.75, 2.75, 6.5, 3], "texture": "#2"}, - "east": {"uv": [6.5, 2.75, 6.75, 3], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 2.75, 6.75, 3], "texture": "#2"}, - "west": {"uv": [6.5, 2.75, 6.75, 3], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 2.75, 6.75, 3], "texture": "#2"}, - "down": {"uv": [6.5, 3, 6.75, 2.75], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 2.75, + 6.5, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 2.75, + 6.75, + 3 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 2.75, + 6.75, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 2.75, + 6.75, + 3 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 2.75, + 6.75, + 3 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 3, + 6.75, + 2.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_17", - "from": [9.5, 0, 2.75], - "to": [9.75, 0.25, 3], + "from": [ + 9.5, + 0, + 2.75 + ], + "to": [ + 9.75, + 0.25, + 3 + ], "faces": { - "north": {"uv": [9.75, 2.75, 9.5, 3], "texture": "#2"}, - "east": {"uv": [9.5, 2.75, 9.75, 3], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 2.75, 9.75, 3], "texture": "#2"}, - "west": {"uv": [9.5, 2.75, 9.75, 3], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 2.75, 9.75, 3], "texture": "#2"}, - "down": {"uv": [9.5, 3, 9.75, 2.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 2.75, + 9.5, + 3 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 2.75, + 9.75, + 3 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 2.75, + 9.75, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 2.75, + 9.75, + 3 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 2.75, + 9.75, + 3 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 3, + 9.75, + 2.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_18", - "from": [6.75, 0, 3], - "to": [7, 0.25, 3.75], + "from": [ + 6.75, + 0, + 3 + ], + "to": [ + 7, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [7, 3, 6.75, 3.25], "texture": "#2"}, - "east": {"uv": [6.75, 3, 7, 3.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 3.5, 7, 3.75], "texture": "#2"}, - "west": {"uv": [6.75, 3, 7, 3.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 3, 7, 3.75], "texture": "#2"}, - "down": {"uv": [6.75, 3.75, 7, 3], "texture": "#2"} + "north": { + "uv": [ + 7, + 3, + 6.75, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 3, + 7, + 3.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 3, + 7, + 3.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 3, + 7, + 3.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 3.75, + 7, + 3 + ], + "texture": "#2" + } } }, { "name": "zarigani_19", - "from": [9.25, 0, 3], - "to": [9.5, 0.25, 3.75], + "from": [ + 9.25, + 0, + 3 + ], + "to": [ + 9.5, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [9.5, 3, 9.25, 3.25], "texture": "#2"}, - "east": {"uv": [9.25, 3, 9.5, 3.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 3.5, 9.5, 3.75], "texture": "#2"}, - "west": {"uv": [9.25, 3, 9.5, 3.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 3, 9.5, 3.75], "texture": "#2"}, - "down": {"uv": [9.25, 3.75, 9.5, 3], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 3, + 9.25, + 3.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 3, + 9.5, + 3.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 3.5, + 9.5, + 3.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 3, + 9.5, + 3.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 3, + 9.5, + 3.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 3.75, + 9.5, + 3 + ], + "texture": "#2" + } } }, { "name": "zarigani_20", - "from": [5, 0, 3.75], - "to": [5.25, 0.25, 8], + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [5.25, 3.75, 5, 4], "texture": "#2"}, - "east": {"uv": [5, 3.75, 5.25, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 7.75, 5.25, 8], "texture": "#2"}, - "west": {"uv": [5, 3.75, 5.25, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 3.75, 5.25, 8], "texture": "#2"}, - "down": {"uv": [5, 8, 5.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 3.75, + 5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 3.75, + 5.25, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.25, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 8, + 5.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_21", - "from": [7, 0, 3.75], - "to": [7.25, 0.25, 4], + "from": [ + 7, + 0, + 3.75 + ], + "to": [ + 7.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [7.25, 3.75, 7, 4], "texture": "#2"}, - "east": {"uv": [7, 3.75, 7.25, 4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 3.75, 7.25, 4], "texture": "#2"}, - "west": {"uv": [7, 3.75, 7.25, 4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 3.75, 7.25, 4], "texture": "#2"}, - "down": {"uv": [7, 4, 7.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 3.75, + 7, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 4, + 7.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_22", - "from": [9, 0, 3.75], - "to": [9.25, 0.25, 4], + "from": [ + 9, + 0, + 3.75 + ], + "to": [ + 9.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [9.25, 3.75, 9, 4], "texture": "#2"}, - "east": {"uv": [9, 3.75, 9.25, 4], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 3.75, 9.25, 4], "texture": "#2"}, - "west": {"uv": [9, 3.75, 9.25, 4], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 3.75, 9.25, 4], "texture": "#2"}, - "down": {"uv": [9, 4, 9.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 3.75, + 9, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 3.75, + 9.25, + 4 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 3.75, + 9.25, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 3.75, + 9.25, + 4 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 3.75, + 9.25, + 4 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 4, + 9.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_23", - "from": [11, 0, 3.75], - "to": [11.25, 0.25, 8], + "from": [ + 11, + 0, + 3.75 + ], + "to": [ + 11.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [11.25, 3.75, 11, 4], "texture": "#2"}, - "east": {"uv": [11, 3.75, 11.25, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 7.75, 11.25, 8], "texture": "#2"}, - "west": {"uv": [11, 3.75, 11.25, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 3.75, 11.25, 8], "texture": "#2"}, - "down": {"uv": [11, 8, 11.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 3.75, + 11, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 3.75, + 11.25, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 7.75, + 11.25, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 3.75, + 11.25, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 3.75, + 11.25, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 8, + 11.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_24", - "from": [4.75, 0, 4], - "to": [5, 0.25, 8], + "from": [ + 4.75, + 0, + 4 + ], + "to": [ + 5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [5, 4, 4.75, 4.25], "texture": "#2"}, - "east": {"uv": [4.75, 4, 5, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 7.75, 5, 8], "texture": "#2"}, - "west": {"uv": [4.75, 4, 5, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 4, 5, 8], "texture": "#2"}, - "down": {"uv": [4.75, 8, 5, 4], "texture": "#2"} + "north": { + "uv": [ + 5, + 4, + 4.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 4, + 5, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 4, + 5, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 4, + 5, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 8, + 5, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_25", - "from": [5.25, 0, 4], - "to": [5.5, 0.25, 4.5], + "from": [ + 5.25, + 0, + 4 + ], + "to": [ + 5.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [5.5, 4, 5.25, 4.25], "texture": "#2"}, - "east": {"uv": [5.25, 4, 5.5, 4.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 4.25, 5.5, 4.5], "texture": "#2"}, - "west": {"uv": [5.25, 4, 5.5, 4.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 4, 5.5, 4.5], "texture": "#2"}, - "down": {"uv": [5.25, 4.5, 5.5, 4], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 4, + 5.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 4, + 5.5, + 4.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 4, + 5.5, + 4.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 4, + 5.5, + 4.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_26", - "from": [5.75, 0, 4], - "to": [6, 0.25, 6.25], + "from": [ + 5.75, + 0, + 4 + ], + "to": [ + 6, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [6, 4, 5.75, 4.25], "texture": "#2"}, - "east": {"uv": [5.75, 4, 6, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 6, 6, 6.25], "texture": "#2"}, - "west": {"uv": [5.75, 4, 6, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 4, 6, 6.25], "texture": "#2"}, - "down": {"uv": [5.75, 6.25, 6, 4], "texture": "#2"} + "north": { + "uv": [ + 6, + 4, + 5.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 4, + 6, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 6, + 6, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 4, + 6, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 4, + 6, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 6.25, + 6, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_27", - "from": [7.25, 0, 4], - "to": [7.5, 0.25, 4.75], + "from": [ + 7.25, + 0, + 4 + ], + "to": [ + 7.5, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [7.5, 4, 7.25, 4.25], "texture": "#2"}, - "east": {"uv": [7.25, 4, 7.5, 4.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 4.5, 7.5, 4.75], "texture": "#2"}, - "west": {"uv": [7.25, 4, 7.5, 4.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 4, 7.5, 4.75], "texture": "#2"}, - "down": {"uv": [7.25, 4.75, 7.5, 4], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 4, + 7.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.5, + 4.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 4, + 7.5, + 4.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 4, + 7.5, + 4.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 4.75, + 7.5, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_28", - "from": [8.75, 0, 4], - "to": [9, 0.25, 4.75], + "from": [ + 8.75, + 0, + 4 + ], + "to": [ + 9, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [9, 4, 8.75, 4.25], "texture": "#2"}, - "east": {"uv": [8.75, 4, 9, 4.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 4.5, 9, 4.75], "texture": "#2"}, - "west": {"uv": [8.75, 4, 9, 4.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 4, 9, 4.75], "texture": "#2"}, - "down": {"uv": [8.75, 4.75, 9, 4], "texture": "#2"} + "north": { + "uv": [ + 9, + 4, + 8.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 4, + 9, + 4.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 4.5, + 9, + 4.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 4, + 9, + 4.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 4, + 9, + 4.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 4.75, + 9, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_29", - "from": [10.25, 0, 4], - "to": [10.5, 0.25, 6.25], + "from": [ + 10.25, + 0, + 4 + ], + "to": [ + 10.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [10.5, 4, 10.25, 4.25], "texture": "#2"}, - "east": {"uv": [10.25, 4, 10.5, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 6, 10.5, 6.25], "texture": "#2"}, - "west": {"uv": [10.25, 4, 10.5, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 4, 10.5, 6.25], "texture": "#2"}, - "down": {"uv": [10.25, 6.25, 10.5, 4], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 4, + 10.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 4, + 10.5, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 6, + 10.5, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 4, + 10.5, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 4, + 10.5, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 6.25, + 10.5, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_30", - "from": [10.75, 0, 4], - "to": [11, 0.25, 4.5], + "from": [ + 10.75, + 0, + 4 + ], + "to": [ + 11, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [11, 4, 10.75, 4.25], "texture": "#2"}, - "east": {"uv": [10.75, 4, 11, 4.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 4.25, 11, 4.5], "texture": "#2"}, - "west": {"uv": [10.75, 4, 11, 4.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 4, 11, 4.5], "texture": "#2"}, - "down": {"uv": [10.75, 4.5, 11, 4], "texture": "#2"} + "north": { + "uv": [ + 11, + 4, + 10.75, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 4, + 11, + 4.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 4.25, + 11, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 4, + 11, + 4.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 4, + 11, + 4.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 4.5, + 11, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_31", - "from": [11.25, 0, 4], - "to": [11.5, 0.25, 8], + "from": [ + 11.25, + 0, + 4 + ], + "to": [ + 11.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [11.5, 4, 11.25, 4.25], "texture": "#2"}, - "east": {"uv": [11.25, 4, 11.5, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 7.75, 11.5, 8], "texture": "#2"}, - "west": {"uv": [11.25, 4, 11.5, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 4, 11.5, 8], "texture": "#2"}, - "down": {"uv": [11.25, 8, 11.5, 4], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 4, + 11.25, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 4, + 11.5, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 7.75, + 11.5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 4, + 11.5, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 4, + 11.5, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 8, + 11.5, + 4 + ], + "texture": "#2" + } } }, { "name": "zarigani_32", - "from": [5.5, 0, 4.25], - "to": [5.75, 0.25, 7], + "from": [ + 5.5, + 0, + 4.25 + ], + "to": [ + 5.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [5.75, 4.25, 5.5, 4.5], "texture": "#2"}, - "east": {"uv": [5.5, 4.25, 5.75, 7], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 6.75, 5.75, 7], "texture": "#2"}, - "west": {"uv": [5.5, 4.25, 5.75, 7], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 4.25, 5.75, 7], "texture": "#2"}, - "down": {"uv": [5.5, 7, 5.75, 4.25], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 4.25, + 5.5, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 4.25, + 5.75, + 7 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 4.25, + 5.75, + 7 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 4.25, + 5.75, + 7 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 7, + 5.75, + 4.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_33", - "from": [6, 0, 4.25], - "to": [6.25, 0.25, 5.5], + "from": [ + 6, + 0, + 4.25 + ], + "to": [ + 6.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [6.25, 4.25, 6, 4.5], "texture": "#2"}, - "east": {"uv": [6, 4.25, 6.25, 5.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 5.25, 6.25, 5.5], "texture": "#2"}, - "west": {"uv": [6, 4.25, 6.25, 5.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 4.25, 6.25, 5.5], "texture": "#2"}, - "down": {"uv": [6, 5.5, 6.25, 4.25], "texture": "#2"} + "north": { + "uv": [ + 6.25, + 4.25, + 6, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 4.25, + 6.25, + 5.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 5.25, + 6.25, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 4.25, + 6.25, + 5.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 4.25, + 6.25, + 5.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 5.5, + 6.25, + 4.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_34", - "from": [10, 0, 4.25], - "to": [10.25, 0.25, 5.5], + "from": [ + 10, + 0, + 4.25 + ], + "to": [ + 10.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [10.25, 4.25, 10, 4.5], "texture": "#2"}, - "east": {"uv": [10, 4.25, 10.25, 5.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 5.25, 10.25, 5.5], "texture": "#2"}, - "west": {"uv": [10, 4.25, 10.25, 5.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 4.25, 10.25, 5.5], "texture": "#2"}, - "down": {"uv": [10, 5.5, 10.25, 4.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 4.25, + 10, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 4.25, + 10.25, + 5.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 5.25, + 10.25, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 4.25, + 10.25, + 5.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 4.25, + 10.25, + 5.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 5.5, + 10.25, + 4.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_35", - "from": [10.5, 0, 4.25], - "to": [10.75, 0.25, 7], + "from": [ + 10.5, + 0, + 4.25 + ], + "to": [ + 10.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [10.75, 4.25, 10.5, 4.5], "texture": "#2"}, - "east": {"uv": [10.5, 4.25, 10.75, 7], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 6.75, 10.75, 7], "texture": "#2"}, - "west": {"uv": [10.5, 4.25, 10.75, 7], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 4.25, 10.75, 7], "texture": "#2"}, - "down": {"uv": [10.5, 7, 10.75, 4.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 4.25, + 10.5, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 4.25, + 10.75, + 7 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 4.25, + 10.75, + 7 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 4.25, + 10.75, + 7 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 7, + 10.75, + 4.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_36", - "from": [4.5, 0, 4.5], - "to": [4.75, 0.25, 7.5], + "from": [ + 4.5, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [4.75, 4.5, 4.5, 4.75], "texture": "#2"}, - "east": {"uv": [4.5, 4.5, 4.75, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 7.25, 4.75, 7.5], "texture": "#2"}, - "west": {"uv": [4.5, 4.5, 4.75, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 4.5, 4.75, 7.5], "texture": "#2"}, - "down": {"uv": [4.5, 7.5, 4.75, 4.5], "texture": "#2"} + "north": { + "uv": [ + 4.75, + 4.5, + 4.5, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 4.5, + 4.75, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 4.5, + 4.75, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 7.5, + 4.75, + 4.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_37", - "from": [11.5, 0, 4.5], - "to": [11.75, 0.25, 7.5], + "from": [ + 11.5, + 0, + 4.5 + ], + "to": [ + 11.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [11.75, 4.5, 11.5, 4.75], "texture": "#2"}, - "east": {"uv": [11.5, 4.5, 11.75, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 7.25, 11.75, 7.5], "texture": "#2"}, - "west": {"uv": [11.5, 4.5, 11.75, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 4.5, 11.75, 7.5], "texture": "#2"}, - "down": {"uv": [11.5, 7.5, 11.75, 4.5], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 4.5, + 11.5, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 4.5, + 11.75, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 4.5, + 11.75, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 11.75, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 7.5, + 11.75, + 4.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_38", - "from": [7.5, 0, 4.75], - "to": [7.75, 0.25, 5.5], + "from": [ + 7.5, + 0, + 4.75 + ], + "to": [ + 7.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [7.75, 4.75, 7.5, 5], "texture": "#2"}, - "east": {"uv": [7.5, 4.75, 7.75, 5.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 5.25, 7.75, 5.5], "texture": "#2"}, - "west": {"uv": [7.5, 4.75, 7.75, 5.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 4.75, 7.75, 5.5], "texture": "#2"}, - "down": {"uv": [7.5, 5.5, 7.75, 4.75], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 4.75, + 7.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 5.5, + 7.75, + 4.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_39", - "from": [8.5, 0, 4.75], - "to": [8.75, 0.25, 5.5], + "from": [ + 8.5, + 0, + 4.75 + ], + "to": [ + 8.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [8.75, 4.75, 8.5, 5], "texture": "#2"}, - "east": {"uv": [8.5, 4.75, 8.75, 5.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 5.25, 8.75, 5.5], "texture": "#2"}, - "west": {"uv": [8.5, 4.75, 8.75, 5.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 4.75, 8.75, 5.5], "texture": "#2"}, - "down": {"uv": [8.5, 5.5, 8.75, 4.75], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 4.75, + 8.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 8.75, + 4.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_40", - "from": [5.25, 0, 5.25], - "to": [5.5, 0.25, 8.25], + "from": [ + 5.25, + 0, + 5.25 + ], + "to": [ + 5.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [5.5, 5.25, 5.25, 5.5], "texture": "#2"}, - "east": {"uv": [5.25, 5.25, 5.5, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 8, 5.5, 8.25], "texture": "#2"}, - "west": {"uv": [5.25, 5.25, 5.5, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 5.25, 5.5, 8.25], "texture": "#2"}, - "down": {"uv": [5.25, 8.25, 5.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 5.25, + 5.5, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 8, + 5.5, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 5.25, + 5.5, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 5.25, + 5.5, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 8.25, + 5.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_41", - "from": [10.75, 0, 5.25], - "to": [11, 0.25, 8.25], + "from": [ + 10.75, + 0, + 5.25 + ], + "to": [ + 11, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11, 5.25, 10.75, 5.5], "texture": "#2"}, - "east": {"uv": [10.75, 5.25, 11, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 8, 11, 8.25], "texture": "#2"}, - "west": {"uv": [10.75, 5.25, 11, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 5.25, 11, 8.25], "texture": "#2"}, - "down": {"uv": [10.75, 8.25, 11, 5.25], "texture": "#2"} + "north": { + "uv": [ + 11, + 5.25, + 10.75, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5.25, + 11, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 8, + 11, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 5.25, + 11, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 5.25, + 11, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 8.25, + 11, + 5.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_42", - "from": [7.75, 0, 5.5], - "to": [8, 0.25, 6.25], + "from": [ + 7.75, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [8, 5.5, 7.75, 5.75], "texture": "#2"}, - "east": {"uv": [7.75, 5.5, 8, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 6, 8, 6.25], "texture": "#2"}, - "west": {"uv": [7.75, 5.5, 8, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 5.5, 8, 6.25], "texture": "#2"}, - "down": {"uv": [7.75, 6.25, 8, 5.5], "texture": "#2"} + "north": { + "uv": [ + 8, + 5.5, + 7.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 5.5, + 8, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 5.5, + 8, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 6.25, + 8, + 5.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_43", - "from": [8.25, 0, 5.5], - "to": [8.5, 0.25, 6.25], + "from": [ + 8.25, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [8.5, 5.5, 8.25, 5.75], "texture": "#2"}, - "east": {"uv": [8.25, 5.5, 8.5, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 6, 8.5, 6.25], "texture": "#2"}, - "west": {"uv": [8.25, 5.5, 8.5, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 5.5, 8.5, 6.25], "texture": "#2"}, - "down": {"uv": [8.25, 6.25, 8.5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 5.5, + 8.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 6, + 8.5, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 5.5, + 8.5, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 5.5, + 8.5, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 6.25, + 8.5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_44", - "from": [4.25, 0, 6], - "to": [4.5, 0.25, 7.25], + "from": [ + 4.25, + 0, + 6 + ], + "to": [ + 4.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [4.5, 6, 4.25, 6.25], "texture": "#2"}, - "east": {"uv": [4.25, 6, 4.5, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.25, 7, 4.5, 7.25], "texture": "#2"}, - "west": {"uv": [4.25, 6, 4.5, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.25, 6, 4.5, 7.25], "texture": "#2"}, - "down": {"uv": [4.25, 7.25, 4.5, 6], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 6, + 4.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 6, + 4.5, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.25, + 7, + 4.5, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.25, + 6, + 4.5, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.25, + 6, + 4.5, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.25, + 7.25, + 4.5, + 6 + ], + "texture": "#2" + } } }, { "name": "zarigani_45", - "from": [11.75, 0, 6], - "to": [12, 0.25, 7.25], + "from": [ + 11.75, + 0, + 6 + ], + "to": [ + 12, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [12, 6, 11.75, 6.25], "texture": "#2"}, - "east": {"uv": [11.75, 6, 12, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 7, 12, 7.25], "texture": "#2"}, - "west": {"uv": [11.75, 6, 12, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 6, 12, 7.25], "texture": "#2"}, - "down": {"uv": [11.75, 7.25, 12, 6], "texture": "#2"} + "north": { + "uv": [ + 12, + 6, + 11.75, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 6, + 12, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 7, + 12, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 6, + 12, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 6, + 12, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 7.25, + 12, + 6 + ], + "texture": "#2" + } } }, { "name": "zarigani_46", - "from": [8, 0, 6.25], - "to": [8.25, 0.25, 15.75], + "from": [ + 8, + 0, + 6.25 + ], + "to": [ + 8.25, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [8.25, 6.25, 8, 6.5], "texture": "#2"}, - "east": {"uv": [8, 6.25, 8.25, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 15.5, 8.25, 15.75], "texture": "#2"}, - "west": {"uv": [8, 6.25, 8.25, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 6.25, 8.25, 15.75], "texture": "#2"}, - "down": {"uv": [8, 15.75, 8.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 6.25, + 8, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.25, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 15.5, + 8.25, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 6.25, + 8.25, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 6.25, + 8.25, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 15.75, + 8.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_47", - "from": [7.75, 0, 6.5], - "to": [8, 0.25, 15.5], + "from": [ + 7.75, + 0, + 6.5 + ], + "to": [ + 8, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [8, 6.5, 7.75, 6.75], "texture": "#2"}, - "east": {"uv": [7.75, 6.5, 8, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 15.25, 8, 15.5], "texture": "#2"}, - "west": {"uv": [7.75, 6.5, 8, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 6.5, 8, 15.5], "texture": "#2"}, - "down": {"uv": [7.75, 15.5, 8, 6.5], "texture": "#2"} + "north": { + "uv": [ + 8, + 6.5, + 7.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 6.5, + 8, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 15.25, + 8, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 6.5, + 8, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 6.5, + 8, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 15.5, + 8, + 6.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_48", - "from": [8.25, 0, 6.5], - "to": [8.5, 0.25, 15.5], + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 8.5, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [8.5, 6.5, 8.25, 6.75], "texture": "#2"}, - "east": {"uv": [8.25, 6.5, 8.5, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 15.25, 8.5, 15.5], "texture": "#2"}, - "west": {"uv": [8.25, 6.5, 8.5, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 6.5, 8.5, 15.5], "texture": "#2"}, - "down": {"uv": [8.25, 15.5, 8.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 6.5, + 8.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 6.5, + 8.5, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 15.25, + 8.5, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 8.5, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 15.5, + 8.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_49", - "from": [5.5, 0, 7.25], - "to": [5.75, 0.25, 8.5], + "from": [ + 5.5, + 0, + 7.25 + ], + "to": [ + 5.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [5.75, 7.25, 5.5, 7.5], "texture": "#2"}, - "east": {"uv": [5.5, 7.25, 5.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 8.25, 5.75, 8.5], "texture": "#2"}, - "west": {"uv": [5.5, 7.25, 5.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 7.25, 5.75, 8.5], "texture": "#2"}, - "down": {"uv": [5.5, 8.5, 5.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 7.25, + 5.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 7.25, + 5.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 7.25, + 5.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 7.25, + 5.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 8.5, + 5.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_50", - "from": [7.25, 0, 7.25], - "to": [7.75, 0.25, 7.75], + "from": [ + 7.25, + 0, + 7.25 + ], + "to": [ + 7.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [7.75, 7.25, 7.25, 7.5], "texture": "#2"}, - "east": {"uv": [7.5, 7.25, 7.75, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 7.5, 7.75, 7.75], "texture": "#2"}, - "west": {"uv": [7.25, 7.25, 7.5, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 7.25, 7.75, 7.75], "texture": "#2"}, - "down": {"uv": [7.25, 7.75, 7.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 7.25, + 7.25, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 7.5, + 7.75, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 7.25, + 7.75, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 7.75, + 7.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_51", - "from": [8.5, 0, 7.25], - "to": [9, 0.25, 7.75], + "from": [ + 8.5, + 0, + 7.25 + ], + "to": [ + 9, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [9, 7.25, 8.5, 7.5], "texture": "#2"}, - "east": {"uv": [8.75, 7.25, 9, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 7.5, 9, 7.75], "texture": "#2"}, - "west": {"uv": [8.5, 7.25, 8.75, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 7.25, 9, 7.75], "texture": "#2"}, - "down": {"uv": [8.5, 7.75, 9, 7.25], "texture": "#2"} + "north": { + "uv": [ + 9, + 7.25, + 8.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 7.25, + 9, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 9, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 7.25, + 9, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 7.75, + 9, + 7.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_52", - "from": [10.5, 0, 7.25], - "to": [10.75, 0.25, 8.5], + "from": [ + 10.5, + 0, + 7.25 + ], + "to": [ + 10.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [10.75, 7.25, 10.5, 7.5], "texture": "#2"}, - "east": {"uv": [10.5, 7.25, 10.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 8.25, 10.75, 8.5], "texture": "#2"}, - "west": {"uv": [10.5, 7.25, 10.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 7.25, 10.75, 8.5], "texture": "#2"}, - "down": {"uv": [10.5, 8.5, 10.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 7.25, + 10.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 8.5, + 10.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_53", - "from": [5.75, 0, 7.5], - "to": [6, 0.25, 8.75], + "from": [ + 5.75, + 0, + 7.5 + ], + "to": [ + 6, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6, 7.5, 5.75, 7.75], "texture": "#2"}, - "east": {"uv": [5.75, 7.5, 6, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 8.5, 6, 8.75], "texture": "#2"}, - "west": {"uv": [5.75, 7.5, 6, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 7.5, 6, 8.75], "texture": "#2"}, - "down": {"uv": [5.75, 8.75, 6, 7.5], "texture": "#2"} + "north": { + "uv": [ + 6, + 7.5, + 5.75, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 7.5, + 6, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 7.5, + 6, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 7.5, + 6, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 8.75, + 6, + 7.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_54", - "from": [10.25, 0, 7.5], - "to": [10.5, 0.25, 8.75], + "from": [ + 10.25, + 0, + 7.5 + ], + "to": [ + 10.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [10.5, 7.5, 10.25, 7.75], "texture": "#2"}, - "east": {"uv": [10.25, 7.5, 10.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 8.5, 10.5, 8.75], "texture": "#2"}, - "west": {"uv": [10.25, 7.5, 10.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 7.5, 10.5, 8.75], "texture": "#2"}, - "down": {"uv": [10.25, 8.75, 10.5, 7.5], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 7.5, + 10.25, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 7.5, + 10.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 7.5, + 10.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 7.5, + 10.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 8.75, + 10.5, + 7.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_55", - "from": [6, 0, 7.75], - "to": [6.5, 0.25, 8.75], + "from": [ + 6, + 0, + 7.75 + ], + "to": [ + 6.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6.5, 7.75, 6, 8], "texture": "#2"}, - "east": {"uv": [6.25, 7.75, 6.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 8.5, 6.5, 8.75], "texture": "#2"}, - "west": {"uv": [6, 7.75, 6.25, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 7.75, 6.5, 8.75], "texture": "#2"}, - "down": {"uv": [6, 8.75, 6.5, 7.75], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 7.75, + 6, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 8.5, + 6.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 7.75, + 6.25, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 7.75, + 6.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 8.75, + 6.5, + 7.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_56", - "from": [7.5, 0, 7.75], - "to": [7.75, 0.25, 15.75], + "from": [ + 7.5, + 0, + 7.75 + ], + "to": [ + 7.75, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [7.75, 7.75, 7.5, 8], "texture": "#2"}, - "east": {"uv": [7.5, 7.75, 7.75, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 15.5, 7.75, 15.75], "texture": "#2"}, - "west": {"uv": [7.5, 7.75, 7.75, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 7.75, 7.75, 15.75], "texture": "#2"}, - "down": {"uv": [7.5, 15.75, 7.75, 7.75], "texture": "#2"} + "north": { + "uv": [ + 7.75, + 7.75, + 7.5, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 7.75, + 7.75, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 15.5, + 7.75, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 7.75, + 7.75, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 7.75, + 7.75, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 15.75, + 7.75, + 7.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_57", - "from": [8.5, 0, 7.75], - "to": [8.75, 0.25, 15.75], + "from": [ + 8.5, + 0, + 7.75 + ], + "to": [ + 8.75, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [8.75, 7.75, 8.5, 8], "texture": "#2"}, - "east": {"uv": [8.5, 7.75, 8.75, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 15.5, 8.75, 15.75], "texture": "#2"}, - "west": {"uv": [8.5, 7.75, 8.75, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 7.75, 8.75, 15.75], "texture": "#2"}, - "down": {"uv": [8.5, 15.75, 8.75, 7.75], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 7.75, + 8.5, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 7.75, + 8.75, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 15.5, + 8.75, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 7.75, + 8.75, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 7.75, + 8.75, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 15.75, + 8.75, + 7.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_58", - "from": [9.75, 0, 7.75], - "to": [10.25, 0.25, 8.75], + "from": [ + 9.75, + 0, + 7.75 + ], + "to": [ + 10.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [10.25, 7.75, 9.75, 8], "texture": "#2"}, - "east": {"uv": [10, 7.75, 10.25, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 8.5, 10.25, 8.75], "texture": "#2"}, - "west": {"uv": [9.75, 7.75, 10, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 7.75, 10.25, 8.75], "texture": "#2"}, - "down": {"uv": [9.75, 8.75, 10.25, 7.75], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 7.75, + 9.75, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 7.75, + 10.25, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 8.5, + 10.25, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 7.75, + 10, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 7.75, + 10.25, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 10.25, + 7.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_59", - "from": [6.5, 0, 8], - "to": [6.75, 0.25, 8.5], + "from": [ + 6.5, + 0, + 8 + ], + "to": [ + 6.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [6.75, 8, 6.5, 8.25], "texture": "#2"}, - "east": {"uv": [6.5, 8, 6.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 8.25, 6.75, 8.5], "texture": "#2"}, - "west": {"uv": [6.5, 8, 6.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 8, 6.75, 8.5], "texture": "#2"}, - "down": {"uv": [6.5, 8.5, 6.75, 8], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 8, + 6.5, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 8, + 6.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 8, + 6.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 8, + 6.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8 + ], + "texture": "#2" + } } }, { "name": "zarigani_60", - "from": [7.25, 0, 8], - "to": [7.5, 0.25, 14], + "from": [ + 7.25, + 0, + 8 + ], + "to": [ + 7.5, + 0.25, + 14 + ], "faces": { - "north": {"uv": [7.5, 8, 7.25, 8.25], "texture": "#2"}, - "east": {"uv": [7.25, 8, 7.5, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 13.75, 7.5, 14], "texture": "#2"}, - "west": {"uv": [7.25, 8, 7.5, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 8, 7.5, 14], "texture": "#2"}, - "down": {"uv": [7.25, 14, 7.5, 8], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 8, + 7.25, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 8, + 7.5, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 13.75, + 7.5, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 8, + 7.5, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 8, + 7.5, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 14, + 7.5, + 8 + ], + "texture": "#2" + } } }, { "name": "zarigani_61", - "from": [8.75, 0, 8], - "to": [9, 0.25, 14], + "from": [ + 8.75, + 0, + 8 + ], + "to": [ + 9, + 0.25, + 14 + ], "faces": { - "north": {"uv": [9, 8, 8.75, 8.25], "texture": "#2"}, - "east": {"uv": [8.75, 8, 9, 14], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 13.75, 9, 14], "texture": "#2"}, - "west": {"uv": [8.75, 8, 9, 14], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 8, 9, 14], "texture": "#2"}, - "down": {"uv": [8.75, 14, 9, 8], "texture": "#2"} + "north": { + "uv": [ + 9, + 8, + 8.75, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 8, + 9, + 14 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 13.75, + 9, + 14 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 8, + 9, + 14 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 8, + 9, + 14 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 14, + 9, + 8 + ], + "texture": "#2" + } } }, { "name": "zarigani_62", - "from": [9.5, 0, 8], - "to": [9.75, 0.25, 8.5], + "from": [ + 9.5, + 0, + 8 + ], + "to": [ + 9.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [9.75, 8, 9.5, 8.25], "texture": "#2"}, - "east": {"uv": [9.5, 8, 9.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 8.25, 9.75, 8.5], "texture": "#2"}, - "west": {"uv": [9.5, 8, 9.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 8, 9.75, 8.5], "texture": "#2"}, - "down": {"uv": [9.5, 8.5, 9.75, 8], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 8, + 9.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 8, + 9.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 8, + 9.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8 + ], + "texture": "#2" + } } }, { "name": "zarigani_63", - "from": [6.75, 0, 8.5], - "to": [7.25, 0.25, 8.75], + "from": [ + 6.75, + 0, + 8.5 + ], + "to": [ + 7.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.25, 8.5, 6.75, 8.75], "texture": "#2"}, - "east": {"uv": [7, 8.5, 7.25, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 8.5, 7.25, 8.75], "texture": "#2"}, - "west": {"uv": [6.75, 8.5, 7, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 8.5, 7.25, 8.75], "texture": "#2"}, - "down": {"uv": [6.75, 8.75, 7.25, 8.5], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 8.5, + 6.75, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 8.5, + 7.25, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 7.25, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 8.75, + 7.25, + 8.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_64", - "from": [9, 0, 8.5], - "to": [9.5, 0.25, 8.75], + "from": [ + 9, + 0, + 8.5 + ], + "to": [ + 9.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [9.5, 8.5, 9, 8.75], "texture": "#2"}, - "east": {"uv": [9.25, 8.5, 9.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 8.5, 9.5, 8.75], "texture": "#2"}, - "west": {"uv": [9, 8.5, 9.25, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 8.5, 9.5, 8.75], "texture": "#2"}, - "down": {"uv": [9, 8.75, 9.5, 8.5], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 8.5, + 9, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 8.5, + 9.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 8.5, + 9.25, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 8.5, + 9.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 8.75, + 9.5, + 8.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_65", - "from": [5.5, 0, 8.75], - "to": [5.75, 0.25, 9.25], + "from": [ + 5.5, + 0, + 8.75 + ], + "to": [ + 5.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5.75, 8.75, 5.5, 9], "texture": "#2"}, - "east": {"uv": [5.5, 8.75, 5.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 9, 5.75, 9.25], "texture": "#2"}, - "west": {"uv": [5.5, 8.75, 5.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 8.75, 5.75, 9.25], "texture": "#2"}, - "down": {"uv": [5.5, 9.25, 5.75, 8.75], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 8.75, + 5.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 9.25, + 5.75, + 8.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_66", - "from": [7, 0, 8.75], - "to": [7.25, 0.25, 12.5], + "from": [ + 7, + 0, + 8.75 + ], + "to": [ + 7.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.25, 8.75, 7, 9], "texture": "#2"}, - "east": {"uv": [7, 8.75, 7.25, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 12.25, 7.25, 12.5], "texture": "#2"}, - "west": {"uv": [7, 8.75, 7.25, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 8.75, 7.25, 12.5], "texture": "#2"}, - "down": {"uv": [7, 12.5, 7.25, 8.75], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 8.75, + 7, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 8.75, + 7.25, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 12.25, + 7.25, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 8.75, + 7.25, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 8.75, + 7.25, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 12.5, + 7.25, + 8.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_67", - "from": [9, 0, 8.75], - "to": [9.25, 0.25, 12.5], + "from": [ + 9, + 0, + 8.75 + ], + "to": [ + 9.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [9.25, 8.75, 9, 9], "texture": "#2"}, - "east": {"uv": [9, 8.75, 9.25, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 12.25, 9.25, 12.5], "texture": "#2"}, - "west": {"uv": [9, 8.75, 9.25, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 8.75, 9.25, 12.5], "texture": "#2"}, - "down": {"uv": [9, 12.5, 9.25, 8.75], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 8.75, + 9, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 8.75, + 9.25, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 12.25, + 9.25, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 8.75, + 9.25, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 8.75, + 9.25, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 12.5, + 9.25, + 8.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_68", - "from": [10.5, 0, 8.75], - "to": [10.75, 0.25, 9.25], + "from": [ + 10.5, + 0, + 8.75 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 8.75, 10.5, 9], "texture": "#2"}, - "east": {"uv": [10.5, 8.75, 10.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 9, 10.75, 9.25], "texture": "#2"}, - "west": {"uv": [10.5, 8.75, 10.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 8.75, 10.75, 9.25], "texture": "#2"}, - "down": {"uv": [10.5, 9.25, 10.75, 8.75], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 8.75, + 10.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 9.25, + 10.75, + 8.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_69", - "from": [5.75, 0, 9.25], - "to": [7, 0.25, 9.5], + "from": [ + 5.75, + 0, + 9.25 + ], + "to": [ + 7, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7, 9.25, 5.75, 9.5], "texture": "#2"}, - "east": {"uv": [6.75, 9.25, 7, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 9.25, 7, 9.5], "texture": "#2"}, - "west": {"uv": [5.75, 9.25, 6, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 9.25, 7, 9.5], "texture": "#2"}, - "down": {"uv": [5.75, 9.5, 7, 9.25], "texture": "#2"} + "north": { + "uv": [ + 7, + 9.25, + 5.75, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 9.25, + 7, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 9.25, + 7, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 9.25, + 7, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 9.5, + 7, + 9.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_70", - "from": [9.25, 0, 9.25], - "to": [10.5, 0.25, 9.5], + "from": [ + 9.25, + 0, + 9.25 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.5, 9.25, 9.25, 9.5], "texture": "#2"}, - "east": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 9.25, 10.5, 9.5], "texture": "#2"}, - "west": {"uv": [9.25, 9.25, 9.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 9.25, 10.5, 9.5], "texture": "#2"}, - "down": {"uv": [9.25, 9.5, 10.5, 9.25], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 9.25, + 9.25, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 9.5, + 10.5, + 9.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_71", - "from": [6.5, 0, 10], - "to": [7, 0.25, 10.25], + "from": [ + 6.5, + 0, + 10 + ], + "to": [ + 7, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7, 10, 6.5, 10.25], "texture": "#2"}, - "east": {"uv": [6.75, 10, 7, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 10, 7, 10.25], "texture": "#2"}, - "west": {"uv": [6.5, 10, 6.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 10, 7, 10.25], "texture": "#2"}, - "down": {"uv": [6.5, 10.25, 7, 10], "texture": "#2"} + "north": { + "uv": [ + 7, + 10, + 6.5, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 10, + 7, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 10, + 7, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 7, + 10 + ], + "texture": "#2" + } } }, { "name": "zarigani_72", - "from": [9.25, 0, 10], - "to": [9.75, 0.25, 10.25], + "from": [ + 9.25, + 0, + 10 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 10, 9.25, 10.25], "texture": "#2"}, - "east": {"uv": [9.5, 10, 9.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10, 9.75, 10.25], "texture": "#2"}, - "west": {"uv": [9.25, 10, 9.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 10, 9.75, 10.25], "texture": "#2"}, - "down": {"uv": [9.25, 10.25, 9.75, 10], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 10, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10.25, + 9.75, + 10 + ], + "texture": "#2" + } } }, { "name": "zarigani_73", - "from": [5.5, 0, 10.25], - "to": [6.5, 0.25, 10.5], + "from": [ + 5.5, + 0, + 10.25 + ], + "to": [ + 6.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.5, 10.25, 5.5, 10.5], "texture": "#2"}, - "east": {"uv": [6.25, 10.25, 6.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 10.25, 6.5, 10.5], "texture": "#2"}, - "west": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 10.25, 6.5, 10.5], "texture": "#2"}, - "down": {"uv": [5.5, 10.5, 6.5, 10.25], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 6.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 10.25, + 6.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 6.5, + 10.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_74", - "from": [9.75, 0, 10.25], - "to": [10.75, 0.25, 10.5], + "from": [ + 9.75, + 0, + 10.25 + ], + "to": [ + 10.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.75, 10.25, 9.75, 10.5], "texture": "#2"}, - "east": {"uv": [10.5, 10.25, 10.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 10.25, 10.75, 10.5], "texture": "#2"}, - "west": {"uv": [9.75, 10.25, 10, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 10.25, 10.75, 10.5], "texture": "#2"}, - "down": {"uv": [9.75, 10.5, 10.75, 10.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 10.25, + 9.75, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 10.25, + 10.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 10.25, + 10.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 10.25, + 10.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10.5, + 10.75, + 10.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_75", - "from": [6.5, 0, 10.75], - "to": [7, 0.25, 11], + "from": [ + 6.5, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7, 10.75, 6.5, 11], "texture": "#2"}, - "east": {"uv": [6.75, 10.75, 7, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 10.75, 7, 11], "texture": "#2"}, - "west": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 10.75, 7, 11], "texture": "#2"}, - "down": {"uv": [6.5, 11, 7, 10.75], "texture": "#2"} + "north": { + "uv": [ + 7, + 10.75, + 6.5, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 10.75, + 7, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 10.75, + 7, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 11, + 7, + 10.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_76", - "from": [9.25, 0, 10.75], - "to": [9.75, 0.25, 11], + "from": [ + 9.25, + 0, + 10.75 + ], + "to": [ + 9.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.75, 10.75, 9.25, 11], "texture": "#2"}, - "east": {"uv": [9.5, 10.75, 9.75, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10.75, 9.75, 11], "texture": "#2"}, - "west": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 10.75, 9.75, 11], "texture": "#2"}, - "down": {"uv": [9.25, 11, 9.75, 10.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 10.75, + 9.25, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 10.75, + 9.75, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.75, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 10.75, + 9.75, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.75, + 10.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_77", - "from": [6, 0, 11], - "to": [6.5, 0.25, 11.25], + "from": [ + 6, + 0, + 11 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.5, 11, 6, 11.25], "texture": "#2"}, - "east": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 11, 6.5, 11.25], "texture": "#2"}, - "west": {"uv": [6, 11, 6.25, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 11, 6.5, 11.25], "texture": "#2"}, - "down": {"uv": [6, 11.25, 6.5, 11], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 11, + 6, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 11, + 6.5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 11, + 6.5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11.25, + 6.5, + 11 + ], + "texture": "#2" + } } }, { "name": "zarigani_78", - "from": [9.75, 0, 11], - "to": [10.25, 0.25, 11.25], + "from": [ + 9.75, + 0, + 11 + ], + "to": [ + 10.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10.25, 11, 9.75, 11.25], "texture": "#2"}, - "east": {"uv": [10, 11, 10.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 11, 10.25, 11.25], "texture": "#2"}, - "west": {"uv": [9.75, 11, 10, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 11, 10.25, 11.25], "texture": "#2"}, - "down": {"uv": [9.75, 11.25, 10.25, 11], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 11, + 9.75, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 11, + 10.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 11, + 10.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 11, + 10.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 11.25, + 10.25, + 11 + ], + "texture": "#2" + } } }, { "name": "zarigani_79", - "from": [5.75, 0, 11.25], - "to": [6, 0.25, 11.75], + "from": [ + 5.75, + 0, + 11.25 + ], + "to": [ + 6, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6, 11.25, 5.75, 11.5], "texture": "#2"}, - "east": {"uv": [5.75, 11.25, 6, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 11.5, 6, 11.75], "texture": "#2"}, - "west": {"uv": [5.75, 11.25, 6, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 11.25, 6, 11.75], "texture": "#2"}, - "down": {"uv": [5.75, 11.75, 6, 11.25], "texture": "#2"} + "north": { + "uv": [ + 6, + 11.25, + 5.75, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 11.25, + 6, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 11.25, + 6, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 11.25, + 6, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 11.75, + 6, + 11.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_80", - "from": [10.25, 0, 11.25], - "to": [10.5, 0.25, 11.75], + "from": [ + 10.25, + 0, + 11.25 + ], + "to": [ + 10.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.5, 11.25, 10.25, 11.5], "texture": "#2"}, - "east": {"uv": [10.25, 11.25, 10.5, 11.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 11.5, 10.5, 11.75], "texture": "#2"}, - "west": {"uv": [10.25, 11.25, 10.5, 11.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 11.25, 10.5, 11.75], "texture": "#2"}, - "down": {"uv": [10.25, 11.75, 10.5, 11.25], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 11.25, + 10.25, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 11.25, + 10.5, + 11.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 11.5, + 10.5, + 11.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 11.25, + 10.5, + 11.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 11.25, + 10.5, + 11.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 11.75, + 10.5, + 11.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_81", - "from": [7, 0, 14.25], - "to": [7.5, 0.25, 15.5], + "from": [ + 7, + 0, + 14.25 + ], + "to": [ + 7.5, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [7.5, 14.25, 7, 14.5], "texture": "#2"}, - "east": {"uv": [7.25, 14.25, 7.5, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 15.25, 7.5, 15.5], "texture": "#2"}, - "west": {"uv": [7, 14.25, 7.25, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 14.25, 7.5, 15.5], "texture": "#2"}, - "down": {"uv": [7, 15.5, 7.5, 14.25], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 14.25, + 7, + 14.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 14.25, + 7.5, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 15.25, + 7.5, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 14.25, + 7.25, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 14.25, + 7.5, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 15.5, + 7.5, + 14.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_82", - "from": [8.75, 0, 14.25], - "to": [9.25, 0.25, 15.5], + "from": [ + 8.75, + 0, + 14.25 + ], + "to": [ + 9.25, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [9.25, 14.25, 8.75, 14.5], "texture": "#2"}, - "east": {"uv": [9, 14.25, 9.25, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 15.25, 9.25, 15.5], "texture": "#2"}, - "west": {"uv": [8.75, 14.25, 9, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 14.25, 9.25, 15.5], "texture": "#2"}, - "down": {"uv": [8.75, 15.5, 9.25, 14.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 14.25, + 8.75, + 14.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 14.25, + 9.25, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 15.25, + 9.25, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 14.25, + 9, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 14.25, + 9.25, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 15.5, + 9.25, + 14.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_83", - "from": [6.75, 0, 14.5], - "to": [7, 0.25, 15.75], + "from": [ + 6.75, + 0, + 14.5 + ], + "to": [ + 7, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [7, 14.5, 6.75, 14.75], "texture": "#2"}, - "east": {"uv": [6.75, 14.5, 7, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 15.5, 7, 15.75], "texture": "#2"}, - "west": {"uv": [6.75, 14.5, 7, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 14.5, 7, 15.75], "texture": "#2"}, - "down": {"uv": [6.75, 15.75, 7, 14.5], "texture": "#2"} + "north": { + "uv": [ + 7, + 14.5, + 6.75, + 14.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 14.5, + 7, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 15.5, + 7, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 14.5, + 7, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 14.5, + 7, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 15.75, + 7, + 14.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_84", - "from": [9.25, 0, 14.5], - "to": [9.5, 0.25, 15.75], + "from": [ + 9.25, + 0, + 14.5 + ], + "to": [ + 9.5, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [9.5, 14.5, 9.25, 14.75], "texture": "#2"}, - "east": {"uv": [9.25, 14.5, 9.5, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 15.5, 9.5, 15.75], "texture": "#2"}, - "west": {"uv": [9.25, 14.5, 9.5, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 14.5, 9.5, 15.75], "texture": "#2"}, - "down": {"uv": [9.25, 15.75, 9.5, 14.5], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 14.5, + 9.25, + 14.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 14.5, + 9.5, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 15.5, + 9.5, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 14.5, + 9.5, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 14.5, + 9.5, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 15.75, + 9.5, + 14.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_85", - "from": [6.5, 0, 14.75], - "to": [6.75, 0.25, 15.75], + "from": [ + 6.5, + 0, + 14.75 + ], + "to": [ + 6.75, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [6.75, 14.75, 6.5, 15], "texture": "#2"}, - "east": {"uv": [6.5, 14.75, 6.75, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 15.5, 6.75, 15.75], "texture": "#2"}, - "west": {"uv": [6.5, 14.75, 6.75, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 14.75, 6.75, 15.75], "texture": "#2"}, - "down": {"uv": [6.5, 15.75, 6.75, 14.75], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 14.75, + 6.5, + 15 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 14.75, + 6.75, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 15.5, + 6.75, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 14.75, + 6.75, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 14.75, + 6.75, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 15.75, + 6.75, + 14.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_86", - "from": [9.5, 0, 14.75], - "to": [9.75, 0.25, 15.75], + "from": [ + 9.5, + 0, + 14.75 + ], + "to": [ + 9.75, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [9.75, 14.75, 9.5, 15], "texture": "#2"}, - "east": {"uv": [9.5, 14.75, 9.75, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 15.5, 9.75, 15.75], "texture": "#2"}, - "west": {"uv": [9.5, 14.75, 9.75, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 14.75, 9.75, 15.75], "texture": "#2"}, - "down": {"uv": [9.5, 15.75, 9.75, 14.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 14.75, + 9.5, + 15 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 14.75, + 9.75, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 15.5, + 9.75, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 14.75, + 9.75, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 14.75, + 9.75, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 15.75, + 9.75, + 14.75 + ], + "texture": "#2" + } } }, { "name": "zarigani_87", - "from": [6.25, 0, 15], - "to": [6.5, 0.25, 15.75], + "from": [ + 6.25, + 0, + 15 + ], + "to": [ + 6.5, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [6.5, 15, 6.25, 15.25], "texture": "#2"}, - "east": {"uv": [6.25, 15, 6.5, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 15.5, 6.5, 15.75], "texture": "#2"}, - "west": {"uv": [6.25, 15, 6.5, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 15, 6.5, 15.75], "texture": "#2"}, - "down": {"uv": [6.25, 15.75, 6.5, 15], "texture": "#2"} + "north": { + "uv": [ + 6.5, + 15, + 6.25, + 15.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.25, + 15, + 6.5, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 15.5, + 6.5, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 15, + 6.5, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 15, + 6.5, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 15.75, + 6.5, + 15 + ], + "texture": "#2" + } } }, { "name": "zarigani_88", - "from": [9.75, 0, 15], - "to": [10, 0.25, 15.75], + "from": [ + 9.75, + 0, + 15 + ], + "to": [ + 10, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [10, 15, 9.75, 15.25], "texture": "#2"}, - "east": {"uv": [9.75, 15, 10, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 15.5, 10, 15.75], "texture": "#2"}, - "west": {"uv": [9.75, 15, 10, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 15, 10, 15.75], "texture": "#2"}, - "down": {"uv": [9.75, 15.75, 10, 15], "texture": "#2"} + "north": { + "uv": [ + 10, + 15, + 9.75, + 15.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 15, + 10, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 15.5, + 10, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 15, + 10, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 15, + 10, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 15.75, + 10, + 15 + ], + "texture": "#2" + } } }, { "name": "zarigani_89", - "from": [6, 0, 15.25], - "to": [6.25, 0.25, 15.5], + "from": [ + 6, + 0, + 15.25 + ], + "to": [ + 6.25, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [6.25, 15.25, 6, 15.5], "texture": "#2"}, - "east": {"uv": [6, 15.25, 6.25, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 15.25, 6.25, 15.5], "texture": "#2"}, - "west": {"uv": [6, 15.25, 6.25, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 15.25, 6.25, 15.5], "texture": "#2"}, - "down": {"uv": [6, 15.5, 6.25, 15.25], "texture": "#2"} + "north": { + "uv": [ + 6.25, + 15.25, + 6, + 15.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 15.25, + 6.25, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 15.25, + 6.25, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 15.25, + 6.25, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 15.25, + 6.25, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 15.5, + 6.25, + 15.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_90", - "from": [10, 0, 15.25], - "to": [10.25, 0.25, 15.5], + "from": [ + 10, + 0, + 15.25 + ], + "to": [ + 10.25, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [10.25, 15.25, 10, 15.5], "texture": "#2"}, - "east": {"uv": [10, 15.25, 10.25, 15.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 15.25, 10.25, 15.5], "texture": "#2"}, - "west": {"uv": [10, 15.25, 10.25, 15.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 15.25, 10.25, 15.5], "texture": "#2"}, - "down": {"uv": [10, 15.5, 10.25, 15.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 15.25, + 10, + 15.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 15.25, + 10.25, + 15.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 15.25, + 10.25, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 15.25, + 10.25, + 15.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 15.25, + 10.25, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 15.5, + 10.25, + 15.25 + ], + "texture": "#2" + } } }, { "name": "zarigani_91", - "from": [7.25, 0, 15.5], - "to": [7.5, 0.25, 15.75], + "from": [ + 7.25, + 0, + 15.5 + ], + "to": [ + 7.5, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [7.5, 15.5, 7.25, 15.75], "texture": "#2"}, - "east": {"uv": [7.25, 15.5, 7.5, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.25, 15.5, 7.5, 15.75], "texture": "#2"}, - "west": {"uv": [7.25, 15.5, 7.5, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.25, 15.5, 7.5, 15.75], "texture": "#2"}, - "down": {"uv": [7.25, 15.75, 7.5, 15.5], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 15.5, + 7.25, + 15.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 15.5, + 7.5, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.25, + 15.5, + 7.5, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.25, + 15.5, + 7.5, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.25, + 15.5, + 7.5, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.25, + 15.75, + 7.5, + 15.5 + ], + "texture": "#2" + } } }, { "name": "zarigani_92", - "from": [8.75, 0, 15.5], - "to": [9, 0.25, 15.75], + "from": [ + 8.75, + 0, + 15.5 + ], + "to": [ + 9, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [9, 15.5, 8.75, 15.75], "texture": "#2"}, - "east": {"uv": [8.75, 15.5, 9, 15.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 15.5, 9, 15.75], "texture": "#2"}, - "west": {"uv": [8.75, 15.5, 9, 15.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 15.5, 9, 15.75], "texture": "#2"}, - "down": {"uv": [8.75, 15.75, 9, 15.5], "texture": "#2"} + "north": { + "uv": [ + 9, + 15.5, + 8.75, + 15.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 15.5, + 9, + 15.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 15.5, + 9, + 15.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 15.5, + 9, + 15.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 15.5, + 9, + 15.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 15.75, + 9, + 15.5 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 5, 5.5], - "scale": [0.66, 0.66, 0.66] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 5, + 5.5 + ], + "scale": [ + 0.66, + 0.66, + 0.66 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 5.5], - "scale": [0.66, 0.66, 0.66] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 5.5 + ], + "scale": [ + 0.66, + 0.66, + 0.66 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "ground": { - "translation": [0.25, 2.5, -0.5], - "scale": [0.64, 0.64, 0.64] + "translation": [ + 0.25, + 2.5, + -0.5 + ], + "scale": [ + 0.64, + 0.64, + 0.64 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "translation": [0.25, 18, 1.25], - "scale": [1.44, 1.44, 1.44] + "translation": [ + 0.25, + 18, + 1.25 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "zarigani", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/guppy.json b/pack/assets/minecraft/models/fish/guppy.json index 957dfdf1..3e9043c5 100644 --- a/pack/assets/minecraft/models/fish/guppy.json +++ b/pack/assets/minecraft/models/fish/guppy.json @@ -2,682 +2,3615 @@ "__name": "グッピー", "credit": "Made with Blockbench", "textures": { - "0": "fish/guppy", - "particle": "fish/guppy" + "0": "item/fish/guppy", + "particle": "item/fish/guppy" }, "elements": [ { "name": "guppy_0", - "from": [12.5, 0, 4], - "to": [13.25, 0.25, 11.5], + "from": [ + 12.5, + 0, + 4 + ], + "to": [ + 13.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [13.25, 4, 12.5, 4.25], "texture": "#0"}, - "east": {"uv": [13, 4, 13.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 11.25, 13.25, 11.5], "texture": "#0"}, - "west": {"uv": [12.5, 4, 12.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 4, 13.25, 11.5], "texture": "#0"}, - "down": {"uv": [12.5, 11.5, 13.25, 4], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 4, + 12.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 4, + 13.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 11.25, + 13.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 4, + 12.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 4, + 13.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 11.5, + 13.25, + 4 + ], + "texture": "#0" + } } }, { "name": "guppy_1", - "from": [12, 0, 4.25], - "to": [12.5, 0.25, 11.5], + "from": [ + 12, + 0, + 4.25 + ], + "to": [ + 12.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.5, 4.25, 12, 4.5], "texture": "#0"}, - "east": {"uv": [12.25, 4.25, 12.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 11.25, 12.5, 11.5], "texture": "#0"}, - "west": {"uv": [12, 4.25, 12.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 4.25, 12.5, 11.5], "texture": "#0"}, - "down": {"uv": [12, 11.5, 12.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 4.25, + 12, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 4.25, + 12.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 11.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 4.25, + 12.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 4.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 11.5, + 12.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "guppy_2", - "from": [13.25, 0, 4.25], - "to": [13.5, 0.25, 11.25], + "from": [ + 13.25, + 0, + 4.25 + ], + "to": [ + 13.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.5, 4.25, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [13.25, 4.25, 13.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 11, 13.5, 11.25], "texture": "#0"}, - "west": {"uv": [13.25, 4.25, 13.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 4.25, 13.5, 11.25], "texture": "#0"}, - "down": {"uv": [13.25, 11.25, 13.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 4.25, + 13.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 4.25, + 13.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 11, + 13.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 4.25, + 13.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 4.25, + 13.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 11.25, + 13.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "guppy_3", - "from": [11.5, 0, 4.5], - "to": [12, 0.25, 11.25], + "from": [ + 11.5, + 0, + 4.5 + ], + "to": [ + 12, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [12, 4.5, 11.5, 4.75], "texture": "#0"}, - "east": {"uv": [11.75, 4.5, 12, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 11, 12, 11.25], "texture": "#0"}, - "west": {"uv": [11.5, 4.5, 11.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 4.5, 12, 11.25], "texture": "#0"}, - "down": {"uv": [11.5, 11.25, 12, 4.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 4.5, + 11.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 4.5, + 12, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 11, + 12, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 4.5, + 11.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 12, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 11.25, + 12, + 4.5 + ], + "texture": "#0" + } } }, { "name": "guppy_4", - "from": [13.5, 0, 4.5], - "to": [13.75, 0.25, 11], + "from": [ + 13.5, + 0, + 4.5 + ], + "to": [ + 13.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [13.75, 4.5, 13.5, 4.75], "texture": "#0"}, - "east": {"uv": [13.5, 4.5, 13.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 10.75, 13.75, 11], "texture": "#0"}, - "west": {"uv": [13.5, 4.5, 13.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 4.5, 13.75, 11], "texture": "#0"}, - "down": {"uv": [13.5, 11, 13.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 4.5, + 13.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 4.5, + 13.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 10.75, + 13.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 4.5, + 13.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 4.5, + 13.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 11, + 13.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "guppy_5", - "from": [6.75, 0, 4.75], - "to": [7.5, 0.25, 8.75], + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.5, 4.75, 6.75, 5], "texture": "#0"}, - "east": {"uv": [7.25, 4.75, 7.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.5, 7.5, 8.75], "texture": "#0"}, - "west": {"uv": [6.75, 4.75, 7, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.75, 7.5, 8.75], "texture": "#0"}, - "down": {"uv": [6.75, 8.75, 7.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.75, + 7.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.5, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8.75, + 7.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "guppy_6", - "from": [11, 0, 4.75], - "to": [11.5, 0.25, 10.75], + "from": [ + 11, + 0, + 4.75 + ], + "to": [ + 11.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.5, 4.75, 11, 5], "texture": "#0"}, - "east": {"uv": [11.25, 4.75, 11.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.5, 11.5, 10.75], "texture": "#0"}, - "west": {"uv": [11, 4.75, 11.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 4.75, 11.5, 10.75], "texture": "#0"}, - "down": {"uv": [11, 10.75, 11.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.75, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.75, + 11.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.5, + 11.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4.75, + 11.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4.75, + 11.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.75, + 11.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "guppy_7", - "from": [13.75, 0, 4.75], - "to": [14, 0.25, 10.75], + "from": [ + 13.75, + 0, + 4.75 + ], + "to": [ + 14, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14, 4.75, 13.75, 5], "texture": "#0"}, - "east": {"uv": [13.75, 4.75, 14, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.5, 14, 10.75], "texture": "#0"}, - "west": {"uv": [13.75, 4.75, 14, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 4.75, 14, 10.75], "texture": "#0"}, - "down": {"uv": [13.75, 10.75, 14, 4.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 4.75, + 13.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 4.75, + 14, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.5, + 14, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 4.75, + 14, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 4.75, + 14, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 10.75, + 14, + 4.75 + ], + "texture": "#0" + } } }, { "name": "guppy_8", - "from": [6.5, 0, 5], - "to": [6.75, 0.25, 9], + "from": [ + 6.5, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [6.75, 5, 6.5, 5.25], "texture": "#0"}, - "east": {"uv": [6.5, 5, 6.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.75, 6.75, 9], "texture": "#0"}, - "west": {"uv": [6.5, 5, 6.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5, 6.75, 9], "texture": "#0"}, - "down": {"uv": [6.5, 9, 6.75, 5], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5, + 6.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5, + 6.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9, + 6.75, + 5 + ], + "texture": "#0" + } } }, { "name": "guppy_9", - "from": [7.5, 0, 5], - "to": [7.75, 0.25, 8.75], + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 7.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.75, 5, 7.5, 5.25], "texture": "#0"}, - "east": {"uv": [7.5, 5, 7.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.5, 7.75, 8.75], "texture": "#0"}, - "west": {"uv": [7.5, 5, 7.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5, 7.75, 8.75], "texture": "#0"}, - "down": {"uv": [7.5, 8.75, 7.75, 5], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5, + 7.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8.75, + 7.75, + 5 + ], + "texture": "#0" + } } }, { "name": "guppy_10", - "from": [10.75, 0, 5], - "to": [11, 0.25, 10.75], + "from": [ + 10.75, + 0, + 5 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 5, 10.75, 5.25], "texture": "#0"}, - "east": {"uv": [10.75, 5, 11, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10.5, 11, 10.75], "texture": "#0"}, - "west": {"uv": [10.75, 5, 11, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5, 11, 10.75], "texture": "#0"}, - "down": {"uv": [10.75, 10.75, 11, 5], "texture": "#0"} + "north": { + "uv": [ + 11, + 5, + 10.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 5, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5, + 11, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11, + 5 + ], + "texture": "#0" + } } }, { "name": "guppy_11", - "from": [14, 0, 5], - "to": [14.25, 0.25, 10.5], + "from": [ + 14, + 0, + 5 + ], + "to": [ + 14.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.25, 5, 14, 5.25], "texture": "#0"}, - "east": {"uv": [14, 5, 14.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 10.25, 14.25, 10.5], "texture": "#0"}, - "west": {"uv": [14, 5, 14.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5, 14.25, 10.5], "texture": "#0"}, - "down": {"uv": [14, 10.5, 14.25, 5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 5, + 14, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 5, + 14.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 10.25, + 14.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5, + 14.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5, + 14.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10.5, + 14.25, + 5 + ], + "texture": "#0" + } } }, { "name": "guppy_12", - "from": [6.25, 0, 5.25], - "to": [6.5, 0.25, 9], + "from": [ + 6.25, + 0, + 5.25 + ], + "to": [ + 6.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [6.5, 5.25, 6.25, 5.5], "texture": "#0"}, - "east": {"uv": [6.25, 5.25, 6.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.75, 6.5, 9], "texture": "#0"}, - "west": {"uv": [6.25, 5.25, 6.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5.25, 6.5, 9], "texture": "#0"}, - "down": {"uv": [6.25, 9, 6.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 5.25, + 6.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 6.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.75, + 6.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.25, + 6.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.25, + 6.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "guppy_13", - "from": [10.5, 0, 5.25], - "to": [10.75, 0.25, 10.5], + "from": [ + 10.5, + 0, + 5.25 + ], + "to": [ + 10.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.75, 5.25, 10.5, 5.5], "texture": "#0"}, - "east": {"uv": [10.5, 5.25, 10.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10.25, 10.75, 10.5], "texture": "#0"}, - "west": {"uv": [10.5, 5.25, 10.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.25, 10.75, 10.5], "texture": "#0"}, - "down": {"uv": [10.5, 10.5, 10.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.25, + 10.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10.25, + 10.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.25, + 10.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.25, + 10.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 10.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "guppy_14", - "from": [14.25, 0, 5.25], - "to": [14.5, 0.25, 10.25], + "from": [ + 14.25, + 0, + 5.25 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 5.25, 14.25, 5.5], "texture": "#0"}, - "east": {"uv": [14.25, 5.25, 14.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 10, 14.5, 10.25], "texture": "#0"}, - "west": {"uv": [14.25, 5.25, 14.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 5.25, 14.5, 10.25], "texture": "#0"}, - "down": {"uv": [14.25, 10.25, 14.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 5.25, + 14.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 5.25, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 5.25, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 5.25, + 14.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "guppy_15", - "from": [6, 0, 5.5], - "to": [6.25, 0.25, 9.25], + "from": [ + 6, + 0, + 5.5 + ], + "to": [ + 6.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.25, 5.5, 6, 5.75], "texture": "#0"}, - "east": {"uv": [6, 5.5, 6.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9, 6.25, 9.25], "texture": "#0"}, - "west": {"uv": [6, 5.5, 6.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.5, 6.25, 9.25], "texture": "#0"}, - "down": {"uv": [6, 9.25, 6.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.5, + 6.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 6.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.5, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.25, + 6.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "guppy_16", - "from": [7.75, 0, 5.5], - "to": [8, 0.25, 6.5], + "from": [ + 7.75, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [8, 5.5, 7.75, 5.75], "texture": "#0"}, - "east": {"uv": [7.75, 5.5, 8, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 6.25, 8, 6.5], "texture": "#0"}, - "west": {"uv": [7.75, 5.5, 8, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5.5, 8, 6.5], "texture": "#0"}, - "down": {"uv": [7.75, 6.5, 8, 5.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 5.5, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.5, + 8, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.5, + 8, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6.5, + 8, + 5.5 + ], + "texture": "#0" + } } }, { "name": "guppy_17", - "from": [10.25, 0, 5.5], - "to": [10.5, 0.25, 10.25], + "from": [ + 10.25, + 0, + 5.5 + ], + "to": [ + 10.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.5, 5.5, 10.25, 5.75], "texture": "#0"}, - "east": {"uv": [10.25, 5.5, 10.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10, 10.5, 10.25], "texture": "#0"}, - "west": {"uv": [10.25, 5.5, 10.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5.5, 10.5, 10.25], "texture": "#0"}, - "down": {"uv": [10.25, 10.25, 10.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 5.5, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.25, + 10.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "guppy_18", - "from": [5.75, 0, 5.75], - "to": [6, 0.25, 9.25], + "from": [ + 5.75, + 0, + 5.75 + ], + "to": [ + 6, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6, 5.75, 5.75, 6], "texture": "#0"}, - "east": {"uv": [5.75, 5.75, 6, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9, 6, 9.25], "texture": "#0"}, - "west": {"uv": [5.75, 5.75, 6, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.75, 6, 9.25], "texture": "#0"}, - "down": {"uv": [5.75, 9.25, 6, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.75, + 6, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.75, + 6, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.75, + 6, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.25, + 6, + 5.75 + ], + "texture": "#0" + } } }, { "name": "guppy_19", - "from": [10, 0, 5.75], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 5.75 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 5.75, 10, 6], "texture": "#0"}, - "east": {"uv": [10, 5.75, 10.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#0"}, - "west": {"uv": [10, 5.75, 10.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5.75, 10.25, 10], "texture": "#0"}, - "down": {"uv": [10, 10, 10.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 5.75, + 10, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.75, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.75, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "guppy_20", - "from": [14.5, 0, 5.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 5.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 5.75, 14.5, 6], "texture": "#0"}, - "east": {"uv": [14.5, 5.75, 14.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#0"}, - "west": {"uv": [14.5, 5.75, 14.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 5.75, 14.75, 10], "texture": "#0"}, - "down": {"uv": [14.5, 10, 14.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 5.75, + 14.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 5.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 5.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 5.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "guppy_21", - "from": [5.5, 0, 6], - "to": [5.75, 0.25, 9.25], + "from": [ + 5.5, + 0, + 6 + ], + "to": [ + 5.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5.75, 6, 5.5, 6.25], "texture": "#0"}, - "east": {"uv": [5.5, 6, 5.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9, 5.75, 9.25], "texture": "#0"}, - "west": {"uv": [5.5, 6, 5.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6, 5.75, 9.25], "texture": "#0"}, - "down": {"uv": [5.5, 9.25, 5.75, 6], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6, + 5.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.25, + 5.75, + 6 + ], + "texture": "#0" + } } }, { "name": "guppy_22", - "from": [9.75, 0, 6], - "to": [10, 0.25, 9.75], + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10, 6, 9.75, 6.25], "texture": "#0"}, - "east": {"uv": [9.75, 6, 10, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 6, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6, 10, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10, 6], "texture": "#0"} + "north": { + "uv": [ + 10, + 6, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6, + 10, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6, + 10, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10, + 6 + ], + "texture": "#0" + } } }, { "name": "guppy_23", - "from": [14.75, 0, 6], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#0"}, - "east": {"uv": [14.75, 6, 15, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#0"}, - "west": {"uv": [14.75, 6, 15, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6, 15, 9.75], "texture": "#0"}, - "down": {"uv": [14.75, 9.75, 15, 6], "texture": "#0"} + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 6 + ], + "texture": "#0" + } } }, { "name": "guppy_24", - "from": [3.5, 0, 6.25], - "to": [5.5, 0.25, 9.25], + "from": [ + 3.5, + 0, + 6.25 + ], + "to": [ + 5.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5.5, 6.25, 3.5, 6.5], "texture": "#0"}, - "east": {"uv": [5.25, 6.25, 5.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9, 5.5, 9.25], "texture": "#0"}, - "west": {"uv": [3.5, 6.25, 3.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.25, 5.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.5, 9.25, 5.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.25, + 3.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.25, + 5.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.25, + 3.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.25, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.25, + 5.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "guppy_25", - "from": [9.5, 0, 6.25], - "to": [9.75, 0.25, 9.5], + "from": [ + 9.5, + 0, + 6.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 6.25, 9.5, 6.5], "texture": "#0"}, - "east": {"uv": [9.5, 6.25, 9.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 6.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.25, 9.75, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 9.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 6.25, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "guppy_26", - "from": [2.5, 0, 6.5], - "to": [3.5, 0.25, 9], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 3.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.5, 6.5, 2.5, 6.75], "texture": "#0"}, - "east": {"uv": [3.25, 6.5, 3.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.75, 3.5, 9], "texture": "#0"}, - "west": {"uv": [2.5, 6.5, 2.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.5, 3.5, 9], "texture": "#0"}, - "down": {"uv": [2.5, 9, 3.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.5, + 3.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 3.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9, + 3.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "guppy_27", - "from": [9.25, 0, 6.5], - "to": [9.5, 0.25, 9], + "from": [ + 9.25, + 0, + 6.5 + ], + "to": [ + 9.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.5, 6.5, 9.25, 6.75], "texture": "#0"}, - "east": {"uv": [9.25, 6.5, 9.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.75, 9.5, 9], "texture": "#0"}, - "west": {"uv": [9.25, 6.5, 9.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.5, 9.5, 9], "texture": "#0"}, - "down": {"uv": [9.25, 9, 9.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 6.5, + 9.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.5, + 9.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.5, + 9.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.5, + 9.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "guppy_28", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#0"}, - "east": {"uv": [15, 6.5, 15.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#0"}, - "west": {"uv": [15, 6.5, 15.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.5, 15.25, 9.5], "texture": "#0"}, - "down": {"uv": [15, 9.5, 15.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "guppy_29", - "from": [2, 0, 6.75], - "to": [2.5, 0.25, 9], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.5, 6.75, 2, 7], "texture": "#0"}, - "east": {"uv": [2.25, 6.75, 2.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.5, 9], "texture": "#0"}, - "west": {"uv": [2, 6.75, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.75, 2.5, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6.75, + 2, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "guppy_30", - "from": [7.75, 0, 6.75], - "to": [9.25, 0.25, 8.75], + "from": [ + 7.75, + 0, + 6.75 + ], + "to": [ + 9.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [9.25, 6.75, 7.75, 7], "texture": "#0"}, - "east": {"uv": [9, 6.75, 9.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.5, 9.25, 8.75], "texture": "#0"}, - "west": {"uv": [7.75, 6.75, 8, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.75, 9.25, 8.75], "texture": "#0"}, - "down": {"uv": [7.75, 8.75, 9.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.75, + 9.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.5, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.75, + 8, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.75, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8.75, + 9.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "guppy_31", - "from": [1.25, 0, 7], - "to": [2, 0.25, 8.5], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [2, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.75, 7, 2, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.25, 2, 8.5], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 2, 8.5], "texture": "#0"}, - "down": {"uv": [1.25, 8.5, 2, 7], "texture": "#0"} + "north": { + "uv": [ + 2, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 2, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.5, + 2, + 7 + ], + "texture": "#0" + } } }, { "name": "guppy_32", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 8.25], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 1.25, 8.25], "texture": "#0"}, - "down": {"uv": [1, 8.25, 1.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "guppy_33", - "from": [15.25, 0, 7.25], - "to": [15.5, 0.25, 8.75], + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.5, 7.25, 15.25, 7.5], "texture": "#0"}, - "east": {"uv": [15.25, 7.25, 15.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#0"}, - "west": {"uv": [15.25, 7.25, 15.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.25, 15.5, 8.75], "texture": "#0"}, - "down": {"uv": [15.25, 8.75, 15.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "guppy_34", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 8], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 8], "texture": "#0"}, - "down": {"uv": [0.75, 8, 1, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "guppy_35", - "from": [1.5, 0, 8.5], - "to": [2, 0.25, 8.75], + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 2, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2, 8.5, 1.5, 8.75], "texture": "#0"}, - "east": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.5, 2, 8.75], "texture": "#0"}, - "west": {"uv": [1.5, 8.5, 1.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.5, 2, 8.75], "texture": "#0"}, - "down": {"uv": [1.5, 8.75, 2, 8.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 2, + 8.5 + ], + "texture": "#0" + } } }, { "name": "guppy_36", - "from": [1.75, 0, 8.75], - "to": [2, 0.25, 9], + "from": [ + 1.75, + 0, + 8.75 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 8.75, 1.75, 9], "texture": "#0"}, - "east": {"uv": [1.75, 8.75, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.75, 8.75, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2, 8.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2, + 8.75 + ], + "texture": "#0" + } } }, { "name": "guppy_37", - "from": [6.75, 0, 8.75], - "to": [7.25, 0.25, 9], + "from": [ + 6.75, + 0, + 8.75 + ], + "to": [ + 7.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.25, 8.75, 6.75, 9], "texture": "#0"}, - "east": {"uv": [7, 8.75, 7.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.75, 7.25, 9], "texture": "#0"}, - "west": {"uv": [6.75, 8.75, 7, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 8.75, 7.25, 9], "texture": "#0"}, - "down": {"uv": [6.75, 9, 7.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9, + 7.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "guppy_38", - "from": [3.25, 0, 9], - "to": [3.5, 0.25, 9.25], + "from": [ + 3.25, + 0, + 9 + ], + "to": [ + 3.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.5, 9, 3.25, 9.25], "texture": "#0"}, - "east": {"uv": [3.25, 9, 3.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "west": {"uv": [3.25, 9, 3.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.25, 9.25, 3.5, 9], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9 + ], + "texture": "#0" + } } }, { "name": "guppy_39", - "from": [4, 0, 9.25], - "to": [5, 0.25, 9.5], + "from": [ + 4, + 0, + 9.25 + ], + "to": [ + 5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5, 9.25, 4, 9.5], "texture": "#0"}, - "east": {"uv": [4.75, 9.25, 5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.25, 5, 9.5], "texture": "#0"}, - "west": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.25, 5, 9.5], "texture": "#0"}, - "down": {"uv": [4, 9.5, 5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 5, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.5, + 5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "guppy_40", - "from": [4.25, 0, 9.5], - "to": [5.25, 0.25, 10], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 5.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.25, 9.5, 4.25, 9.75], "texture": "#0"}, - "east": {"uv": [5, 9.5, 5.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.75, 5.25, 10], "texture": "#0"}, - "west": {"uv": [4.25, 9.5, 4.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.5, 5.25, 10], "texture": "#0"}, - "down": {"uv": [4.25, 10, 5.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.5, + 5.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 5.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10, + 5.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "guppy_41", - "from": [5.25, 0, 9.75], - "to": [5.5, 0.25, 10.5], + "from": [ + 5.25, + 0, + 9.75 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 9.75, 5.25, 10], "texture": "#0"}, - "east": {"uv": [5.25, 9.75, 5.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#0"}, - "west": {"uv": [5.25, 9.75, 5.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.75, 5.5, 10.5], "texture": "#0"}, - "down": {"uv": [5.25, 10.5, 5.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 5.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "guppy_42", - "from": [4.5, 0, 10], - "to": [5.25, 0.25, 10.25], + "from": [ + 4.5, + 0, + 10 + ], + "to": [ + 5.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.25, 10, 4.5, 10.25], "texture": "#0"}, - "east": {"uv": [5, 10, 5.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10, 5.25, 10.25], "texture": "#0"}, - "west": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10, 5.25, 10.25], "texture": "#0"}, - "down": {"uv": [4.5, 10.25, 5.25, 10], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10, + 5.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10, + 5.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.25, + 5.25, + 10 + ], + "texture": "#0" + } } }, { "name": "guppy_43", - "from": [4.75, 0, 10.25], - "to": [5.25, 0.25, 10.5], + "from": [ + 4.75, + 0, + 10.25 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.25, 10.25, 4.75, 10.5], "texture": "#0"}, - "east": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10.25, 5.25, 10.5], "texture": "#0"}, - "west": {"uv": [4.75, 10.25, 5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10.25, 5.25, 10.5], "texture": "#0"}, - "down": {"uv": [4.75, 10.5, 5.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10.25, + 4.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.5, + 5.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "guppy_44", - "from": [5, 0, 10.5], - "to": [5.25, 0.25, 10.75], + "from": [ + 5, + 0, + 10.5 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 10.5, 5, 10.75], "texture": "#0"}, - "east": {"uv": [5, 10.5, 5.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#0"}, - "west": {"uv": [5, 10.5, 5.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#0"}, - "down": {"uv": [5, 10.75, 5.25, 10.5], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.75, + 5.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "guppy_45", - "from": [11.25, 0, 10.75], - "to": [11.5, 0.25, 11], + "from": [ + 11.25, + 0, + 10.75 + ], + "to": [ + 11.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.5, 10.75, 11.25, 11], "texture": "#0"}, - "east": {"uv": [11.25, 10.75, 11.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10.75, 11.5, 11], "texture": "#0"}, - "west": {"uv": [11.25, 10.75, 11.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 10.75, 11.5, 11], "texture": "#0"}, - "down": {"uv": [11.25, 11, 11.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 10.75, + 11.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 11, + 11.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "guppy_46", - "from": [11.75, 0, 11.25], - "to": [12, 0.25, 11.5], + "from": [ + 11.75, + 0, + 11.25 + ], + "to": [ + 12, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12, 11.25, 11.75, 11.5], "texture": "#0"}, - "east": {"uv": [11.75, 11.25, 12, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 11.25, 12, 11.5], "texture": "#0"}, - "west": {"uv": [11.75, 11.25, 12, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 11.25, 12, 11.5], "texture": "#0"}, - "down": {"uv": [11.75, 11.5, 12, 11.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 11.25, + 11.75, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 11.25, + 12, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 11.25, + 12, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 11.25, + 12, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 11.25, + 12, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 11.5, + 12, + 11.25 + ], + "texture": "#0" + } } }, { "name": "guppy_47", - "from": [12.25, 0, 11.5], - "to": [13, 0.25, 11.75], + "from": [ + 12.25, + 0, + 11.5 + ], + "to": [ + 13, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [13, 11.5, 12.25, 11.75], "texture": "#0"}, - "east": {"uv": [12.75, 11.5, 13, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 11.5, 13, 11.75], "texture": "#0"}, - "west": {"uv": [12.25, 11.5, 12.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 11.5, 13, 11.75], "texture": "#0"}, - "down": {"uv": [12.25, 11.75, 13, 11.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 11.5, + 12.25, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 11.5, + 13, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 11.5, + 13, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 11.5, + 12.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 11.5, + 13, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 11.75, + 13, + 11.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "guppy", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/hanahigeutubo.json b/pack/assets/minecraft/models/fish/hanahigeutubo.json index 32484c1f..d023c59b 100644 --- a/pack/assets/minecraft/models/fish/hanahigeutubo.json +++ b/pack/assets/minecraft/models/fish/hanahigeutubo.json @@ -2,760 +2,4043 @@ "__name": "ハナヒゲウツボ", "credit": "Made with Blockbench", "textures": { - "0": "fish/hanahigeutubo", - "particle": "fish/hanahigeutubo" + "0": "item/fish/hanahigeutubo", + "particle": "item/fish/hanahigeutubo" }, "elements": [ { "name": "hanahigeutubo_0", - "from": [12.75, 0, 5.75], - "to": [13.5, 0.25, 6.5], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [13.5, 5.75, 12.75, 6], "texture": "#0"}, - "east": {"uv": [13.25, 5.75, 13.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 6.25, 13.5, 6.5], "texture": "#0"}, - "west": {"uv": [12.75, 5.75, 13, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 5.75, 13.5, 6.5], "texture": "#0"}, - "down": {"uv": [12.75, 6.5, 13.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 5.75, + 12.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 5.75, + 13.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 6.25, + 13.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 6.5, + 13.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_1", - "from": [12.5, 0, 6], - "to": [12.75, 0.25, 9.75], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.75, 6, 12.5, 6.25], "texture": "#0"}, - "east": {"uv": [12.5, 6, 12.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 9.5, 12.75, 9.75], "texture": "#0"}, - "west": {"uv": [12.5, 6, 12.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6, 12.75, 9.75], "texture": "#0"}, - "down": {"uv": [12.5, 9.75, 12.75, 6], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 6, + 12.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 9.5, + 12.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6, + 12.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9.75, + 12.75, + 6 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_2", - "from": [13.5, 0, 6], - "to": [13.75, 0.25, 7.5], + "from": [ + 13.5, + 0, + 6 + ], + "to": [ + 13.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [13.75, 6, 13.5, 6.25], "texture": "#0"}, - "east": {"uv": [13.5, 6, 13.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.25, 13.75, 7.5], "texture": "#0"}, - "west": {"uv": [13.5, 6, 13.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6, 13.75, 7.5], "texture": "#0"}, - "down": {"uv": [13.5, 7.5, 13.75, 6], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 6, + 13.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6, + 13.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6, + 13.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.5, + 13.75, + 6 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_3", - "from": [8.25, 0, 6.25], - "to": [9, 0.25, 7.25], + "from": [ + 8.25, + 0, + 6.25 + ], + "to": [ + 9, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [9, 6.25, 8.25, 6.5], "texture": "#0"}, - "east": {"uv": [8.75, 6.25, 9, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7, 9, 7.25], "texture": "#0"}, - "west": {"uv": [8.25, 6.25, 8.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6.25, 9, 7.25], "texture": "#0"}, - "down": {"uv": [8.25, 7.25, 9, 6.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 6.25, + 8.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6.25, + 9, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6.25, + 8.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6.25, + 9, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7.25, + 9, + 6.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_4", - "from": [12.25, 0, 6.25], - "to": [12.5, 0.25, 8.5], + "from": [ + 12.25, + 0, + 6.25 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.5, 6.25, 12.25, 6.5], "texture": "#0"}, - "east": {"uv": [12.25, 6.25, 12.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#0"}, - "west": {"uv": [12.25, 6.25, 12.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6.25, 12.5, 8.5], "texture": "#0"}, - "down": {"uv": [12.25, 8.5, 12.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.25, + 12.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 12.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_5", - "from": [13.75, 0, 6.25], - "to": [14, 0.25, 8.25], + "from": [ + 13.75, + 0, + 6.25 + ], + "to": [ + 14, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14, 6.25, 13.75, 6.5], "texture": "#0"}, - "east": {"uv": [13.75, 6.25, 14, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8, 14, 8.25], "texture": "#0"}, - "west": {"uv": [13.75, 6.25, 14, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.25, 14, 8.25], "texture": "#0"}, - "down": {"uv": [13.75, 8.25, 14, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 6.25, + 13.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.25, + 14, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.25, + 14, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.25, + 14, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.25, + 14, + 6.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_6", - "from": [8, 0, 6.5], - "to": [8.25, 0.25, 8.75], + "from": [ + 8, + 0, + 6.5 + ], + "to": [ + 8.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8.25, 6.5, 8, 6.75], "texture": "#0"}, - "east": {"uv": [8, 6.5, 8.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8.5, 8.25, 8.75], "texture": "#0"}, - "west": {"uv": [8, 6.5, 8.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 6.5, 8.25, 8.75], "texture": "#0"}, - "down": {"uv": [8, 8.75, 8.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 6.5, + 8, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.5, + 8.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 8.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 6.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8.75, + 8.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_7", - "from": [9, 0, 6.5], - "to": [9.25, 0.25, 7.5], + "from": [ + 9, + 0, + 6.5 + ], + "to": [ + 9.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [9.25, 6.5, 9, 6.75], "texture": "#0"}, - "east": {"uv": [9, 6.5, 9.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.25, 9.25, 7.5], "texture": "#0"}, - "west": {"uv": [9, 6.5, 9.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6.5, 9.25, 7.5], "texture": "#0"}, - "down": {"uv": [9, 7.5, 9.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.5, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.5, + 9.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_8", - "from": [10.75, 0, 6.5], - "to": [11.25, 0.25, 7.5], + "from": [ + 10.75, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [11.25, 6.5, 10.75, 6.75], "texture": "#0"}, - "east": {"uv": [11, 6.5, 11.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 7.25, 11.25, 7.5], "texture": "#0"}, - "west": {"uv": [10.75, 6.5, 11, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.5, 11.25, 7.5], "texture": "#0"}, - "down": {"uv": [10.75, 7.5, 11.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.5, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.25, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.5, + 11, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.5, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7.5, + 11.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_9", - "from": [12, 0, 6.5], - "to": [12.25, 0.25, 8], + "from": [ + 12, + 0, + 6.5 + ], + "to": [ + 12.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [12.25, 6.5, 12, 6.75], "texture": "#0"}, - "east": {"uv": [12, 6.5, 12.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7.75, 12.25, 8], "texture": "#0"}, - "west": {"uv": [12, 6.5, 12.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.5, 12.25, 8], "texture": "#0"}, - "down": {"uv": [12, 8, 12.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.5, + 12.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.75, + 12.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.5, + 12.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.5, + 12.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8, + 12.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_10", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 7.5], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#0"}, - "east": {"uv": [14, 6.5, 14.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.25, 14.25, 7.5], "texture": "#0"}, - "west": {"uv": [14, 6.5, 14.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.5, 14.25, 7.5], "texture": "#0"}, - "down": {"uv": [14, 7.5, 14.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.5, + 14.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_11", - "from": [4.5, 0, 6.75], - "to": [6, 0.25, 7.75], + "from": [ + 4.5, + 0, + 6.75 + ], + "to": [ + 6, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [6, 6.75, 4.5, 7], "texture": "#0"}, - "east": {"uv": [5.75, 6.75, 6, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7.5, 6, 7.75], "texture": "#0"}, - "west": {"uv": [4.5, 6.75, 4.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6.75, 6, 7.75], "texture": "#0"}, - "down": {"uv": [4.5, 7.75, 6, 6.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 6.75, + 4.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6.75, + 6, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.5, + 6, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6.75, + 4.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6.75, + 6, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.75, + 6, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_12", - "from": [7.75, 0, 6.75], - "to": [8, 0.25, 9], + "from": [ + 7.75, + 0, + 6.75 + ], + "to": [ + 8, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8, 6.75, 7.75, 7], "texture": "#0"}, - "east": {"uv": [7.75, 6.75, 8, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#0"}, - "west": {"uv": [7.75, 6.75, 8, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.75, 8, 9], "texture": "#0"}, - "down": {"uv": [7.75, 9, 8, 6.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6.75, + 8, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.75, + 8, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.75, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_13", - "from": [9.25, 0, 6.75], - "to": [9.5, 0.25, 8.5], + "from": [ + 9.25, + 0, + 6.75 + ], + "to": [ + 9.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [9.5, 6.75, 9.25, 7], "texture": "#0"}, - "east": {"uv": [9.25, 6.75, 9.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, - "west": {"uv": [9.25, 6.75, 9.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.75, 9.5, 8.5], "texture": "#0"}, - "down": {"uv": [9.25, 8.5, 9.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 6.75, + 9.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.75, + 9.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.75, + 9.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.75, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 8.5, + 9.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_14", - "from": [10.5, 0, 6.75], - "to": [10.75, 0.25, 7.75], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 10.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [10.75, 6.75, 10.5, 7], "texture": "#0"}, - "east": {"uv": [10.5, 6.75, 10.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.5, 10.75, 7.75], "texture": "#0"}, - "west": {"uv": [10.5, 6.75, 10.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.75, 10.75, 7.75], "texture": "#0"}, - "down": {"uv": [10.5, 7.75, 10.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7.75, + 10.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_15", - "from": [11.25, 0, 6.75], - "to": [11.5, 0.25, 10], + "from": [ + 11.25, + 0, + 6.75 + ], + "to": [ + 11.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.5, 6.75, 11.25, 7], "texture": "#0"}, - "east": {"uv": [11.25, 6.75, 11.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9.75, 11.5, 10], "texture": "#0"}, - "west": {"uv": [11.25, 6.75, 11.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.75, 11.5, 10], "texture": "#0"}, - "down": {"uv": [11.25, 10, 11.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10, + 11.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_16", - "from": [4, 0, 7], - "to": [4.5, 0.25, 8], + "from": [ + 4, + 0, + 7 + ], + "to": [ + 4.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [4.5, 7, 4, 7.25], "texture": "#0"}, - "east": {"uv": [4.25, 7, 4.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7.75, 4.5, 8], "texture": "#0"}, - "west": {"uv": [4, 7, 4.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7, 4.5, 8], "texture": "#0"}, - "down": {"uv": [4, 8, 4.5, 7], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7, + 4.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.75, + 4.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7, + 4.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7, + 4.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8, + 4.5, + 7 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_17", - "from": [6, 0, 7], - "to": [6.5, 0.25, 8.25], + "from": [ + 6, + 0, + 7 + ], + "to": [ + 6.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [6.5, 7, 6, 7.25], "texture": "#0"}, - "east": {"uv": [6.25, 7, 6.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8, 6.5, 8.25], "texture": "#0"}, - "west": {"uv": [6, 7, 6.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 7, 6.5, 8.25], "texture": "#0"}, - "down": {"uv": [6, 8.25, 6.5, 7], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 7, + 6, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 7, + 6.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7, + 6.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8.25, + 6.5, + 7 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_18", - "from": [9.5, 0, 7], - "to": [9.75, 0.25, 8.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 9.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [9.75, 7, 9.5, 7.25], "texture": "#0"}, - "east": {"uv": [9.5, 7, 9.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8, 9.75, 8.25], "texture": "#0"}, - "west": {"uv": [9.5, 7, 9.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7, 9.75, 8.25], "texture": "#0"}, - "down": {"uv": [9.5, 8.25, 9.75, 7], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7, + 9.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8.25, + 9.75, + 7 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_19", - "from": [10.25, 0, 7], - "to": [10.5, 0.25, 9.5], + "from": [ + 10.25, + 0, + 7 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.5, 7, 10.25, 7.25], "texture": "#0"}, - "east": {"uv": [10.25, 7, 10.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "west": {"uv": [10.25, 7, 10.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7, 10.5, 9.5], "texture": "#0"}, - "down": {"uv": [10.25, 9.5, 10.5, 7], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7, + 10.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.5, + 10.5, + 7 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_20", - "from": [11.5, 0, 7], - "to": [11.75, 0.25, 10.25], + "from": [ + 11.5, + 0, + 7 + ], + "to": [ + 11.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.75, 7, 11.5, 7.25], "texture": "#0"}, - "east": {"uv": [11.5, 7, 11.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10, 11.75, 10.25], "texture": "#0"}, - "west": {"uv": [11.5, 7, 11.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7, 11.75, 10.25], "texture": "#0"}, - "down": {"uv": [11.5, 10.25, 11.75, 7], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 7, + 11.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7, + 11.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7, + 11.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.25, + 11.75, + 7 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_21", - "from": [1, 0, 7.25], - "to": [3, 0.25, 8], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 3, + 0.25, + 8 + ], "faces": { - "north": {"uv": [3, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [2.75, 7.25, 3, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.75, 3, 8], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 3, 8], "texture": "#0"}, - "down": {"uv": [1, 8, 3, 7.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.25, + 3, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.75, + 3, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 3, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8, + 3, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_22", - "from": [3.5, 0, 7.25], - "to": [4, 0.25, 8.5], + "from": [ + 3.5, + 0, + 7.25 + ], + "to": [ + 4, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [4, 7.25, 3.5, 7.5], "texture": "#0"}, - "east": {"uv": [3.75, 7.25, 4, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.25, 4, 8.5], "texture": "#0"}, - "west": {"uv": [3.5, 7.25, 3.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7.25, 4, 8.5], "texture": "#0"}, - "down": {"uv": [3.5, 8.5, 4, 7.25], "texture": "#0"} + "north": { + "uv": [ + 4, + 7.25, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7.25, + 4, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.25, + 4, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7.25, + 3.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7.25, + 4, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.5, + 4, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_23", - "from": [6.5, 0, 7.25], - "to": [6.75, 0.25, 8.75], + "from": [ + 6.5, + 0, + 7.25 + ], + "to": [ + 6.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [6.75, 7.25, 6.5, 7.5], "texture": "#0"}, - "east": {"uv": [6.5, 7.25, 6.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.5, 6.75, 8.75], "texture": "#0"}, - "west": {"uv": [6.5, 7.25, 6.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 7.25, 6.75, 8.75], "texture": "#0"}, - "down": {"uv": [6.5, 8.75, 6.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 7.25, + 6.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.25, + 6.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.25, + 6.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7.25, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8.75, + 6.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_24", - "from": [7.5, 0, 7.25], - "to": [7.75, 0.25, 8], + "from": [ + 7.5, + 0, + 7.25 + ], + "to": [ + 7.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [7.75, 7.25, 7.5, 7.5], "texture": "#0"}, - "east": {"uv": [7.5, 7.25, 7.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 7.75, 7.75, 8], "texture": "#0"}, - "west": {"uv": [7.5, 7.25, 7.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 7.25, 7.75, 8], "texture": "#0"}, - "down": {"uv": [7.5, 8, 7.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 7.25, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.25, + 7.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.25, + 7.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.25, + 7.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8, + 7.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_25", - "from": [8.25, 0, 7.25], - "to": [8.5, 0.25, 7.5], + "from": [ + 8.25, + 0, + 7.25 + ], + "to": [ + 8.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [8.5, 7.25, 8.25, 7.5], "texture": "#0"}, - "east": {"uv": [8.25, 7.25, 8.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7.25, 8.5, 7.5], "texture": "#0"}, - "west": {"uv": [8.25, 7.25, 8.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7.25, 8.5, 7.5], "texture": "#0"}, - "down": {"uv": [8.25, 7.5, 8.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 7.25, + 8.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_26", - "from": [9.75, 0, 7.25], - "to": [10.25, 0.25, 9.75], + "from": [ + 9.75, + 0, + 7.25 + ], + "to": [ + 10.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.25, 7.25, 9.75, 7.5], "texture": "#0"}, - "east": {"uv": [10, 7.25, 10.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10.25, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 7.25, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7.25, 10.25, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 7.25, + 9.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.25, + 10.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7.25, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7.25, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_27", - "from": [11.75, 0, 7.25], - "to": [12, 0.25, 8.25], + "from": [ + 11.75, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 7.25, 11.75, 7.5], "texture": "#0"}, - "east": {"uv": [11.75, 7.25, 12, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8, 12, 8.25], "texture": "#0"}, - "west": {"uv": [11.75, 7.25, 12, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.25, 12, 8.25], "texture": "#0"}, - "down": {"uv": [11.75, 8.25, 12, 7.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 7.25, + 11.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.25, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.25, + 12, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 12, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_28", - "from": [14.75, 0, 7.25], - "to": [15.25, 0.25, 7.5], + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.25, 7.25, 14.75, 7.5], "texture": "#0"}, - "east": {"uv": [15, 7.25, 15.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.25, 15.25, 7.5], "texture": "#0"}, - "west": {"uv": [14.75, 7.25, 15, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.25, 15.25, 7.5], "texture": "#0"}, - "down": {"uv": [14.75, 7.5, 15.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_29", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 7.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "down": {"uv": [0.75, 7.75, 1, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 7.75, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_30", - "from": [3, 0, 7.5], - "to": [3.5, 0.25, 8.5], + "from": [ + 3, + 0, + 7.5 + ], + "to": [ + 3.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3.5, 7.5, 3, 7.75], "texture": "#0"}, - "east": {"uv": [3.25, 7.5, 3.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.25, 3.5, 8.5], "texture": "#0"}, - "west": {"uv": [3, 7.5, 3.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7.5, 3.5, 8.5], "texture": "#0"}, - "down": {"uv": [3, 8.5, 3.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 7.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.5, + 3.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7.5, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 3.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_31", - "from": [6.75, 0, 7.5], - "to": [7, 0.25, 9], + "from": [ + 6.75, + 0, + 7.5 + ], + "to": [ + 7, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7, 7.5, 6.75, 7.75], "texture": "#0"}, - "east": {"uv": [6.75, 7.5, 7, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.75, 7, 9], "texture": "#0"}, - "west": {"uv": [6.75, 7.5, 7, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 7.5, 7, 9], "texture": "#0"}, - "down": {"uv": [6.75, 9, 7, 7.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7.5, + 7, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 7.5, + 7, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.5, + 7, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9, + 7, + 7.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_32", - "from": [14.5, 0, 7.5], - "to": [14.75, 0.25, 8.25], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#0"}, - "east": {"uv": [14.5, 7.5, 14.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#0"}, - "west": {"uv": [14.5, 7.5, 14.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.5, 14.75, 8.25], "texture": "#0"}, - "down": {"uv": [14.5, 8.25, 14.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 14.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_33", - "from": [5.75, 0, 7.75], - "to": [6, 0.25, 8], + "from": [ + 5.75, + 0, + 7.75 + ], + "to": [ + 6, + 0.25, + 8 + ], "faces": { - "north": {"uv": [6, 7.75, 5.75, 8], "texture": "#0"}, - "east": {"uv": [5.75, 7.75, 6, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 7.75, 6, 8], "texture": "#0"}, - "west": {"uv": [5.75, 7.75, 6, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7.75, 6, 8], "texture": "#0"}, - "down": {"uv": [5.75, 8, 6, 7.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 7.75, + 5.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8, + 6, + 7.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_34", - "from": [7, 0, 7.75], - "to": [7.25, 0.25, 9], + "from": [ + 7, + 0, + 7.75 + ], + "to": [ + 7.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.25, 7.75, 7, 8], "texture": "#0"}, - "east": {"uv": [7, 7.75, 7.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8.75, 7.25, 9], "texture": "#0"}, - "west": {"uv": [7, 7.75, 7.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7.75, 7.25, 9], "texture": "#0"}, - "down": {"uv": [7, 9, 7.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 7.75, + 7, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7.75, + 7.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.75, + 7.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9, + 7.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_35", - "from": [9, 0, 7.75], - "to": [9.25, 0.25, 9.75], + "from": [ + 9, + 0, + 7.75 + ], + "to": [ + 9.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.25, 7.75, 9, 8], "texture": "#0"}, - "east": {"uv": [9, 7.75, 9.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#0"}, - "west": {"uv": [9, 7.75, 9.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.75, 9.25, 9.75], "texture": "#0"}, - "down": {"uv": [9, 9.75, 9.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 7.75, + 9, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.75, + 9.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.75, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.75, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_36", - "from": [1.25, 0, 8], - "to": [3, 0.25, 8.25], + "from": [ + 1.25, + 0, + 8 + ], + "to": [ + 3, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [3, 8, 1.25, 8.25], "texture": "#0"}, - "east": {"uv": [2.75, 8, 3, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8, 3, 8.25], "texture": "#0"}, - "west": {"uv": [1.25, 8, 1.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8, 3, 8.25], "texture": "#0"}, - "down": {"uv": [1.25, 8.25, 3, 8], "texture": "#0"} + "north": { + "uv": [ + 3, + 8, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8, + 3, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8, + 3, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8, + 1.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8, + 3, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.25, + 3, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_37", - "from": [4, 0, 8], - "to": [4.25, 0.25, 8.25], + "from": [ + 4, + 0, + 8 + ], + "to": [ + 4.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [4.25, 8, 4, 8.25], "texture": "#0"}, - "east": {"uv": [4, 8, 4.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 8, 4.25, 8.25], "texture": "#0"}, - "west": {"uv": [4, 8, 4.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 8, 4.25, 8.25], "texture": "#0"}, - "down": {"uv": [4, 8.25, 4.25, 8], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 8, + 4, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.25, + 4.25, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_38", - "from": [8.25, 0, 8], - "to": [8.5, 0.25, 8.5], + "from": [ + 8.25, + 0, + 8 + ], + "to": [ + 8.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [8.5, 8, 8.25, 8.25], "texture": "#0"}, - "east": {"uv": [8.25, 8, 8.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.25, 8.5, 8.5], "texture": "#0"}, - "west": {"uv": [8.25, 8, 8.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 8, 8.5, 8.5], "texture": "#0"}, - "down": {"uv": [8.25, 8.5, 8.5, 8], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 8, + 8.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8, + 8.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 8, + 8.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 8, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_39", - "from": [8.75, 0, 8], - "to": [9, 0.25, 9.5], + "from": [ + 8.75, + 0, + 8 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 8, 8.75, 8.25], "texture": "#0"}, - "east": {"uv": [8.75, 8, 9, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#0"}, - "west": {"uv": [8.75, 8, 9, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 8, 9, 9.5], "texture": "#0"}, - "down": {"uv": [8.75, 9.5, 9, 8], "texture": "#0"} + "north": { + "uv": [ + 9, + 8, + 8.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8, + 9, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 8, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.5, + 9, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_40", - "from": [11, 0, 8], - "to": [11.25, 0.25, 9.75], + "from": [ + 11, + 0, + 8 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.25, 8, 11, 8.25], "texture": "#0"}, - "east": {"uv": [11, 8, 11.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#0"}, - "west": {"uv": [11, 8, 11.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8, 11.25, 9.75], "texture": "#0"}, - "down": {"uv": [11, 9.75, 11.25, 8], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8, + 11.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.75, + 11.25, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_41", - "from": [12.75, 0, 8], - "to": [13, 0.25, 9.5], + "from": [ + 12.75, + 0, + 8 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 8, 12.75, 8.25], "texture": "#0"}, - "east": {"uv": [12.75, 8, 13, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 9.25, 13, 9.5], "texture": "#0"}, - "west": {"uv": [12.75, 8, 13, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8, 13, 9.5], "texture": "#0"}, - "down": {"uv": [12.75, 9.5, 13, 8], "texture": "#0"} + "north": { + "uv": [ + 13, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 9.25, + 13, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8, + 13, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8, + 13, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9.5, + 13, + 8 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_42", - "from": [1.5, 0, 8.25], - "to": [3, 0.25, 8.5], + "from": [ + 1.5, + 0, + 8.25 + ], + "to": [ + 3, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3, 8.25, 1.5, 8.5], "texture": "#0"}, - "east": {"uv": [2.75, 8.25, 3, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.25, 3, 8.5], "texture": "#0"}, - "west": {"uv": [1.5, 8.25, 1.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.25, 3, 8.5], "texture": "#0"}, - "down": {"uv": [1.5, 8.5, 3, 8.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 8.25, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.5, + 3, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_43", - "from": [6.25, 0, 8.25], - "to": [6.5, 0.25, 8.5], + "from": [ + 6.25, + 0, + 8.25 + ], + "to": [ + 6.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [6.5, 8.25, 6.25, 8.5], "texture": "#0"}, - "east": {"uv": [6.25, 8.25, 6.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.25, 6.5, 8.5], "texture": "#0"}, - "west": {"uv": [6.25, 8.25, 6.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 8.25, 6.5, 8.5], "texture": "#0"}, - "down": {"uv": [6.25, 8.5, 6.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 8.25, + 6.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_44", - "from": [7.25, 0, 8.25], - "to": [7.75, 0.25, 9], + "from": [ + 7.25, + 0, + 8.25 + ], + "to": [ + 7.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [7.75, 8.25, 7.25, 8.5], "texture": "#0"}, - "east": {"uv": [7.5, 8.25, 7.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.75, 7.75, 9], "texture": "#0"}, - "west": {"uv": [7.25, 8.25, 7.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 8.25, 7.75, 9], "texture": "#0"}, - "down": {"uv": [7.25, 9, 7.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 8.25, + 7.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.25, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 8.25, + 7.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 8.25, + 7.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9, + 7.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_45", - "from": [8.5, 0, 8.25], - "to": [8.75, 0.25, 9.25], + "from": [ + 8.5, + 0, + 8.25 + ], + "to": [ + 8.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.75, 8.25, 8.5, 8.5], "texture": "#0"}, - "east": {"uv": [8.5, 8.25, 8.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9, 8.75, 9.25], "texture": "#0"}, - "west": {"uv": [8.5, 8.25, 8.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 8.25, 8.75, 9.25], "texture": "#0"}, - "down": {"uv": [8.5, 9.25, 8.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.25, + 8.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.25, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 8.25, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 8.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_46", - "from": [13, 0, 8.25], - "to": [13.25, 0.25, 9.25], + "from": [ + 13, + 0, + 8.25 + ], + "to": [ + 13.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.25, 8.25, 13, 8.5], "texture": "#0"}, - "east": {"uv": [13, 8.25, 13.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9, 13.25, 9.25], "texture": "#0"}, - "west": {"uv": [13, 8.25, 13.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8.25, 13.25, 9.25], "texture": "#0"}, - "down": {"uv": [13, 9.25, 13.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8.25, + 13.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9, + 13.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.25, + 13.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8.25, + 13.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.25, + 13.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_47", - "from": [14, 0, 8.25], - "to": [14.5, 0.25, 8.5], + "from": [ + 14, + 0, + 8.25 + ], + "to": [ + 14.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.5, 8.25, 14, 8.5], "texture": "#0"}, - "east": {"uv": [14.25, 8.25, 14.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.25, 14.5, 8.5], "texture": "#0"}, - "west": {"uv": [14, 8.25, 14.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.25, 14.5, 8.5], "texture": "#0"}, - "down": {"uv": [14, 8.5, 14.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 8.5, + 14.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_48", - "from": [10.75, 0, 8.5], - "to": [11, 0.25, 9.5], + "from": [ + 10.75, + 0, + 8.5 + ], + "to": [ + 11, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11, 8.5, 10.75, 8.75], "texture": "#0"}, - "east": {"uv": [10.75, 8.5, 11, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "west": {"uv": [10.75, 8.5, 11, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.5, 11, 9.5], "texture": "#0"}, - "down": {"uv": [10.75, 9.5, 11, 8.5], "texture": "#0"} + "north": { + "uv": [ + 11, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.5, + 11, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.5, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.5, + 11, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11, + 8.5 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_49", - "from": [9.25, 0, 8.75], - "to": [9.5, 0.25, 10], + "from": [ + 9.25, + 0, + 8.75 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 8.75, 9.25, 9], "texture": "#0"}, - "east": {"uv": [9.25, 8.75, 9.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#0"}, - "west": {"uv": [9.25, 8.75, 9.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8.75, 9.5, 10], "texture": "#0"}, - "down": {"uv": [9.25, 10, 9.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8.75, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8.75, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10, + 9.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_50", - "from": [9.5, 0, 9], - "to": [9.75, 0.25, 10], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 9, 9.5, 9.25], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#0"}, - "west": {"uv": [9.5, 9, 9.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9, 9.75, 10], "texture": "#0"}, - "down": {"uv": [9.5, 10, 9.75, 9], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9, + 9.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10, + 9.75, + 9 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_51", - "from": [12.25, 0, 9], - "to": [12.5, 0.25, 10], + "from": [ + 12.25, + 0, + 9 + ], + "to": [ + 12.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.5, 9, 12.25, 9.25], "texture": "#0"}, - "east": {"uv": [12.25, 9, 12.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 9.75, 12.5, 10], "texture": "#0"}, - "west": {"uv": [12.25, 9, 12.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 9, 12.5, 10], "texture": "#0"}, - "down": {"uv": [12.25, 10, 12.5, 9], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 9, + 12.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 9, + 12.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 9.75, + 12.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 9, + 12.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 9, + 12.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 10, + 12.5, + 9 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_52", - "from": [11.75, 0, 9.25], - "to": [12.25, 0.25, 10.25], + "from": [ + 11.75, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.25, 9.25, 11.75, 9.5], "texture": "#0"}, - "east": {"uv": [12, 9.25, 12.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 10, 12.25, 10.25], "texture": "#0"}, - "west": {"uv": [11.75, 9.25, 12, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9.25, 12.25, 10.25], "texture": "#0"}, - "down": {"uv": [11.75, 10.25, 12.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.25, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 10, + 12.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9.25, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9.25, + 12.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "hanahigeutubo_53", - "from": [9.75, 0, 9.75], - "to": [10, 0.25, 10], + "from": [ + 9.75, + 0, + 9.75 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 9.75, 9.75, 10], "texture": "#0"}, - "east": {"uv": [9.75, 9.75, 10, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.75, 10, 10], "texture": "#0"}, - "west": {"uv": [9.75, 9.75, 10, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.75, 10, 10], "texture": "#0"}, - "down": {"uv": [9.75, 10, 10, 9.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10, + 10, + 9.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [120, -24, -33], - "translation": [8.25, -4.75, 5.5], - "scale": [1.29883, 1, 1.08398] + "rotation": [ + 120, + -24, + -33 + ], + "translation": [ + 8.25, + -4.75, + 5.5 + ], + "scale": [ + 1.29883, + 1, + 1.08398 + ] }, "thirdperson_lefthand": { - "rotation": [-30.25, 221, 313.25], - "translation": [-5, 12.5, 4.5], - "scale": [1.29883, 1, 1.08398] + "rotation": [ + -30.25, + 221, + 313.25 + ], + "translation": [ + -5, + 12.5, + 4.5 + ], + "scale": [ + 1.29883, + 1, + 1.08398 + ] }, "firstperson_righthand": { - "rotation": [115, -26, 7], - "translation": [6.25, -3.25, 8.25], - "scale": [1.29883, 1, 1.08398] + "rotation": [ + 115, + -26, + 7 + ], + "translation": [ + 6.25, + -3.25, + 8.25 + ], + "scale": [ + 1.29883, + 1, + 1.08398 + ] }, "firstperson_lefthand": { - "rotation": [95, 146, -33], - "translation": [-5.25, 2, 44], - "scale": [4, 4, 4] + "rotation": [ + 95, + 146, + -33 + ], + "translation": [ + -5.25, + 2, + 44 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-180, -128, 0], - "translation": [-0.25, -1.75, 0.25], - "scale": [1.03, 1.03, 1.03] + "rotation": [ + -180, + -128, + 0 + ], + "translation": [ + -0.25, + -1.75, + 0.25 + ], + "scale": [ + 1.03, + 1.03, + 1.03 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.25, 1.25, 1.25] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] } }, "groups": [ { "name": "hanahigeutubo", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ] } ] -} +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/harisenbon.json b/pack/assets/minecraft/models/fish/harisenbon.json index 4ed02885..6126a07e 100644 --- a/pack/assets/minecraft/models/fish/harisenbon.json +++ b/pack/assets/minecraft/models/fish/harisenbon.json @@ -2,474 +2,2463 @@ "__name": "ハリセンボン", "credit": "Made with Blockbench", "textures": { - "0": "fish/harisenbon", - "particle": "fish/harisenbon" + "0": "item/fish/harisenbon", + "particle": "item/fish/harisenbon" }, "elements": [ { "name": "harisenbon_0", - "from": [5.75, 0, 5], - "to": [7, 0.25, 10], + "from": [ + 5.75, + 0, + 5 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 5, 5.75, 5.25], "texture": "#0"}, - "east": {"uv": [6.75, 5, 7, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9.75, 7, 10], "texture": "#0"}, - "west": {"uv": [5.75, 5, 6, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5, 7, 10], "texture": "#0"}, - "down": {"uv": [5.75, 10, 7, 5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5, + 7, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5, + 7, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10, + 7, + 5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_1", - "from": [7.25, 0, 5], - "to": [8.5, 0.25, 9.75], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.5, 5, 7.25, 5.25], "texture": "#0"}, - "east": {"uv": [8.25, 5, 8.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.5, 8.5, 9.75], "texture": "#0"}, - "west": {"uv": [7.25, 5, 7.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5, 8.5, 9.75], "texture": "#0"}, - "down": {"uv": [7.25, 9.75, 8.5, 5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 8.5, + 5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_2", - "from": [4.5, 0, 5.25], - "to": [5.75, 0.25, 10], + "from": [ + 4.5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.75, 5.25, 4.5, 5.5], "texture": "#0"}, - "east": {"uv": [5.5, 5.25, 5.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.75, 5.75, 10], "texture": "#0"}, - "west": {"uv": [4.5, 5.25, 4.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.25, 5.75, 10], "texture": "#0"}, - "down": {"uv": [4.5, 10, 5.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.25, + 4.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.25, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.25, + 5.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10, + 5.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_3", - "from": [7, 0, 5.25], - "to": [7.25, 0.25, 10], + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.25, 5.25, 7, 5.5], "texture": "#0"}, - "east": {"uv": [7, 5.25, 7.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.75, 7.25, 10], "texture": "#0"}, - "west": {"uv": [7, 5.25, 7.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.25, 7.25, 10], "texture": "#0"}, - "down": {"uv": [7, 10, 7.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10, + 7.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_4", - "from": [8.5, 0, 5.25], - "to": [9.75, 0.25, 9.5], + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 5.25, 8.5, 5.5], "texture": "#0"}, - "east": {"uv": [9.5, 5.25, 9.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "west": {"uv": [8.5, 5.25, 8.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.25, 9.75, 9.5], "texture": "#0"}, - "down": {"uv": [8.5, 9.5, 9.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.5, + 9.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_5", - "from": [12, 0, 5.25], - "to": [12.5, 0.25, 9.75], + "from": [ + 12, + 0, + 5.25 + ], + "to": [ + 12.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.5, 5.25, 12, 5.5], "texture": "#0"}, - "east": {"uv": [12.25, 5.25, 12.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 9.5, 12.5, 9.75], "texture": "#0"}, - "west": {"uv": [12, 5.25, 12.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5.25, 12.5, 9.75], "texture": "#0"}, - "down": {"uv": [12, 9.75, 12.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.25, + 12, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.25, + 12.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 9.5, + 12.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5.25, + 12.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5.25, + 12.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9.75, + 12.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_6", - "from": [3.25, 0, 5.5], - "to": [4.5, 0.25, 9.75], + "from": [ + 3.25, + 0, + 5.5 + ], + "to": [ + 4.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.5, 5.5, 3.25, 5.75], "texture": "#0"}, - "east": {"uv": [4.25, 5.5, 4.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9.5, 4.5, 9.75], "texture": "#0"}, - "west": {"uv": [3.25, 5.5, 3.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.5, 4.5, 9.75], "texture": "#0"}, - "down": {"uv": [3.25, 9.75, 4.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 5.5, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 5.5, + 4.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.75, + 4.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_7", - "from": [9.75, 0, 5.5], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 5.5, 9.75, 5.75], "texture": "#0"}, - "east": {"uv": [10.5, 5.5, 10.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9, 10.75, 9.25], "texture": "#0"}, - "west": {"uv": [9.75, 5.5, 10, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.5, 10.75, 9.25], "texture": "#0"}, - "down": {"uv": [9.75, 9.25, 10.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.5, + 9.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.5, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_8", - "from": [11.75, 0, 5.5], - "to": [12, 0.25, 9.5], + "from": [ + 11.75, + 0, + 5.5 + ], + "to": [ + 12, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12, 5.5, 11.75, 5.75], "texture": "#0"}, - "east": {"uv": [11.75, 5.5, 12, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9.25, 12, 9.5], "texture": "#0"}, - "west": {"uv": [11.75, 5.5, 12, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 5.5, 12, 9.5], "texture": "#0"}, - "down": {"uv": [11.75, 9.5, 12, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.5, + 11.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.5, + 12, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9.25, + 12, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 5.5, + 12, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 5.5, + 12, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.5, + 12, + 5.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_9", - "from": [12.5, 0, 5.5], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 5.5 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 5.5, 12.5, 5.75], "texture": "#0"}, - "east": {"uv": [12.5, 5.5, 12.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#0"}, - "west": {"uv": [12.5, 5.5, 12.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 5.5, 12.75, 9.5], "texture": "#0"}, - "down": {"uv": [12.5, 9.5, 12.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 5.5, + 12.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 5.5, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 5.5, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5.5, + 12.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_10", - "from": [2.75, 0, 5.75], - "to": [3.25, 0.25, 9.75], + "from": [ + 2.75, + 0, + 5.75 + ], + "to": [ + 3.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.25, 5.75, 2.75, 6], "texture": "#0"}, - "east": {"uv": [3, 5.75, 3.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.5, 3.25, 9.75], "texture": "#0"}, - "west": {"uv": [2.75, 5.75, 3, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.75, 3.25, 9.75], "texture": "#0"}, - "down": {"uv": [2.75, 9.75, 3.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 5.75, + 2.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.75, + 3.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.5, + 3.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.75, + 3, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.75, + 3.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.75, + 3.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_11", - "from": [10.75, 0, 5.75], - "to": [11.75, 0.25, 9], + "from": [ + 10.75, + 0, + 5.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 5.75, 10.75, 6], "texture": "#0"}, - "east": {"uv": [11.5, 5.75, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [10.75, 5.75, 11, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.75, 11.75, 9], "texture": "#0"}, - "down": {"uv": [10.75, 9, 11.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 5.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.75, + 11, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9, + 11.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_12", - "from": [12.75, 0, 5.75], - "to": [13, 0.25, 9.25], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 5.75, 12.75, 6], "texture": "#0"}, - "east": {"uv": [12.75, 5.75, 13, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 9, 13, 9.25], "texture": "#0"}, - "west": {"uv": [12.75, 5.75, 13, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 5.75, 13, 9.25], "texture": "#0"}, - "down": {"uv": [12.75, 9.25, 13, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 5.75, + 12.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 5.75, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9.25, + 13, + 5.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_13", - "from": [2.25, 0, 6], - "to": [2.75, 0.25, 9.5], + "from": [ + 2.25, + 0, + 6 + ], + "to": [ + 2.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.75, 6, 2.25, 6.25], "texture": "#0"}, - "east": {"uv": [2.5, 6, 2.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.25, 2.75, 9.5], "texture": "#0"}, - "west": {"uv": [2.25, 6, 2.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6, 2.75, 9.5], "texture": "#0"}, - "down": {"uv": [2.25, 9.5, 2.75, 6], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 6, + 2.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6, + 2.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6, + 2.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.5, + 2.75, + 6 + ], + "texture": "#0" + } } }, { "name": "harisenbon_14", - "from": [13, 0, 6], - "to": [13.25, 0.25, 8.5], + "from": [ + 13, + 0, + 6 + ], + "to": [ + 13.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.25, 6, 13, 6.25], "texture": "#0"}, - "east": {"uv": [13, 6, 13.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.25, 13.25, 8.5], "texture": "#0"}, - "west": {"uv": [13, 6, 13.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6, 13.25, 8.5], "texture": "#0"}, - "down": {"uv": [13, 8.5, 13.25, 6], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6, + 13, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 13.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6, + 13.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.5, + 13.25, + 6 + ], + "texture": "#0" + } } }, { "name": "harisenbon_15", - "from": [2, 0, 6.25], - "to": [2.25, 0.25, 9.5], + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.25, 6.25, 2, 6.5], "texture": "#0"}, - "east": {"uv": [2, 6.25, 2.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.25, 2.25, 9.5], "texture": "#0"}, - "west": {"uv": [2, 6.25, 2.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.25, 2.25, 9.5], "texture": "#0"}, - "down": {"uv": [2, 9.5, 2.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.25, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_16", - "from": [1.75, 0, 6.5], - "to": [2, 0.25, 9.25], + "from": [ + 1.75, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 6.5, 1.75, 6.75], "texture": "#0"}, - "east": {"uv": [1.75, 6.5, 2, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9, 2, 9.25], "texture": "#0"}, - "west": {"uv": [1.75, 6.5, 2, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.5, 2, 9.25], "texture": "#0"}, - "down": {"uv": [1.75, 9.25, 2, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.5, + 2, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2, + 6.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_17", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 9], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#0"}, - "east": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.75, 14.5, 9], "texture": "#0"}, - "west": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.5, 14.5, 9], "texture": "#0"}, - "down": {"uv": [14.25, 9, 14.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9, + 14.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_18", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.5, 6.75, 1.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 1.75, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 1.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_19", - "from": [13.75, 0, 6.75], - "to": [14.25, 0.25, 8.75], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 6.75, 13.75, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.5, 14.25, 8.75], "texture": "#0"}, - "west": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.75, 14.25, 8.75], "texture": "#0"}, - "down": {"uv": [13.75, 8.75, 14.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_20", - "from": [14.5, 0, 6.75], - "to": [14.75, 0.25, 8.75], + "from": [ + 14.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.5, 7], "texture": "#0"}, - "east": {"uv": [14.5, 6.75, 14.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.5, 14.75, 8.75], "texture": "#0"}, - "west": {"uv": [14.5, 6.75, 14.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.75, 14.75, 8.75], "texture": "#0"}, - "down": {"uv": [14.5, 8.75, 14.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.75, + 14.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.75, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.75, + 14.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_21", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "harisenbon_22", - "from": [13.25, 0, 7], - "to": [13.75, 0.25, 8.5], + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.75, 7, 13.25, 7.25], "texture": "#0"}, - "east": {"uv": [13.5, 7, 13.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.25, 13.75, 8.5], "texture": "#0"}, - "west": {"uv": [13.25, 7, 13.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7, 13.75, 8.5], "texture": "#0"}, - "down": {"uv": [13.25, 8.5, 13.75, 7], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7, + 13.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.5, + 13.75, + 7 + ], + "texture": "#0" + } } }, { "name": "harisenbon_23", - "from": [14.75, 0, 7], - "to": [15, 0.25, 8.5], + "from": [ + 14.75, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15, 7, 14.75, 7.25], "texture": "#0"}, - "east": {"uv": [14.75, 7, 15, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#0"}, - "west": {"uv": [14.75, 7, 15, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7, 15, 8.5], "texture": "#0"}, - "down": {"uv": [14.75, 8.5, 15, 7], "texture": "#0"} + "north": { + "uv": [ + 15, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15, + 7 + ], + "texture": "#0" + } } }, { "name": "harisenbon_24", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 1.25, 8.5], "texture": "#0"}, - "down": {"uv": [1, 8.5, 1.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_25", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 7.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "down": {"uv": [0.75, 7.75, 1, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 7.75, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "harisenbon_26", - "from": [0.75, 0, 8], - "to": [1, 0.25, 8.25], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1, 8, 0.75, 8.25], "texture": "#0"}, - "east": {"uv": [0.75, 8, 1, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "west": {"uv": [0.75, 8, 1, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "down": {"uv": [0.75, 8.25, 1, 8], "texture": "#0"} + "north": { + "uv": [ + 1, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 8 + ], + "texture": "#0" + } } }, { "name": "harisenbon_27", - "from": [14, 0, 8.75], - "to": [14.25, 0.25, 9], + "from": [ + 14, + 0, + 8.75 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 8.75, 14, 9], "texture": "#0"}, - "east": {"uv": [14, 8.75, 14.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.75, 14.25, 9], "texture": "#0"}, - "west": {"uv": [14, 8.75, 14.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.75, 14.25, 9], "texture": "#0"}, - "down": {"uv": [14, 9, 14.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 14.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_28", - "from": [11.5, 0, 9], - "to": [11.75, 0.25, 9.25], + "from": [ + 11.5, + 0, + 9 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 9, 11.5, 9.25], "texture": "#0"}, - "east": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#0"}, - "west": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#0"}, - "down": {"uv": [11.5, 9.25, 11.75, 9], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9 + ], + "texture": "#0" + } } }, { "name": "harisenbon_29", - "from": [9.75, 0, 9.25], - "to": [10.5, 0.25, 9.5], + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "east": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.25, 10.5, 9.5], "texture": "#0"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.25, 10.5, 9.5], "texture": "#0"}, - "down": {"uv": [9.75, 9.5, 10.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "harisenbon_30", - "from": [3.5, 0, 9.75], - "to": [4.5, 0.25, 10], + "from": [ + 3.5, + 0, + 9.75 + ], + "to": [ + 4.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.5, 9.75, 3.5, 10], "texture": "#0"}, - "east": {"uv": [4.25, 9.75, 4.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.75, 4.5, 10], "texture": "#0"}, - "west": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.75, 4.5, 10], "texture": "#0"}, - "down": {"uv": [3.5, 10, 4.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 9.75, + 3.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10, + 4.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "harisenbon_31", - "from": [7.25, 0, 9.75], - "to": [7.75, 0.25, 10], + "from": [ + 7.25, + 0, + 9.75 + ], + "to": [ + 7.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.75, 9.75, 7.25, 10], "texture": "#0"}, - "east": {"uv": [7.5, 9.75, 7.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.75, 7.75, 10], "texture": "#0"}, - "west": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9.75, 7.75, 10], "texture": "#0"}, - "down": {"uv": [7.25, 10, 7.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.75, + 9.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 7], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 7 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-10.5, -180, 0], - "translation": [0.25, 0, -9.5], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + -10.5, + -180, + 0 + ], + "translation": [ + 0.25, + 0, + -9.5 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "harisenbon", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/hirame.json b/pack/assets/minecraft/models/fish/hirame.json index 97256ee5..5610996a 100644 --- a/pack/assets/minecraft/models/fish/hirame.json +++ b/pack/assets/minecraft/models/fish/hirame.json @@ -2,708 +2,3755 @@ "__name": "ヒラメ", "credit": "Made with Blockbench", "textures": { - "0": "fish/hirame", - "particle": "fish/hirame" + "0": "item/fish/hirame", + "particle": "item/fish/hirame" }, "elements": [ { "name": "hirame_0", - "from": [6.5, 0, 2.5], - "to": [8.5, 0.25, 10.25], + "from": [ + 6.5, + 0, + 2.5 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.5, 2.5, 6.5, 2.75], "texture": "#0"}, - "east": {"uv": [8.25, 2.5, 8.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.5, 2.5, 6.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 2.5, 8.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.5, 10.25, 8.5, 2.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 2.5, + 6.5, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2.5, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 2.5, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2.5, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 8.5, + 2.5 + ], + "texture": "#0" + } } }, { "name": "hirame_1", - "from": [6, 0, 2.75], - "to": [6.5, 0.25, 10], + "from": [ + 6, + 0, + 2.75 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 2.75, 6, 3], "texture": "#0"}, - "east": {"uv": [6.25, 2.75, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [6, 2.75, 6.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 2.75, 6.5, 10], "texture": "#0"}, - "down": {"uv": [6, 10, 6.5, 2.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 2.75, + 6, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.75, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2.75, + 6.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 2.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10, + 6.5, + 2.75 + ], + "texture": "#0" + } } }, { "name": "hirame_2", - "from": [8.5, 0, 2.75], - "to": [9, 0.25, 10], + "from": [ + 8.5, + 0, + 2.75 + ], + "to": [ + 9, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9, 2.75, 8.5, 3], "texture": "#0"}, - "east": {"uv": [8.75, 2.75, 9, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.75, 9, 10], "texture": "#0"}, - "west": {"uv": [8.5, 2.75, 8.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 2.75, 9, 10], "texture": "#0"}, - "down": {"uv": [8.5, 10, 9, 2.75], "texture": "#0"} + "north": { + "uv": [ + 9, + 2.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 2.75, + 9, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.75, + 9, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.75, + 8.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 2.75, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10, + 9, + 2.75 + ], + "texture": "#0" + } } }, { "name": "hirame_3", - "from": [5.5, 0, 3], - "to": [6, 0.25, 9.75], + "from": [ + 5.5, + 0, + 3 + ], + "to": [ + 6, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6, 3, 5.5, 3.25], "texture": "#0"}, - "east": {"uv": [5.75, 3, 6, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.5, 6, 9.75], "texture": "#0"}, - "west": {"uv": [5.5, 3, 5.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3, 6, 9.75], "texture": "#0"}, - "down": {"uv": [5.5, 9.75, 6, 3], "texture": "#0"} + "north": { + "uv": [ + 6, + 3, + 5.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3, + 6, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3, + 5.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3, + 6, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.75, + 6, + 3 + ], + "texture": "#0" + } } }, { "name": "hirame_4", - "from": [9, 0, 3], - "to": [9.5, 0.25, 9.75], + "from": [ + 9, + 0, + 3 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.5, 3, 9, 3.25], "texture": "#0"}, - "east": {"uv": [9.25, 3, 9.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.5, 9.5, 9.75], "texture": "#0"}, - "west": {"uv": [9, 3, 9.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 3, 9.5, 9.75], "texture": "#0"}, - "down": {"uv": [9, 9.75, 9.5, 3], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 3, + 9, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 3, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.5, + 3 + ], + "texture": "#0" + } } }, { "name": "hirame_5", - "from": [5, 0, 3.25], - "to": [5.5, 0.25, 9.5], + "from": [ + 5, + 0, + 3.25 + ], + "to": [ + 5.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.5, 3.25, 5, 3.5], "texture": "#0"}, - "east": {"uv": [5.25, 3.25, 5.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.5, 9.5], "texture": "#0"}, - "west": {"uv": [5, 3.25, 5.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 3.25, 5.5, 9.5], "texture": "#0"}, - "down": {"uv": [5, 9.5, 5.5, 3.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 3.25, + 5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.25, + 5.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 3.25, + 5.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 3.25, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 5.5, + 3.25 + ], + "texture": "#0" + } } }, { "name": "hirame_6", - "from": [9.5, 0, 3.25], - "to": [10, 0.25, 9.5], + "from": [ + 9.5, + 0, + 3.25 + ], + "to": [ + 10, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10, 3.25, 9.5, 3.5], "texture": "#0"}, - "east": {"uv": [9.75, 3.25, 10, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 10, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 3.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 3.25, 10, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 10, 3.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 3.25, + 9.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 3.25, + 10, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 10, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.25, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 10, + 3.25 + ], + "texture": "#0" + } } }, { "name": "hirame_7", - "from": [4.25, 0, 3.5], - "to": [5, 0.25, 9.25], + "from": [ + 4.25, + 0, + 3.5 + ], + "to": [ + 5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5, 3.5, 4.25, 3.75], "texture": "#0"}, - "east": {"uv": [4.75, 3.5, 5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9, 5, 9.25], "texture": "#0"}, - "west": {"uv": [4.25, 3.5, 4.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 3.5, 5, 9.25], "texture": "#0"}, - "down": {"uv": [4.25, 9.25, 5, 3.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 3.5, + 4.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 3.5, + 5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 3.5, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 3.5, + 5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "hirame_8", - "from": [10, 0, 3.5], - "to": [10.5, 0.25, 9], + "from": [ + 10, + 0, + 3.5 + ], + "to": [ + 10.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.5, 3.5, 10, 3.75], "texture": "#0"}, - "east": {"uv": [10.25, 3.5, 10.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.75, 10.5, 9], "texture": "#0"}, - "west": {"uv": [10, 3.5, 10.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 3.5, 10.5, 9], "texture": "#0"}, - "down": {"uv": [10, 9, 10.5, 3.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 3.5, + 10, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 3.5, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3.5, + 10.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 3.5, + 10.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9, + 10.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "hirame_9", - "from": [3.5, 0, 3.75], - "to": [4.25, 0.25, 8.75], + "from": [ + 3.5, + 0, + 3.75 + ], + "to": [ + 4.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [4.25, 3.75, 3.5, 4], "texture": "#0"}, - "east": {"uv": [4, 3.75, 4.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.5, 4.25, 8.75], "texture": "#0"}, - "west": {"uv": [3.5, 3.75, 3.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 3.75, 4.25, 8.75], "texture": "#0"}, - "down": {"uv": [3.5, 8.75, 4.25, 3.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 3.75, + 3.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3.75, + 4.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 4.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 3.75, + 3.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 3.75, + 4.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.75, + 4.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "hirame_10", - "from": [10.5, 0, 3.75], - "to": [10.75, 0.25, 9], + "from": [ + 10.5, + 0, + 3.75 + ], + "to": [ + 10.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.75, 3.75, 10.5, 4], "texture": "#0"}, - "east": {"uv": [10.5, 3.75, 10.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.75, 10.75, 9], "texture": "#0"}, - "west": {"uv": [10.5, 3.75, 10.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 3.75, 10.75, 9], "texture": "#0"}, - "down": {"uv": [10.5, 9, 10.75, 3.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 3.75, + 10.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3.75, + 10.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.75, + 10.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 3.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9, + 10.75, + 3.75 + ], + "texture": "#0" + } } }, { "name": "hirame_11", - "from": [3.25, 0, 4], - "to": [3.5, 0.25, 8.75], + "from": [ + 3.25, + 0, + 4 + ], + "to": [ + 3.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [3.5, 4, 3.25, 4.25], "texture": "#0"}, - "east": {"uv": [3.25, 4, 3.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.5, 3.5, 8.75], "texture": "#0"}, - "west": {"uv": [3.25, 4, 3.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 4, 3.5, 8.75], "texture": "#0"}, - "down": {"uv": [3.25, 8.75, 3.5, 4], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 4, + 3.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 4, + 3.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 4, + 3.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.75, + 3.5, + 4 + ], + "texture": "#0" + } } }, { "name": "hirame_12", - "from": [10.75, 0, 4], - "to": [11, 0.25, 8.75], + "from": [ + 10.75, + 0, + 4 + ], + "to": [ + 11, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [11, 4, 10.75, 4.25], "texture": "#0"}, - "east": {"uv": [10.75, 4, 11, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.5, 11, 8.75], "texture": "#0"}, - "west": {"uv": [10.75, 4, 11, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 4, 11, 8.75], "texture": "#0"}, - "down": {"uv": [10.75, 8.75, 11, 4], "texture": "#0"} + "north": { + "uv": [ + 11, + 4, + 10.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4, + 11, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 4, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 4, + 11, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 11, + 4 + ], + "texture": "#0" + } } }, { "name": "hirame_13", - "from": [3, 0, 4.25], - "to": [3.25, 0.25, 8.5], + "from": [ + 3, + 0, + 4.25 + ], + "to": [ + 3.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3.25, 4.25, 3, 4.5], "texture": "#0"}, - "east": {"uv": [3, 4.25, 3.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.25, 3.25, 8.5], "texture": "#0"}, - "west": {"uv": [3, 4.25, 3.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 4.25, 3.25, 8.5], "texture": "#0"}, - "down": {"uv": [3, 8.5, 3.25, 4.25], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 4.25, + 3, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 4.25, + 3.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 4.25, + 3.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 4.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 3.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "hirame_14", - "from": [11, 0, 4.25], - "to": [11.25, 0.25, 8.5], + "from": [ + 11, + 0, + 4.25 + ], + "to": [ + 11.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.25, 4.25, 11, 4.5], "texture": "#0"}, - "east": {"uv": [11, 4.25, 11.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.25, 11.25, 8.5], "texture": "#0"}, - "west": {"uv": [11, 4.25, 11.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 4.25, 11.25, 8.5], "texture": "#0"}, - "down": {"uv": [11, 8.5, 11.25, 4.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 4.25, + 11, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 4.25, + 11.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4.25, + 11.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.5, + 11.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "hirame_15", - "from": [2.75, 0, 4.5], - "to": [3, 0.25, 8.5], + "from": [ + 2.75, + 0, + 4.5 + ], + "to": [ + 3, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3, 4.5, 2.75, 4.75], "texture": "#0"}, - "east": {"uv": [2.75, 4.5, 3, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.25, 3, 8.5], "texture": "#0"}, - "west": {"uv": [2.75, 4.5, 3, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 4.5, 3, 8.5], "texture": "#0"}, - "down": {"uv": [2.75, 8.5, 3, 4.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 4.5, + 2.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 4.5, + 3, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 4.5, + 3, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 4.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.5, + 3, + 4.5 + ], + "texture": "#0" + } } }, { "name": "hirame_16", - "from": [11.25, 0, 4.5], - "to": [11.5, 0.25, 8.25], + "from": [ + 11.25, + 0, + 4.5 + ], + "to": [ + 11.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.5, 4.5, 11.25, 4.75], "texture": "#0"}, - "east": {"uv": [11.25, 4.5, 11.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8, 11.5, 8.25], "texture": "#0"}, - "west": {"uv": [11.25, 4.5, 11.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 4.5, 11.5, 8.25], "texture": "#0"}, - "down": {"uv": [11.25, 8.25, 11.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.5, + 11.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.5, + 11.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 4.5, + 11.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 4.5, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.25, + 11.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "hirame_17", - "from": [15, 0, 4.5], - "to": [15.25, 0.25, 8.75], + "from": [ + 15, + 0, + 4.5 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 4.5, 15, 4.75], "texture": "#0"}, - "east": {"uv": [15, 4.5, 15.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#0"}, - "west": {"uv": [15, 4.5, 15.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 4.5, 15.25, 8.75], "texture": "#0"}, - "down": {"uv": [15, 8.75, 15.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 4.5, + 15, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 4.5, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 4.5, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 4.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "hirame_18", - "from": [2.25, 0, 4.75], - "to": [2.75, 0.25, 8.25], + "from": [ + 2.25, + 0, + 4.75 + ], + "to": [ + 2.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2.75, 4.75, 2.25, 5], "texture": "#0"}, - "east": {"uv": [2.5, 4.75, 2.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8, 2.75, 8.25], "texture": "#0"}, - "west": {"uv": [2.25, 4.75, 2.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 4.75, 2.75, 8.25], "texture": "#0"}, - "down": {"uv": [2.25, 8.25, 2.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 4.75, + 2.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 4.75, + 2.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 4.75, + 2.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 4.75, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8.25, + 2.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "hirame_19", - "from": [11.5, 0, 4.75], - "to": [11.75, 0.25, 8], + "from": [ + 11.5, + 0, + 4.75 + ], + "to": [ + 11.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [11.75, 4.75, 11.5, 5], "texture": "#0"}, - "east": {"uv": [11.5, 4.75, 11.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7.75, 11.75, 8], "texture": "#0"}, - "west": {"uv": [11.5, 4.75, 11.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 4.75, 11.75, 8], "texture": "#0"}, - "down": {"uv": [11.5, 8, 11.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 4.75, + 11.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 4.75, + 11.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 4.75, + 11.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 4.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8, + 11.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "hirame_20", - "from": [14.5, 0, 4.75], - "to": [15, 0.25, 8], + "from": [ + 14.5, + 0, + 4.75 + ], + "to": [ + 15, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15, 4.75, 14.5, 5], "texture": "#0"}, - "east": {"uv": [14.75, 4.75, 15, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.75, 15, 8], "texture": "#0"}, - "west": {"uv": [14.5, 4.75, 14.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 4.75, 15, 8], "texture": "#0"}, - "down": {"uv": [14.5, 8, 15, 4.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 4.75, + 14.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 4.75, + 15, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 4.75, + 14.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 4.75, + 15, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8, + 15, + 4.75 + ], + "texture": "#0" + } } }, { "name": "hirame_21", - "from": [15.25, 0, 4.75], - "to": [15.5, 0.25, 8.5], + "from": [ + 15.25, + 0, + 4.75 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.5, 4.75, 15.25, 5], "texture": "#0"}, - "east": {"uv": [15.25, 4.75, 15.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "west": {"uv": [15.25, 4.75, 15.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 4.75, 15.5, 8.5], "texture": "#0"}, - "down": {"uv": [15.25, 8.5, 15.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 4.75, + 15.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 4.75, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 4.75, + 15.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 4.75, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.5, + 15.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "hirame_22", - "from": [2, 0, 5], - "to": [2.25, 0.25, 8.25], + "from": [ + 2, + 0, + 5 + ], + "to": [ + 2.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2.25, 5, 2, 5.25], "texture": "#0"}, - "east": {"uv": [2, 5, 2.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8, 2.25, 8.25], "texture": "#0"}, - "west": {"uv": [2, 5, 2.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 5, 2.25, 8.25], "texture": "#0"}, - "down": {"uv": [2, 8.25, 2.25, 5], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 5, + 2, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 5, + 2.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5, + 2.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.25, + 2.25, + 5 + ], + "texture": "#0" + } } }, { "name": "hirame_23", - "from": [11.75, 0, 5], - "to": [12, 0.25, 7.75], + "from": [ + 11.75, + 0, + 5 + ], + "to": [ + 12, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [12, 5, 11.75, 5.25], "texture": "#0"}, - "east": {"uv": [11.75, 5, 12, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7.5, 12, 7.75], "texture": "#0"}, - "west": {"uv": [11.75, 5, 12, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 5, 12, 7.75], "texture": "#0"}, - "down": {"uv": [11.75, 7.75, 12, 5], "texture": "#0"} + "north": { + "uv": [ + 12, + 5, + 11.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5, + 12, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7.5, + 12, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 5, + 12, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 5, + 12, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7.75, + 12, + 5 + ], + "texture": "#0" + } } }, { "name": "hirame_24", - "from": [14, 0, 5], - "to": [14.5, 0.25, 7.75], + "from": [ + 14, + 0, + 5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.5, 5, 14, 5.25], "texture": "#0"}, - "east": {"uv": [14.25, 5, 14.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.5, 14.5, 7.75], "texture": "#0"}, - "west": {"uv": [14, 5, 14.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5, 14.5, 7.75], "texture": "#0"}, - "down": {"uv": [14, 7.75, 14.5, 5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 5, + 14, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5, + 14.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.75, + 14.5, + 5 + ], + "texture": "#0" + } } }, { "name": "hirame_25", - "from": [1.75, 0, 5.25], - "to": [2, 0.25, 8], + "from": [ + 1.75, + 0, + 5.25 + ], + "to": [ + 2, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2, 5.25, 1.75, 5.5], "texture": "#0"}, - "east": {"uv": [1.75, 5.25, 2, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.75, 2, 8], "texture": "#0"}, - "west": {"uv": [1.75, 5.25, 2, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 5.25, 2, 8], "texture": "#0"}, - "down": {"uv": [1.75, 8, 2, 5.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 5.25, + 1.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 5.25, + 2, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 5.25, + 2, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 5.25, + 2, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8, + 2, + 5.25 + ], + "texture": "#0" + } } }, { "name": "hirame_26", - "from": [12, 0, 5.25], - "to": [12.5, 0.25, 7.25], + "from": [ + 12, + 0, + 5.25 + ], + "to": [ + 12.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [12.5, 5.25, 12, 5.5], "texture": "#0"}, - "east": {"uv": [12.25, 5.25, 12.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7, 12.5, 7.25], "texture": "#0"}, - "west": {"uv": [12, 5.25, 12.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5.25, 12.5, 7.25], "texture": "#0"}, - "down": {"uv": [12, 7.25, 12.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.25, + 12, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.25, + 12.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5.25, + 12.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5.25, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.25, + 12.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "hirame_27", - "from": [13.75, 0, 5.25], - "to": [14, 0.25, 7.5], + "from": [ + 13.75, + 0, + 5.25 + ], + "to": [ + 14, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14, 5.25, 13.75, 5.5], "texture": "#0"}, - "east": {"uv": [13.75, 5.25, 14, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 7.25, 14, 7.5], "texture": "#0"}, - "west": {"uv": [13.75, 5.25, 14, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5.25, 14, 7.5], "texture": "#0"}, - "down": {"uv": [13.75, 7.5, 14, 5.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 5.25, + 13.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 5.25, + 14, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 7.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5.25, + 14, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7.5, + 14, + 5.25 + ], + "texture": "#0" + } } }, { "name": "hirame_28", - "from": [1.25, 0, 5.5], - "to": [1.75, 0.25, 6.75], + "from": [ + 1.25, + 0, + 5.5 + ], + "to": [ + 1.75, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [1.75, 5.5, 1.25, 5.75], "texture": "#0"}, - "east": {"uv": [1.5, 5.5, 1.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 6.5, 1.75, 6.75], "texture": "#0"}, - "west": {"uv": [1.25, 5.5, 1.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 5.5, 1.75, 6.75], "texture": "#0"}, - "down": {"uv": [1.25, 6.75, 1.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 5.5, + 1.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 5.5, + 1.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 5.5, + 1.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 5.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 6.75, + 1.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "hirame_29", - "from": [12.5, 0, 5.5], - "to": [12.75, 0.25, 7], + "from": [ + 12.5, + 0, + 5.5 + ], + "to": [ + 12.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [12.75, 5.5, 12.5, 5.75], "texture": "#0"}, - "east": {"uv": [12.5, 5.5, 12.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 6.75, 12.75, 7], "texture": "#0"}, - "west": {"uv": [12.5, 5.5, 12.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 5.5, 12.75, 7], "texture": "#0"}, - "down": {"uv": [12.5, 7, 12.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 5.5, + 12.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 5.5, + 12.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 6.75, + 12.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 5.5, + 12.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5.5, + 12.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 7, + 12.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "hirame_30", - "from": [13.25, 0, 5.5], - "to": [13.75, 0.25, 7.25], + "from": [ + 13.25, + 0, + 5.5 + ], + "to": [ + 13.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [13.75, 5.5, 13.25, 5.75], "texture": "#0"}, - "east": {"uv": [13.5, 5.5, 13.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7, 13.75, 7.25], "texture": "#0"}, - "west": {"uv": [13.25, 5.5, 13.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 5.5, 13.75, 7.25], "texture": "#0"}, - "down": {"uv": [13.25, 7.25, 13.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 5.5, + 13.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 5.5, + 13.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 5.5, + 13.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 5.5, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.25, + 13.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "hirame_31", - "from": [0.75, 0, 5.75], - "to": [1.25, 0.25, 6.25], + "from": [ + 0.75, + 0, + 5.75 + ], + "to": [ + 1.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [1.25, 5.75, 0.75, 6], "texture": "#0"}, - "east": {"uv": [1, 5.75, 1.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 6, 1.25, 6.25], "texture": "#0"}, - "west": {"uv": [0.75, 5.75, 1, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 5.75, 1.25, 6.25], "texture": "#0"}, - "down": {"uv": [0.75, 6.25, 1.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 5.75, + 0.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 5.75, + 1.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 6, + 1.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 5.75, + 1, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 5.75, + 1.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 6.25, + 1.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "hirame_32", - "from": [12.75, 0, 5.75], - "to": [13.25, 0.25, 7], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [13.25, 5.75, 12.75, 6], "texture": "#0"}, - "east": {"uv": [13, 5.75, 13.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 6.75, 13.25, 7], "texture": "#0"}, - "west": {"uv": [12.75, 5.75, 13, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 5.75, 13.25, 7], "texture": "#0"}, - "down": {"uv": [12.75, 7, 13.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 5.75, + 12.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 5.75, + 13.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 7, + 13.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "hirame_33", - "from": [1, 0, 6.25], - "to": [1.25, 0.25, 6.5], + "from": [ + 1, + 0, + 6.25 + ], + "to": [ + 1.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [1.25, 6.25, 1, 6.5], "texture": "#0"}, - "east": {"uv": [1, 6.25, 1.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 6.25, 1.25, 6.5], "texture": "#0"}, - "west": {"uv": [1, 6.25, 1.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 6.25, 1.25, 6.5], "texture": "#0"}, - "down": {"uv": [1, 6.5, 1.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 6.25, + 1, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 6.25, + 1.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 6.25, + 1.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6.25, + 1.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 6.25, + 1.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 6.5, + 1.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "hirame_34", - "from": [0.5, 0, 6.5], - "to": [0.75, 0.25, 7.25], + "from": [ + 0.5, + 0, + 6.5 + ], + "to": [ + 0.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [0.75, 6.5, 0.5, 6.75], "texture": "#0"}, - "east": {"uv": [0.5, 6.5, 0.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 7, 0.75, 7.25], "texture": "#0"}, - "west": {"uv": [0.5, 6.5, 0.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 6.5, 0.75, 7.25], "texture": "#0"}, - "down": {"uv": [0.5, 7.25, 0.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 6.5, + 0.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 6.5, + 0.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7, + 0.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 6.5, + 0.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 6.5, + 0.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 7.25, + 0.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "hirame_35", - "from": [0.25, 0, 6.75], - "to": [0.5, 0.25, 7], + "from": [ + 0.25, + 0, + 6.75 + ], + "to": [ + 0.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [0.5, 6.75, 0.25, 7], "texture": "#0"}, - "east": {"uv": [0.25, 6.75, 0.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 6.75, 0.5, 7], "texture": "#0"}, - "west": {"uv": [0.25, 6.75, 0.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 6.75, 0.5, 7], "texture": "#0"}, - "down": {"uv": [0.25, 7, 0.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 0.5, + 6.75, + 0.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 6.75, + 0.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 6.75, + 0.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 6.75, + 0.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 6.75, + 0.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 7, + 0.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hirame_36", - "from": [0.75, 0, 6.75], - "to": [1.25, 0.25, 7.5], + "from": [ + 0.75, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [1.25, 6.75, 0.75, 7], "texture": "#0"}, - "east": {"uv": [1, 6.75, 1.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.25, 1.25, 7.5], "texture": "#0"}, - "west": {"uv": [0.75, 6.75, 1, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 6.75, 1.25, 7.5], "texture": "#0"}, - "down": {"uv": [0.75, 7.5, 1.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 6.75, + 0.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 6.75, + 1, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 6.75, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 7.5, + 1.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hirame_37", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 7], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.5, 6.75, 1.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6.75, 1.75, 7], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 1.75, 7], "texture": "#0"}, - "down": {"uv": [1.5, 7, 1.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7, + 1.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "hirame_38", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 8], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.75, 1.5, 8], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 8], "texture": "#0"}, - "down": {"uv": [1.25, 8, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "hirame_39", - "from": [1.5, 0, 7.25], - "to": [1.75, 0.25, 8], + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1.5, 7.5], "texture": "#0"}, - "east": {"uv": [1.5, 7.25, 1.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7.75, 1.75, 8], "texture": "#0"}, - "west": {"uv": [1.5, 7.25, 1.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.25, 1.75, 8], "texture": "#0"}, - "down": {"uv": [1.5, 8, 1.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8, + 1.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hirame_40", - "from": [12, 0, 7.25], - "to": [12.25, 0.25, 7.5], + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [12.25, 7.25, 12, 7.5], "texture": "#0"}, - "east": {"uv": [12, 7.25, 12.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7.25, 12.25, 7.5], "texture": "#0"}, - "west": {"uv": [12, 7.25, 12.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7.25, 12.25, 7.5], "texture": "#0"}, - "down": {"uv": [12, 7.5, 12.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.5, + 12.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "hirame_41", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 7.75], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1, 7.5, 1.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.5, 1.25, 7.75], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.25, 7.75], "texture": "#0"}, - "down": {"uv": [1, 7.75, 1.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7.75, + 1.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "hirame_42", - "from": [14.25, 0, 7.75], - "to": [14.5, 0.25, 8], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 14.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.5, 7.75, 14.25, 8], "texture": "#0"}, - "east": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "west": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "down": {"uv": [14.25, 8, 14.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7.75, + 14.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "hirame_43", - "from": [14.75, 0, 8], - "to": [15, 0.25, 8.5], + "from": [ + 14.75, + 0, + 8 + ], + "to": [ + 15, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15, 8, 14.75, 8.25], "texture": "#0"}, - "east": {"uv": [14.75, 8, 15, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#0"}, - "west": {"uv": [14.75, 8, 15, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8, 15, 8.5], "texture": "#0"}, - "down": {"uv": [14.75, 8.5, 15, 8], "texture": "#0"} + "north": { + "uv": [ + 15, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15, + 8 + ], + "texture": "#0" + } } }, { "name": "hirame_44", - "from": [3.75, 0, 8.75], - "to": [4.25, 0.25, 9], + "from": [ + 3.75, + 0, + 8.75 + ], + "to": [ + 4.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [4.25, 8.75, 3.75, 9], "texture": "#0"}, - "east": {"uv": [4, 8.75, 4.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.75, 4.25, 9], "texture": "#0"}, - "west": {"uv": [3.75, 8.75, 4, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.75, 4.25, 9], "texture": "#0"}, - "down": {"uv": [3.75, 9, 4.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.75, + 4.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9, + 4.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "hirame_45", - "from": [10, 0, 9], - "to": [10.25, 0.25, 9.25], + "from": [ + 10, + 0, + 9 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.25, 9, 10, 9.25], "texture": "#0"}, - "east": {"uv": [10, 9, 10.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9, 10.25, 9.25], "texture": "#0"}, - "west": {"uv": [10, 9, 10.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9, 10.25, 9.25], "texture": "#0"}, - "down": {"uv": [10, 9.25, 10.25, 9], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 9, + 10, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.25, + 10.25, + 9 + ], + "texture": "#0" + } } }, { "name": "hirame_46", - "from": [4.75, 0, 9.25], - "to": [5, 0.25, 9.5], + "from": [ + 4.75, + 0, + 9.25 + ], + "to": [ + 5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5, 9.25, 4.75, 9.5], "texture": "#0"}, - "east": {"uv": [4.75, 9.25, 5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.25, 5, 9.5], "texture": "#0"}, - "west": {"uv": [4.75, 9.25, 5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9.25, 5, 9.5], "texture": "#0"}, - "down": {"uv": [4.75, 9.5, 5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.5, + 5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "hirame_47", - "from": [5.25, 0, 9.5], - "to": [5.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 9.5 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 9.5, 5.25, 9.75], "texture": "#0"}, - "east": {"uv": [5.25, 9.5, 5.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#0"}, - "west": {"uv": [5.25, 9.5, 5.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#0"}, - "down": {"uv": [5.25, 9.75, 5.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "hirame_48", - "from": [5.75, 0, 9.75], - "to": [6, 0.25, 10], + "from": [ + 5.75, + 0, + 9.75 + ], + "to": [ + 6, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6, 9.75, 5.75, 10], "texture": "#0"}, - "east": {"uv": [5.75, 9.75, 6, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9.75, 6, 10], "texture": "#0"}, - "west": {"uv": [5.75, 9.75, 6, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9.75, 6, 10], "texture": "#0"}, - "down": {"uv": [5.75, 10, 6, 9.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10, + 6, + 9.75 + ], + "texture": "#0" + } } }, { "name": "hirame_49", - "from": [7, 0, 10.25], - "to": [8, 0.25, 10.5], + "from": [ + 7, + 0, + 10.25 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 10.25, 7, 10.5], "texture": "#0"}, - "east": {"uv": [7.75, 10.25, 8, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.25, 8, 10.5], "texture": "#0"}, - "west": {"uv": [7, 10.25, 7.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10.25, 8, 10.5], "texture": "#0"}, - "down": {"uv": [7, 10.5, 8, 10.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 10.25, + 7, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10.5, + 8, + 10.25 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [-180, -35, 0], - "translation": [0.75, -5.25, 0], - "scale": [0.72, 0.72, 0.72] + "rotation": [ + -180, + -35, + 0 + ], + "translation": [ + 0.75, + -5.25, + 0 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] }, "thirdperson_lefthand": { - "rotation": [0, -132, 0], - "translation": [0.75, 6, 0], - "scale": [0.72, 0.72, 0.72] + "rotation": [ + 0, + -132, + 0 + ], + "translation": [ + 0.75, + 6, + 0 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] }, "firstperson_righthand": { - "rotation": [88, -31, 0], - "translation": [5.25, -1.75, 5], - "scale": [0.72, 0.72, 0.72] + "rotation": [ + 88, + -31, + 0 + ], + "translation": [ + 5.25, + -1.75, + 5 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] }, "firstperson_lefthand": { - "rotation": [82, -35, -174], - "translation": [2.75, -0.5, -1.5], - "scale": [0.72, 0.72, 0.72] + "rotation": [ + 82, + -35, + -174 + ], + "translation": [ + 2.75, + -0.5, + -1.5 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] }, "ground": { - "rotation": [-180, 0, 0], - "translation": [0, -11, -2.25] + "rotation": [ + -180, + 0, + 0 + ], + "translation": [ + 0, + -11, + -2.25 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 6, -180], - "translation": [-0.25, -2.25, -16], - "scale": [1.19, 1.19, 1.19] + "rotation": [ + 90, + 6, + -180 + ], + "translation": [ + -0.25, + -2.25, + -16 + ], + "scale": [ + 1.19, + 1.19, + 1.19 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.25, 1.25, 1.25] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] } }, "groups": [ { "name": "hirame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49 + ] } ] -} +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/iero-pa-ti.json b/pack/assets/minecraft/models/fish/iero-pa-ti.json index 991bc6b6..5a6ccc40 100644 --- a/pack/assets/minecraft/models/fish/iero-pa-ti.json +++ b/pack/assets/minecraft/models/fish/iero-pa-ti.json @@ -2,683 +2,3616 @@ "__name": "イエローパーチ", "credit": "Made with Blockbench", "textures": { - "3": "fish/iero-pa-ti", - "particle": "fish/ei" + "3": "item/fish/iero-pa-ti", + "particle": "item/fish/ei" }, "elements": [ { "name": "iero-pa-ti_0", - "from": [5.5, 0, 4.25], - "to": [7.25, 0.25, 10.5], + "from": [ + 5.5, + 0, + 4.25 + ], + "to": [ + 7.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.25, 4.25, 5.5, 4.5], "texture": "#3"}, - "east": {"uv": [7, 4.25, 7.25, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.5, 10.25, 7.25, 10.5], "texture": "#3"}, - "west": {"uv": [5.5, 4.25, 5.75, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.5, 4.25, 7.25, 10.5], "texture": "#3"}, - "down": {"uv": [5.5, 10.5, 7.25, 4.25], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 4.25, + 5.5, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 4.25, + 7.25, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 7.25, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.5, + 4.25, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.5, + 4.25, + 7.25, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 7.25, + 4.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_1", - "from": [5.25, 0, 4.5], - "to": [5.5, 0.25, 11], + "from": [ + 5.25, + 0, + 4.5 + ], + "to": [ + 5.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.5, 4.5, 5.25, 4.75], "texture": "#3"}, - "east": {"uv": [5.25, 4.5, 5.5, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.25, 10.75, 5.5, 11], "texture": "#3"}, - "west": {"uv": [5.25, 4.5, 5.5, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.25, 4.5, 5.5, 11], "texture": "#3"}, - "down": {"uv": [5.25, 11, 5.5, 4.5], "texture": "#3"} + "north": { + "uv": [ + 5.5, + 4.5, + 5.25, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.25, + 4.5, + 5.5, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.25, + 4.5, + 5.5, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.25, + 4.5, + 5.5, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.25, + 11, + 5.5, + 4.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_2", - "from": [7.25, 0, 4.5], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 4.5 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 4.5, 7.25, 4.75], "texture": "#3"}, - "east": {"uv": [7.25, 4.5, 7.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#3"}, - "west": {"uv": [7.25, 4.5, 7.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.25, 4.5, 7.5, 10.5], "texture": "#3"}, - "down": {"uv": [7.25, 10.5, 7.5, 4.5], "texture": "#3"} + "north": { + "uv": [ + 7.5, + 4.5, + 7.25, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.25, + 4.5, + 7.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 4.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_3", - "from": [5, 0, 4.75], - "to": [5.25, 0.25, 10.75], + "from": [ + 5, + 0, + 4.75 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 4.75, 5, 5], "texture": "#3"}, - "east": {"uv": [5, 4.75, 5.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#3"}, - "west": {"uv": [5, 4.75, 5.25, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5, 4.75, 5.25, 10.75], "texture": "#3"}, - "down": {"uv": [5, 10.75, 5.25, 4.75], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 4.75, + 5, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5, + 4.75, + 5.25, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5, + 4.75, + 5.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5, + 10.75, + 5.25, + 4.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_4", - "from": [7.5, 0, 4.75], - "to": [8, 0.25, 10.5], + "from": [ + 7.5, + 0, + 4.75 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 4.75, 7.5, 5], "texture": "#3"}, - "east": {"uv": [7.75, 4.75, 8, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.5, 10.25, 8, 10.5], "texture": "#3"}, - "west": {"uv": [7.5, 4.75, 7.75, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.5, 4.75, 8, 10.5], "texture": "#3"}, - "down": {"uv": [7.5, 10.5, 8, 4.75], "texture": "#3"} + "north": { + "uv": [ + 8, + 4.75, + 7.5, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.75, + 4.75, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 8, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.5, + 4.75, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.5, + 4.75, + 8, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 8, + 4.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_5", - "from": [4.75, 0, 5], - "to": [5, 0.25, 10.5], + "from": [ + 4.75, + 0, + 5 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 5, 4.75, 5.25], "texture": "#3"}, - "east": {"uv": [4.75, 5, 5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.75, 10.25, 5, 10.5], "texture": "#3"}, - "west": {"uv": [4.75, 5, 5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.75, 5, 5, 10.5], "texture": "#3"}, - "down": {"uv": [4.75, 10.5, 5, 5], "texture": "#3"} + "north": { + "uv": [ + 5, + 5, + 4.75, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.75, + 5, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.75, + 5, + 5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.75, + 5, + 5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.75, + 10.5, + 5, + 5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_6", - "from": [8, 0, 5], - "to": [8.5, 0.25, 10.25], + "from": [ + 8, + 0, + 5 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.5, 5, 8, 5.25], "texture": "#3"}, - "east": {"uv": [8.25, 5, 8.5, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8, 10, 8.5, 10.25], "texture": "#3"}, - "west": {"uv": [8, 5, 8.25, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8, 5, 8.5, 10.25], "texture": "#3"}, - "down": {"uv": [8, 10.25, 8.5, 5], "texture": "#3"} + "north": { + "uv": [ + 8.5, + 5, + 8, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.25, + 5, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8, + 10, + 8.5, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8, + 5, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8, + 5, + 8.5, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.5, + 5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_7", - "from": [4.5, 0, 5.25], - "to": [4.75, 0.25, 10.5], + "from": [ + 4.5, + 0, + 5.25 + ], + "to": [ + 4.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.75, 5.25, 4.5, 5.5], "texture": "#3"}, - "east": {"uv": [4.5, 5.25, 4.75, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.5, 10.25, 4.75, 10.5], "texture": "#3"}, - "west": {"uv": [4.5, 5.25, 4.75, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.5, 5.25, 4.75, 10.5], "texture": "#3"}, - "down": {"uv": [4.5, 10.5, 4.75, 5.25], "texture": "#3"} + "north": { + "uv": [ + 4.75, + 5.25, + 4.5, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.5, + 5.25, + 4.75, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.5, + 5.25, + 4.75, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.5, + 5.25, + 4.75, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.5, + 10.5, + 4.75, + 5.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_8", - "from": [8.5, 0, 5.25], - "to": [8.75, 0.25, 10.25], + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 5.25, 8.5, 5.5], "texture": "#3"}, - "east": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#3"}, - "west": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.5, 5.25, 8.75, 10.25], "texture": "#3"}, - "down": {"uv": [8.5, 10.25, 8.75, 5.25], "texture": "#3"} + "north": { + "uv": [ + 8.75, + 5.25, + 8.5, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 8.75, + 5.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_9", - "from": [10, 0, 5.5], - "to": [10.5, 0.25, 10], + "from": [ + 10, + 0, + 5.5 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 5.5, 10, 5.75], "texture": "#3"}, - "east": {"uv": [10.25, 5.5, 10.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 9.75, 10.5, 10], "texture": "#3"}, - "west": {"uv": [10, 5.5, 10.25, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 5.5, 10.5, 10], "texture": "#3"}, - "down": {"uv": [10, 10, 10.5, 5.5], "texture": "#3"} + "north": { + "uv": [ + 10.5, + 5.5, + 10, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 5.5, + 10.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 10, + 10.5, + 5.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_10", - "from": [4, 0, 5.75], - "to": [4.5, 0.25, 10.25], + "from": [ + 4, + 0, + 5.75 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.5, 5.75, 4, 6], "texture": "#3"}, - "east": {"uv": [4.25, 5.75, 4.5, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4, 10, 4.5, 10.25], "texture": "#3"}, - "west": {"uv": [4, 5.75, 4.25, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4, 5.75, 4.5, 10.25], "texture": "#3"}, - "down": {"uv": [4, 10.25, 4.5, 5.75], "texture": "#3"} + "north": { + "uv": [ + 4.5, + 5.75, + 4, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.25, + 5.75, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4, + 10, + 4.5, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4, + 5.75, + 4.25, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4, + 5.75, + 4.5, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4, + 10.25, + 4.5, + 5.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_11", - "from": [9.75, 0, 5.75], - "to": [10, 0.25, 10], + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 5.75, 9.75, 6], "texture": "#3"}, - "east": {"uv": [9.75, 5.75, 10, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.75, 9.75, 10, 10], "texture": "#3"}, - "west": {"uv": [9.75, 5.75, 10, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.75, 5.75, 10, 10], "texture": "#3"}, - "down": {"uv": [9.75, 10, 10, 5.75], "texture": "#3"} + "north": { + "uv": [ + 10, + 5.75, + 9.75, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.75, + 5.75, + 10, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.75, + 10, + 10, + 5.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_12", - "from": [10.5, 0, 5.75], - "to": [11.25, 0.25, 10.25], + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 5.75, 10.5, 6], "texture": "#3"}, - "east": {"uv": [11, 5.75, 11.25, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.5, 10, 11.25, 10.25], "texture": "#3"}, - "west": {"uv": [10.5, 5.75, 10.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.5, 5.75, 11.25, 10.25], "texture": "#3"}, - "down": {"uv": [10.5, 10.25, 11.25, 5.75], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 5.75, + 10.5, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 5.75, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.5, + 10, + 11.25, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 11.25, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 11.25, + 5.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_13", - "from": [3.5, 0, 6], - "to": [4, 0.25, 10.25], + "from": [ + 3.5, + 0, + 6 + ], + "to": [ + 4, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4, 6, 3.5, 6.25], "texture": "#3"}, - "east": {"uv": [3.75, 6, 4, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3.5, 10, 4, 10.25], "texture": "#3"}, - "west": {"uv": [3.5, 6, 3.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3.5, 6, 4, 10.25], "texture": "#3"}, - "down": {"uv": [3.5, 10.25, 4, 6], "texture": "#3"} + "north": { + "uv": [ + 4, + 6, + 3.5, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.75, + 6, + 4, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3.5, + 10, + 4, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3.5, + 6, + 4, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 4, + 6 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_14", - "from": [8.75, 0, 6], - "to": [9.75, 0.25, 10], + "from": [ + 8.75, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 6, 8.75, 6.25], "texture": "#3"}, - "east": {"uv": [9.5, 6, 9.75, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.75, 9.75, 9.75, 10], "texture": "#3"}, - "west": {"uv": [8.75, 6, 9, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.75, 6, 9.75, 10], "texture": "#3"}, - "down": {"uv": [8.75, 10, 9.75, 6], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 6, + 8.75, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.75, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.75, + 6, + 9, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.75, + 6, + 9.75, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.75, + 6 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_15", - "from": [11.25, 0, 6], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 6 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 6, 11.25, 6.25], "texture": "#3"}, - "east": {"uv": [11.25, 6, 11.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#3"}, - "west": {"uv": [11.25, 6, 11.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 6, 11.5, 10.5], "texture": "#3"}, - "down": {"uv": [11.25, 10.5, 11.5, 6], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 6, + 11.25, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 6, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 6, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 6, + 11.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 6 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_16", - "from": [3, 0, 6.25], - "to": [3.5, 0.25, 10], + "from": [ + 3, + 0, + 6.25 + ], + "to": [ + 3.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.5, 6.25, 3, 6.5], "texture": "#3"}, - "east": {"uv": [3.25, 6.25, 3.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3, 9.75, 3.5, 10], "texture": "#3"}, - "west": {"uv": [3, 6.25, 3.25, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3, 6.25, 3.5, 10], "texture": "#3"}, - "down": {"uv": [3, 10, 3.5, 6.25], "texture": "#3"} + "north": { + "uv": [ + 3.5, + 6.25, + 3, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.25, + 6.25, + 3.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3, + 9.75, + 3.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3, + 6.25, + 3.25, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3, + 6.25, + 3.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3, + 10, + 3.5, + 6.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_17", - "from": [11.5, 0, 6.25], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 6.25, 11.5, 6.5], "texture": "#3"}, - "east": {"uv": [11.5, 6.25, 11.75, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#3"}, - "west": {"uv": [11.5, 6.25, 11.75, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.5, 6.25, 11.75, 10.5], "texture": "#3"}, - "down": {"uv": [11.5, 10.5, 11.75, 6.25], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 6.25, + 11.5, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 6.25, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 11.75, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 6.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_18", - "from": [2.25, 0, 6.5], - "to": [3, 0.25, 9.75], + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 6.5, 2.25, 6.75], "texture": "#3"}, - "east": {"uv": [2.75, 6.5, 3, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.25, 9.5, 3, 9.75], "texture": "#3"}, - "west": {"uv": [2.25, 6.5, 2.5, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.25, 6.5, 3, 9.75], "texture": "#3"}, - "down": {"uv": [2.25, 9.75, 3, 6.5], "texture": "#3"} + "north": { + "uv": [ + 3, + 6.5, + 2.25, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.75, + 6.5, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 3, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 3, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 3, + 6.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_19", - "from": [11.75, 0, 6.5], - "to": [12, 0.25, 10.25], + "from": [ + 11.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12, 6.5, 11.75, 6.75], "texture": "#3"}, - "east": {"uv": [11.75, 6.5, 12, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 10, 12, 10.25], "texture": "#3"}, - "west": {"uv": [11.75, 6.5, 12, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 6.5, 12, 10.25], "texture": "#3"}, - "down": {"uv": [11.75, 10.25, 12, 6.5], "texture": "#3"} + "north": { + "uv": [ + 12, + 6.5, + 11.75, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 10, + 12, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 6.5, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 6.5, + 12, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12, + 6.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_20", - "from": [14.5, 0, 6.5], - "to": [15.25, 0.25, 10], + "from": [ + 14.5, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.25, 6.5, 14.5, 6.75], "texture": "#3"}, - "east": {"uv": [15, 6.5, 15.25, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 9.75, 15.25, 10], "texture": "#3"}, - "west": {"uv": [14.5, 6.5, 14.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 6.5, 15.25, 10], "texture": "#3"}, - "down": {"uv": [14.5, 10, 15.25, 6.5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 15.25, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 6.5, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 6.5, + 15.25, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 10, + 15.25, + 6.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_21", - "from": [1.75, 0, 6.75], - "to": [2.25, 0.25, 9.5], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.25, 6.75, 1.75, 7], "texture": "#3"}, - "east": {"uv": [2, 6.75, 2.25, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.75, 9.25, 2.25, 9.5], "texture": "#3"}, - "west": {"uv": [1.75, 6.75, 2, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.75, 6.75, 2.25, 9.5], "texture": "#3"}, - "down": {"uv": [1.75, 9.5, 2.25, 6.75], "texture": "#3"} + "north": { + "uv": [ + 2.25, + 6.75, + 1.75, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2, + 6.75, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2.25, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.25, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2.25, + 6.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_22", - "from": [14.25, 0, 6.75], - "to": [14.5, 0.25, 10], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.5, 6.75, 14.25, 7], "texture": "#3"}, - "east": {"uv": [14.25, 6.75, 14.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 9.75, 14.5, 10], "texture": "#3"}, - "west": {"uv": [14.25, 6.75, 14.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 6.75, 14.5, 10], "texture": "#3"}, - "down": {"uv": [14.25, 10, 14.5, 6.75], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 6.75, + 14.25, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 14.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 10, + 14.5, + 6.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_23", - "from": [15.25, 0, 6.75], - "to": [15.5, 0.25, 8.25], + "from": [ + 15.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.5, 6.75, 15.25, 7], "texture": "#3"}, - "east": {"uv": [15.25, 6.75, 15.5, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#3"}, - "west": {"uv": [15.25, 6.75, 15.5, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 6.75, 15.5, 8.25], "texture": "#3"}, - "down": {"uv": [15.25, 8.25, 15.5, 6.75], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 6.75, + 15.25, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 6.75, + 15.5, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 6.75, + 15.5, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 8.25, + 15.5, + 6.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_24", - "from": [1.25, 0, 7], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 7, 1.25, 7.25], "texture": "#3"}, - "east": {"uv": [1.5, 7, 1.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.25, 9, 1.75, 9.25], "texture": "#3"}, - "west": {"uv": [1.25, 7, 1.5, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.25, 7, 1.75, 9.25], "texture": "#3"}, - "down": {"uv": [1.25, 9.25, 1.75, 7], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 7, + 1.25, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.75, + 7 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_25", - "from": [13.75, 0, 7], - "to": [14.25, 0.25, 9.75], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 7, 13.75, 7.25], "texture": "#3"}, - "east": {"uv": [14, 7, 14.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.75, 9.5, 14.25, 9.75], "texture": "#3"}, - "west": {"uv": [13.75, 7, 14, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.75, 7, 14.25, 9.75], "texture": "#3"}, - "down": {"uv": [13.75, 9.75, 14.25, 7], "texture": "#3"} + "north": { + "uv": [ + 14.25, + 7, + 13.75, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.75, + 7, + 14.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14.25, + 7 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_26", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 9.25], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#3"}, - "east": {"uv": [1, 7.25, 1.25, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1, 9, 1.25, 9.25], "texture": "#3"}, - "west": {"uv": [1, 7.25, 1.25, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1, 7.25, 1.25, 9.25], "texture": "#3"}, - "down": {"uv": [1, 9.25, 1.25, 7.25], "texture": "#3"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.25, + 7.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_27", - "from": [12, 0, 7.25], - "to": [12.25, 0.25, 9.25], + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.25, 7.25, 12, 7.5], "texture": "#3"}, - "east": {"uv": [12, 7.25, 12.25, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12, 9, 12.25, 9.25], "texture": "#3"}, - "west": {"uv": [12, 7.25, 12.25, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12, 7.25, 12.25, 9.25], "texture": "#3"}, - "down": {"uv": [12, 9.25, 12.25, 7.25], "texture": "#3"} + "north": { + "uv": [ + 12.25, + 7.25, + 12, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12, + 9, + 12.25, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12, + 7.25, + 12.25, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.25, + 7.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_28", - "from": [13, 0, 7.25], - "to": [13.75, 0.25, 9.25], + "from": [ + 13, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 7.25, 13, 7.5], "texture": "#3"}, - "east": {"uv": [13.5, 7.25, 13.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13, 9, 13.75, 9.25], "texture": "#3"}, - "west": {"uv": [13, 7.25, 13.25, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13, 7.25, 13.75, 9.25], "texture": "#3"}, - "down": {"uv": [13, 9.25, 13.75, 7.25], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 7.25, + 13, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13, + 9, + 13.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13, + 7.25, + 13.25, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13, + 7.25, + 13.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13, + 9.25, + 13.75, + 7.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_29", - "from": [0.5, 0, 7.5], - "to": [1, 0.25, 8.75], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 7.5, 0.5, 7.75], "texture": "#3"}, - "east": {"uv": [0.75, 7.5, 1, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 8.5, 1, 8.75], "texture": "#3"}, - "west": {"uv": [0.5, 7.5, 0.75, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 7.5, 1, 8.75], "texture": "#3"}, - "down": {"uv": [0.5, 8.75, 1, 7.5], "texture": "#3"} + "north": { + "uv": [ + 1, + 7.5, + 0.5, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 1, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 1, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 8.75, + 1, + 7.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_30", - "from": [12.25, 0, 7.5], - "to": [13, 0.25, 9.25], + "from": [ + 12.25, + 0, + 7.5 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 7.5, 12.25, 7.75], "texture": "#3"}, - "east": {"uv": [12.75, 7.5, 13, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.25, 9, 13, 9.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.5, 12.5, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.25, 7.5, 13, 9.25], "texture": "#3"}, - "down": {"uv": [12.25, 9.25, 13, 7.5], "texture": "#3"} + "north": { + "uv": [ + 13, + 7.5, + 12.25, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.75, + 7.5, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.25, + 9, + 13, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.25, + 7.5, + 12.5, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.25, + 7.5, + 13, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.25, + 9.25, + 13, + 7.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_31", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 8], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#3"}, - "east": {"uv": [0.25, 7.75, 0.5, 8], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.25, 7.75, 0.5, 8], "texture": "#3"}, - "west": {"uv": [0.25, 7.75, 0.5, 8], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.25, 7.75, 0.5, 8], "texture": "#3"}, - "down": {"uv": [0.25, 8, 0.5, 7.75], "texture": "#3"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.25, + 8, + 0.5, + 7.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_32", - "from": [0.25, 0, 8.25], - "to": [0.5, 0.25, 8.5], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.5, 8.25, 0.25, 8.5], "texture": "#3"}, - "east": {"uv": [0.25, 8.25, 0.5, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#3"}, - "west": {"uv": [0.25, 8.25, 0.5, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#3"}, - "down": {"uv": [0.25, 8.5, 0.5, 8.25], "texture": "#3"} + "north": { + "uv": [ + 0.5, + 8.25, + 0.25, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_33", - "from": [0.75, 0, 8.75], - "to": [1, 0.25, 9], + "from": [ + 0.75, + 0, + 8.75 + ], + "to": [ + 1, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1, 8.75, 0.75, 9], "texture": "#3"}, - "east": {"uv": [0.75, 8.75, 1, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 8.75, 1, 9], "texture": "#3"}, - "west": {"uv": [0.75, 8.75, 1, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 8.75, 1, 9], "texture": "#3"}, - "down": {"uv": [0.75, 9, 1, 8.75], "texture": "#3"} + "north": { + "uv": [ + 1, + 8.75, + 0.75, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 9, + 1, + 8.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_34", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#3"}, - "east": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#3"}, - "west": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 8.75, 15.5, 10], "texture": "#3"}, - "down": {"uv": [15.25, 10, 15.5, 8.75], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 8.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_35", - "from": [1.5, 0, 9.25], - "to": [1.75, 0.25, 9.5], + "from": [ + 1.5, + 0, + 9.25 + ], + "to": [ + 1.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.75, 9.25, 1.5, 9.5], "texture": "#3"}, - "east": {"uv": [1.5, 9.25, 1.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.5, 9.25, 1.75, 9.5], "texture": "#3"}, - "west": {"uv": [1.5, 9.25, 1.75, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.5, 9.25, 1.75, 9.5], "texture": "#3"}, - "down": {"uv": [1.5, 9.5, 1.75, 9.25], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 9.25, + 1.5, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_36", - "from": [13.25, 0, 9.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.25, + 0, + 9.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 9.25, 13.25, 9.5], "texture": "#3"}, - "east": {"uv": [13.5, 9.25, 13.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.25, 9.25, 13.75, 9.5], "texture": "#3"}, - "west": {"uv": [13.25, 9.25, 13.5, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.25, 9.25, 13.75, 9.5], "texture": "#3"}, - "down": {"uv": [13.25, 9.5, 13.75, 9.25], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 9.25, + 13.25, + 9.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.25, + 9.25, + 13.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.25, + 9.25, + 13.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.25, + 9.5, + 13.75, + 9.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_37", - "from": [2, 0, 9.5], - "to": [2.25, 0.25, 9.75], + "from": [ + 2, + 0, + 9.5 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.25, 9.5, 2, 9.75], "texture": "#3"}, - "east": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2, 9.5, 2.25, 9.75], "texture": "#3"}, - "west": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2, 9.5, 2.25, 9.75], "texture": "#3"}, - "down": {"uv": [2, 9.75, 2.25, 9.5], "texture": "#3"} + "north": { + "uv": [ + 2.25, + 9.5, + 2, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2, + 9.75, + 2.25, + 9.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_38", - "from": [13.5, 0, 9.5], - "to": [13.75, 0.25, 9.75], + "from": [ + 13.5, + 0, + 9.5 + ], + "to": [ + 13.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.75, 9.5, 13.5, 9.75], "texture": "#3"}, - "east": {"uv": [13.5, 9.5, 13.75, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.5, 9.5, 13.75, 9.75], "texture": "#3"}, - "west": {"uv": [13.5, 9.5, 13.75, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.5, 9.5, 13.75, 9.75], "texture": "#3"}, - "down": {"uv": [13.5, 9.75, 13.75, 9.5], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 9.5, + 13.5, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.5, + 9.75, + 13.75, + 9.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_39", - "from": [2.5, 0, 9.75], - "to": [3, 0.25, 10], + "from": [ + 2.5, + 0, + 9.75 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 9.75, 2.5, 10], "texture": "#3"}, - "east": {"uv": [2.75, 9.75, 3, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.5, 9.75, 3, 10], "texture": "#3"}, - "west": {"uv": [2.5, 9.75, 2.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.5, 9.75, 3, 10], "texture": "#3"}, - "down": {"uv": [2.5, 10, 3, 9.75], "texture": "#3"} + "north": { + "uv": [ + 3, + 9.75, + 2.5, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 3, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.5, + 9.75, + 3, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.5, + 10, + 3, + 9.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_40", - "from": [14, 0, 9.75], - "to": [14.25, 0.25, 10], + "from": [ + 14, + 0, + 9.75 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 9.75, 14, 10], "texture": "#3"}, - "east": {"uv": [14, 9.75, 14.25, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14, 9.75, 14.25, 10], "texture": "#3"}, - "west": {"uv": [14, 9.75, 14.25, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14, 9.75, 14.25, 10], "texture": "#3"}, - "down": {"uv": [14, 10, 14.25, 9.75], "texture": "#3"} + "north": { + "uv": [ + 14.25, + 9.75, + 14, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14, + 10, + 14.25, + 9.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_41", - "from": [8.75, 0, 10], - "to": [9, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 10, 8.75, 10.25], "texture": "#3"}, - "east": {"uv": [8.75, 10, 9, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#3"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.75, 10, 9, 10.25], "texture": "#3"}, - "down": {"uv": [8.75, 10.25, 9, 10], "texture": "#3"} + "north": { + "uv": [ + 9, + 10, + 8.75, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 10 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_42", - "from": [14.75, 0, 10], - "to": [15.25, 0.25, 10.25], + "from": [ + 14.75, + 0, + 10 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 10, 14.75, 10.25], "texture": "#3"}, - "east": {"uv": [15, 10, 15.25, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 10, 15.25, 10.25], "texture": "#3"}, - "west": {"uv": [14.75, 10, 15, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 10, 15.25, 10.25], "texture": "#3"}, - "down": {"uv": [14.75, 10.25, 15.25, 10], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 10, + 14.75, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 10, + 15.25, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 10, + 15.25, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15.25, + 10 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_43", - "from": [10.75, 0, 10.25], - "to": [11.25, 0.25, 10.5], + "from": [ + 10.75, + 0, + 10.25 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 10.25, 10.75, 10.5], "texture": "#3"}, - "east": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 10.25, 11.25, 10.5], "texture": "#3"}, - "west": {"uv": [10.75, 10.25, 11, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 10.25, 11.25, 10.5], "texture": "#3"}, - "down": {"uv": [10.75, 10.5, 11.25, 10.25], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 10.25, + 10.75, + 10.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 10.25, + 11.25, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 10.25, + 11, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 10.25, + 11.25, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 10.5, + 11.25, + 10.25 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_44", - "from": [5.5, 0, 10.5], - "to": [7, 0.25, 11], + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 7, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7, 10.5, 5.5, 10.75], "texture": "#3"}, - "east": {"uv": [6.75, 10.5, 7, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.5, 10.75, 7, 11], "texture": "#3"}, - "west": {"uv": [5.5, 10.5, 5.75, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.5, 10.5, 7, 11], "texture": "#3"}, - "down": {"uv": [5.5, 11, 7, 10.5], "texture": "#3"} + "north": { + "uv": [ + 7, + 10.5, + 5.5, + 10.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.75, + 10.5, + 7, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.5, + 10.75, + 7, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 7, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.5, + 11, + 7, + 10.5 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_45", - "from": [7, 0, 10.75], - "to": [7.25, 0.25, 11], + "from": [ + 7, + 0, + 10.75 + ], + "to": [ + 7.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.25, 10.75, 7, 11], "texture": "#3"}, - "east": {"uv": [7, 10.75, 7.25, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7, 10.75, 7.25, 11], "texture": "#3"}, - "west": {"uv": [7, 10.75, 7.25, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7, 10.75, 7.25, 11], "texture": "#3"}, - "down": {"uv": [7, 11, 7.25, 10.75], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 10.75, + 7, + 11 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7, + 11, + 7.25, + 10.75 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_46", - "from": [5.75, 0, 11], - "to": [7, 0.25, 11.25], + "from": [ + 5.75, + 0, + 11 + ], + "to": [ + 7, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7, 11, 5.75, 11.25], "texture": "#3"}, - "east": {"uv": [6.75, 11, 7, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.75, 11, 7, 11.25], "texture": "#3"}, - "west": {"uv": [5.75, 11, 6, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.75, 11, 7, 11.25], "texture": "#3"}, - "down": {"uv": [5.75, 11.25, 7, 11], "texture": "#3"} + "north": { + "uv": [ + 7, + 11, + 5.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.75, + 11, + 7, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.75, + 11, + 7, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.75, + 11, + 7, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.75, + 11.25, + 7, + 11 + ], + "texture": "#3" + } } }, { "name": "iero-pa-ti_47", - "from": [6.25, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.25, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.25, 11.5], "texture": "#3"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#3"}, - "west": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#3"}, - "down": {"uv": [6.25, 11.5, 6.75, 11.25], "texture": "#3"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.25, + 11.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.75, + 11.25 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 2, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 2, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 2, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 2, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 2, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 2, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 2, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 2, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 2, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 2, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 8.5, 5.75], - "scale": [0.69, 0.69, 0.69] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 8.5, + 5.75 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "iero-pa-ti", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ika.json b/pack/assets/minecraft/models/fish/ika.json index 5104b192..0d4cb11d 100644 --- a/pack/assets/minecraft/models/fish/ika.json +++ b/pack/assets/minecraft/models/fish/ika.json @@ -2,422 +2,2171 @@ "__name": "イカ", "credit": "Made with Blockbench", "textures": { - "1": "fish/ika", - "particle": "fish/ika" + "1": "item/fish/ika", + "particle": "item/fish/ika" }, "elements": [ { "name": "ika_0", - "from": [7.5, 0, 0], - "to": [8.5, 0.25, 15.25], + "from": [ + 7.5, + 0, + 0 + ], + "to": [ + 8.5, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [8.5, 0, 7.5, 0.25], "texture": "#1"}, - "east": {"uv": [8.25, 0, 8.5, 15.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 15, 8.5, 15.25], "texture": "#1"}, - "west": {"uv": [7.5, 0, 7.75, 15.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 0, 8.5, 15.25], "texture": "#1"}, - "down": {"uv": [7.5, 15.25, 8.5, 0], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 0, + 7.5, + 0.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 0, + 8.5, + 15.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 15, + 8.5, + 15.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 0, + 7.75, + 15.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 0, + 8.5, + 15.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 15.25, + 8.5, + 0 + ], + "texture": "#1" + } } }, { "name": "ika_1", - "from": [6.5, 0, 0.25], - "to": [7.5, 0.25, 11], + "from": [ + 6.5, + 0, + 0.25 + ], + "to": [ + 7.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.5, 0.25, 6.5, 0.5], "texture": "#1"}, - "east": {"uv": [7.25, 0.25, 7.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 10.75, 7.5, 11], "texture": "#1"}, - "west": {"uv": [6.5, 0.25, 6.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 0.25, 7.5, 11], "texture": "#1"}, - "down": {"uv": [6.5, 11, 7.5, 0.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 0.25, + 6.5, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 0.25, + 7.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 10.75, + 7.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 0.25, + 6.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 0.25, + 7.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 11, + 7.5, + 0.25 + ], + "texture": "#1" + } } }, { "name": "ika_2", - "from": [8.5, 0, 0.25], - "to": [9.25, 0.25, 13.25], + "from": [ + 8.5, + 0, + 0.25 + ], + "to": [ + 9.25, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [9.25, 0.25, 8.5, 0.5], "texture": "#1"}, - "east": {"uv": [9, 0.25, 9.25, 13.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 13, 9.25, 13.25], "texture": "#1"}, - "west": {"uv": [8.5, 0.25, 8.75, 13.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 0.25, 9.25, 13.25], "texture": "#1"}, - "down": {"uv": [8.5, 13.25, 9.25, 0.25], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 0.25, + 8.5, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 0.25, + 9.25, + 13.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 13, + 9.25, + 13.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.25, + 8.75, + 13.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 0.25, + 9.25, + 13.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 13.25, + 9.25, + 0.25 + ], + "texture": "#1" + } } }, { "name": "ika_3", - "from": [9.25, 0, 0.5], - "to": [9.5, 0.25, 11], + "from": [ + 9.25, + 0, + 0.5 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 0.5, 9.25, 0.75], "texture": "#1"}, - "east": {"uv": [9.25, 0.5, 9.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#1"}, - "west": {"uv": [9.25, 0.5, 9.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 0.5, 9.5, 11], "texture": "#1"}, - "down": {"uv": [9.25, 11, 9.5, 0.5], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 0.5, + 9.25, + 0.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 0.5, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 0.5, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 0.5, + 9.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.5, + 0.5 + ], + "texture": "#1" + } } }, { "name": "ika_4", - "from": [6.25, 0, 0.75], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 0.75 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 0.75, 6.25, 1], "texture": "#1"}, - "east": {"uv": [6.25, 0.75, 6.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#1"}, - "west": {"uv": [6.25, 0.75, 6.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 0.75, 6.5, 10.25], "texture": "#1"}, - "down": {"uv": [6.25, 10.25, 6.5, 0.75], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 0.75, + 6.25, + 1 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 0.75, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 0.75, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 0.75, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 0.75 + ], + "texture": "#1" + } } }, { "name": "ika_5", - "from": [9.5, 0, 0.75], - "to": [9.75, 0.25, 10.25], + "from": [ + 9.5, + 0, + 0.75 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 0.75, 9.5, 1], "texture": "#1"}, - "east": {"uv": [9.5, 0.75, 9.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 10, 9.75, 10.25], "texture": "#1"}, - "west": {"uv": [9.5, 0.75, 9.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 0.75, 9.75, 10.25], "texture": "#1"}, - "down": {"uv": [9.5, 10.25, 9.75, 0.75], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 0.75, + 9.5, + 1 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 0.75, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 0.75, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 0.75, + 9.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 9.75, + 0.75 + ], + "texture": "#1" + } } }, { "name": "ika_6", - "from": [6, 0, 1], - "to": [6.25, 0.25, 9], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 6.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [6.25, 1, 6, 1.25], "texture": "#1"}, - "east": {"uv": [6, 1, 6.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 8.75, 6.25, 9], "texture": "#1"}, - "west": {"uv": [6, 1, 6.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 1, 6.25, 9], "texture": "#1"}, - "down": {"uv": [6, 9, 6.25, 1], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 1, + 6, + 1.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 1, + 6.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 8.75, + 6.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 1, + 6.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 1, + 6.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 9, + 6.25, + 1 + ], + "texture": "#1" + } } }, { "name": "ika_7", - "from": [9.75, 0, 1], - "to": [10, 0.25, 9.25], + "from": [ + 9.75, + 0, + 1 + ], + "to": [ + 10, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10, 1, 9.75, 1.25], "texture": "#1"}, - "east": {"uv": [9.75, 1, 10, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9, 10, 9.25], "texture": "#1"}, - "west": {"uv": [9.75, 1, 10, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 1, 10, 9.25], "texture": "#1"}, - "down": {"uv": [9.75, 9.25, 10, 1], "texture": "#1"} + "north": { + "uv": [ + 10, + 1, + 9.75, + 1.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 1, + 10, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 1, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 1, + 10, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10, + 1 + ], + "texture": "#1" + } } }, { "name": "ika_8", - "from": [5.75, 0, 1.25], - "to": [6, 0.25, 8.5], + "from": [ + 5.75, + 0, + 1.25 + ], + "to": [ + 6, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [6, 1.25, 5.75, 1.5], "texture": "#1"}, - "east": {"uv": [5.75, 1.25, 6, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 8.25, 6, 8.5], "texture": "#1"}, - "west": {"uv": [5.75, 1.25, 6, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 1.25, 6, 8.5], "texture": "#1"}, - "down": {"uv": [5.75, 8.5, 6, 1.25], "texture": "#1"} + "north": { + "uv": [ + 6, + 1.25, + 5.75, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 1.25, + 6, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 8.25, + 6, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 1.25, + 6, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 1.25, + 6, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 8.5, + 6, + 1.25 + ], + "texture": "#1" + } } }, { "name": "ika_9", - "from": [10, 0, 1.25], - "to": [10.25, 0.25, 9.25], + "from": [ + 10, + 0, + 1.25 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.25, 1.25, 10, 1.5], "texture": "#1"}, - "east": {"uv": [10, 1.25, 10.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 9, 10.25, 9.25], "texture": "#1"}, - "west": {"uv": [10, 1.25, 10.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 1.25, 10.25, 9.25], "texture": "#1"}, - "down": {"uv": [10, 9.25, 10.25, 1.25], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 1.25, + 10, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 1.25, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 1.25, + 10.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 1.25, + 10.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 9.25, + 10.25, + 1.25 + ], + "texture": "#1" + } } }, { "name": "ika_10", - "from": [5.5, 0, 1.5], - "to": [5.75, 0.25, 8], + "from": [ + 5.5, + 0, + 1.5 + ], + "to": [ + 5.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [5.75, 1.5, 5.5, 1.75], "texture": "#1"}, - "east": {"uv": [5.5, 1.5, 5.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 7.75, 5.75, 8], "texture": "#1"}, - "west": {"uv": [5.5, 1.5, 5.75, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 1.5, 5.75, 8], "texture": "#1"}, - "down": {"uv": [5.5, 8, 5.75, 1.5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 1.5, + 5.5, + 1.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 1.5, + 5.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 1.5, + 5.75, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 1.5, + 5.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 8, + 5.75, + 1.5 + ], + "texture": "#1" + } } }, { "name": "ika_11", - "from": [10.25, 0, 1.5], - "to": [10.5, 0.25, 9], + "from": [ + 10.25, + 0, + 1.5 + ], + "to": [ + 10.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.5, 1.5, 10.25, 1.75], "texture": "#1"}, - "east": {"uv": [10.25, 1.5, 10.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 8.75, 10.5, 9], "texture": "#1"}, - "west": {"uv": [10.25, 1.5, 10.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 1.5, 10.5, 9], "texture": "#1"}, - "down": {"uv": [10.25, 9, 10.5, 1.5], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 1.5, + 10.25, + 1.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 9, + 10.5, + 1.5 + ], + "texture": "#1" + } } }, { "name": "ika_12", - "from": [5.25, 0, 1.75], - "to": [5.5, 0.25, 7.5], + "from": [ + 5.25, + 0, + 1.75 + ], + "to": [ + 5.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [5.5, 1.75, 5.25, 2], "texture": "#1"}, - "east": {"uv": [5.25, 1.75, 5.5, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 7.25, 5.5, 7.5], "texture": "#1"}, - "west": {"uv": [5.25, 1.75, 5.5, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 1.75, 5.5, 7.5], "texture": "#1"}, - "down": {"uv": [5.25, 7.5, 5.5, 1.75], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 1.75, + 5.25, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 1.75, + 5.5, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 1.75, + 5.5, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 1.75, + 5.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 7.5, + 5.5, + 1.75 + ], + "texture": "#1" + } } }, { "name": "ika_13", - "from": [10.5, 0, 1.75], - "to": [10.75, 0.25, 7.5], + "from": [ + 10.5, + 0, + 1.75 + ], + "to": [ + 10.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [10.75, 1.75, 10.5, 2], "texture": "#1"}, - "east": {"uv": [10.5, 1.75, 10.75, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 7.25, 10.75, 7.5], "texture": "#1"}, - "west": {"uv": [10.5, 1.75, 10.75, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 1.75, 10.75, 7.5], "texture": "#1"}, - "down": {"uv": [10.5, 7.5, 10.75, 1.75], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 1.75, + 10.5, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 1.75, + 10.75, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 1.75, + 10.75, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 1.75, + 10.75, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 7.5, + 10.75, + 1.75 + ], + "texture": "#1" + } } }, { "name": "ika_14", - "from": [5, 0, 2], - "to": [5.25, 0.25, 6.75], + "from": [ + 5, + 0, + 2 + ], + "to": [ + 5.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [5.25, 2, 5, 2.25], "texture": "#1"}, - "east": {"uv": [5, 2, 5.25, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 6.5, 5.25, 6.75], "texture": "#1"}, - "west": {"uv": [5, 2, 5.25, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 2, 5.25, 6.75], "texture": "#1"}, - "down": {"uv": [5, 6.75, 5.25, 2], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 2, + 5, + 2.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2, + 5.25, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 6.5, + 5.25, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2, + 5.25, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 2, + 5.25, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 6.75, + 5.25, + 2 + ], + "texture": "#1" + } } }, { "name": "ika_15", - "from": [10.75, 0, 2], - "to": [11, 0.25, 6.75], + "from": [ + 10.75, + 0, + 2 + ], + "to": [ + 11, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [11, 2, 10.75, 2.25], "texture": "#1"}, - "east": {"uv": [10.75, 2, 11, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#1"}, - "west": {"uv": [10.75, 2, 11, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 2, 11, 6.75], "texture": "#1"}, - "down": {"uv": [10.75, 6.75, 11, 2], "texture": "#1"} + "north": { + "uv": [ + 11, + 2, + 10.75, + 2.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 2, + 11, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 2, + 11, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 2, + 11, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 6.75, + 11, + 2 + ], + "texture": "#1" + } } }, { "name": "ika_16", - "from": [11, 0, 2.5], - "to": [11.5, 0.25, 3.75], + "from": [ + 11, + 0, + 2.5 + ], + "to": [ + 11.5, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [11.5, 2.5, 11, 2.75], "texture": "#1"}, - "east": {"uv": [11.25, 2.5, 11.5, 3.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 3.5, 11.5, 3.75], "texture": "#1"}, - "west": {"uv": [11, 2.5, 11.25, 3.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 2.5, 11.5, 3.75], "texture": "#1"}, - "down": {"uv": [11, 3.75, 11.5, 2.5], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 2.5, + 11, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 2.5, + 11.5, + 3.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 3.5, + 11.5, + 3.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 2.5, + 11.25, + 3.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 2.5, + 11.5, + 3.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 3.75, + 11.5, + 2.5 + ], + "texture": "#1" + } } }, { "name": "ika_17", - "from": [4.75, 0, 2.75], - "to": [5, 0.25, 5.75], + "from": [ + 4.75, + 0, + 2.75 + ], + "to": [ + 5, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [5, 2.75, 4.75, 3], "texture": "#1"}, - "east": {"uv": [4.75, 2.75, 5, 5.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 5.5, 5, 5.75], "texture": "#1"}, - "west": {"uv": [4.75, 2.75, 5, 5.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 2.75, 5, 5.75], "texture": "#1"}, - "down": {"uv": [4.75, 5.75, 5, 2.75], "texture": "#1"} + "north": { + "uv": [ + 5, + 2.75, + 4.75, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 2.75, + 5, + 5.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 2.75, + 5, + 5.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 2.75, + 5, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 5.75, + 5, + 2.75 + ], + "texture": "#1" + } } }, { "name": "ika_18", - "from": [11.5, 0, 2.75], - "to": [11.75, 0.25, 3.5], + "from": [ + 11.5, + 0, + 2.75 + ], + "to": [ + 11.75, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [11.75, 2.75, 11.5, 3], "texture": "#1"}, - "east": {"uv": [11.5, 2.75, 11.75, 3.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 3.25, 11.75, 3.5], "texture": "#1"}, - "west": {"uv": [11.5, 2.75, 11.75, 3.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 2.75, 11.75, 3.5], "texture": "#1"}, - "down": {"uv": [11.5, 3.5, 11.75, 2.75], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 2.75, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 2.75, + 11.75, + 3.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 3.25, + 11.75, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 2.75, + 11.75, + 3.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 2.75, + 11.75, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 3.5, + 11.75, + 2.75 + ], + "texture": "#1" + } } }, { "name": "ika_19", - "from": [11, 0, 3.75], - "to": [11.25, 0.25, 5.75], + "from": [ + 11, + 0, + 3.75 + ], + "to": [ + 11.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [11.25, 3.75, 11, 4], "texture": "#1"}, - "east": {"uv": [11, 3.75, 11.25, 5.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 5.5, 11.25, 5.75], "texture": "#1"}, - "west": {"uv": [11, 3.75, 11.25, 5.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 3.75, 11.25, 5.75], "texture": "#1"}, - "down": {"uv": [11, 5.75, 11.25, 3.75], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 3.75, + 11, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 3.75, + 11.25, + 5.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.25, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 3.75, + 11.25, + 5.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 3.75, + 11.25, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 5.75, + 11.25, + 3.75 + ], + "texture": "#1" + } } }, { "name": "ika_20", - "from": [10.5, 0, 8.5], - "to": [10.75, 0.25, 9], + "from": [ + 10.5, + 0, + 8.5 + ], + "to": [ + 10.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.75, 8.5, 10.5, 8.75], "texture": "#1"}, - "east": {"uv": [10.5, 8.5, 10.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 8.75, 10.75, 9], "texture": "#1"}, - "west": {"uv": [10.5, 8.5, 10.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 8.5, 10.75, 9], "texture": "#1"}, - "down": {"uv": [10.5, 9, 10.75, 8.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 8.5, + 10.5, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 8.5, + 10.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 8.5, + 10.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 8.5, + 10.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9, + 10.75, + 8.5 + ], + "texture": "#1" + } } }, { "name": "ika_21", - "from": [6.75, 0, 11], - "to": [7.5, 0.25, 13.25], + "from": [ + 6.75, + 0, + 11 + ], + "to": [ + 7.5, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [7.5, 11, 6.75, 11.25], "texture": "#1"}, - "east": {"uv": [7.25, 11, 7.5, 13.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 13, 7.5, 13.25], "texture": "#1"}, - "west": {"uv": [6.75, 11, 7, 13.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 11, 7.5, 13.25], "texture": "#1"}, - "down": {"uv": [6.75, 13.25, 7.5, 11], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 11, + 6.75, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 11, + 7.5, + 13.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 13, + 7.5, + 13.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 11, + 7, + 13.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 11, + 7.5, + 13.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 13.25, + 7.5, + 11 + ], + "texture": "#1" + } } }, { "name": "ika_22", - "from": [7, 0, 13.25], - "to": [7.5, 0.25, 14.25], + "from": [ + 7, + 0, + 13.25 + ], + "to": [ + 7.5, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7.5, 13.25, 7, 13.5], "texture": "#1"}, - "east": {"uv": [7.25, 13.25, 7.5, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 14, 7.5, 14.25], "texture": "#1"}, - "west": {"uv": [7, 13.25, 7.25, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 13.25, 7.5, 14.25], "texture": "#1"}, - "down": {"uv": [7, 14.25, 7.5, 13.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 13.25, + 7, + 13.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 13.25, + 7.5, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 14, + 7.5, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 13.25, + 7.25, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 13.25, + 7.5, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 14.25, + 7.5, + 13.25 + ], + "texture": "#1" + } } }, { "name": "ika_23", - "from": [8.5, 0, 13.25], - "to": [9, 0.25, 14.25], + "from": [ + 8.5, + 0, + 13.25 + ], + "to": [ + 9, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [9, 13.25, 8.5, 13.5], "texture": "#1"}, - "east": {"uv": [8.75, 13.25, 9, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 14, 9, 14.25], "texture": "#1"}, - "west": {"uv": [8.5, 13.25, 8.75, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 13.25, 9, 14.25], "texture": "#1"}, - "down": {"uv": [8.5, 14.25, 9, 13.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 13.25, + 8.5, + 13.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 13.25, + 9, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 14, + 9, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 13.25, + 8.75, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 13.25, + 9, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 14.25, + 9, + 13.25 + ], + "texture": "#1" + } } }, { "name": "ika_24", - "from": [7.25, 0, 14.25], - "to": [7.5, 0.25, 15.25], + "from": [ + 7.25, + 0, + 14.25 + ], + "to": [ + 7.5, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [7.5, 14.25, 7.25, 14.5], "texture": "#1"}, - "east": {"uv": [7.25, 14.25, 7.5, 15.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 15, 7.5, 15.25], "texture": "#1"}, - "west": {"uv": [7.25, 14.25, 7.5, 15.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 14.25, 7.5, 15.25], "texture": "#1"}, - "down": {"uv": [7.25, 15.25, 7.5, 14.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 14.25, + 7.25, + 14.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.25, + 7.5, + 15.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 15, + 7.5, + 15.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.25, + 7.5, + 15.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.25, + 7.5, + 15.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 15.25, + 7.5, + 14.25 + ], + "texture": "#1" + } } }, { "name": "ika_25", - "from": [8.5, 0, 14.25], - "to": [8.75, 0.25, 15.25], + "from": [ + 8.5, + 0, + 14.25 + ], + "to": [ + 8.75, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [8.75, 14.25, 8.5, 14.5], "texture": "#1"}, - "east": {"uv": [8.5, 14.25, 8.75, 15.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 15, 8.75, 15.25], "texture": "#1"}, - "west": {"uv": [8.5, 14.25, 8.75, 15.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 14.25, 8.75, 15.25], "texture": "#1"}, - "down": {"uv": [8.5, 15.25, 8.75, 14.25], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 14.25, + 8.5, + 14.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 14.25, + 8.75, + 15.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 15, + 8.75, + 15.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 14.25, + 8.75, + 15.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 14.25, + 8.75, + 15.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 15.25, + 8.75, + 14.25 + ], + "texture": "#1" + } } }, { "name": "ika_26", - "from": [7.5, 0, 15.25], - "to": [7.75, 0.25, 15.75], + "from": [ + 7.5, + 0, + 15.25 + ], + "to": [ + 7.75, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [7.75, 15.25, 7.5, 15.5], "texture": "#1"}, - "east": {"uv": [7.5, 15.25, 7.75, 15.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 15.5, 7.75, 15.75], "texture": "#1"}, - "west": {"uv": [7.5, 15.25, 7.75, 15.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 15.25, 7.75, 15.75], "texture": "#1"}, - "down": {"uv": [7.5, 15.75, 7.75, 15.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 15.25, + 7.5, + 15.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 15.25, + 7.75, + 15.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 15.5, + 7.75, + 15.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 15.25, + 7.75, + 15.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 15.25, + 7.75, + 15.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 15.75, + 7.75, + 15.25 + ], + "texture": "#1" + } } }, { "name": "ika_27", - "from": [8.25, 0, 15.25], - "to": [8.5, 0.25, 15.75], + "from": [ + 8.25, + 0, + 15.25 + ], + "to": [ + 8.5, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [8.5, 15.25, 8.25, 15.5], "texture": "#1"}, - "east": {"uv": [8.25, 15.25, 8.5, 15.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 15.5, 8.5, 15.75], "texture": "#1"}, - "west": {"uv": [8.25, 15.25, 8.5, 15.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 15.25, 8.5, 15.75], "texture": "#1"}, - "down": {"uv": [8.25, 15.75, 8.5, 15.25], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 15.25, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 15.25, + 8.5, + 15.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 15.5, + 8.5, + 15.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 15.25, + 8.5, + 15.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 15.25, + 8.5, + 15.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 15.75, + 8.5, + 15.25 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [129, -2.75, 1.75], - "translation": [-0.25, -5.25, 2.5], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 129, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + -5.25, + 2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "thirdperson_lefthand": { - "rotation": [129, -2.75, 1.75], - "translation": [-0.25, -5.25, 2.5], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 129, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + -5.25, + 2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_righthand": { - "rotation": [86, 38, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 38, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "firstperson_lefthand": { - "rotation": [86, 38, 1.75], - "translation": [-0.25, 2.75, 7.75], - "scale": [0.65, 0.65, 0.65] + "rotation": [ + 86, + 38, + 1.75 + ], + "translation": [ + -0.25, + 2.75, + 7.75 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 6.75, 18.5], - "scale": [1.39, 1.39, 1.39] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 6.75, + 18.5 + ], + "scale": [ + 1.39, + 1.39, + 1.39 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 12.5, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 12.5, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "ika", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/isidai.json b/pack/assets/minecraft/models/fish/isidai.json index 049d9142..0788dd24 100644 --- a/pack/assets/minecraft/models/fish/isidai.json +++ b/pack/assets/minecraft/models/fish/isidai.json @@ -2,605 +2,3184 @@ "__name": "イシダイ", "credit": "Made with Blockbench", "textures": { - "1": "fish/isidai", - "particle": "fish/isidai" + "1": "item/fish/isidai", + "particle": "item/fish/isidai" }, "elements": [ { "name": "isidai_0", - "from": [5.5, 0, 3.75], - "to": [8.25, 0.25, 10.75], + "from": [ + 5.5, + 0, + 3.75 + ], + "to": [ + 8.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.25, 3.75, 5.5, 4], "texture": "#1"}, - "east": {"uv": [8, 3.75, 8.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 10.5, 8.25, 10.75], "texture": "#1"}, - "west": {"uv": [5.5, 3.75, 5.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 3.75, 8.25, 10.75], "texture": "#1"}, - "down": {"uv": [5.5, 10.75, 8.25, 3.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 3.75, + 5.5, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 3.75, + 8.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 8.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 3.75, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 3.75, + 8.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 8.25, + 3.75 + ], + "texture": "#1" + } } }, { "name": "isidai_1", - "from": [5.25, 0, 4], - "to": [5.5, 0.25, 11], + "from": [ + 5.25, + 0, + 4 + ], + "to": [ + 5.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.5, 4, 5.25, 4.25], "texture": "#1"}, - "east": {"uv": [5.25, 4, 5.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 10.75, 5.5, 11], "texture": "#1"}, - "west": {"uv": [5.25, 4, 5.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 4, 5.5, 11], "texture": "#1"}, - "down": {"uv": [5.25, 11, 5.5, 4], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 4, + 5.25, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 4, + 5.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 4, + 5.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 4, + 5.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 11, + 5.5, + 4 + ], + "texture": "#1" + } } }, { "name": "isidai_2", - "from": [8.25, 0, 4], - "to": [8.5, 0.25, 10.75], + "from": [ + 8.25, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.5, 4, 8.25, 4.25], "texture": "#1"}, - "east": {"uv": [8.25, 4, 8.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#1"}, - "west": {"uv": [8.25, 4, 8.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 4, 8.5, 10.75], "texture": "#1"}, - "down": {"uv": [8.25, 10.75, 8.5, 4], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 4, + 8.25, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 4, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 4, + 8.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 8.5, + 4 + ], + "texture": "#1" + } } }, { "name": "isidai_3", - "from": [9.5, 0, 4], - "to": [11.25, 0.25, 9.25], + "from": [ + 9.5, + 0, + 4 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.25, 4, 9.5, 4.25], "texture": "#1"}, - "east": {"uv": [11, 4, 11.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9, 11.25, 9.25], "texture": "#1"}, - "west": {"uv": [9.5, 4, 9.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 4, 11.25, 9.25], "texture": "#1"}, - "down": {"uv": [9.5, 9.25, 11.25, 4], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 4, + 9.5, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 4, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9, + 11.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 4, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 4, + 11.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 11.25, + 4 + ], + "texture": "#1" + } } }, { "name": "isidai_4", - "from": [5, 0, 4.25], - "to": [5.25, 0.25, 11], + "from": [ + 5, + 0, + 4.25 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 4.25, 5, 4.5], "texture": "#1"}, - "east": {"uv": [5, 4.25, 5.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 10.75, 5.25, 11], "texture": "#1"}, - "west": {"uv": [5, 4.25, 5.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 4.25, 5.25, 11], "texture": "#1"}, - "down": {"uv": [5, 11, 5.25, 4.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 4.25, + 5, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 4.25, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 4.25, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 4.25, + 5.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 11, + 5.25, + 4.25 + ], + "texture": "#1" + } } }, { "name": "isidai_5", - "from": [8.5, 0, 4.25], - "to": [9.5, 0.25, 10.75], + "from": [ + 8.5, + 0, + 4.25 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 4.25, 8.5, 4.5], "texture": "#1"}, - "east": {"uv": [9.25, 4.25, 9.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 10.5, 9.5, 10.75], "texture": "#1"}, - "west": {"uv": [8.5, 4.25, 8.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 4.25, 9.5, 10.75], "texture": "#1"}, - "down": {"uv": [8.5, 10.75, 9.5, 4.25], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 4.25, + 8.5, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 4.25, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 9.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.25, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 4.25, + 9.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 9.5, + 4.25 + ], + "texture": "#1" + } } }, { "name": "isidai_6", - "from": [11.25, 0, 4.25], - "to": [11.5, 0.25, 5.25], + "from": [ + 11.25, + 0, + 4.25 + ], + "to": [ + 11.5, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [11.5, 4.25, 11.25, 4.5], "texture": "#1"}, - "east": {"uv": [11.25, 4.25, 11.5, 5.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 5, 11.5, 5.25], "texture": "#1"}, - "west": {"uv": [11.25, 4.25, 11.5, 5.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 4.25, 11.5, 5.25], "texture": "#1"}, - "down": {"uv": [11.25, 5.25, 11.5, 4.25], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 4.25, + 11.25, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 4.25, + 11.5, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 5, + 11.5, + 5.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 4.25, + 11.5, + 5.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 4.25, + 11.5, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 5.25, + 11.5, + 4.25 + ], + "texture": "#1" + } } }, { "name": "isidai_7", - "from": [4.75, 0, 4.5], - "to": [5, 0.25, 11], + "from": [ + 4.75, + 0, + 4.5 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 4.5, 4.75, 4.75], "texture": "#1"}, - "east": {"uv": [4.75, 4.5, 5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 10.75, 5, 11], "texture": "#1"}, - "west": {"uv": [4.75, 4.5, 5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 4.5, 5, 11], "texture": "#1"}, - "down": {"uv": [4.75, 11, 5, 4.5], "texture": "#1"} + "north": { + "uv": [ + 5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 4.5, + 5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 4.5, + 5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 4.5, + 5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 11, + 5, + 4.5 + ], + "texture": "#1" + } } }, { "name": "isidai_8", - "from": [4.5, 0, 4.75], - "to": [4.75, 0.25, 11], + "from": [ + 4.5, + 0, + 4.75 + ], + "to": [ + 4.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.75, 4.75, 4.5, 5], "texture": "#1"}, - "east": {"uv": [4.5, 4.75, 4.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 10.75, 4.75, 11], "texture": "#1"}, - "west": {"uv": [4.5, 4.75, 4.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 4.75, 4.75, 11], "texture": "#1"}, - "down": {"uv": [4.5, 11, 4.75, 4.75], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 4.75, + 4.5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 4.75, + 4.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 4.75, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 4.75, + 4.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 11, + 4.75, + 4.75 + ], + "texture": "#1" + } } }, { "name": "isidai_9", - "from": [3.75, 0, 5], - "to": [4.5, 0.25, 11], + "from": [ + 3.75, + 0, + 5 + ], + "to": [ + 4.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.5, 5, 3.75, 5.25], "texture": "#1"}, - "east": {"uv": [4.25, 5, 4.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 10.75, 4.5, 11], "texture": "#1"}, - "west": {"uv": [3.75, 5, 4, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 5, 4.5, 11], "texture": "#1"}, - "down": {"uv": [3.75, 11, 4.5, 5], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 5, + 3.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 5, + 4.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 10.75, + 4.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 5, + 4, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 5, + 4.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 11, + 4.5, + 5 + ], + "texture": "#1" + } } }, { "name": "isidai_10", - "from": [3.5, 0, 5.25], - "to": [3.75, 0.25, 10.75], + "from": [ + 3.5, + 0, + 5.25 + ], + "to": [ + 3.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.75, 5.25, 3.5, 5.5], "texture": "#1"}, - "east": {"uv": [3.5, 5.25, 3.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 10.5, 3.75, 10.75], "texture": "#1"}, - "west": {"uv": [3.5, 5.25, 3.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 5.25, 3.75, 10.75], "texture": "#1"}, - "down": {"uv": [3.5, 10.75, 3.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 5.25, + 3.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 5.25, + 3.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10.75, + 3.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "isidai_11", - "from": [3.25, 0, 5.5], - "to": [3.5, 0.25, 10.5], + "from": [ + 3.25, + 0, + 5.5 + ], + "to": [ + 3.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.5, 5.5, 3.25, 5.75], "texture": "#1"}, - "east": {"uv": [3.25, 5.5, 3.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 10.25, 3.5, 10.5], "texture": "#1"}, - "west": {"uv": [3.25, 5.5, 3.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 5.5, 3.5, 10.5], "texture": "#1"}, - "down": {"uv": [3.25, 10.5, 3.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 5.5, + 3.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 5.5, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 10.5, + 3.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "isidai_12", - "from": [13.75, 0, 5.5], - "to": [14.25, 0.25, 10.5], + "from": [ + 13.75, + 0, + 5.5 + ], + "to": [ + 14.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.25, 5.5, 13.75, 5.75], "texture": "#1"}, - "east": {"uv": [14, 5.5, 14.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 10.25, 14.25, 10.5], "texture": "#1"}, - "west": {"uv": [13.75, 5.5, 14, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 5.5, 14.25, 10.5], "texture": "#1"}, - "down": {"uv": [13.75, 10.5, 14.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 5.5, + 13.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 5.5, + 14.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 10.25, + 14.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 5.5, + 14, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 5.5, + 14.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 10.5, + 14.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "isidai_13", - "from": [3, 0, 5.75], - "to": [3.25, 0.25, 10.25], + "from": [ + 3, + 0, + 5.75 + ], + "to": [ + 3.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.25, 5.75, 3, 6], "texture": "#1"}, - "east": {"uv": [3, 5.75, 3.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 10, 3.25, 10.25], "texture": "#1"}, - "west": {"uv": [3, 5.75, 3.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 5.75, 3.25, 10.25], "texture": "#1"}, - "down": {"uv": [3, 10.25, 3.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 5.75, + 3, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 5.75, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "isidai_14", - "from": [13.25, 0, 5.75], - "to": [13.75, 0.25, 10.25], + "from": [ + 13.25, + 0, + 5.75 + ], + "to": [ + 13.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.75, 5.75, 13.25, 6], "texture": "#1"}, - "east": {"uv": [13.5, 5.75, 13.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 10, 13.75, 10.25], "texture": "#1"}, - "west": {"uv": [13.25, 5.75, 13.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 5.75, 13.75, 10.25], "texture": "#1"}, - "down": {"uv": [13.25, 10.25, 13.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 5.75, + 13.25, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 5.75, + 13.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 10, + 13.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 5.75, + 13.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 5.75, + 13.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 10.25, + 13.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "isidai_15", - "from": [14.25, 0, 5.75], - "to": [14.5, 0.25, 7.5], + "from": [ + 14.25, + 0, + 5.75 + ], + "to": [ + 14.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.5, 5.75, 14.25, 6], "texture": "#1"}, - "east": {"uv": [14.25, 5.75, 14.5, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 7.25, 14.5, 7.5], "texture": "#1"}, - "west": {"uv": [14.25, 5.75, 14.5, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 5.75, 14.5, 7.5], "texture": "#1"}, - "down": {"uv": [14.25, 7.5, 14.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 5.75, + 14.25, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 5.75, + 14.5, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 5.75, + 14.5, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 5.75, + 14.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 7.5, + 14.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "isidai_16", - "from": [2.75, 0, 6], - "to": [3, 0.25, 10.25], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3, 6, 2.75, 6.25], "texture": "#1"}, - "east": {"uv": [2.75, 6, 3, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 10, 3, 10.25], "texture": "#1"}, - "west": {"uv": [2.75, 6, 3, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 6, 3, 10.25], "texture": "#1"}, - "down": {"uv": [2.75, 10.25, 3, 6], "texture": "#1"} + "north": { + "uv": [ + 3, + 6, + 2.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 6, + 3, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 3, + 6 + ], + "texture": "#1" + } } }, { "name": "isidai_17", - "from": [13, 0, 6], - "to": [13.25, 0.25, 10], + "from": [ + 13, + 0, + 6 + ], + "to": [ + 13.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.25, 6, 13, 6.25], "texture": "#1"}, - "east": {"uv": [13, 6, 13.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 9.75, 13.25, 10], "texture": "#1"}, - "west": {"uv": [13, 6, 13.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6, 13.25, 10], "texture": "#1"}, - "down": {"uv": [13, 10, 13.25, 6], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 6, + 13, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 6, + 13.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6, + 13.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6, + 13.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 10, + 13.25, + 6 + ], + "texture": "#1" + } } }, { "name": "isidai_18", - "from": [2.5, 0, 6.25], - "to": [2.75, 0.25, 10], + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.75, 6.25, 2.5, 6.5], "texture": "#1"}, - "east": {"uv": [2.5, 6.25, 2.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9.75, 2.75, 10], "texture": "#1"}, - "west": {"uv": [2.5, 6.25, 2.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 6.25, 2.75, 10], "texture": "#1"}, - "down": {"uv": [2.5, 10, 2.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 6.25, + 2.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10, + 2.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "isidai_19", - "from": [12.5, 0, 6.25], - "to": [13, 0.25, 9.75], + "from": [ + 12.5, + 0, + 6.25 + ], + "to": [ + 13, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13, 6.25, 12.5, 6.5], "texture": "#1"}, - "east": {"uv": [12.75, 6.25, 13, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.5, 9.5, 13, 9.75], "texture": "#1"}, - "west": {"uv": [12.5, 6.25, 12.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.5, 6.25, 13, 9.75], "texture": "#1"}, - "down": {"uv": [12.5, 9.75, 13, 6.25], "texture": "#1"} + "north": { + "uv": [ + 13, + 6.25, + 12.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 6.25, + 13, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 9.5, + 13, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 6.25, + 12.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.5, + 6.25, + 13, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 9.75, + 13, + 6.25 + ], + "texture": "#1" + } } }, { "name": "isidai_20", - "from": [2.25, 0, 6.5], - "to": [2.5, 0.25, 10], + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.5, 6.5, 2.25, 6.75], "texture": "#1"}, - "east": {"uv": [2.25, 6.5, 2.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#1"}, - "west": {"uv": [2.25, 6.5, 2.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 6.5, 2.5, 10], "texture": "#1"}, - "down": {"uv": [2.25, 10, 2.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 6.5, + 2.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 10, + 2.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "isidai_21", - "from": [12.25, 0, 6.5], - "to": [12.5, 0.25, 9.5], + "from": [ + 12.25, + 0, + 6.5 + ], + "to": [ + 12.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.5, 6.5, 12.25, 6.75], "texture": "#1"}, - "east": {"uv": [12.25, 6.5, 12.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 9.25, 12.5, 9.5], "texture": "#1"}, - "west": {"uv": [12.25, 6.5, 12.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 6.5, 12.5, 9.5], "texture": "#1"}, - "down": {"uv": [12.25, 9.5, 12.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 6.5, + 12.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 6.5, + 12.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 6.5, + 12.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 6.5, + 12.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 9.5, + 12.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "isidai_22", - "from": [12, 0, 6.75], - "to": [12.25, 0.25, 9.25], + "from": [ + 12, + 0, + 6.75 + ], + "to": [ + 12.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.25, 6.75, 12, 7], "texture": "#1"}, - "east": {"uv": [12, 6.75, 12.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 9, 12.25, 9.25], "texture": "#1"}, - "west": {"uv": [12, 6.75, 12.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 6.75, 12.25, 9.25], "texture": "#1"}, - "down": {"uv": [12, 9.25, 12.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 6.75, + 12, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 6.75, + 12.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 9, + 12.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 6.75, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 6.75, + 12.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "isidai_23", - "from": [2, 0, 7], - "to": [2.25, 0.25, 9.75], + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.25, 7, 2, 7.25], "texture": "#1"}, - "east": {"uv": [2, 7, 2.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 9.5, 2.25, 9.75], "texture": "#1"}, - "west": {"uv": [2, 7, 2.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 7, 2.25, 9.75], "texture": "#1"}, - "down": {"uv": [2, 9.75, 2.25, 7], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7, + 2, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7, + 2.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 9.75, + 2.25, + 7 + ], + "texture": "#1" + } } }, { "name": "isidai_24", - "from": [11.25, 0, 7], - "to": [12, 0.25, 8.75], + "from": [ + 11.25, + 0, + 7 + ], + "to": [ + 12, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12, 7, 11.25, 7.25], "texture": "#1"}, - "east": {"uv": [11.75, 7, 12, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8.5, 12, 8.75], "texture": "#1"}, - "west": {"uv": [11.25, 7, 11.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 7, 12, 8.75], "texture": "#1"}, - "down": {"uv": [11.25, 8.75, 12, 7], "texture": "#1"} + "north": { + "uv": [ + 12, + 7, + 11.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 7, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 12, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 7, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 7, + 12, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 12, + 7 + ], + "texture": "#1" + } } }, { "name": "isidai_25", - "from": [1.75, 0, 7.5], - "to": [2, 0.25, 9.5], + "from": [ + 1.75, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2, 7.5, 1.75, 7.75], "texture": "#1"}, - "east": {"uv": [1.75, 7.5, 2, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#1"}, - "west": {"uv": [1.75, 7.5, 2, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7.5, 2, 9.5], "texture": "#1"}, - "down": {"uv": [1.75, 9.5, 2, 7.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 7.5, + 1.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7.5, + 2, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2, + 7.5 + ], + "texture": "#1" + } } }, { "name": "isidai_26", - "from": [1.5, 0, 8], - "to": [1.75, 0.25, 9.5], + "from": [ + 1.5, + 0, + 8 + ], + "to": [ + 1.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.75, 8, 1.5, 8.25], "texture": "#1"}, - "east": {"uv": [1.5, 8, 1.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9.25, 1.75, 9.5], "texture": "#1"}, - "west": {"uv": [1.5, 8, 1.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 8, 1.75, 9.5], "texture": "#1"}, - "down": {"uv": [1.5, 9.5, 1.75, 8], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 8, + 1.5, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 8, + 1.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 8, + 1.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 8, + 1.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.5, + 1.75, + 8 + ], + "texture": "#1" + } } }, { "name": "isidai_27", - "from": [1.25, 0, 8.25], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 8.25 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 8.25, 1.25, 8.5], "texture": "#1"}, - "east": {"uv": [1.25, 8.25, 1.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#1"}, - "west": {"uv": [1.25, 8.25, 1.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 8.25, 1.5, 8.75], "texture": "#1"}, - "down": {"uv": [1.25, 8.75, 1.5, 8.25], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 8.25, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 8.25 + ], + "texture": "#1" + } } }, { "name": "isidai_28", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 10.25], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#1"}, - "east": {"uv": [14.25, 8.5, 14.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 10, 14.5, 10.25], "texture": "#1"}, - "west": {"uv": [14.25, 8.5, 14.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 8.5, 14.5, 10.25], "texture": "#1"}, - "down": {"uv": [14.25, 10.25, 14.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "isidai_29", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 9], + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#1"}, - "east": {"uv": [11.75, 8.75, 12, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#1"}, - "west": {"uv": [11.75, 8.75, 12, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 8.75, 12, 9], "texture": "#1"}, - "down": {"uv": [11.75, 9, 12, 8.75], "texture": "#1"} + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 8.75 + ], + "texture": "#1" + } } }, { "name": "isidai_30", - "from": [1.25, 0, 9], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#1"}, - "east": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#1"}, - "west": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#1"}, - "down": {"uv": [1.25, 9.25, 1.5, 9], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9 + ], + "texture": "#1" + } } }, { "name": "isidai_31", - "from": [9.5, 0, 9.25], - "to": [11, 0.25, 11.5], + "from": [ + 9.5, + 0, + 9.25 + ], + "to": [ + 11, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11, 9.25, 9.5, 9.5], "texture": "#1"}, - "east": {"uv": [10.75, 9.25, 11, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 11.25, 11, 11.5], "texture": "#1"}, - "west": {"uv": [9.5, 9.25, 9.75, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 9.25, 11, 11.5], "texture": "#1"}, - "down": {"uv": [9.5, 11.5, 11, 9.25], "texture": "#1"} + "north": { + "uv": [ + 11, + 9.25, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 9.25, + 11, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 11.25, + 11, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 9.75, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 11, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 11.5, + 11, + 9.25 + ], + "texture": "#1" + } } }, { "name": "isidai_32", - "from": [5.5, 0, 10.75], - "to": [7, 0.25, 11.25], + "from": [ + 5.5, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7, 10.75, 5.5, 11], "texture": "#1"}, - "east": {"uv": [6.75, 10.75, 7, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 11, 7, 11.25], "texture": "#1"}, - "west": {"uv": [5.5, 10.75, 5.75, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 10.75, 7, 11.25], "texture": "#1"}, - "down": {"uv": [5.5, 11.25, 7, 10.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 10.75, + 5.5, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 11, + 7, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 10.75, + 7, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 11.25, + 7, + 10.75 + ], + "texture": "#1" + } } }, { "name": "isidai_33", - "from": [8.75, 0, 10.75], - "to": [9.5, 0.25, 11], + "from": [ + 8.75, + 0, + 10.75 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 10.75, 8.75, 11], "texture": "#1"}, - "east": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 10.75, 9.5, 11], "texture": "#1"}, - "west": {"uv": [8.75, 10.75, 9, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 10.75, 9.5, 11], "texture": "#1"}, - "down": {"uv": [8.75, 11, 9.5, 10.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 10.75, + 8.75, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 10.75, + 9.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 11, + 9.5, + 10.75 + ], + "texture": "#1" + } } }, { "name": "isidai_34", - "from": [7, 0, 11], - "to": [7.25, 0.25, 12.25], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 7.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.25, 11, 7, 11.25], "texture": "#1"}, - "east": {"uv": [7, 11, 7.25, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 12, 7.25, 12.25], "texture": "#1"}, - "west": {"uv": [7, 11, 7.25, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 11, 7.25, 12.25], "texture": "#1"}, - "down": {"uv": [7, 12.25, 7.25, 11], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 11, + 7, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 11, + 7.25, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 11, + 7.25, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 11, + 7.25, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 12.25, + 7.25, + 11 + ], + "texture": "#1" + } } }, { "name": "isidai_35", - "from": [9, 0, 11], - "to": [9.5, 0.25, 11.25], + "from": [ + 9, + 0, + 11 + ], + "to": [ + 9.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.5, 11, 9, 11.25], "texture": "#1"}, - "east": {"uv": [9.25, 11, 9.5, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 11, 9.5, 11.25], "texture": "#1"}, - "west": {"uv": [9, 11, 9.25, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 11, 9.5, 11.25], "texture": "#1"}, - "down": {"uv": [9, 11.25, 9.5, 11], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 11, + 9, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 11, + 9.5, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 11, + 9.5, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 11, + 9.5, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 11.25, + 9.5, + 11 + ], + "texture": "#1" + } } }, { "name": "isidai_36", - "from": [5.75, 0, 11.25], - "to": [7, 0.25, 11.5], + "from": [ + 5.75, + 0, + 11.25 + ], + "to": [ + 7, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7, 11.25, 5.75, 11.5], "texture": "#1"}, - "east": {"uv": [6.75, 11.25, 7, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 11.25, 7, 11.5], "texture": "#1"}, - "west": {"uv": [5.75, 11.25, 6, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 11.25, 7, 11.5], "texture": "#1"}, - "down": {"uv": [5.75, 11.5, 7, 11.25], "texture": "#1"} + "north": { + "uv": [ + 7, + 11.25, + 5.75, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 11.25, + 7, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 7, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 11.25, + 7, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 7, + 11.25 + ], + "texture": "#1" + } } }, { "name": "isidai_37", - "from": [7.25, 0, 11.25], - "to": [7.5, 0.25, 12], + "from": [ + 7.25, + 0, + 11.25 + ], + "to": [ + 7.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.5, 11.25, 7.25, 11.5], "texture": "#1"}, - "east": {"uv": [7.25, 11.25, 7.5, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 11.75, 7.5, 12], "texture": "#1"}, - "west": {"uv": [7.25, 11.25, 7.5, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 11.25, 7.5, 12], "texture": "#1"}, - "down": {"uv": [7.25, 12, 7.5, 11.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 11.25, + 7.25, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 11.75, + 7.5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 11.25, + 7.5, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 12, + 7.5, + 11.25 + ], + "texture": "#1" + } } }, { "name": "isidai_38", - "from": [6, 0, 11.5], - "to": [7, 0.25, 11.75], + "from": [ + 6, + 0, + 11.5 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 11.5, 6, 11.75], "texture": "#1"}, - "east": {"uv": [6.75, 11.5, 7, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 11.5, 7, 11.75], "texture": "#1"}, - "west": {"uv": [6, 11.5, 6.25, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 11.5, 7, 11.75], "texture": "#1"}, - "down": {"uv": [6, 11.75, 7, 11.5], "texture": "#1"} + "north": { + "uv": [ + 7, + 11.5, + 6, + 11.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 11.5, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 11.5, + 7, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 11.5, + 7, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 11.75, + 7, + 11.5 + ], + "texture": "#1" + } } }, { "name": "isidai_39", - "from": [9.75, 0, 11.5], - "to": [10.75, 0.25, 11.75], + "from": [ + 9.75, + 0, + 11.5 + ], + "to": [ + 10.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.75, 11.5, 9.75, 11.75], "texture": "#1"}, - "east": {"uv": [10.5, 11.5, 10.75, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 11.5, 10.75, 11.75], "texture": "#1"}, - "west": {"uv": [9.75, 11.5, 10, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 11.5, 10.75, 11.75], "texture": "#1"}, - "down": {"uv": [9.75, 11.75, 10.75, 11.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 11.5, + 9.75, + 11.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 11.5, + 10.75, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 11.5, + 10.75, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 11.75, + 10.75, + 11.5 + ], + "texture": "#1" + } } }, { "name": "isidai_40", - "from": [6.25, 0, 11.75], - "to": [7, 0.25, 12], + "from": [ + 6.25, + 0, + 11.75 + ], + "to": [ + 7, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7, 11.75, 6.25, 12], "texture": "#1"}, - "east": {"uv": [6.75, 11.75, 7, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 11.75, 7, 12], "texture": "#1"}, - "west": {"uv": [6.25, 11.75, 6.5, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 11.75, 7, 12], "texture": "#1"}, - "down": {"uv": [6.25, 12, 7, 11.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 11.75, + 6.25, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 11.75, + 7, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 11.75, + 7, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 12, + 7, + 11.75 + ], + "texture": "#1" + } } }, { "name": "isidai_41", - "from": [6.75, 0, 12], - "to": [7, 0.25, 12.25], + "from": [ + 6.75, + 0, + 12 + ], + "to": [ + 7, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7, 12, 6.75, 12.25], "texture": "#1"}, - "east": {"uv": [6.75, 12, 7, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 12, 7, 12.25], "texture": "#1"}, - "west": {"uv": [6.75, 12, 7, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 12, 7, 12.25], "texture": "#1"}, - "down": {"uv": [6.75, 12.25, 7, 12], "texture": "#1"} + "north": { + "uv": [ + 7, + 12, + 6.75, + 12.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 12, + 7, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 12, + 7, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 12, + 7, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 12, + 7, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 12.25, + 7, + 12 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 10.25, 14.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 10.25, + 14.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "isidai", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/itou.json b/pack/assets/minecraft/models/fish/itou.json index 64f6c037..1650f4da 100644 --- a/pack/assets/minecraft/models/fish/itou.json +++ b/pack/assets/minecraft/models/fish/itou.json @@ -2,553 +2,2896 @@ "__name": "イトウ", "credit": "Made with Blockbench", "textures": { - "2": "fish/itou", - "particle": "fish/isidai" + "2": "item/fish/itou", + "particle": "item/fish/isidai" }, "elements": [ { "name": "itou_0", - "from": [8.5, 0, 5.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 8.5, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 5.75, 8.5, 6], "texture": "#2"}, - "east": {"uv": [9.25, 5.75, 9.5, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 9, 9.5, 9.25], "texture": "#2"}, - "west": {"uv": [8.5, 5.75, 8.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 5.75, 9.5, 9.25], "texture": "#2"}, - "down": {"uv": [8.5, 9.25, 9.5, 5.75], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 5.75, + 8.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 9, + 9.5, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 5.75, + 9.5, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 9.5, + 5.75 + ], + "texture": "#2" + } } }, { "name": "itou_1", - "from": [8, 0, 6], - "to": [8.5, 0.25, 9.25], + "from": [ + 8, + 0, + 6 + ], + "to": [ + 8.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.5, 6, 8, 6.25], "texture": "#2"}, - "east": {"uv": [8.25, 6, 8.5, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 9, 8.5, 9.25], "texture": "#2"}, - "west": {"uv": [8, 6, 8.25, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 6, 8.5, 9.25], "texture": "#2"}, - "down": {"uv": [8, 9.25, 8.5, 6], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 6, + 8, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 6, + 8.5, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 9, + 8.5, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 6, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 6, + 8.5, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 9.25, + 8.5, + 6 + ], + "texture": "#2" + } } }, { "name": "itou_2", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 9.75], + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#2"}, - "east": {"uv": [9.5, 6, 9.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 9.5, 9.75, 9.75], "texture": "#2"}, - "west": {"uv": [9.5, 6, 9.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 6, 9.75, 9.75], "texture": "#2"}, - "down": {"uv": [9.5, 9.75, 9.75, 6], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 9.75, + 9.75, + 6 + ], + "texture": "#2" + } } }, { "name": "itou_3", - "from": [3.75, 0, 6.25], - "to": [8, 0.25, 9.25], + "from": [ + 3.75, + 0, + 6.25 + ], + "to": [ + 8, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8, 6.25, 3.75, 6.5], "texture": "#2"}, - "east": {"uv": [7.75, 6.25, 8, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.75, 9, 8, 9.25], "texture": "#2"}, - "west": {"uv": [3.75, 6.25, 4, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.75, 6.25, 8, 9.25], "texture": "#2"}, - "down": {"uv": [3.75, 9.25, 8, 6.25], "texture": "#2"} + "north": { + "uv": [ + 8, + 6.25, + 3.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.75, + 6.25, + 8, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.75, + 9, + 8, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.75, + 6.25, + 4, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.75, + 6.25, + 8, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.75, + 9.25, + 8, + 6.25 + ], + "texture": "#2" + } } }, { "name": "itou_4", - "from": [14.5, 0, 6.25], - "to": [15.5, 0.25, 7.5], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 6.25, 14.5, 6.5], "texture": "#2"}, - "east": {"uv": [15.25, 6.25, 15.5, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.5, 7.25, 15.5, 7.5], "texture": "#2"}, - "west": {"uv": [14.5, 6.25, 14.75, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.5, 6.25, 15.5, 7.5], "texture": "#2"}, - "down": {"uv": [14.5, 7.5, 15.5, 6.25], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 6.25, + 14.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 15.5, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 15.5, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 15.5, + 6.25 + ], + "texture": "#2" + } } }, { "name": "itou_5", - "from": [2.75, 0, 6.5], - "to": [3.75, 0.25, 9.25], + "from": [ + 2.75, + 0, + 6.5 + ], + "to": [ + 3.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.75, 6.5, 2.75, 6.75], "texture": "#2"}, - "east": {"uv": [3.5, 6.5, 3.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 9, 3.75, 9.25], "texture": "#2"}, - "west": {"uv": [2.75, 6.5, 3, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 6.5, 3.75, 9.25], "texture": "#2"}, - "down": {"uv": [2.75, 9.25, 3.75, 6.5], "texture": "#2"} + "north": { + "uv": [ + 3.75, + 6.5, + 2.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 9, + 3.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 6.5, + 3, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 6.5, + 3.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 9.25, + 3.75, + 6.5 + ], + "texture": "#2" + } } }, { "name": "itou_6", - "from": [9.75, 0, 6.5], - "to": [10.5, 0.25, 9], + "from": [ + 9.75, + 0, + 6.5 + ], + "to": [ + 10.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10.5, 6.5, 9.75, 6.75], "texture": "#2"}, - "east": {"uv": [10.25, 6.5, 10.5, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 8.75, 10.5, 9], "texture": "#2"}, - "west": {"uv": [9.75, 6.5, 10, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 6.5, 10.5, 9], "texture": "#2"}, - "down": {"uv": [9.75, 9, 10.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 6.5, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 8.75, + 10.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 6.5, + 10, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 6.5, + 10.5, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 9, + 10.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "itou_7", - "from": [12, 0, 6.5], - "to": [12.5, 0.25, 9.75], + "from": [ + 12, + 0, + 6.5 + ], + "to": [ + 12.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.5, 6.5, 12, 6.75], "texture": "#2"}, - "east": {"uv": [12.25, 6.5, 12.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 9.5, 12.5, 9.75], "texture": "#2"}, - "west": {"uv": [12, 6.5, 12.25, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 6.5, 12.5, 9.75], "texture": "#2"}, - "down": {"uv": [12, 9.75, 12.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 12.5, + 6.5, + 12, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.25, + 6.5, + 12.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 9.5, + 12.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 6.5, + 12.25, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 6.5, + 12.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 9.75, + 12.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "itou_8", - "from": [14, 0, 6.5], - "to": [14.5, 0.25, 9], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14, 6.75], "texture": "#2"}, - "east": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 8.75, 14.5, 9], "texture": "#2"}, - "west": {"uv": [14, 6.5, 14.25, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 6.5, 14.5, 9], "texture": "#2"}, - "down": {"uv": [14, 9, 14.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 6.5, + 14, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.5, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 9, + 14.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "itou_9", - "from": [15.5, 0, 6.5], - "to": [15.75, 0.25, 7.25], + "from": [ + 15.5, + 0, + 6.5 + ], + "to": [ + 15.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.75, 6.5, 15.5, 6.75], "texture": "#2"}, - "east": {"uv": [15.5, 6.5, 15.75, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 7, 15.75, 7.25], "texture": "#2"}, - "west": {"uv": [15.5, 6.5, 15.75, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 6.5, 15.75, 7.25], "texture": "#2"}, - "down": {"uv": [15.5, 7.25, 15.75, 6.5], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 6.5, + 15.5, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 7, + 15.75, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 7.25, + 15.75, + 6.5 + ], + "texture": "#2" + } } }, { "name": "itou_10", - "from": [1.75, 0, 6.75], - "to": [2.75, 0.25, 9.25], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.75, 6.75, 1.75, 7], "texture": "#2"}, - "east": {"uv": [2.5, 6.75, 2.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 9, 2.75, 9.25], "texture": "#2"}, - "west": {"uv": [1.75, 6.75, 2, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 6.75, 2.75, 9.25], "texture": "#2"}, - "down": {"uv": [1.75, 9.25, 2.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 2.75, + 6.75, + 1.75, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 6.75, + 2.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 9, + 2.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "itou_11", - "from": [10.5, 0, 6.75], - "to": [12, 0.25, 9], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 6.75, 10.5, 7], "texture": "#2"}, - "east": {"uv": [11.75, 6.75, 12, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 8.75, 12, 9], "texture": "#2"}, - "west": {"uv": [10.5, 6.75, 10.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 6.75, 12, 9], "texture": "#2"}, - "down": {"uv": [10.5, 9, 12, 6.75], "texture": "#2"} + "north": { + "uv": [ + 12, + 6.75, + 10.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 6.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 8.75, + 12, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 12, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 9, + 12, + 6.75 + ], + "texture": "#2" + } } }, { "name": "itou_12", - "from": [12.5, 0, 6.75], - "to": [12.75, 0.25, 8.5], + "from": [ + 12.5, + 0, + 6.75 + ], + "to": [ + 12.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.75, 6.75, 12.5, 7], "texture": "#2"}, - "east": {"uv": [12.5, 6.75, 12.75, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.5, 8.25, 12.75, 8.5], "texture": "#2"}, - "west": {"uv": [12.5, 6.75, 12.75, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.5, 6.75, 12.75, 8.5], "texture": "#2"}, - "down": {"uv": [12.5, 8.5, 12.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 12.75, + 6.75, + 12.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.5, + 6.75, + 12.75, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.5, + 6.75, + 12.75, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.5, + 6.75, + 12.75, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.5, + 8.5, + 12.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "itou_13", - "from": [13.5, 0, 6.75], - "to": [14, 0.25, 8.75], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14, 6.75, 13.5, 7], "texture": "#2"}, - "east": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.5, 8.5, 14, 8.75], "texture": "#2"}, - "west": {"uv": [13.5, 6.75, 13.75, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.5, 6.75, 14, 8.75], "texture": "#2"}, - "down": {"uv": [13.5, 8.75, 14, 6.75], "texture": "#2"} + "north": { + "uv": [ + 14, + 6.75, + 13.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 14, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 14, + 6.75 + ], + "texture": "#2" + } } }, { "name": "itou_14", - "from": [1, 0, 7], - "to": [1.75, 0.25, 8], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.75, 7, 1, 7.25], "texture": "#2"}, - "east": {"uv": [1.5, 7, 1.75, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 7.75, 1.75, 8], "texture": "#2"}, - "west": {"uv": [1, 7, 1.25, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 7, 1.75, 8], "texture": "#2"}, - "down": {"uv": [1, 8, 1.75, 7], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 7, + 1, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 7.75, + 1.75, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 7, + 1.75, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 8, + 1.75, + 7 + ], + "texture": "#2" + } } }, { "name": "itou_15", - "from": [12.75, 0, 7], - "to": [13.5, 0.25, 8.5], + "from": [ + 12.75, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.5, 7, 12.75, 7.25], "texture": "#2"}, - "east": {"uv": [13.25, 7, 13.5, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.75, 8.25, 13.5, 8.5], "texture": "#2"}, - "west": {"uv": [12.75, 7, 13, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.75, 7, 13.5, 8.5], "texture": "#2"}, - "down": {"uv": [12.75, 8.5, 13.5, 7], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 7, + 12.75, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.75, + 8.25, + 13.5, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.75, + 7, + 13, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.75, + 7, + 13.5, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.75, + 8.5, + 13.5, + 7 + ], + "texture": "#2" + } } }, { "name": "itou_16", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 8], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#2"}, - "east": {"uv": [0.75, 7.25, 1, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#2"}, - "west": {"uv": [0.75, 7.25, 1, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 7.25, 1, 8], "texture": "#2"}, - "down": {"uv": [0.75, 8, 1, 7.25], "texture": "#2"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7.25 + ], + "texture": "#2" + } } }, { "name": "itou_17", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 7.75], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#2"}, - "east": {"uv": [0.5, 7.5, 0.75, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 7.5, 0.75, 7.75], "texture": "#2"}, - "west": {"uv": [0.5, 7.5, 0.75, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.5, 0.75, 7.75], "texture": "#2"}, - "down": {"uv": [0.5, 7.75, 0.75, 7.5], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 7.75, + 0.75, + 7.5 + ], + "texture": "#2" + } } }, { "name": "itou_18", - "from": [14.5, 0, 7.5], - "to": [15.25, 0.25, 9.25], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.25, 7.5, 14.5, 7.75], "texture": "#2"}, - "east": {"uv": [15, 7.5, 15.25, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.5, 9, 15.25, 9.25], "texture": "#2"}, - "west": {"uv": [14.5, 7.5, 14.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.5, 7.5, 15.25, 9.25], "texture": "#2"}, - "down": {"uv": [14.5, 9.25, 15.25, 7.5], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.5, + 9, + 15.25, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 15.25, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 15.25, + 7.5 + ], + "texture": "#2" + } } }, { "name": "itou_19", - "from": [1.5, 0, 8], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.5, + 0, + 8 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 8, 1.5, 8.25], "texture": "#2"}, - "east": {"uv": [1.5, 8, 1.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#2"}, - "west": {"uv": [1.5, 8, 1.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 8, 1.75, 9.25], "texture": "#2"}, - "down": {"uv": [1.5, 9.25, 1.75, 8], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 8, + 1.5, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 8, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 8, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 8, + 1.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 8 + ], + "texture": "#2" + } } }, { "name": "itou_20", - "from": [15.25, 0, 8], - "to": [15.5, 0.25, 9.5], + "from": [ + 15.25, + 0, + 8 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 8, 15.25, 8.25], "texture": "#2"}, - "east": {"uv": [15.25, 8, 15.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 9.25, 15.5, 9.5], "texture": "#2"}, - "west": {"uv": [15.25, 8, 15.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 8, 15.5, 9.5], "texture": "#2"}, - "down": {"uv": [15.25, 9.5, 15.5, 8], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 8, + 15.25, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 9.5, + 15.5, + 8 + ], + "texture": "#2" + } } }, { "name": "itou_21", - "from": [0.5, 0, 8.25], - "to": [1.5, 0.25, 9], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 8.25, 0.5, 8.5], "texture": "#2"}, - "east": {"uv": [1.25, 8.25, 1.5, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 8.75, 1.5, 9], "texture": "#2"}, - "west": {"uv": [0.5, 8.25, 0.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 8.25, 1.5, 9], "texture": "#2"}, - "down": {"uv": [0.5, 9, 1.5, 8.25], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 8.25, + 0.5, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 8.25, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 1.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 1.5, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9, + 1.5, + 8.25 + ], + "texture": "#2" + } } }, { "name": "itou_22", - "from": [0.25, 0, 8.5], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8.5 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8.5, 0.25, 8.75], "texture": "#2"}, - "east": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#2"}, - "west": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#2"}, - "down": {"uv": [0.25, 8.75, 0.5, 8.5], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 8.5, + 0.25, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8.5 + ], + "texture": "#2" + } } }, { "name": "itou_23", - "from": [13.75, 0, 8.75], - "to": [14, 0.25, 9], + "from": [ + 13.75, + 0, + 8.75 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 8.75, 13.75, 9], "texture": "#2"}, - "east": {"uv": [13.75, 8.75, 14, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 8.75, 14, 9], "texture": "#2"}, - "west": {"uv": [13.75, 8.75, 14, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 8.75, 14, 9], "texture": "#2"}, - "down": {"uv": [13.75, 9, 14, 8.75], "texture": "#2"} + "north": { + "uv": [ + 14, + 8.75, + 13.75, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 9, + 14, + 8.75 + ], + "texture": "#2" + } } }, { "name": "itou_24", - "from": [15.5, 0, 8.75], - "to": [15.75, 0.25, 9.25], + "from": [ + 15.5, + 0, + 8.75 + ], + "to": [ + 15.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.75, 8.75, 15.5, 9], "texture": "#2"}, - "east": {"uv": [15.5, 8.75, 15.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 9, 15.75, 9.25], "texture": "#2"}, - "west": {"uv": [15.5, 8.75, 15.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 8.75, 15.75, 9.25], "texture": "#2"}, - "down": {"uv": [15.5, 9.25, 15.75, 8.75], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 8.75, + 15.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 9, + 15.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 9.25, + 15.75, + 8.75 + ], + "texture": "#2" + } } }, { "name": "itou_25", - "from": [1.25, 0, 9], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#2"}, - "east": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#2"}, - "west": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#2"}, - "down": {"uv": [1.25, 9.25, 1.5, 9], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9 + ], + "texture": "#2" + } } }, { "name": "itou_26", - "from": [11.25, 0, 9], - "to": [12, 0.25, 9.25], + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 12, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12, 9, 11.25, 9.25], "texture": "#2"}, - "east": {"uv": [11.75, 9, 12, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 9, 12, 9.25], "texture": "#2"}, - "west": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 9, 12, 9.25], "texture": "#2"}, - "down": {"uv": [11.25, 9.25, 12, 9], "texture": "#2"} + "north": { + "uv": [ + 12, + 9, + 11.25, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 9, + 12, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 9, + 12, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 12, + 9 + ], + "texture": "#2" + } } }, { "name": "itou_27", - "from": [12.5, 0, 9], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 9 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 9, 12.5, 9.25], "texture": "#2"}, - "east": {"uv": [12.5, 9, 12.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#2"}, - "west": {"uv": [12.5, 9, 12.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.5, 9, 12.75, 9.5], "texture": "#2"}, - "down": {"uv": [12.5, 9.5, 12.75, 9], "texture": "#2"} + "north": { + "uv": [ + 12.75, + 9, + 12.5, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.5, + 9, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.5, + 9, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.5, + 9, + 12.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 9 + ], + "texture": "#2" + } } }, { "name": "itou_28", - "from": [14.25, 0, 9], - "to": [14.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 9 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 9, 14.25, 9.25], "texture": "#2"}, - "east": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#2"}, - "west": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#2"}, - "down": {"uv": [14.25, 9.25, 14.5, 9], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 9, + 14.25, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9 + ], + "texture": "#2" + } } }, { "name": "itou_29", - "from": [3, 0, 9.25], - "to": [4.25, 0.25, 9.5], + "from": [ + 3, + 0, + 9.25 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.25, 9.25, 3, 9.5], "texture": "#2"}, - "east": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 9.25, 4.25, 9.5], "texture": "#2"}, - "west": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 9.25, 4.25, 9.5], "texture": "#2"}, - "down": {"uv": [3, 9.5, 4.25, 9.25], "texture": "#2"} + "north": { + "uv": [ + 4.25, + 9.25, + 3, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 9.25, + 4.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 9.25, + 4.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 9.5, + 4.25, + 9.25 + ], + "texture": "#2" + } } }, { "name": "itou_30", - "from": [4.5, 0, 9.25], - "to": [5.75, 0.25, 9.5], + "from": [ + 4.5, + 0, + 9.25 + ], + "to": [ + 5.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.75, 9.25, 4.5, 9.5], "texture": "#2"}, - "east": {"uv": [5.5, 9.25, 5.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 9.25, 5.75, 9.5], "texture": "#2"}, - "west": {"uv": [4.5, 9.25, 4.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 9.25, 5.75, 9.5], "texture": "#2"}, - "down": {"uv": [4.5, 9.5, 5.75, 9.25], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 9.25, + 4.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 5.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 9.25, + 5.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 5.75, + 9.25 + ], + "texture": "#2" + } } }, { "name": "itou_31", - "from": [9, 0, 9.25], - "to": [9.5, 0.25, 9.75], + "from": [ + 9, + 0, + 9.25 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.5, 9.25, 9, 9.5], "texture": "#2"}, - "east": {"uv": [9.25, 9.25, 9.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 9.5, 9.5, 9.75], "texture": "#2"}, - "west": {"uv": [9, 9.25, 9.25, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 9.25, 9.5, 9.75], "texture": "#2"}, - "down": {"uv": [9, 9.75, 9.5, 9.25], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 9.25, + 9, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 9.25, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 9.25, + 9.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.5, + 9.25 + ], + "texture": "#2" + } } }, { "name": "itou_32", - "from": [11.5, 0, 9.25], - "to": [12, 0.25, 9.5], + "from": [ + 11.5, + 0, + 9.25 + ], + "to": [ + 12, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12, 9.25, 11.5, 9.5], "texture": "#2"}, - "east": {"uv": [11.75, 9.25, 12, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 9.25, 12, 9.5], "texture": "#2"}, - "west": {"uv": [11.5, 9.25, 11.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 9.25, 12, 9.5], "texture": "#2"}, - "down": {"uv": [11.5, 9.5, 12, 9.25], "texture": "#2"} + "north": { + "uv": [ + 12, + 9.25, + 11.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 9.25, + 12, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 9.25, + 12, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 9.25, + 12, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 12, + 9.25 + ], + "texture": "#2" + } } }, { "name": "itou_33", - "from": [15, 0, 9.25], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 9.25 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 9.25, 15, 9.5], "texture": "#2"}, - "east": {"uv": [15, 9.25, 15.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#2"}, - "west": {"uv": [15, 9.25, 15.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#2"}, - "down": {"uv": [15, 9.5, 15.25, 9.25], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 9.25, + 15, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 9.25 + ], + "texture": "#2" + } } }, { "name": "itou_34", - "from": [4.75, 0, 9.5], - "to": [5.75, 0.25, 10.25], + "from": [ + 4.75, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.75, 9.5, 4.75, 9.75], "texture": "#2"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 10, 5.75, 10.25], "texture": "#2"}, - "west": {"uv": [4.75, 9.5, 5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 9.5, 5.75, 10.25], "texture": "#2"}, - "down": {"uv": [4.75, 10.25, 5.75, 9.5], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 9.5, + 4.75, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 10, + 5.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 9.5, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 9.5, + 5.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 5.75, + 9.5 + ], + "texture": "#2" + } } }, { "name": "itou_35", - "from": [11.75, 0, 9.5], - "to": [12, 0.25, 9.75], + "from": [ + 11.75, + 0, + 9.5 + ], + "to": [ + 12, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12, 9.5, 11.75, 9.75], "texture": "#2"}, - "east": {"uv": [11.75, 9.5, 12, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 9.5, 12, 9.75], "texture": "#2"}, - "west": {"uv": [11.75, 9.5, 12, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 9.5, 12, 9.75], "texture": "#2"}, - "down": {"uv": [11.75, 9.75, 12, 9.5], "texture": "#2"} + "north": { + "uv": [ + 12, + 9.5, + 11.75, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 9.5, + 12, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 9.5, + 12, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 9.5, + 12, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 9.5, + 12, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 9.75, + 12, + 9.5 + ], + "texture": "#2" + } } }, { "name": "itou_36", - "from": [9.25, 0, 9.75], - "to": [9.5, 0.25, 10], + "from": [ + 9.25, + 0, + 9.75 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 9.75, 9.25, 10], "texture": "#2"}, - "east": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#2"}, - "west": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#2"}, - "down": {"uv": [9.25, 10, 9.5, 9.75], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 9.75, + 9.25, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10, + 9.5, + 9.75 + ], + "texture": "#2" + } } }, { "name": "itou_37", - "from": [5, 0, 10.25], - "to": [5.5, 0.25, 10.5], + "from": [ + 5, + 0, + 10.25 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 10.25, 5, 10.5], "texture": "#2"}, - "east": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 10.25, 5.5, 10.5], "texture": "#2"}, - "west": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 10.25, 5.5, 10.5], "texture": "#2"}, - "down": {"uv": [5, 10.5, 5.5, 10.25], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 10.25, + 5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.5, + 10.25 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 10.25, 14.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 10.25, + 14.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "itou", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/jinbeezame.json b/pack/assets/minecraft/models/fish/jinbeezame.json index 8fac3a4b..90a52a60 100644 --- a/pack/assets/minecraft/models/fish/jinbeezame.json +++ b/pack/assets/minecraft/models/fish/jinbeezame.json @@ -2,592 +2,3112 @@ "__name": "ジンベエザメ", "credit": "Made with Blockbench", "textures": { - "1": "fish/zinbeezame", - "particle": "fish/zinbeezame" + "1": "item/fish/zinbeezame", + "particle": "item/fish/zinbeezame" }, "elements": [ { "name": "zinbeezame_0", - "from": [8.75, 0, 5.5], - "to": [9.25, 0.25, 10], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.25, 5.5, 8.75, 5.75], "texture": "#1"}, - "east": {"uv": [9, 5.5, 9.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9.75, 9.25, 10], "texture": "#1"}, - "west": {"uv": [8.75, 5.5, 9, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 5.5, 9.25, 10], "texture": "#1"}, - "down": {"uv": [8.75, 10, 9.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 5.5, + 8.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_1", - "from": [8.5, 0, 5.75], - "to": [8.75, 0.25, 9.75], + "from": [ + 8.5, + 0, + 5.75 + ], + "to": [ + 8.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.75, 5.75, 8.5, 6], "texture": "#1"}, - "east": {"uv": [8.5, 5.75, 8.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 9.75], "texture": "#1"}, - "west": {"uv": [8.5, 5.75, 8.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 5.75, 8.75, 9.75], "texture": "#1"}, - "down": {"uv": [8.5, 9.75, 8.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 5.75, + 8.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 9.75, + 8.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_2", - "from": [9.25, 0, 5.75], - "to": [9.5, 0.25, 9.75], + "from": [ + 9.25, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.5, 5.75, 9.25, 6], "texture": "#1"}, - "east": {"uv": [9.25, 5.75, 9.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 9.5, 9.5, 9.75], "texture": "#1"}, - "west": {"uv": [9.25, 5.75, 9.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 5.75, 9.5, 9.75], "texture": "#1"}, - "down": {"uv": [9.25, 9.75, 9.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 5.75, + 9.25, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 9.75, + 9.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_3", - "from": [8.25, 0, 6], - "to": [8.5, 0.25, 9.5], + "from": [ + 8.25, + 0, + 6 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 6, 8.25, 6.25], "texture": "#1"}, - "east": {"uv": [8.25, 6, 8.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#1"}, - "west": {"uv": [8.25, 6, 8.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 6, 8.5, 9.5], "texture": "#1"}, - "down": {"uv": [8.25, 9.5, 8.5, 6], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 6, + 8.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 6, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 6 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_4", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 7.25], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#1"}, - "east": {"uv": [15.25, 6, 15.5, 7.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#1"}, - "west": {"uv": [15.25, 6, 15.5, 7.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 6, 15.5, 7.25], "texture": "#1"}, - "down": {"uv": [15.25, 7.25, 15.5, 6], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 7.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 7.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 7.25, + 15.5, + 6 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_5", - "from": [8, 0, 6.25], - "to": [8.25, 0.25, 9.5], + "from": [ + 8, + 0, + 6.25 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.25, 6.25, 8, 6.5], "texture": "#1"}, - "east": {"uv": [8, 6.25, 8.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#1"}, - "west": {"uv": [8, 6.25, 8.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 6.25, 8.25, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 8.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 6.25, + 8, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 6.25, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 6.25, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_6", - "from": [15, 0, 6.25], - "to": [15.25, 0.25, 7.75], + "from": [ + 15, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.25, 6.25, 15, 6.5], "texture": "#1"}, - "east": {"uv": [15, 6.25, 15.25, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 7.5, 15.25, 7.75], "texture": "#1"}, - "west": {"uv": [15, 6.25, 15.25, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 6.25, 15.25, 7.75], "texture": "#1"}, - "down": {"uv": [15, 7.75, 15.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.25, + 15, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 6.25, + 15.25, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 6.25, + 15.25, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 7.75, + 15.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_7", - "from": [15.5, 0, 6.25], - "to": [15.75, 0.25, 6.75], + "from": [ + 15.5, + 0, + 6.25 + ], + "to": [ + 15.75, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.75, 6.25, 15.5, 6.5], "texture": "#1"}, - "east": {"uv": [15.5, 6.25, 15.75, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 6.5, 15.75, 6.75], "texture": "#1"}, - "west": {"uv": [15.5, 6.25, 15.75, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 6.25, 15.75, 6.75], "texture": "#1"}, - "down": {"uv": [15.5, 6.75, 15.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 6.25, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 6.25, + 15.75, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 6.5, + 15.75, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 6.25, + 15.75, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 6.25, + 15.75, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 6.75, + 15.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_8", - "from": [7.75, 0, 6.5], - "to": [8, 0.25, 9.5], + "from": [ + 7.75, + 0, + 6.5 + ], + "to": [ + 8, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8, 6.5, 7.75, 6.75], "texture": "#1"}, - "east": {"uv": [7.75, 6.5, 8, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 9.25, 8, 9.5], "texture": "#1"}, - "west": {"uv": [7.75, 6.5, 8, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 6.5, 8, 9.5], "texture": "#1"}, - "down": {"uv": [7.75, 9.5, 8, 6.5], "texture": "#1"} + "north": { + "uv": [ + 8, + 6.5, + 7.75, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 6.5, + 8, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 6.5, + 8, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 6.5, + 8, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 9.5, + 8, + 6.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_9", - "from": [14.75, 0, 6.5], - "to": [15, 0.25, 8.5], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15, 6.5, 14.75, 6.75], "texture": "#1"}, - "east": {"uv": [14.75, 6.5, 15, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#1"}, - "west": {"uv": [14.75, 6.5, 15, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6.5, 15, 8.5], "texture": "#1"}, - "down": {"uv": [14.75, 8.5, 15, 6.5], "texture": "#1"} + "north": { + "uv": [ + 15, + 6.5, + 14.75, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6.5, + 15, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15, + 6.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_10", - "from": [3.75, 0, 6.75], - "to": [7.75, 0.25, 9.5], + "from": [ + 3.75, + 0, + 6.75 + ], + "to": [ + 7.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.75, 6.75, 3.75, 7], "texture": "#1"}, - "east": {"uv": [7.5, 6.75, 7.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 9.25, 7.75, 9.5], "texture": "#1"}, - "west": {"uv": [3.75, 6.75, 4, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 6.75, 7.75, 9.5], "texture": "#1"}, - "down": {"uv": [3.75, 9.5, 7.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 6.75, + 3.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 6.75, + 7.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 7.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 6.75, + 4, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 6.75, + 7.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 9.5, + 7.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_11", - "from": [14.5, 0, 6.75], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.5, 7], "texture": "#1"}, - "east": {"uv": [14.5, 6.75, 14.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 10, 14.75, 10.25], "texture": "#1"}, - "west": {"uv": [14.5, 6.75, 14.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.75, 14.75, 10.25], "texture": "#1"}, - "down": {"uv": [14.5, 10.25, 14.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.75, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.75, + 14.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 14.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_12", - "from": [3, 0, 7], - "to": [3.75, 0.25, 9.75], + "from": [ + 3, + 0, + 7 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.75, 7, 3, 7.25], "texture": "#1"}, - "east": {"uv": [3.5, 7, 3.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 9.5, 3.75, 9.75], "texture": "#1"}, - "west": {"uv": [3, 7, 3.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 7, 3.75, 9.75], "texture": "#1"}, - "down": {"uv": [3, 9.75, 3.75, 7], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 7, + 3, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 7, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 7, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.75, + 7 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_13", - "from": [9.5, 0, 7], - "to": [9.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 9.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.75, 7, 9.5, 7.25], "texture": "#1"}, - "east": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#1"}, - "west": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 7, 9.75, 9.25], "texture": "#1"}, - "down": {"uv": [9.5, 9.25, 9.75, 7], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 7, + 9.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.75, + 7 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_14", - "from": [11.5, 0, 7], - "to": [11.75, 0.25, 9.5], + "from": [ + 11.5, + 0, + 7 + ], + "to": [ + 11.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.75, 7, 11.5, 7.25], "texture": "#1"}, - "east": {"uv": [11.5, 7, 11.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 9.25, 11.75, 9.5], "texture": "#1"}, - "west": {"uv": [11.5, 7, 11.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 7, 11.75, 9.5], "texture": "#1"}, - "down": {"uv": [11.5, 9.5, 11.75, 7], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 7, + 11.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 7, + 11.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 7, + 11.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 7, + 11.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 11.75, + 7 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_15", - "from": [14.25, 0, 7], - "to": [14.5, 0.25, 10], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.5, 7, 14.25, 7.25], "texture": "#1"}, - "east": {"uv": [14.25, 7, 14.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 9.75, 14.5, 10], "texture": "#1"}, - "west": {"uv": [14.25, 7, 14.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7, 14.5, 10], "texture": "#1"}, - "down": {"uv": [14.25, 10, 14.5, 7], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 7, + 14.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 14.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 10, + 14.5, + 7 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_16", - "from": [2.25, 0, 7.25], - "to": [3, 0.25, 9.75], + "from": [ + 2.25, + 0, + 7.25 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 7.25, 2.25, 7.5], "texture": "#1"}, - "east": {"uv": [2.75, 7.25, 3, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9.5, 3, 9.75], "texture": "#1"}, - "west": {"uv": [2.25, 7.25, 2.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 7.25, 3, 9.75], "texture": "#1"}, - "down": {"uv": [2.25, 9.75, 3, 7.25], "texture": "#1"} + "north": { + "uv": [ + 3, + 7.25, + 2.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 7.25, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 3, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 7.25, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 7.25, + 3, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 3, + 7.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_17", - "from": [9.75, 0, 7.25], - "to": [10, 0.25, 9.25], + "from": [ + 9.75, + 0, + 7.25 + ], + "to": [ + 10, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10, 7.25, 9.75, 7.5], "texture": "#1"}, - "east": {"uv": [9.75, 7.25, 10, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9, 10, 9.25], "texture": "#1"}, - "west": {"uv": [9.75, 7.25, 10, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 7.25, 10, 9.25], "texture": "#1"}, - "down": {"uv": [9.75, 9.25, 10, 7.25], "texture": "#1"} + "north": { + "uv": [ + 10, + 7.25, + 9.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 7.25, + 10, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 7.25, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 7.25, + 10, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10, + 7.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_18", - "from": [11.25, 0, 7.25], - "to": [11.5, 0.25, 9.25], + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 7.25, 11.25, 7.5], "texture": "#1"}, - "east": {"uv": [11.25, 7.25, 11.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#1"}, - "west": {"uv": [11.25, 7.25, 11.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 7.25, 11.5, 9.25], "texture": "#1"}, - "down": {"uv": [11.25, 9.25, 11.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 7.25, + 11.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_19", - "from": [11.75, 0, 7.25], - "to": [12, 0.25, 9.75], + "from": [ + 11.75, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12, 7.25, 11.75, 7.5], "texture": "#1"}, - "east": {"uv": [11.75, 7.25, 12, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 9.5, 12, 9.75], "texture": "#1"}, - "west": {"uv": [11.75, 7.25, 12, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 7.25, 12, 9.75], "texture": "#1"}, - "down": {"uv": [11.75, 9.75, 12, 7.25], "texture": "#1"} + "north": { + "uv": [ + 12, + 7.25, + 11.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 9.5, + 12, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 7.25, + 12, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 7.25, + 12, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 9.75, + 12, + 7.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_20", - "from": [14, 0, 7.25], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 7.25 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 7.25, 14, 7.5], "texture": "#1"}, - "east": {"uv": [14, 7.25, 14.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#1"}, - "west": {"uv": [14, 7.25, 14.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 7.25, 14.25, 9.5], "texture": "#1"}, - "down": {"uv": [14, 9.5, 14.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 7.25, + 14, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 7.25, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 7.25, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 7.25, + 14.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_21", - "from": [1, 0, 7.5], - "to": [2.25, 0.25, 9.5], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.25, 7.5, 1, 7.75], "texture": "#1"}, - "east": {"uv": [2, 7.5, 2.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 9.25, 2.25, 9.5], "texture": "#1"}, - "west": {"uv": [1, 7.5, 1.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.5, 2.25, 9.5], "texture": "#1"}, - "down": {"uv": [1, 9.5, 2.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7.5, + 1, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.5, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 9.25, + 2.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.5, + 2.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9.5, + 2.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_22", - "from": [10, 0, 7.5], - "to": [11.25, 0.25, 9.25], + "from": [ + 10, + 0, + 7.5 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.25, 7.5, 10, 7.75], "texture": "#1"}, - "east": {"uv": [11, 7.5, 11.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 9, 11.25, 9.25], "texture": "#1"}, - "west": {"uv": [10, 7.5, 10.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 7.5, 11.25, 9.25], "texture": "#1"}, - "down": {"uv": [10, 9.25, 11.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 7.5, + 10, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 7.5, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9, + 11.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 7.5, + 10.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 7.5, + 11.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 9.25, + 11.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_23", - "from": [13.75, 0, 7.5], - "to": [14, 0.25, 9.25], + "from": [ + 13.75, + 0, + 7.5 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 7.5, 13.75, 7.75], "texture": "#1"}, - "east": {"uv": [13.75, 7.5, 14, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 9, 14, 9.25], "texture": "#1"}, - "west": {"uv": [13.75, 7.5, 14, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 7.5, 14, 9.25], "texture": "#1"}, - "down": {"uv": [13.75, 9.25, 14, 7.5], "texture": "#1"} + "north": { + "uv": [ + 14, + 7.5, + 13.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 7.5, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 7.5, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 7.5, + 14, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14, + 7.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_24", - "from": [0.25, 0, 7.75], - "to": [1, 0.25, 8.75], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 7.75, 0.25, 8], "texture": "#1"}, - "east": {"uv": [0.75, 7.75, 1, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.5, 1, 8.75], "texture": "#1"}, - "west": {"uv": [0.25, 7.75, 0.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7.75, 1, 8.75], "texture": "#1"}, - "down": {"uv": [0.25, 8.75, 1, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.75, + 0.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 1, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 1, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 1, + 7.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_25", - "from": [12, 0, 7.75], - "to": [12.75, 0.25, 9], + "from": [ + 12, + 0, + 7.75 + ], + "to": [ + 12.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.75, 7.75, 12, 8], "texture": "#1"}, - "east": {"uv": [12.5, 7.75, 12.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 8.75, 12.75, 9], "texture": "#1"}, - "west": {"uv": [12, 7.75, 12.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 7.75, 12.75, 9], "texture": "#1"}, - "down": {"uv": [12, 9, 12.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 7.75, + 12, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 7.75, + 12.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 8.75, + 12.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 7.75, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 7.75, + 12.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9, + 12.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_26", - "from": [13.5, 0, 7.75], - "to": [13.75, 0.25, 9], + "from": [ + 13.5, + 0, + 7.75 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 7.75, 13.5, 8], "texture": "#1"}, - "east": {"uv": [13.5, 7.75, 13.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#1"}, - "west": {"uv": [13.5, 7.75, 13.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 7.75, 13.75, 9], "texture": "#1"}, - "down": {"uv": [13.5, 9, 13.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7.75, + 13.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7.75, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 7.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 13.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 9, + 13.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_27", - "from": [0, 0, 8], - "to": [0.25, 0.25, 8.5], + "from": [ + 0, + 0, + 8 + ], + "to": [ + 0.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.25, 8, 0, 8.25], "texture": "#1"}, - "east": {"uv": [0, 8, 0.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#1"}, - "west": {"uv": [0, 8, 0.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 8, 0.25, 8.5], "texture": "#1"}, - "down": {"uv": [0, 8.5, 0.25, 8], "texture": "#1"} + "north": { + "uv": [ + 0.25, + 8, + 0, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8, + 0.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8, + 0.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 8, + 0.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 8.5, + 0.25, + 8 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_28", - "from": [12.75, 0, 8], - "to": [13.5, 0.25, 9], + "from": [ + 12.75, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 8, 12.75, 8.25], "texture": "#1"}, - "east": {"uv": [13.25, 8, 13.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 8.75, 13.5, 9], "texture": "#1"}, - "west": {"uv": [12.75, 8, 13, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 8, 13.5, 9], "texture": "#1"}, - "down": {"uv": [12.75, 9, 13.5, 8], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 8, + 12.75, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 8.75, + 13.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 8, + 13, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 8, + 13.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 9, + 13.5, + 8 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_29", - "from": [0.5, 0, 8.75], - "to": [1, 0.25, 9], + "from": [ + 0.5, + 0, + 8.75 + ], + "to": [ + 1, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1, 8.75, 0.5, 9], "texture": "#1"}, - "east": {"uv": [0.75, 8.75, 1, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.75, 1, 9], "texture": "#1"}, - "west": {"uv": [0.5, 8.75, 0.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 8.75, 1, 9], "texture": "#1"}, - "down": {"uv": [0.5, 9, 1, 8.75], "texture": "#1"} + "north": { + "uv": [ + 1, + 8.75, + 0.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 1, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 8.75, + 1, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9, + 1, + 8.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_30", - "from": [0.75, 0, 9], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 9 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 9, 0.75, 9.25], "texture": "#1"}, - "east": {"uv": [0.75, 9, 1, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#1"}, - "west": {"uv": [0.75, 9, 1, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 9, 1, 9.25], "texture": "#1"}, - "down": {"uv": [0.75, 9.25, 1, 9], "texture": "#1"} + "north": { + "uv": [ + 1, + 9, + 0.75, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 9 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_31", - "from": [12, 0, 9], - "to": [12.5, 0.25, 9.25], + "from": [ + 12, + 0, + 9 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 9, 12, 9.25], "texture": "#1"}, - "east": {"uv": [12.25, 9, 12.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 9, 12.5, 9.25], "texture": "#1"}, - "west": {"uv": [12, 9, 12.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 9, 12.5, 9.25], "texture": "#1"}, - "down": {"uv": [12, 9.25, 12.5, 9], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 9, + 12, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 9, + 12.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 9, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 9, + 12.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.5, + 9 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_32", - "from": [12, 0, 9.25], - "to": [12.25, 0.25, 9.5], + "from": [ + 12, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.25, 9.25, 12, 9.5], "texture": "#1"}, - "east": {"uv": [12, 9.25, 12.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 9.25, 12.25, 9.5], "texture": "#1"}, - "west": {"uv": [12, 9.25, 12.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 9.25, 12.25, 9.5], "texture": "#1"}, - "down": {"uv": [12, 9.5, 12.25, 9.25], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 9.25, + 12, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9.5, + 12.25, + 9.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_33", - "from": [1.75, 0, 9.5], - "to": [2.25, 0.25, 9.75], + "from": [ + 1.75, + 0, + 9.5 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.25, 9.5, 1.75, 9.75], "texture": "#1"}, - "east": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.5, 2.25, 9.75], "texture": "#1"}, - "west": {"uv": [1.75, 9.5, 2, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 9.5, 2.25, 9.75], "texture": "#1"}, - "down": {"uv": [1.75, 9.75, 2.25, 9.5], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 9.5, + 1.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 2.25, + 9.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_34", - "from": [3.75, 0, 9.5], - "to": [5.75, 0.25, 9.75], + "from": [ + 3.75, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.75, 9.5, 3.75, 9.75], "texture": "#1"}, - "east": {"uv": [5.5, 9.5, 5.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 9.5, 5.75, 9.75], "texture": "#1"}, - "west": {"uv": [3.75, 9.5, 4, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 9.5, 5.75, 9.75], "texture": "#1"}, - "down": {"uv": [3.75, 9.75, 5.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 9.5, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 5.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_35", - "from": [14.75, 0, 9.5], - "to": [15, 0.25, 10], + "from": [ + 14.75, + 0, + 9.5 + ], + "to": [ + 15, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15, 9.5, 14.75, 9.75], "texture": "#1"}, - "east": {"uv": [14.75, 9.5, 15, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9.75, 15, 10], "texture": "#1"}, - "west": {"uv": [14.75, 9.5, 15, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 9.5, 15, 10], "texture": "#1"}, - "down": {"uv": [14.75, 10, 15, 9.5], "texture": "#1"} + "north": { + "uv": [ + 15, + 9.5, + 14.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 9.5, + 15, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9.75, + 15, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 9.5, + 15, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 9.5, + 15, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 10, + 15, + 9.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_36", - "from": [4.75, 0, 9.75], - "to": [5.75, 0.25, 10], + "from": [ + 4.75, + 0, + 9.75 + ], + "to": [ + 5.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.75, 9.75, 4.75, 10], "texture": "#1"}, - "east": {"uv": [5.5, 9.75, 5.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 9.75, 5.75, 10], "texture": "#1"}, - "west": {"uv": [4.75, 9.75, 5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 9.75, 5.75, 10], "texture": "#1"}, - "down": {"uv": [4.75, 10, 5.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 9.75, + 4.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 9.75, + 5.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 9.75, + 5.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 10, + 5.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_37", - "from": [5, 0, 10], - "to": [6, 0.25, 10.25], + "from": [ + 5, + 0, + 10 + ], + "to": [ + 6, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6, 10, 5, 10.25], "texture": "#1"}, - "east": {"uv": [5.75, 10, 6, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 10, 6, 10.25], "texture": "#1"}, - "west": {"uv": [5, 10, 5.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 10, 6, 10.25], "texture": "#1"}, - "down": {"uv": [5, 10.25, 6, 10], "texture": "#1"} + "north": { + "uv": [ + 6, + 10, + 5, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10, + 6, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 10, + 6, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 10.25, + 6, + 10 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_38", - "from": [5.25, 0, 10.25], - "to": [6, 0.25, 10.5], + "from": [ + 5.25, + 0, + 10.25 + ], + "to": [ + 6, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6, 10.25, 5.25, 10.5], "texture": "#1"}, - "east": {"uv": [5.75, 10.25, 6, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 10.25, 6, 10.5], "texture": "#1"}, - "west": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 10.25, 6, 10.5], "texture": "#1"}, - "down": {"uv": [5.25, 10.5, 6, 10.25], "texture": "#1"} + "north": { + "uv": [ + 6, + 10.25, + 5.25, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 6, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 10.25, + 6, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 6, + 10.25 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_39", - "from": [5.5, 0, 10.5], - "to": [6.25, 0.25, 10.75], + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 6.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6.25, 10.5, 5.5, 10.75], "texture": "#1"}, - "east": {"uv": [6, 10.5, 6.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 10.5, 6.25, 10.75], "texture": "#1"}, - "west": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 10.5, 6.25, 10.75], "texture": "#1"}, - "down": {"uv": [5.5, 10.75, 6.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 6.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 6.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 6.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "zinbeezame_40", - "from": [5.75, 0, 10.75], - "to": [6, 0.25, 11], + "from": [ + 5.75, + 0, + 10.75 + ], + "to": [ + 6, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6, 10.75, 5.75, 11], "texture": "#1"}, - "east": {"uv": [5.75, 10.75, 6, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 10.75, 6, 11], "texture": "#1"}, - "west": {"uv": [5.75, 10.75, 6, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 10.75, 6, 11], "texture": "#1"}, - "down": {"uv": [5.75, 11, 6, 10.75], "texture": "#1"} + "north": { + "uv": [ + 6, + 10.75, + 5.75, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 11, + 6, + 10.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 10.25, 32], - "scale": [4, 4, 4] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 10.25, + 32 + ], + "scale": [ + 4, + 4, + 4 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 10.25, 32], - "scale": [4, 4, 4] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 10.25, + 32 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0.25, 10.25, 32], - "scale": [4, 4, 4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 10.25, + 32 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0.25, 13.5, 36.25], - "scale": [4, 4, 4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 13.5, + 36.25 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "zinbeezame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kaeru.json b/pack/assets/minecraft/models/fish/kaeru.json index cd31ab68..68dbb220 100644 --- a/pack/assets/minecraft/models/fish/kaeru.json +++ b/pack/assets/minecraft/models/fish/kaeru.json @@ -2,1266 +2,6846 @@ "__name": "カエル", "credit": "Made with Blockbench", "textures": { - "0": "fish/kaeru", - "particle": "fish/kaeru" + "0": "item/fish/kaeru", + "particle": "item/fish/kaeru" }, "elements": [ { "name": "kaeru_0", - "from": [7.75, 0, 1.75], - "to": [8.5, 0.25, 14.5], + "from": [ + 7.75, + 0, + 1.75 + ], + "to": [ + 8.5, + 0.25, + 14.5 + ], "faces": { - "north": {"uv": [8.5, 1.75, 7.75, 2], "texture": "#0"}, - "east": {"uv": [8.25, 1.75, 8.5, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 14.25, 8.5, 14.5], "texture": "#0"}, - "west": {"uv": [7.75, 1.75, 8, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 1.75, 8.5, 14.5], "texture": "#0"}, - "down": {"uv": [7.75, 14.5, 8.5, 1.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 1.75, + 7.75, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 1.75, + 8.5, + 14.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 14.25, + 8.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 1.75, + 8, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 1.75, + 8.5, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 14.5, + 8.5, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_1", - "from": [7.5, 0, 2], - "to": [7.75, 0.25, 14.25], + "from": [ + 7.5, + 0, + 2 + ], + "to": [ + 7.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7.75, 2, 7.5, 2.25], "texture": "#0"}, - "east": {"uv": [7.5, 2, 7.75, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 14, 7.75, 14.25], "texture": "#0"}, - "west": {"uv": [7.5, 2, 7.75, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 2, 7.75, 14.25], "texture": "#0"}, - "down": {"uv": [7.5, 14.25, 7.75, 2], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 2, + 7.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 2, + 7.75, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 14, + 7.75, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2, + 7.75, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 2, + 7.75, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 14.25, + 7.75, + 2 + ], + "texture": "#0" + } } }, { "name": "kaeru_2", - "from": [8.5, 0, 2], - "to": [8.75, 0.25, 14.25], + "from": [ + 8.5, + 0, + 2 + ], + "to": [ + 8.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [8.75, 2, 8.5, 2.25], "texture": "#0"}, - "east": {"uv": [8.5, 2, 8.75, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 14, 8.75, 14.25], "texture": "#0"}, - "west": {"uv": [8.5, 2, 8.75, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 2, 8.75, 14.25], "texture": "#0"}, - "down": {"uv": [8.5, 14.25, 8.75, 2], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 2, + 8.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2, + 8.75, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 14, + 8.75, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2, + 8.75, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 2, + 8.75, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 14.25, + 8.75, + 2 + ], + "texture": "#0" + } } }, { "name": "kaeru_3", - "from": [3, 0, 2.5], - "to": [3.25, 0.25, 5], + "from": [ + 3, + 0, + 2.5 + ], + "to": [ + 3.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [3.25, 2.5, 3, 2.75], "texture": "#0"}, - "east": {"uv": [3, 2.5, 3.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 4.75, 3.25, 5], "texture": "#0"}, - "west": {"uv": [3, 2.5, 3.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 2.5, 3.25, 5], "texture": "#0"}, - "down": {"uv": [3, 5, 3.25, 2.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 2.5, + 3, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 2.5, + 3.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4.75, + 3.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 2.5, + 3.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 2.5, + 3.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5, + 3.25, + 2.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_4", - "from": [7.25, 0, 2.5], - "to": [7.5, 0.25, 14.25], + "from": [ + 7.25, + 0, + 2.5 + ], + "to": [ + 7.5, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [7.5, 2.5, 7.25, 2.75], "texture": "#0"}, - "east": {"uv": [7.25, 2.5, 7.5, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 14, 7.5, 14.25], "texture": "#0"}, - "west": {"uv": [7.25, 2.5, 7.5, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 2.5, 7.5, 14.25], "texture": "#0"}, - "down": {"uv": [7.25, 14.25, 7.5, 2.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 2.5, + 7.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 2.5, + 7.5, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 14, + 7.5, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 2.5, + 7.5, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 2.5, + 7.5, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 14.25, + 7.5, + 2.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_5", - "from": [8.75, 0, 2.5], - "to": [9, 0.25, 14.25], + "from": [ + 8.75, + 0, + 2.5 + ], + "to": [ + 9, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [9, 2.5, 8.75, 2.75], "texture": "#0"}, - "east": {"uv": [8.75, 2.5, 9, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 14, 9, 14.25], "texture": "#0"}, - "west": {"uv": [8.75, 2.5, 9, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 2.5, 9, 14.25], "texture": "#0"}, - "down": {"uv": [8.75, 14.25, 9, 2.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 2.5, + 8.75, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 2.5, + 9, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 14, + 9, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 2.5, + 9, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 2.5, + 9, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 14.25, + 9, + 2.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_6", - "from": [13, 0, 2.5], - "to": [13.25, 0.25, 5], + "from": [ + 13, + 0, + 2.5 + ], + "to": [ + 13.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [13.25, 2.5, 13, 2.75], "texture": "#0"}, - "east": {"uv": [13, 2.5, 13.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 4.75, 13.25, 5], "texture": "#0"}, - "west": {"uv": [13, 2.5, 13.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 2.5, 13.25, 5], "texture": "#0"}, - "down": {"uv": [13, 5, 13.25, 2.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 2.5, + 13, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 2.5, + 13.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 4.75, + 13.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 2.5, + 13.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 2.5, + 13.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 5, + 13.25, + 2.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_7", - "from": [2.75, 0, 2.75], - "to": [3, 0.25, 4.75], + "from": [ + 2.75, + 0, + 2.75 + ], + "to": [ + 3, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [3, 2.75, 2.75, 3], "texture": "#0"}, - "east": {"uv": [2.75, 2.75, 3, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 4.5, 3, 4.75], "texture": "#0"}, - "west": {"uv": [2.75, 2.75, 3, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 2.75, 3, 4.75], "texture": "#0"}, - "down": {"uv": [2.75, 4.75, 3, 2.75], "texture": "#0"} + "north": { + "uv": [ + 3, + 2.75, + 2.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 2.75, + 3, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 4.5, + 3, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 2.75, + 3, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 2.75, + 3, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 4.75, + 3, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_8", - "from": [3.25, 0, 2.75], - "to": [3.5, 0.25, 5.5], + "from": [ + 3.25, + 0, + 2.75 + ], + "to": [ + 3.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [3.5, 2.75, 3.25, 3], "texture": "#0"}, - "east": {"uv": [3.25, 2.75, 3.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 5.25, 3.5, 5.5], "texture": "#0"}, - "west": {"uv": [3.25, 2.75, 3.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 2.75, 3.5, 5.5], "texture": "#0"}, - "down": {"uv": [3.25, 5.5, 3.5, 2.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 2.75, + 3.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 2.75, + 3.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 2.75, + 3.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 2.75, + 3.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5.5, + 3.5, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_9", - "from": [7, 0, 2.75], - "to": [7.25, 0.25, 14], + "from": [ + 7, + 0, + 2.75 + ], + "to": [ + 7.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [7.25, 2.75, 7, 3], "texture": "#0"}, - "east": {"uv": [7, 2.75, 7.25, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 13.75, 7.25, 14], "texture": "#0"}, - "west": {"uv": [7, 2.75, 7.25, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 2.75, 7.25, 14], "texture": "#0"}, - "down": {"uv": [7, 14, 7.25, 2.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 2.75, + 7, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2.75, + 7.25, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 13.75, + 7.25, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2.75, + 7.25, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 2.75, + 7.25, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 14, + 7.25, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_10", - "from": [9, 0, 2.75], - "to": [9.25, 0.25, 14], + "from": [ + 9, + 0, + 2.75 + ], + "to": [ + 9.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [9.25, 2.75, 9, 3], "texture": "#0"}, - "east": {"uv": [9, 2.75, 9.25, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 13.75, 9.25, 14], "texture": "#0"}, - "west": {"uv": [9, 2.75, 9.25, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 2.75, 9.25, 14], "texture": "#0"}, - "down": {"uv": [9, 14, 9.25, 2.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 2.75, + 9, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 2.75, + 9.25, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 13.75, + 9.25, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 2.75, + 9.25, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 2.75, + 9.25, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 14, + 9.25, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_11", - "from": [12.75, 0, 2.75], - "to": [13, 0.25, 5.5], + "from": [ + 12.75, + 0, + 2.75 + ], + "to": [ + 13, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [13, 2.75, 12.75, 3], "texture": "#0"}, - "east": {"uv": [12.75, 2.75, 13, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 5.25, 13, 5.5], "texture": "#0"}, - "west": {"uv": [12.75, 2.75, 13, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 2.75, 13, 5.5], "texture": "#0"}, - "down": {"uv": [12.75, 5.5, 13, 2.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 2.75, + 12.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 2.75, + 13, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 5.25, + 13, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 2.75, + 13, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 2.75, + 13, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 5.5, + 13, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_12", - "from": [13.25, 0, 2.75], - "to": [13.5, 0.25, 4.75], + "from": [ + 13.25, + 0, + 2.75 + ], + "to": [ + 13.5, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [13.5, 2.75, 13.25, 3], "texture": "#0"}, - "east": {"uv": [13.25, 2.75, 13.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 4.5, 13.5, 4.75], "texture": "#0"}, - "west": {"uv": [13.25, 2.75, 13.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 2.75, 13.5, 4.75], "texture": "#0"}, - "down": {"uv": [13.25, 4.75, 13.5, 2.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 2.75, + 13.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 2.75, + 13.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 4.5, + 13.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 2.75, + 13.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 2.75, + 13.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 4.75, + 13.5, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_13", - "from": [4.25, 0, 3], - "to": [4.5, 0.25, 7.5], + "from": [ + 4.25, + 0, + 3 + ], + "to": [ + 4.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [4.5, 3, 4.25, 3.25], "texture": "#0"}, - "east": {"uv": [4.25, 3, 4.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.25, 4.5, 7.5], "texture": "#0"}, - "west": {"uv": [4.25, 3, 4.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 3, 4.5, 7.5], "texture": "#0"}, - "down": {"uv": [4.25, 7.5, 4.5, 3], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 3, + 4.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 3, + 4.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 3, + 4.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 3, + 4.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7.5, + 4.5, + 3 + ], + "texture": "#0" + } } }, { "name": "kaeru_14", - "from": [6.75, 0, 3], - "to": [7, 0.25, 14], + "from": [ + 6.75, + 0, + 3 + ], + "to": [ + 7, + 0.25, + 14 + ], "faces": { - "north": {"uv": [7, 3, 6.75, 3.25], "texture": "#0"}, - "east": {"uv": [6.75, 3, 7, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 13.75, 7, 14], "texture": "#0"}, - "west": {"uv": [6.75, 3, 7, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3, 7, 14], "texture": "#0"}, - "down": {"uv": [6.75, 14, 7, 3], "texture": "#0"} + "north": { + "uv": [ + 7, + 3, + 6.75, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3, + 7, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 13.75, + 7, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3, + 7, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3, + 7, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 14, + 7, + 3 + ], + "texture": "#0" + } } }, { "name": "kaeru_15", - "from": [9.25, 0, 3], - "to": [9.5, 0.25, 14], + "from": [ + 9.25, + 0, + 3 + ], + "to": [ + 9.5, + 0.25, + 14 + ], "faces": { - "north": {"uv": [9.5, 3, 9.25, 3.25], "texture": "#0"}, - "east": {"uv": [9.25, 3, 9.5, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 13.75, 9.5, 14], "texture": "#0"}, - "west": {"uv": [9.25, 3, 9.5, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 3, 9.5, 14], "texture": "#0"}, - "down": {"uv": [9.25, 14, 9.5, 3], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 3, + 9.5, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 13.75, + 9.5, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 3, + 9.5, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 14, + 9.5, + 3 + ], + "texture": "#0" + } } }, { "name": "kaeru_16", - "from": [11.75, 0, 3], - "to": [12, 0.25, 7.5], + "from": [ + 11.75, + 0, + 3 + ], + "to": [ + 12, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [12, 3, 11.75, 3.25], "texture": "#0"}, - "east": {"uv": [11.75, 3, 12, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7.25, 12, 7.5], "texture": "#0"}, - "west": {"uv": [11.75, 3, 12, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 3, 12, 7.5], "texture": "#0"}, - "down": {"uv": [11.75, 7.5, 12, 3], "texture": "#0"} + "north": { + "uv": [ + 12, + 3, + 11.75, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 3, + 12, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 3, + 12, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 3, + 12, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7.5, + 12, + 3 + ], + "texture": "#0" + } } }, { "name": "kaeru_17", - "from": [3.5, 0, 3.25], - "to": [3.75, 0.25, 5.75], + "from": [ + 3.5, + 0, + 3.25 + ], + "to": [ + 3.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [3.75, 3.25, 3.5, 3.5], "texture": "#0"}, - "east": {"uv": [3.5, 3.25, 3.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5.5, 3.75, 5.75], "texture": "#0"}, - "west": {"uv": [3.5, 3.25, 3.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 3.25, 3.75, 5.75], "texture": "#0"}, - "down": {"uv": [3.5, 5.75, 3.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 3.25, + 3.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 3.25, + 3.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 3.25, + 3.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 3.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5.75, + 3.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_18", - "from": [4, 0, 3.25], - "to": [4.25, 0.25, 7.25], + "from": [ + 4, + 0, + 3.25 + ], + "to": [ + 4.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [4.25, 3.25, 4, 3.5], "texture": "#0"}, - "east": {"uv": [4, 3.25, 4.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7, 4.25, 7.25], "texture": "#0"}, - "west": {"uv": [4, 3.25, 4.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 3.25, 4.25, 7.25], "texture": "#0"}, - "down": {"uv": [4, 7.25, 4.25, 3.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 3.25, + 4, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3.25, + 4.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 3.25, + 4.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 3.25, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.25, + 4.25, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_19", - "from": [4.5, 0, 3.25], - "to": [4.75, 0.25, 4], + "from": [ + 4.5, + 0, + 3.25 + ], + "to": [ + 4.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [4.75, 3.25, 4.5, 3.5], "texture": "#0"}, - "east": {"uv": [4.5, 3.25, 4.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 3.75, 4.75, 4], "texture": "#0"}, - "west": {"uv": [4.5, 3.25, 4.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 3.25, 4.75, 4], "texture": "#0"}, - "down": {"uv": [4.5, 4, 4.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 3.25, + 4.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3.25, + 4.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.75, + 4.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3.25, + 4.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3.25, + 4.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4, + 4.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_20", - "from": [6.25, 0, 3.25], - "to": [6.75, 0.25, 13.75], + "from": [ + 6.25, + 0, + 3.25 + ], + "to": [ + 6.75, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [6.75, 3.25, 6.25, 3.5], "texture": "#0"}, - "east": {"uv": [6.5, 3.25, 6.75, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 13.5, 6.75, 13.75], "texture": "#0"}, - "west": {"uv": [6.25, 3.25, 6.5, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 3.25, 6.75, 13.75], "texture": "#0"}, - "down": {"uv": [6.25, 13.75, 6.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 3.25, + 6.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3.25, + 6.75, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 13.5, + 6.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.25, + 6.5, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 3.25, + 6.75, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 13.75, + 6.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_21", - "from": [9.5, 0, 3.25], - "to": [10, 0.25, 13.75], + "from": [ + 9.5, + 0, + 3.25 + ], + "to": [ + 10, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [10, 3.25, 9.5, 3.5], "texture": "#0"}, - "east": {"uv": [9.75, 3.25, 10, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 13.5, 10, 13.75], "texture": "#0"}, - "west": {"uv": [9.5, 3.25, 9.75, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 3.25, 10, 13.75], "texture": "#0"}, - "down": {"uv": [9.5, 13.75, 10, 3.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 3.25, + 9.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 3.25, + 10, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 13.5, + 10, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3.25, + 9.75, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.25, + 10, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 13.75, + 10, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_22", - "from": [11.5, 0, 3.25], - "to": [11.75, 0.25, 4], + "from": [ + 11.5, + 0, + 3.25 + ], + "to": [ + 11.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [11.75, 3.25, 11.5, 3.5], "texture": "#0"}, - "east": {"uv": [11.5, 3.25, 11.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 3.75, 11.75, 4], "texture": "#0"}, - "west": {"uv": [11.5, 3.25, 11.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 3.25, 11.75, 4], "texture": "#0"}, - "down": {"uv": [11.5, 4, 11.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 3.25, + 11.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 3.25, + 11.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 3.75, + 11.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 3.25, + 11.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 3.25, + 11.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 4, + 11.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_23", - "from": [12, 0, 3.25], - "to": [12.25, 0.25, 7.25], + "from": [ + 12, + 0, + 3.25 + ], + "to": [ + 12.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [12.25, 3.25, 12, 3.5], "texture": "#0"}, - "east": {"uv": [12, 3.25, 12.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7, 12.25, 7.25], "texture": "#0"}, - "west": {"uv": [12, 3.25, 12.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 3.25, 12.25, 7.25], "texture": "#0"}, - "down": {"uv": [12, 7.25, 12.25, 3.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 3.25, + 12, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 3.25, + 12.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7, + 12.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 3.25, + 12.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 3.25, + 12.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.25, + 12.25, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_24", - "from": [12.5, 0, 3.25], - "to": [12.75, 0.25, 5.75], + "from": [ + 12.5, + 0, + 3.25 + ], + "to": [ + 12.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [12.75, 3.25, 12.5, 3.5], "texture": "#0"}, - "east": {"uv": [12.5, 3.25, 12.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 5.5, 12.75, 5.75], "texture": "#0"}, - "west": {"uv": [12.5, 3.25, 12.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 3.25, 12.75, 5.75], "texture": "#0"}, - "down": {"uv": [12.5, 5.75, 12.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 3.25, + 12.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 3.25, + 12.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 5.5, + 12.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 3.25, + 12.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 3.25, + 12.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 5.75, + 12.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_25", - "from": [2.5, 0, 3.5], - "to": [2.75, 0.25, 4.75], + "from": [ + 2.5, + 0, + 3.5 + ], + "to": [ + 2.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [2.75, 3.5, 2.5, 3.75], "texture": "#0"}, - "east": {"uv": [2.5, 3.5, 2.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 4.5, 2.75, 4.75], "texture": "#0"}, - "west": {"uv": [2.5, 3.5, 2.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 3.5, 2.75, 4.75], "texture": "#0"}, - "down": {"uv": [2.5, 4.75, 2.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 3.5, + 2.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 3.5, + 2.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 4.5, + 2.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 3.5, + 2.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 3.5, + 2.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 4.75, + 2.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_26", - "from": [3.75, 0, 3.5], - "to": [4, 0.25, 6.75], + "from": [ + 3.75, + 0, + 3.5 + ], + "to": [ + 4, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [4, 3.5, 3.75, 3.75], "texture": "#0"}, - "east": {"uv": [3.75, 3.5, 4, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6.5, 4, 6.75], "texture": "#0"}, - "west": {"uv": [3.75, 3.5, 4, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 3.5, 4, 6.75], "texture": "#0"}, - "down": {"uv": [3.75, 6.75, 4, 3.5], "texture": "#0"} + "north": { + "uv": [ + 4, + 3.5, + 3.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 3.5, + 4, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.5, + 4, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 3.5, + 4, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 3.5, + 4, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6.75, + 4, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_27", - "from": [6, 0, 3.5], - "to": [6.25, 0.25, 13.75], + "from": [ + 6, + 0, + 3.5 + ], + "to": [ + 6.25, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [6.25, 3.5, 6, 3.75], "texture": "#0"}, - "east": {"uv": [6, 3.5, 6.25, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 13.5, 6.25, 13.75], "texture": "#0"}, - "west": {"uv": [6, 3.5, 6.25, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 3.5, 6.25, 13.75], "texture": "#0"}, - "down": {"uv": [6, 13.75, 6.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3.5, + 6.25, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 13.5, + 6.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3.5, + 6.25, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 3.5, + 6.25, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 13.75, + 6.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_28", - "from": [10, 0, 3.5], - "to": [10.25, 0.25, 13.75], + "from": [ + 10, + 0, + 3.5 + ], + "to": [ + 10.25, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [10.25, 3.5, 10, 3.75], "texture": "#0"}, - "east": {"uv": [10, 3.5, 10.25, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 13.5, 10.25, 13.75], "texture": "#0"}, - "west": {"uv": [10, 3.5, 10.25, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 3.5, 10.25, 13.75], "texture": "#0"}, - "down": {"uv": [10, 13.75, 10.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 3.5, + 10, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 3.5, + 10.25, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 13.5, + 10.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3.5, + 10.25, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 3.5, + 10.25, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 13.75, + 10.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_29", - "from": [12.25, 0, 3.5], - "to": [12.5, 0.25, 6.75], + "from": [ + 12.25, + 0, + 3.5 + ], + "to": [ + 12.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [12.5, 3.5, 12.25, 3.75], "texture": "#0"}, - "east": {"uv": [12.25, 3.5, 12.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 6.5, 12.5, 6.75], "texture": "#0"}, - "west": {"uv": [12.25, 3.5, 12.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 3.5, 12.5, 6.75], "texture": "#0"}, - "down": {"uv": [12.25, 6.75, 12.5, 3.5], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 3.5, + 12.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 3.5, + 12.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 6.5, + 12.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 3.5, + 12.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 3.5, + 12.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 6.75, + 12.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_30", - "from": [13.5, 0, 3.5], - "to": [13.75, 0.25, 4.75], + "from": [ + 13.5, + 0, + 3.5 + ], + "to": [ + 13.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [13.75, 3.5, 13.5, 3.75], "texture": "#0"}, - "east": {"uv": [13.5, 3.5, 13.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 4.5, 13.75, 4.75], "texture": "#0"}, - "west": {"uv": [13.5, 3.5, 13.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 3.5, 13.75, 4.75], "texture": "#0"}, - "down": {"uv": [13.5, 4.75, 13.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 3.5, + 13.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 3.5, + 13.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 4.5, + 13.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 3.5, + 13.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 3.5, + 13.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 4.75, + 13.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_31", - "from": [2.25, 0, 3.75], - "to": [2.5, 0.25, 4.5], + "from": [ + 2.25, + 0, + 3.75 + ], + "to": [ + 2.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [2.5, 3.75, 2.25, 4], "texture": "#0"}, - "east": {"uv": [2.25, 3.75, 2.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 4.25, 2.5, 4.5], "texture": "#0"}, - "west": {"uv": [2.25, 3.75, 2.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 3.75, 2.5, 4.5], "texture": "#0"}, - "down": {"uv": [2.25, 4.5, 2.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 3.75, + 2.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 3.75, + 2.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 4.25, + 2.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 3.75, + 2.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 3.75, + 2.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 4.5, + 2.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_32", - "from": [5.75, 0, 3.75], - "to": [6, 0.25, 13.75], + "from": [ + 5.75, + 0, + 3.75 + ], + "to": [ + 6, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [6, 3.75, 5.75, 4], "texture": "#0"}, - "east": {"uv": [5.75, 3.75, 6, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 13.5, 6, 13.75], "texture": "#0"}, - "west": {"uv": [5.75, 3.75, 6, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 3.75, 6, 13.75], "texture": "#0"}, - "down": {"uv": [5.75, 13.75, 6, 3.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 3.75, + 5.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.75, + 6, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 13.5, + 6, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 3.75, + 6, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 3.75, + 6, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 13.75, + 6, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_33", - "from": [10.25, 0, 3.75], - "to": [10.5, 0.25, 13.75], + "from": [ + 10.25, + 0, + 3.75 + ], + "to": [ + 10.5, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [10.5, 3.75, 10.25, 4], "texture": "#0"}, - "east": {"uv": [10.25, 3.75, 10.5, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 13.5, 10.5, 13.75], "texture": "#0"}, - "west": {"uv": [10.25, 3.75, 10.5, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 3.75, 10.5, 13.75], "texture": "#0"}, - "down": {"uv": [10.25, 13.75, 10.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 3.75, + 10.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 3.75, + 10.5, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 13.5, + 10.5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 3.75, + 10.5, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 3.75, + 10.5, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 13.75, + 10.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_34", - "from": [13.75, 0, 3.75], - "to": [14, 0.25, 4.5], + "from": [ + 13.75, + 0, + 3.75 + ], + "to": [ + 14, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [14, 3.75, 13.75, 4], "texture": "#0"}, - "east": {"uv": [13.75, 3.75, 14, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 4.25, 14, 4.5], "texture": "#0"}, - "west": {"uv": [13.75, 3.75, 14, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [13.75, 4.5, 14, 3.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 3.75, + 13.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 3.75, + 14, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 4.25, + 14, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 3.75, + 14, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 3.75, + 14, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 4.5, + 14, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_35", - "from": [4.5, 0, 4.25], - "to": [4.75, 0.25, 7.75], + "from": [ + 4.5, + 0, + 4.25 + ], + "to": [ + 4.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [4.75, 4.25, 4.5, 4.5], "texture": "#0"}, - "east": {"uv": [4.5, 4.25, 4.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7.5, 4.75, 7.75], "texture": "#0"}, - "west": {"uv": [4.5, 4.25, 4.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.25, 4.75, 7.75], "texture": "#0"}, - "down": {"uv": [4.5, 7.75, 4.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 4.25, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.25, + 4.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 4.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.25, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.75, + 4.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_36", - "from": [11.5, 0, 4.25], - "to": [11.75, 0.25, 7.75], + "from": [ + 11.5, + 0, + 4.25 + ], + "to": [ + 11.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [11.75, 4.25, 11.5, 4.5], "texture": "#0"}, - "east": {"uv": [11.5, 4.25, 11.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7.5, 11.75, 7.75], "texture": "#0"}, - "west": {"uv": [11.5, 4.25, 11.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 4.25, 11.75, 7.75], "texture": "#0"}, - "down": {"uv": [11.5, 7.75, 11.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 4.25, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 4.25, + 11.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 4.25, + 11.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 4.25, + 11.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 7.75, + 11.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_37", - "from": [5, 0, 4.5], - "to": [5.25, 0.25, 5.5], + "from": [ + 5, + 0, + 4.5 + ], + "to": [ + 5.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [5.25, 4.5, 5, 4.75], "texture": "#0"}, - "east": {"uv": [5, 4.5, 5.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5.25, 5.25, 5.5], "texture": "#0"}, - "west": {"uv": [5, 4.5, 5.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.5, 5.25, 5.5], "texture": "#0"}, - "down": {"uv": [5, 5.5, 5.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 4.5, + 5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.5, + 5.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.5, + 5.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.5, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5.5, + 5.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_38", - "from": [11, 0, 4.5], - "to": [11.25, 0.25, 5.5], + "from": [ + 11, + 0, + 4.5 + ], + "to": [ + 11.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [11.25, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [11, 4.5, 11.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 5.25, 11.25, 5.5], "texture": "#0"}, - "west": {"uv": [11, 4.5, 11.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 4.5, 11.25, 5.5], "texture": "#0"}, - "down": {"uv": [11, 5.5, 11.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 4.5, + 11, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 4.5, + 11.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.25, + 11.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4.5, + 11.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4.5, + 11.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 5.5, + 11.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_39", - "from": [4.75, 0, 4.75], - "to": [5, 0.25, 5.5], + "from": [ + 4.75, + 0, + 4.75 + ], + "to": [ + 5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [5, 4.75, 4.75, 5], "texture": "#0"}, - "east": {"uv": [4.75, 4.75, 5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 5.25, 5, 5.5], "texture": "#0"}, - "west": {"uv": [4.75, 4.75, 5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.75, 5, 5.5], "texture": "#0"}, - "down": {"uv": [4.75, 5.5, 5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 4.75, + 4.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.75, + 5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.75, + 5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.75, + 5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5.5, + 5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_40", - "from": [5.25, 0, 4.75], - "to": [5.75, 0.25, 5.25], + "from": [ + 5.25, + 0, + 4.75 + ], + "to": [ + 5.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [5.75, 4.75, 5.25, 5], "texture": "#0"}, - "east": {"uv": [5.5, 4.75, 5.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5, 5.75, 5.25], "texture": "#0"}, - "west": {"uv": [5.25, 4.75, 5.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4.75, 5.75, 5.25], "texture": "#0"}, - "down": {"uv": [5.25, 5.25, 5.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 4.75, + 5.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.75, + 5.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4.75, + 5.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.75, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.25, + 5.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_41", - "from": [10.5, 0, 4.75], - "to": [11, 0.25, 5.25], + "from": [ + 10.5, + 0, + 4.75 + ], + "to": [ + 11, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [11, 4.75, 10.5, 5], "texture": "#0"}, - "east": {"uv": [10.75, 4.75, 11, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [10.5, 4.75, 10.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 4.75, 11, 5.25], "texture": "#0"}, - "down": {"uv": [10.5, 5.25, 11, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 4.75, + 10.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4.75, + 11, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5, + 11, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4.75, + 10.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 4.75, + 11, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.25, + 11, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_42", - "from": [11.25, 0, 4.75], - "to": [11.5, 0.25, 5.5], + "from": [ + 11.25, + 0, + 4.75 + ], + "to": [ + 11.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [11.5, 4.75, 11.25, 5], "texture": "#0"}, - "east": {"uv": [11.25, 4.75, 11.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 5.25, 11.5, 5.5], "texture": "#0"}, - "west": {"uv": [11.25, 4.75, 11.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 4.75, 11.5, 5.5], "texture": "#0"}, - "down": {"uv": [11.25, 5.5, 11.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.75, + 11.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.75, + 11.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 5.25, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 4.75, + 11.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 4.75, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 5.5, + 11.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_43", - "from": [5.5, 0, 5.25], - "to": [5.75, 0.25, 6], + "from": [ + 5.5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [5.75, 5.25, 5.5, 5.5], "texture": "#0"}, - "east": {"uv": [5.5, 5.25, 5.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5.75, 5.75, 6], "texture": "#0"}, - "west": {"uv": [5.5, 5.25, 5.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.25, 5.75, 6], "texture": "#0"}, - "down": {"uv": [5.5, 6, 5.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 5.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.25, + 5.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6, + 5.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_44", - "from": [10.5, 0, 5.25], - "to": [10.75, 0.25, 6], + "from": [ + 10.5, + 0, + 5.25 + ], + "to": [ + 10.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [10.75, 5.25, 10.5, 5.5], "texture": "#0"}, - "east": {"uv": [10.5, 5.25, 10.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5.75, 10.75, 6], "texture": "#0"}, - "west": {"uv": [10.5, 5.25, 10.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.25, 10.75, 6], "texture": "#0"}, - "down": {"uv": [10.5, 6, 10.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.25, + 10.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.25, + 10.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.25, + 10.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6, + 10.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_45", - "from": [4.75, 0, 6.5], - "to": [5, 0.25, 7.75], + "from": [ + 4.75, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [5, 6.5, 4.75, 6.75], "texture": "#0"}, - "east": {"uv": [4.75, 6.5, 5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7.5, 5, 7.75], "texture": "#0"}, - "west": {"uv": [4.75, 6.5, 5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.5, 5, 7.75], "texture": "#0"}, - "down": {"uv": [4.75, 7.75, 5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 6.5, + 4.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.5, + 5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7.75, + 5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_46", - "from": [11.25, 0, 6.5], - "to": [11.5, 0.25, 7.75], + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 11.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [11.5, 6.5, 11.25, 6.75], "texture": "#0"}, - "east": {"uv": [11.25, 6.5, 11.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 7.5, 11.5, 7.75], "texture": "#0"}, - "west": {"uv": [11.25, 6.5, 11.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.5, 11.5, 7.75], "texture": "#0"}, - "down": {"uv": [11.25, 7.75, 11.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.5, + 11.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 7.75, + 11.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_47", - "from": [5, 0, 6.75], - "to": [5.75, 0.25, 7.75], + "from": [ + 5, + 0, + 6.75 + ], + "to": [ + 5.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [5.75, 6.75, 5, 7], "texture": "#0"}, - "east": {"uv": [5.5, 6.75, 5.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 7.5, 5.75, 7.75], "texture": "#0"}, - "west": {"uv": [5, 6.75, 5.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.75, 5.75, 7.75], "texture": "#0"}, - "down": {"uv": [5, 7.75, 5.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 6.75, + 5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.75, + 5.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.75, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.75, + 5.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_48", - "from": [10.5, 0, 6.75], - "to": [11.25, 0.25, 7.75], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 11.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [11.25, 6.75, 10.5, 7], "texture": "#0"}, - "east": {"uv": [11, 6.75, 11.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.5, 11.25, 7.75], "texture": "#0"}, - "west": {"uv": [10.5, 6.75, 10.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.75, 11.25, 7.75], "texture": "#0"}, - "down": {"uv": [10.5, 7.75, 11.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.75, + 11.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.5, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7.75, + 11.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_49", - "from": [2, 0, 7], - "to": [2.5, 0.25, 9], + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.5, 7, 2, 7.25], "texture": "#0"}, - "east": {"uv": [2.25, 7, 2.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.5, 9], "texture": "#0"}, - "west": {"uv": [2, 7, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7, 2.5, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.5, 7], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 7, + 2, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7, + 2.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.5, + 7 + ], + "texture": "#0" + } } }, { "name": "kaeru_50", - "from": [13.75, 0, 7], - "to": [14.25, 0.25, 9], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 7, 13.75, 7.25], "texture": "#0"}, - "east": {"uv": [14, 7, 14.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.75, 14.25, 9], "texture": "#0"}, - "west": {"uv": [13.75, 7, 14, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7, 14.25, 9], "texture": "#0"}, - "down": {"uv": [13.75, 9, 14.25, 7], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7, + 14.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9, + 14.25, + 7 + ], + "texture": "#0" + } } }, { "name": "kaeru_51", - "from": [0.75, 0, 7.25], - "to": [1.25, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.25, 7.25, 0.75, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 9, 1.25, 9.25], "texture": "#0"}, - "west": {"uv": [0.75, 7.25, 1, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.25, 1.25, 9.25], "texture": "#0"}, - "down": {"uv": [0.75, 9.25, 1.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.25, + 0.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_52", - "from": [1.75, 0, 7.25], - "to": [2, 0.25, 9], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 7.25, 1.75, 7.5], "texture": "#0"}, - "east": {"uv": [1.75, 7.25, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.75, 7.25, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.25, 2, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.25, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_53", - "from": [2.5, 0, 7.25], - "to": [2.75, 0.25, 8], + "from": [ + 2.5, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2.75, 7.25, 2.5, 7.5], "texture": "#0"}, - "east": {"uv": [2.5, 7.25, 2.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 7.75, 2.75, 8], "texture": "#0"}, - "west": {"uv": [2.5, 7.25, 2.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.25, 2.75, 8], "texture": "#0"}, - "down": {"uv": [2.5, 8, 2.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 7.25, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.25, + 2.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.25, + 2.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8, + 2.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_54", - "from": [13.5, 0, 7.25], - "to": [13.75, 0.25, 8], + "from": [ + 13.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13.75, 7.25, 13.5, 7.5], "texture": "#0"}, - "east": {"uv": [13.5, 7.25, 13.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.75, 13.75, 8], "texture": "#0"}, - "west": {"uv": [13.5, 7.25, 13.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.25, 13.75, 8], "texture": "#0"}, - "down": {"uv": [13.5, 8, 13.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.25, + 13.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.25, + 13.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8, + 13.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_55", - "from": [14.25, 0, 7.25], - "to": [14.5, 0.25, 9], + "from": [ + 14.25, + 0, + 7.25 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 7.25, 14.25, 7.5], "texture": "#0"}, - "east": {"uv": [14.25, 7.25, 14.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.75, 14.5, 9], "texture": "#0"}, - "west": {"uv": [14.25, 7.25, 14.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.25, 14.5, 9], "texture": "#0"}, - "down": {"uv": [14.25, 9, 14.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.25, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.25, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.25, + 14.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9, + 14.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_56", - "from": [15, 0, 7.25], - "to": [15.5, 0.25, 9.25], + "from": [ + 15, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.5, 7.25, 15, 7.5], "texture": "#0"}, - "east": {"uv": [15.25, 7.25, 15.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9, 15.5, 9.25], "texture": "#0"}, - "west": {"uv": [15, 7.25, 15.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.25, 15.5, 9.25], "texture": "#0"}, - "down": {"uv": [15, 9.25, 15.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.25, + 15.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.25, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.25, + 15.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_57", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 8], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#0"}, - "east": {"uv": [0.5, 7.5, 0.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#0"}, - "west": {"uv": [0.5, 7.5, 0.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 7.5, 0.75, 8], "texture": "#0"}, - "down": {"uv": [0.5, 8, 0.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_58", - "from": [1.25, 0, 7.5], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 7.5, 1.25, 7.75], "texture": "#0"}, - "east": {"uv": [1.25, 7.5, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 7.5, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.5, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_59", - "from": [14.75, 0, 7.5], - "to": [15, 0.25, 9.25], + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 7.5, 14.75, 7.75], "texture": "#0"}, - "east": {"uv": [14.75, 7.5, 15, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#0"}, - "west": {"uv": [14.75, 7.5, 15, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.5, 15, 9.25], "texture": "#0"}, - "down": {"uv": [14.75, 9.25, 15, 7.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_60", - "from": [15.5, 0, 7.5], - "to": [15.75, 0.25, 8], + "from": [ + 15.5, + 0, + 7.5 + ], + "to": [ + 15.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.75, 7.5, 15.5, 7.75], "texture": "#0"}, - "east": {"uv": [15.5, 7.5, 15.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 7.75, 15.75, 8], "texture": "#0"}, - "west": {"uv": [15.5, 7.5, 15.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 7.5, 15.75, 8], "texture": "#0"}, - "down": {"uv": [15.5, 8, 15.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 7.5, + 15.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 7.5, + 15.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 7.5, + 15.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 7.5, + 15.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 8, + 15.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_61", - "from": [1.5, 0, 7.75], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 7.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7.75, 1.5, 8], "texture": "#0"}, - "east": {"uv": [1.5, 7.75, 1.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "west": {"uv": [1.5, 7.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.75, 1.75, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 1.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7.75, + 1.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_62", - "from": [5.25, 0, 7.75], - "to": [5.75, 0.25, 13.25], + "from": [ + 5.25, + 0, + 7.75 + ], + "to": [ + 5.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [5.75, 7.75, 5.25, 8], "texture": "#0"}, - "east": {"uv": [5.5, 7.75, 5.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 13, 5.75, 13.25], "texture": "#0"}, - "west": {"uv": [5.25, 7.75, 5.5, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 7.75, 5.75, 13.25], "texture": "#0"}, - "down": {"uv": [5.25, 13.25, 5.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.75, + 5.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 13, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7.75, + 5.5, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7.75, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 13.25, + 5.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_63", - "from": [10.5, 0, 7.75], - "to": [11, 0.25, 13.25], + "from": [ + 10.5, + 0, + 7.75 + ], + "to": [ + 11, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [11, 7.75, 10.5, 8], "texture": "#0"}, - "east": {"uv": [10.75, 7.75, 11, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 13, 11, 13.25], "texture": "#0"}, - "west": {"uv": [10.5, 7.75, 10.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7.75, 11, 13.25], "texture": "#0"}, - "down": {"uv": [10.5, 13.25, 11, 7.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 7.75, + 10.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 7.75, + 11, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13, + 11, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.75, + 10.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7.75, + 11, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13.25, + 11, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_64", - "from": [14.5, 0, 7.75], - "to": [14.75, 0.25, 9], + "from": [ + 14.5, + 0, + 7.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.75, 7.75, 14.5, 8], "texture": "#0"}, - "east": {"uv": [14.5, 7.75, 14.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#0"}, - "west": {"uv": [14.5, 7.75, 14.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.75, 14.75, 9], "texture": "#0"}, - "down": {"uv": [14.5, 9, 14.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.75, + 14.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9, + 14.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_65", - "from": [2.5, 0, 8.25], - "to": [3, 0.25, 9.5], + "from": [ + 2.5, + 0, + 8.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 8.25, 2.5, 8.5], "texture": "#0"}, - "east": {"uv": [2.75, 8.25, 3, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.25, 3, 9.5], "texture": "#0"}, - "west": {"uv": [2.5, 8.25, 2.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.25, 3, 9.5], "texture": "#0"}, - "down": {"uv": [2.5, 9.5, 3, 8.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 8.25, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.25, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 3, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_66", - "from": [5, 0, 8.25], - "to": [5.25, 0.25, 13], + "from": [ + 5, + 0, + 8.25 + ], + "to": [ + 5.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [5.25, 8.25, 5, 8.5], "texture": "#0"}, - "east": {"uv": [5, 8.25, 5.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 12.75, 5.25, 13], "texture": "#0"}, - "west": {"uv": [5, 8.25, 5.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 8.25, 5.25, 13], "texture": "#0"}, - "down": {"uv": [5, 13, 5.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8.25, + 5.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 12.75, + 5.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.25, + 5.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8.25, + 5.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 13, + 5.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_67", - "from": [11, 0, 8.25], - "to": [11.25, 0.25, 13], + "from": [ + 11, + 0, + 8.25 + ], + "to": [ + 11.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [11.25, 8.25, 11, 8.5], "texture": "#0"}, - "east": {"uv": [11, 8.25, 11.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 12.75, 11.25, 13], "texture": "#0"}, - "west": {"uv": [11, 8.25, 11.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8.25, 11.25, 13], "texture": "#0"}, - "down": {"uv": [11, 13, 11.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 8.25, + 11, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.25, + 11.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 12.75, + 11.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8.25, + 11.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8.25, + 11.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 13, + 11.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_68", - "from": [13.25, 0, 8.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.25, + 0, + 8.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 8.25, 13.25, 8.5], "texture": "#0"}, - "east": {"uv": [13.5, 8.25, 13.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9.25, 13.75, 9.5], "texture": "#0"}, - "west": {"uv": [13.25, 8.25, 13.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8.25, 13.75, 9.5], "texture": "#0"}, - "down": {"uv": [13.25, 9.5, 13.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8.25, + 13.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.5, + 13.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_69", - "from": [0.5, 0, 8.5], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 8.5 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.5, 0.5, 8.75], "texture": "#0"}, - "east": {"uv": [0.5, 8.5, 0.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#0"}, - "west": {"uv": [0.5, 8.5, 0.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8.5, 0.75, 9], "texture": "#0"}, - "down": {"uv": [0.5, 9, 0.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 8.5, + 0.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_70", - "from": [3, 0, 8.5], - "to": [3.25, 0.25, 10.5], + "from": [ + 3, + 0, + 8.5 + ], + "to": [ + 3.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.25, 8.5, 3, 8.75], "texture": "#0"}, - "east": {"uv": [3, 8.5, 3.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.25, 3.25, 10.5], "texture": "#0"}, - "west": {"uv": [3, 8.5, 3.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8.5, 3.25, 10.5], "texture": "#0"}, - "down": {"uv": [3, 10.5, 3.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.5, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_71", - "from": [4.75, 0, 8.5], - "to": [5, 0.25, 12.75], + "from": [ + 4.75, + 0, + 8.5 + ], + "to": [ + 5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [5, 8.5, 4.75, 8.75], "texture": "#0"}, - "east": {"uv": [4.75, 8.5, 5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 12.5, 5, 12.75], "texture": "#0"}, - "west": {"uv": [4.75, 8.5, 5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 8.5, 5, 12.75], "texture": "#0"}, - "down": {"uv": [4.75, 12.75, 5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.5, + 5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 12.5, + 5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 8.5, + 5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 8.5, + 5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 12.75, + 5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_72", - "from": [11.25, 0, 8.5], - "to": [11.5, 0.25, 12.75], + "from": [ + 11.25, + 0, + 8.5 + ], + "to": [ + 11.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [11.5, 8.5, 11.25, 8.75], "texture": "#0"}, - "east": {"uv": [11.25, 8.5, 11.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 12.5, 11.5, 12.75], "texture": "#0"}, - "west": {"uv": [11.25, 8.5, 11.5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.5, 11.5, 12.75], "texture": "#0"}, - "down": {"uv": [11.25, 12.75, 11.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.5, + 11.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 12.5, + 11.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.5, + 11.5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.5, + 11.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 12.75, + 11.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_73", - "from": [13, 0, 8.5], - "to": [13.25, 0.25, 10.5], + "from": [ + 13, + 0, + 8.5 + ], + "to": [ + 13.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [13.25, 8.5, 13, 8.75], "texture": "#0"}, - "east": {"uv": [13, 8.5, 13.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 10.25, 13.25, 10.5], "texture": "#0"}, - "west": {"uv": [13, 8.5, 13.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8.5, 13.25, 10.5], "texture": "#0"}, - "down": {"uv": [13, 10.5, 13.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8.5, + 13.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 10.25, + 13.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.5, + 13.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8.5, + 13.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 10.5, + 13.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_74", - "from": [15.5, 0, 8.5], - "to": [15.75, 0.25, 9], + "from": [ + 15.5, + 0, + 8.5 + ], + "to": [ + 15.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.75, 8.5, 15.5, 8.75], "texture": "#0"}, - "east": {"uv": [15.5, 8.5, 15.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 8.75, 15.75, 9], "texture": "#0"}, - "west": {"uv": [15.5, 8.5, 15.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 8.5, 15.75, 9], "texture": "#0"}, - "down": {"uv": [15.5, 9, 15.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 9, + 15.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_75", - "from": [3.25, 0, 8.75], - "to": [3.5, 0.25, 10.75], + "from": [ + 3.25, + 0, + 8.75 + ], + "to": [ + 3.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.5, 8.75, 3.25, 9], "texture": "#0"}, - "east": {"uv": [3.25, 8.75, 3.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.5, 3.5, 10.75], "texture": "#0"}, - "west": {"uv": [3.25, 8.75, 3.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.75, 3.5, 10.75], "texture": "#0"}, - "down": {"uv": [3.25, 10.75, 3.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.75, + 3.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.75, + 3.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.75, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.75, + 3.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_76", - "from": [12.75, 0, 8.75], - "to": [13, 0.25, 10.75], + "from": [ + 12.75, + 0, + 8.75 + ], + "to": [ + 13, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [13, 8.75, 12.75, 9], "texture": "#0"}, - "east": {"uv": [12.75, 8.75, 13, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 10.5, 13, 10.75], "texture": "#0"}, - "west": {"uv": [12.75, 8.75, 13, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.75, 13, 10.75], "texture": "#0"}, - "down": {"uv": [12.75, 10.75, 13, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.75, + 13, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 10.5, + 13, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.75, + 13, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.75, + 13, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 10.75, + 13, + 8.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_77", - "from": [2.25, 0, 9], - "to": [2.5, 0.25, 9.25], + "from": [ + 2.25, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 9, 2.25, 9.25], "texture": "#0"}, - "east": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 2.5, 9], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9 + ], + "texture": "#0" + } } }, { "name": "kaeru_78", - "from": [3.5, 0, 9], - "to": [3.75, 0.25, 11], + "from": [ + 3.5, + 0, + 9 + ], + "to": [ + 3.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.75, 9, 3.5, 9.25], "texture": "#0"}, - "east": {"uv": [3.5, 9, 3.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.75, 3.75, 11], "texture": "#0"}, - "west": {"uv": [3.5, 9, 3.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9, 3.75, 11], "texture": "#0"}, - "down": {"uv": [3.5, 11, 3.75, 9], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9, + 3.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 11, + 3.75, + 9 + ], + "texture": "#0" + } } }, { "name": "kaeru_79", - "from": [12.5, 0, 9], - "to": [12.75, 0.25, 11], + "from": [ + 12.5, + 0, + 9 + ], + "to": [ + 12.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [12.75, 9, 12.5, 9.25], "texture": "#0"}, - "east": {"uv": [12.5, 9, 12.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 10.75, 12.75, 11], "texture": "#0"}, - "west": {"uv": [12.5, 9, 12.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 9, 12.75, 11], "texture": "#0"}, - "down": {"uv": [12.5, 11, 12.75, 9], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 9, + 12.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 10.75, + 12.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 9, + 12.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 9, + 12.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 11, + 12.75, + 9 + ], + "texture": "#0" + } } }, { "name": "kaeru_80", - "from": [13.75, 0, 9], - "to": [14, 0.25, 9.25], + "from": [ + 13.75, + 0, + 9 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 9, 13.75, 9.25], "texture": "#0"}, - "east": {"uv": [13.75, 9, 14, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9, 14, 9.25], "texture": "#0"}, - "west": {"uv": [13.75, 9, 14, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 9, 14, 9.25], "texture": "#0"}, - "down": {"uv": [13.75, 9.25, 14, 9], "texture": "#0"} + "north": { + "uv": [ + 14, + 9, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14, + 9 + ], + "texture": "#0" + } } }, { "name": "kaeru_81", - "from": [3.75, 0, 9.25], - "to": [4, 0.25, 11.5], + "from": [ + 3.75, + 0, + 9.25 + ], + "to": [ + 4, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4, 9.25, 3.75, 9.5], "texture": "#0"}, - "east": {"uv": [3.75, 9.25, 4, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 11.25, 4, 11.5], "texture": "#0"}, - "west": {"uv": [3.75, 9.25, 4, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.25, 4, 11.5], "texture": "#0"}, - "down": {"uv": [3.75, 11.5, 4, 9.25], "texture": "#0"} + "north": { + "uv": [ + 4, + 9.25, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.25, + 4, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 11.25, + 4, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.25, + 4, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.25, + 4, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 11.5, + 4, + 9.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_82", - "from": [12.25, 0, 9.25], - "to": [12.5, 0.25, 11.5], + "from": [ + 12.25, + 0, + 9.25 + ], + "to": [ + 12.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.5, 9.25, 12.25, 9.5], "texture": "#0"}, - "east": {"uv": [12.25, 9.25, 12.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 11.25, 12.5, 11.5], "texture": "#0"}, - "west": {"uv": [12.25, 9.25, 12.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 9.25, 12.5, 11.5], "texture": "#0"}, - "down": {"uv": [12.25, 11.5, 12.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 9.25, + 12.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 9.25, + 12.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 9.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 11.5, + 12.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_83", - "from": [2.75, 0, 9.5], - "to": [3, 0.25, 9.75], + "from": [ + 2.75, + 0, + 9.5 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 9.5, 2.75, 9.75], "texture": "#0"}, - "east": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.5, 3, 9.75], "texture": "#0"}, - "west": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 9.5, 3, 9.75], "texture": "#0"}, - "down": {"uv": [2.75, 9.75, 3, 9.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 9.5, + 2.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.75, + 3, + 9.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_84", - "from": [4, 0, 9.5], - "to": [4.25, 0.25, 12], + "from": [ + 4, + 0, + 9.5 + ], + "to": [ + 4.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [4.25, 9.5, 4, 9.75], "texture": "#0"}, - "east": {"uv": [4, 9.5, 4.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 11.75, 4.25, 12], "texture": "#0"}, - "west": {"uv": [4, 9.5, 4.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.5, 4.25, 12], "texture": "#0"}, - "down": {"uv": [4, 12, 4.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9.5, + 4.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.5, + 4.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 12, + 4.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_85", - "from": [12, 0, 9.5], - "to": [12.25, 0.25, 12], + "from": [ + 12, + 0, + 9.5 + ], + "to": [ + 12.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [12.25, 9.5, 12, 9.75], "texture": "#0"}, - "east": {"uv": [12, 9.5, 12.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 11.75, 12.25, 12], "texture": "#0"}, - "west": {"uv": [12, 9.5, 12.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 9.5, 12.25, 12], "texture": "#0"}, - "down": {"uv": [12, 12, 12.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.5, + 12, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.5, + 12.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 11.75, + 12.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 9.5, + 12.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 9.5, + 12.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 12, + 12.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_86", - "from": [13.25, 0, 9.5], - "to": [13.5, 0.25, 9.75], + "from": [ + 13.25, + 0, + 9.5 + ], + "to": [ + 13.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.5, 9.5, 13.25, 9.75], "texture": "#0"}, - "east": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#0"}, - "west": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#0"}, - "down": {"uv": [13.25, 9.75, 13.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 9.5, + 13.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.75, + 13.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "kaeru_87", - "from": [4.25, 0, 9.75], - "to": [4.5, 0.25, 12.25], + "from": [ + 4.25, + 0, + 9.75 + ], + "to": [ + 4.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [4.5, 9.75, 4.25, 10], "texture": "#0"}, - "east": {"uv": [4.25, 9.75, 4.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 12, 4.5, 12.25], "texture": "#0"}, - "west": {"uv": [4.25, 9.75, 4.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.75, 4.5, 12.25], "texture": "#0"}, - "down": {"uv": [4.25, 12.25, 4.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.75, + 4.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 12, + 4.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.75, + 4.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.75, + 4.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 12.25, + 4.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_88", - "from": [11.75, 0, 9.75], - "to": [12, 0.25, 12.25], + "from": [ + 11.75, + 0, + 9.75 + ], + "to": [ + 12, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12, 9.75, 11.75, 10], "texture": "#0"}, - "east": {"uv": [11.75, 9.75, 12, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 12, 12, 12.25], "texture": "#0"}, - "west": {"uv": [11.75, 9.75, 12, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9.75, 12, 12.25], "texture": "#0"}, - "down": {"uv": [11.75, 12.25, 12, 9.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 9.75, + 11.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 9.75, + 12, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 12, + 12, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9.75, + 12, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9.75, + 12, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 12.25, + 12, + 9.75 + ], + "texture": "#0" + } } }, { "name": "kaeru_89", - "from": [4.5, 0, 10], - "to": [4.75, 0.25, 12.5], + "from": [ + 4.5, + 0, + 10 + ], + "to": [ + 4.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [4.75, 10, 4.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.5, 10, 4.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 12.25, 4.75, 12.5], "texture": "#0"}, - "west": {"uv": [4.5, 10, 4.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10, 4.75, 12.5], "texture": "#0"}, - "down": {"uv": [4.5, 12.5, 4.75, 10], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10, + 4.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10, + 4.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10, + 4.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 12.5, + 4.75, + 10 + ], + "texture": "#0" + } } }, { "name": "kaeru_90", - "from": [11.5, 0, 10], - "to": [11.75, 0.25, 12.5], + "from": [ + 11.5, + 0, + 10 + ], + "to": [ + 11.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [11.75, 10, 11.5, 10.25], "texture": "#0"}, - "east": {"uv": [11.5, 10, 11.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 12.25, 11.75, 12.5], "texture": "#0"}, - "west": {"uv": [11.5, 10, 11.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 10, 11.75, 12.5], "texture": "#0"}, - "down": {"uv": [11.5, 12.5, 11.75, 10], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 10, + 11.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 10, + 11.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 12.25, + 11.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 10, + 11.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 10, + 11.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 12.5, + 11.75, + 10 + ], + "texture": "#0" + } } }, { "name": "kaeru_91", - "from": [5.5, 0, 13.25], - "to": [5.75, 0.25, 13.5], + "from": [ + 5.5, + 0, + 13.25 + ], + "to": [ + 5.75, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [5.75, 13.25, 5.5, 13.5], "texture": "#0"}, - "east": {"uv": [5.5, 13.25, 5.75, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 13.25, 5.75, 13.5], "texture": "#0"}, - "west": {"uv": [5.5, 13.25, 5.75, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 13.25, 5.75, 13.5], "texture": "#0"}, - "down": {"uv": [5.5, 13.5, 5.75, 13.25], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 13.25, + 5.5, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 13.25, + 5.75, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 13.25, + 5.75, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 13.25, + 5.75, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 13.25, + 5.75, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 13.5, + 5.75, + 13.25 + ], + "texture": "#0" + } } }, { "name": "kaeru_92", - "from": [10.5, 0, 13.25], - "to": [10.75, 0.25, 13.5], + "from": [ + 10.5, + 0, + 13.25 + ], + "to": [ + 10.75, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [10.75, 13.25, 10.5, 13.5], "texture": "#0"}, - "east": {"uv": [10.5, 13.25, 10.75, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 13.25, 10.75, 13.5], "texture": "#0"}, - "west": {"uv": [10.5, 13.25, 10.75, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 13.25, 10.75, 13.5], "texture": "#0"}, - "down": {"uv": [10.5, 13.5, 10.75, 13.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 13.25, + 10.5, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 13.25, + 10.75, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13.25, + 10.75, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 13.25, + 10.75, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 13.25, + 10.75, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13.5, + 10.75, + 13.25 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-0.25, 1.25, 3], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 3 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-0.25, 1.25, 3], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 3 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-0.25, 1.25, 3], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.25, + 3 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1.5, 1.25, 3], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1.5, + 1.25, + 3 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, -0.5, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -0.5, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 2.75, -5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2.75, + -5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "kaeru", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kajiki.json b/pack/assets/minecraft/models/fish/kajiki.json index 035c72da..5e220e5c 100644 --- a/pack/assets/minecraft/models/fish/kajiki.json +++ b/pack/assets/minecraft/models/fish/kajiki.json @@ -2,526 +2,2751 @@ "__name": "カジキ", "credit": "Made with Blockbench", "textures": { - "4": "fish/kajiki" + "4": "item/fish/kajiki" }, "elements": [ { "name": "kajiki_0", - "from": [6.25, 0, 5.5], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 5.5 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 5.5, 6.25, 5.75], "texture": "#4"}, - "east": {"uv": [6.25, 5.5, 6.5, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#4"}, - "west": {"uv": [6.25, 5.5, 6.5, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.25, 5.5, 6.5, 10.25], "texture": "#4"}, - "down": {"uv": [6.25, 10.25, 6.5, 5.5], "texture": "#4"} + "north": { + "uv": [ + 6.5, + 5.5, + 6.25, + 5.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 5.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_1", - "from": [6, 0, 5.75], - "to": [6.25, 0.25, 10.25], + "from": [ + 6, + 0, + 5.75 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 5.75, 6, 6], "texture": "#4"}, - "east": {"uv": [6, 5.75, 6.25, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6, 10, 6.25, 10.25], "texture": "#4"}, - "west": {"uv": [6, 5.75, 6.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6, 5.75, 6.25, 10.25], "texture": "#4"}, - "down": {"uv": [6, 10.25, 6.25, 5.75], "texture": "#4"} + "north": { + "uv": [ + 6.25, + 5.75, + 6, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6, + 5.75, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6, + 5.75, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6, + 5.75, + 6.25, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.25, + 5.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_2", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 10.25], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#4"}, - "east": {"uv": [6.5, 5.75, 6.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.5, 10, 6.75, 10.25], "texture": "#4"}, - "west": {"uv": [6.5, 5.75, 6.75, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.5, 5.75, 6.75, 10.25], "texture": "#4"}, - "down": {"uv": [6.5, 10.25, 6.75, 5.75], "texture": "#4"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 6.75, + 5.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_3", - "from": [5.75, 0, 6], - "to": [6, 0.25, 10], + "from": [ + 5.75, + 0, + 6 + ], + "to": [ + 6, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6, 6, 5.75, 6.25], "texture": "#4"}, - "east": {"uv": [5.75, 6, 6, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.75, 9.75, 6, 10], "texture": "#4"}, - "west": {"uv": [5.75, 6, 6, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.75, 6, 6, 10], "texture": "#4"}, - "down": {"uv": [5.75, 10, 6, 6], "texture": "#4"} + "north": { + "uv": [ + 6, + 6, + 5.75, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.75, + 6, + 6, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.75, + 6, + 6, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.75, + 6, + 6, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.75, + 10, + 6, + 6 + ], + "texture": "#4" + } } }, { "name": "kajiki_4", - "from": [5.5, 0, 6.25], - "to": [5.75, 0.25, 10], + "from": [ + 5.5, + 0, + 6.25 + ], + "to": [ + 5.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.75, 6.25, 5.5, 6.5], "texture": "#4"}, - "east": {"uv": [5.5, 6.25, 5.75, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.5, 9.75, 5.75, 10], "texture": "#4"}, - "west": {"uv": [5.5, 6.25, 5.75, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.5, 6.25, 5.75, 10], "texture": "#4"}, - "down": {"uv": [5.5, 10, 5.75, 6.25], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 6.25, + 5.5, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 6.25, + 5.75, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.5, + 6.25, + 5.75, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.5, + 6.25, + 5.75, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.5, + 10, + 5.75, + 6.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_5", - "from": [6.75, 0, 6.5], - "to": [7, 0.25, 10], + "from": [ + 6.75, + 0, + 6.5 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 6.5, 6.75, 6.75], "texture": "#4"}, - "east": {"uv": [6.75, 6.5, 7, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#4"}, - "west": {"uv": [6.75, 6.5, 7, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.75, 6.5, 7, 10], "texture": "#4"}, - "down": {"uv": [6.75, 10, 7, 6.5], "texture": "#4"} + "north": { + "uv": [ + 7, + 6.5, + 6.75, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.75, + 6.5, + 7, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.75, + 6.5, + 7, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.75, + 6.5, + 7, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 6.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_6", - "from": [5.25, 0, 6.75], - "to": [5.5, 0.25, 10], + "from": [ + 5.25, + 0, + 6.75 + ], + "to": [ + 5.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.5, 6.75, 5.25, 7], "texture": "#4"}, - "east": {"uv": [5.25, 6.75, 5.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.25, 9.75, 5.5, 10], "texture": "#4"}, - "west": {"uv": [5.25, 6.75, 5.5, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.25, 6.75, 5.5, 10], "texture": "#4"}, - "down": {"uv": [5.25, 10, 5.5, 6.75], "texture": "#4"} + "north": { + "uv": [ + 5.5, + 6.75, + 5.25, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.25, + 6.75, + 5.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.25, + 6.75, + 5.5, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.25, + 6.75, + 5.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.25, + 10, + 5.5, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_7", - "from": [7, 0, 6.75], - "to": [7.5, 0.25, 10], + "from": [ + 7, + 0, + 6.75 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 6.75, 7, 7], "texture": "#4"}, - "east": {"uv": [7.25, 6.75, 7.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7, 9.75, 7.5, 10], "texture": "#4"}, - "west": {"uv": [7, 6.75, 7.25, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7, 6.75, 7.5, 10], "texture": "#4"}, - "down": {"uv": [7, 10, 7.5, 6.75], "texture": "#4"} + "north": { + "uv": [ + 7.5, + 6.75, + 7, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.25, + 6.75, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7, + 6.75, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7, + 6.75, + 7.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_8", - "from": [7.5, 0, 7], - "to": [8, 0.25, 10], + "from": [ + 7.5, + 0, + 7 + ], + "to": [ + 8, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8, 7, 7.5, 7.25], "texture": "#4"}, - "east": {"uv": [7.75, 7, 8, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.5, 9.75, 8, 10], "texture": "#4"}, - "west": {"uv": [7.5, 7, 7.75, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.5, 7, 8, 10], "texture": "#4"}, - "down": {"uv": [7.5, 10, 8, 7], "texture": "#4"} + "north": { + "uv": [ + 8, + 7, + 7.5, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.75, + 7, + 8, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 8, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.5, + 7, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.5, + 7, + 8, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.5, + 10, + 8, + 7 + ], + "texture": "#4" + } } }, { "name": "kajiki_9", - "from": [15.25, 0, 7], - "to": [15.5, 0.25, 8.25], + "from": [ + 15.25, + 0, + 7 + ], + "to": [ + 15.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.5, 7, 15.25, 7.25], "texture": "#4"}, - "east": {"uv": [15.25, 7, 15.5, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#4"}, - "west": {"uv": [15.25, 7, 15.5, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.25, 7, 15.5, 8.25], "texture": "#4"}, - "down": {"uv": [15.25, 8.25, 15.5, 7], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 7, + 15.25, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 7, + 15.5, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.25, + 7, + 15.5, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.25, + 7, + 15.5, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.25, + 8.25, + 15.5, + 7 + ], + "texture": "#4" + } } }, { "name": "kajiki_10", - "from": [5, 0, 7.25], - "to": [5.25, 0.25, 10], + "from": [ + 5, + 0, + 7.25 + ], + "to": [ + 5.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.25, 7.25, 5, 7.5], "texture": "#4"}, - "east": {"uv": [5, 7.25, 5.25, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5, 9.75, 5.25, 10], "texture": "#4"}, - "west": {"uv": [5, 7.25, 5.25, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5, 7.25, 5.25, 10], "texture": "#4"}, - "down": {"uv": [5, 10, 5.25, 7.25], "texture": "#4"} + "north": { + "uv": [ + 5.25, + 7.25, + 5, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5, + 7.25, + 5.25, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5, + 7.25, + 5.25, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5, + 7.25, + 5.25, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5, + 10, + 5.25, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_11", - "from": [8, 0, 7.25], - "to": [9.5, 0.25, 10], + "from": [ + 8, + 0, + 7.25 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 7.25, 8, 7.5], "texture": "#4"}, - "east": {"uv": [9.25, 7.25, 9.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8, 9.75, 9.5, 10], "texture": "#4"}, - "west": {"uv": [8, 7.25, 8.25, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8, 7.25, 9.5, 10], "texture": "#4"}, - "down": {"uv": [8, 10, 9.5, 7.25], "texture": "#4"} + "north": { + "uv": [ + 9.5, + 7.25, + 8, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.25, + 7.25, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8, + 9.75, + 9.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8, + 7.25, + 8.25, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8, + 7.25, + 9.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8, + 10, + 9.5, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_12", - "from": [15, 0, 7.25], - "to": [15.25, 0.25, 8.5], + "from": [ + 15, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.25, 7.25, 15, 7.5], "texture": "#4"}, - "east": {"uv": [15, 7.25, 15.25, 8.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8.25, 15.25, 8.5], "texture": "#4"}, - "west": {"uv": [15, 7.25, 15.25, 8.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15, 7.25, 15.25, 8.5], "texture": "#4"}, - "down": {"uv": [15, 8.5, 15.25, 7.25], "texture": "#4"} + "north": { + "uv": [ + 15.25, + 7.25, + 15, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15, + 7.25, + 15.25, + 8.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15, + 8.5, + 15.25, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_13", - "from": [15.5, 0, 7.25], - "to": [15.75, 0.25, 7.75], + "from": [ + 15.5, + 0, + 7.25 + ], + "to": [ + 15.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.75, 7.25, 15.5, 7.5], "texture": "#4"}, - "east": {"uv": [15.5, 7.25, 15.75, 7.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.5, 7.5, 15.75, 7.75], "texture": "#4"}, - "west": {"uv": [15.5, 7.25, 15.75, 7.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.5, 7.25, 15.75, 7.75], "texture": "#4"}, - "down": {"uv": [15.5, 7.75, 15.75, 7.25], "texture": "#4"} + "north": { + "uv": [ + 15.75, + 7.25, + 15.5, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.5, + 7.5, + 15.75, + 7.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.5, + 7.75, + 15.75, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_14", - "from": [9.5, 0, 7.5], - "to": [10.25, 0.25, 10], + "from": [ + 9.5, + 0, + 7.5 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 7.5, 9.5, 7.75], "texture": "#4"}, - "east": {"uv": [10, 7.5, 10.25, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9.5, 9.75, 10.25, 10], "texture": "#4"}, - "west": {"uv": [9.5, 7.5, 9.75, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9.5, 7.5, 10.25, 10], "texture": "#4"}, - "down": {"uv": [9.5, 10, 10.25, 7.5], "texture": "#4"} + "north": { + "uv": [ + 10.25, + 7.5, + 9.5, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 10.25, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9.5, + 7.5, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9.5, + 7.5, + 10.25, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9.5, + 10, + 10.25, + 7.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_15", - "from": [14.75, 0, 7.5], - "to": [15, 0.25, 8.75], + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15, 7.5, 14.75, 7.75], "texture": "#4"}, - "east": {"uv": [14.75, 7.5, 15, 8.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.75, 8.5, 15, 8.75], "texture": "#4"}, - "west": {"uv": [14.75, 7.5, 15, 8.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.75, 7.5, 15, 8.75], "texture": "#4"}, - "down": {"uv": [14.75, 8.75, 15, 7.5], "texture": "#4"} + "north": { + "uv": [ + 15, + 7.5, + 14.75, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 8.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15, + 8.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.75, + 8.75, + 15, + 7.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_16", - "from": [4.25, 0, 7.75], - "to": [5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 7.75 + ], + "to": [ + 5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5, 7.75, 4.25, 8], "texture": "#4"}, - "east": {"uv": [4.75, 7.75, 5, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.25, 9.5, 5, 9.75], "texture": "#4"}, - "west": {"uv": [4.25, 7.75, 4.5, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.25, 7.75, 5, 9.75], "texture": "#4"}, - "down": {"uv": [4.25, 9.75, 5, 7.75], "texture": "#4"} + "north": { + "uv": [ + 5, + 7.75, + 4.25, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4.75, + 7.75, + 5, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 5, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.25, + 7.75, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.25, + 7.75, + 5, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 5, + 7.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_17", - "from": [10.25, 0, 7.75], - "to": [11.75, 0.25, 9.75], + "from": [ + 10.25, + 0, + 7.75 + ], + "to": [ + 11.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.75, 7.75, 10.25, 8], "texture": "#4"}, - "east": {"uv": [11.5, 7.75, 11.75, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10.25, 9.5, 11.75, 9.75], "texture": "#4"}, - "west": {"uv": [10.25, 7.75, 10.5, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10.25, 7.75, 11.75, 9.75], "texture": "#4"}, - "down": {"uv": [10.25, 9.75, 11.75, 7.75], "texture": "#4"} + "north": { + "uv": [ + 11.75, + 7.75, + 10.25, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 11.75, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10.25, + 7.75, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10.25, + 7.75, + 11.75, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 11.75, + 7.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_18", - "from": [14.5, 0, 7.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 7.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 7.75, 14.5, 8], "texture": "#4"}, - "east": {"uv": [14.5, 7.75, 14.75, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#4"}, - "west": {"uv": [14.5, 7.75, 14.75, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.5, 7.75, 14.75, 10], "texture": "#4"}, - "down": {"uv": [14.5, 10, 14.75, 7.75], "texture": "#4"} + "north": { + "uv": [ + 14.75, + 7.75, + 14.5, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 7.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_19", - "from": [3.75, 0, 8], - "to": [4.25, 0.25, 9.5], + "from": [ + 3.75, + 0, + 8 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.25, 8, 3.75, 8.25], "texture": "#4"}, - "east": {"uv": [4, 8, 4.25, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3.75, 9.25, 4.25, 9.5], "texture": "#4"}, - "west": {"uv": [3.75, 8, 4, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3.75, 8, 4.25, 9.5], "texture": "#4"}, - "down": {"uv": [3.75, 9.5, 4.25, 8], "texture": "#4"} + "north": { + "uv": [ + 4.25, + 8, + 3.75, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4, + 8, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 4.25, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3.75, + 8, + 4, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3.75, + 8, + 4.25, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3.75, + 9.5, + 4.25, + 8 + ], + "texture": "#4" + } } }, { "name": "kajiki_20", - "from": [11.75, 0, 8], - "to": [12.75, 0.25, 9.75], + "from": [ + 11.75, + 0, + 8 + ], + "to": [ + 12.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.75, 8, 11.75, 8.25], "texture": "#4"}, - "east": {"uv": [12.5, 8, 12.75, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.75, 9.5, 12.75, 9.75], "texture": "#4"}, - "west": {"uv": [11.75, 8, 12, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.75, 8, 12.75, 9.75], "texture": "#4"}, - "down": {"uv": [11.75, 9.75, 12.75, 8], "texture": "#4"} + "north": { + "uv": [ + 12.75, + 8, + 11.75, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12.5, + 8, + 12.75, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.75, + 9.5, + 12.75, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.75, + 8, + 12, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.75, + 8, + 12.75, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.75, + 9.75, + 12.75, + 8 + ], + "texture": "#4" + } } }, { "name": "kajiki_21", - "from": [14.25, 0, 8], - "to": [14.5, 0.25, 9.75], + "from": [ + 14.25, + 0, + 8 + ], + "to": [ + 14.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.5, 8, 14.25, 8.25], "texture": "#4"}, - "east": {"uv": [14.25, 8, 14.5, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.25, 9.5, 14.5, 9.75], "texture": "#4"}, - "west": {"uv": [14.25, 8, 14.5, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.25, 8, 14.5, 9.75], "texture": "#4"}, - "down": {"uv": [14.25, 9.75, 14.5, 8], "texture": "#4"} + "north": { + "uv": [ + 14.5, + 8, + 14.25, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.5, + 8 + ], + "texture": "#4" + } } }, { "name": "kajiki_22", - "from": [3.25, 0, 8.25], - "to": [3.75, 0.25, 9.5], + "from": [ + 3.25, + 0, + 8.25 + ], + "to": [ + 3.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.75, 8.25, 3.25, 8.5], "texture": "#4"}, - "east": {"uv": [3.5, 8.25, 3.75, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3.25, 9.25, 3.75, 9.5], "texture": "#4"}, - "west": {"uv": [3.25, 8.25, 3.5, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3.25, 8.25, 3.75, 9.5], "texture": "#4"}, - "down": {"uv": [3.25, 9.5, 3.75, 8.25], "texture": "#4"} + "north": { + "uv": [ + 3.75, + 8.25, + 3.25, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 3.5, + 8.25, + 3.75, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 3.75, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3.25, + 8.25, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3.25, + 8.25, + 3.75, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 3.75, + 8.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_23", - "from": [12.75, 0, 8.25], - "to": [14.25, 0.25, 9.5], + "from": [ + 12.75, + 0, + 8.25 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 8.25, 12.75, 8.5], "texture": "#4"}, - "east": {"uv": [14, 8.25, 14.25, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.75, 9.25, 14.25, 9.5], "texture": "#4"}, - "west": {"uv": [12.75, 8.25, 13, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.75, 8.25, 14.25, 9.5], "texture": "#4"}, - "down": {"uv": [12.75, 9.5, 14.25, 8.25], "texture": "#4"} + "north": { + "uv": [ + 14.25, + 8.25, + 12.75, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14, + 8.25, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.75, + 9.25, + 14.25, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.75, + 8.25, + 13, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.75, + 8.25, + 14.25, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.75, + 9.5, + 14.25, + 8.25 + ], + "texture": "#4" + } } }, { "name": "kajiki_24", - "from": [2.5, 0, 8.5], - "to": [3.25, 0.25, 9.25], + "from": [ + 2.5, + 0, + 8.5 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 8.5, 2.5, 8.75], "texture": "#4"}, - "east": {"uv": [3, 8.5, 3.25, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2.5, 9, 3.25, 9.25], "texture": "#4"}, - "west": {"uv": [2.5, 8.5, 2.75, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2.5, 8.5, 3.25, 9.25], "texture": "#4"}, - "down": {"uv": [2.5, 9.25, 3.25, 8.5], "texture": "#4"} + "north": { + "uv": [ + 3.25, + 8.5, + 2.5, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2.5, + 9, + 3.25, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2.5, + 8.5, + 3.25, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 3.25, + 8.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_25", - "from": [0, 0, 8.75], - "to": [2.5, 0.25, 9], + "from": [ + 0, + 0, + 8.75 + ], + "to": [ + 2.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.5, 8.75, 0, 9], "texture": "#4"}, - "east": {"uv": [2.25, 8.75, 2.5, 9], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 8.75, 2.5, 9], "texture": "#4"}, - "west": {"uv": [0, 8.75, 0.25, 9], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0, 8.75, 2.5, 9], "texture": "#4"}, - "down": {"uv": [0, 9, 2.5, 8.75], "texture": "#4"} + "north": { + "uv": [ + 2.5, + 8.75, + 0, + 9 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 8.75, + 2.5, + 9 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 8.75, + 2.5, + 9 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 9, + 2.5, + 8.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_26", - "from": [14.75, 0, 9], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#4"}, - "east": {"uv": [14.75, 9, 15, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#4"}, - "west": {"uv": [14.75, 9, 15, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.75, 9, 15, 10.25], "texture": "#4"}, - "down": {"uv": [14.75, 10.25, 15, 9], "texture": "#4"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 9 + ], + "texture": "#4" + } } }, { "name": "kajiki_27", - "from": [4, 0, 9.5], - "to": [4.25, 0.25, 9.75], + "from": [ + 4, + 0, + 9.5 + ], + "to": [ + 4.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.25, 9.5, 4, 9.75], "texture": "#4"}, - "east": {"uv": [4, 9.5, 4.25, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 9.5, 4.25, 9.75], "texture": "#4"}, - "west": {"uv": [4, 9.5, 4.25, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4, 9.5, 4.25, 9.75], "texture": "#4"}, - "down": {"uv": [4, 9.75, 4.25, 9.5], "texture": "#4"} + "north": { + "uv": [ + 4.25, + 9.5, + 4, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4, + 9.75, + 4.25, + 9.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_28", - "from": [15, 0, 9.5], - "to": [15.25, 0.25, 10.5], + "from": [ + 15, + 0, + 9.5 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 9.5, 15, 9.75], "texture": "#4"}, - "east": {"uv": [15, 9.5, 15.25, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 10.25, 15.25, 10.5], "texture": "#4"}, - "west": {"uv": [15, 9.5, 15.25, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15, 9.5, 15.25, 10.5], "texture": "#4"}, - "down": {"uv": [15, 10.5, 15.25, 9.5], "texture": "#4"} + "north": { + "uv": [ + 15.25, + 9.5, + 15, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15, + 10.25, + 15.25, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15, + 10.5, + 15.25, + 9.5 + ], + "texture": "#4" + } } }, { "name": "kajiki_29", - "from": [4.75, 0, 9.75], - "to": [5, 0.25, 10], + "from": [ + 4.75, + 0, + 9.75 + ], + "to": [ + 5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5, 9.75, 4.75, 10], "texture": "#4"}, - "east": {"uv": [4.75, 9.75, 5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.75, 9.75, 5, 10], "texture": "#4"}, - "west": {"uv": [4.75, 9.75, 5, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.75, 9.75, 5, 10], "texture": "#4"}, - "down": {"uv": [4.75, 10, 5, 9.75], "texture": "#4"} + "north": { + "uv": [ + 5, + 9.75, + 4.75, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.75, + 10, + 5, + 9.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_30", - "from": [10.25, 0, 9.75], - "to": [11, 0.25, 10.5], + "from": [ + 10.25, + 0, + 9.75 + ], + "to": [ + 11, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11, 9.75, 10.25, 10], "texture": "#4"}, - "east": {"uv": [10.75, 9.75, 11, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10.25, 10.25, 11, 10.5], "texture": "#4"}, - "west": {"uv": [10.25, 9.75, 10.5, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10.25, 9.75, 11, 10.5], "texture": "#4"}, - "down": {"uv": [10.25, 10.5, 11, 9.75], "texture": "#4"} + "north": { + "uv": [ + 11, + 9.75, + 10.25, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10.75, + 9.75, + 11, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10.25, + 10.25, + 11, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10.25, + 9.75, + 11, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10.25, + 10.5, + 11, + 9.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_31", - "from": [11, 0, 9.75], - "to": [11.5, 0.25, 10], + "from": [ + 11, + 0, + 9.75 + ], + "to": [ + 11.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.5, 9.75, 11, 10], "texture": "#4"}, - "east": {"uv": [11.25, 9.75, 11.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11, 9.75, 11.5, 10], "texture": "#4"}, - "west": {"uv": [11, 9.75, 11.25, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11, 9.75, 11.5, 10], "texture": "#4"}, - "down": {"uv": [11, 10, 11.5, 9.75], "texture": "#4"} + "north": { + "uv": [ + 11.5, + 9.75, + 11, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11, + 9.75, + 11.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11, + 9.75, + 11.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11, + 10, + 11.5, + 9.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_32", - "from": [15.25, 0, 9.75], - "to": [15.5, 0.25, 10.75], + "from": [ + 15.25, + 0, + 9.75 + ], + "to": [ + 15.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15.5, 9.75, 15.25, 10], "texture": "#4"}, - "east": {"uv": [15.25, 9.75, 15.5, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.25, 10.5, 15.5, 10.75], "texture": "#4"}, - "west": {"uv": [15.25, 9.75, 15.5, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.25, 9.75, 15.5, 10.75], "texture": "#4"}, - "down": {"uv": [15.25, 10.75, 15.5, 9.75], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 9.75, + 15.25, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.25, + 10.5, + 15.5, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.25, + 10.75, + 15.5, + 9.75 + ], + "texture": "#4" + } } }, { "name": "kajiki_33", - "from": [10, 0, 10], - "to": [10.25, 0.25, 10.25], + "from": [ + 10, + 0, + 10 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.25, 10, 10, 10.25], "texture": "#4"}, - "east": {"uv": [10, 10, 10.25, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10, 10, 10.25, 10.25], "texture": "#4"}, - "west": {"uv": [10, 10, 10.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10, 10, 10.25, 10.25], "texture": "#4"}, - "down": {"uv": [10, 10.25, 10.25, 10], "texture": "#4"} + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.25, + 10 + ], + "texture": "#4" + } } }, { "name": "kajiki_34", - "from": [15.5, 0, 10], - "to": [15.75, 0.25, 10.5], + "from": [ + 15.5, + 0, + 10 + ], + "to": [ + 15.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.75, 10, 15.5, 10.25], "texture": "#4"}, - "east": {"uv": [15.5, 10, 15.75, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.5, 10.25, 15.75, 10.5], "texture": "#4"}, - "west": {"uv": [15.5, 10, 15.75, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.5, 10, 15.75, 10.5], "texture": "#4"}, - "down": {"uv": [15.5, 10.5, 15.75, 10], "texture": "#4"} + "north": { + "uv": [ + 15.75, + 10, + 15.5, + 10.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.5, + 10, + 15.75, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.5, + 10.25, + 15.75, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.5, + 10, + 15.75, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.5, + 10, + 15.75, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.5, + 10.5, + 15.75, + 10 + ], + "texture": "#4" + } } }, { "name": "kajiki_35", - "from": [10.5, 0, 10.5], - "to": [10.75, 0.25, 10.75], + "from": [ + 10.5, + 0, + 10.5 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 10.5, 10.5, 10.75], "texture": "#4"}, - "east": {"uv": [10.5, 10.5, 10.75, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10.5, 10.5, 10.75, 10.75], "texture": "#4"}, - "west": {"uv": [10.5, 10.5, 10.75, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10.5, 10.5, 10.75, 10.75], "texture": "#4"}, - "down": {"uv": [10.5, 10.75, 10.75, 10.5], "texture": "#4"} + "north": { + "uv": [ + 10.75, + 10.5, + 10.5, + 10.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10.5, + 10.75, + 10.75, + 10.5 + ], + "texture": "#4" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 9.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 9.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 9.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 9.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 9.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 9.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 9.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 9.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 22, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 22, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 19.5, 34.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 19.5, + 34.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "kajiki", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kamitukigame.json b/pack/assets/minecraft/models/fish/kamitukigame.json index 5ec824bc..412a6080 100644 --- a/pack/assets/minecraft/models/fish/kamitukigame.json +++ b/pack/assets/minecraft/models/fish/kamitukigame.json @@ -2,484 +2,2516 @@ "__name": "カミツキガメ", "credit": "Made with Blockbench", "textures": { - "0": "fish/kamitukigame", - "particle": "fish/kamitukigame" + "0": "item/fish/kamitukigame", + "particle": "item/fish/kamitukigame" }, "elements": [ { "name": "kamitukigame_0", - "from": [7.5, 0, 0], - "to": [8, 0.25, 15.25], + "from": [ + 7.5, + 0, + 0 + ], + "to": [ + 8, + 0.25, + 15.25 + ], "faces": { - "north": {"uv": [8, 0, 7.5, 0.25], "texture": "#0"}, - "east": {"uv": [7.75, 0, 8, 15.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 15, 8, 15.25], "texture": "#0"}, - "west": {"uv": [7.5, 0, 7.75, 15.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 0, 8, 15.25], "texture": "#0"}, - "down": {"uv": [7.5, 15.25, 8, 0], "texture": "#0"} + "north": { + "uv": [ + 8, + 0, + 7.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 0, + 8, + 15.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 15, + 8, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0, + 7.75, + 15.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 0, + 8, + 15.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 15.25, + 8, + 0 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_1", - "from": [7.25, 0, 0.25], - "to": [7.5, 0.25, 13], + "from": [ + 7.25, + 0, + 0.25 + ], + "to": [ + 7.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7.5, 0.25, 7.25, 0.5], "texture": "#0"}, - "east": {"uv": [7.25, 0.25, 7.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 12.75, 7.5, 13], "texture": "#0"}, - "west": {"uv": [7.25, 0.25, 7.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 0.25, 7.5, 13], "texture": "#0"}, - "down": {"uv": [7.25, 13, 7.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 0.25, + 7.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 0.25, + 7.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 12.75, + 7.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 0.25, + 7.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 0.25, + 7.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 13, + 7.5, + 0.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_2", - "from": [8, 0, 0.25], - "to": [8.25, 0.25, 13], + "from": [ + 8, + 0, + 0.25 + ], + "to": [ + 8.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [8.25, 0.25, 8, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0.25, 8.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 12.75, 8.25, 13], "texture": "#0"}, - "west": {"uv": [8, 0.25, 8.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 0.25, 8.25, 13], "texture": "#0"}, - "down": {"uv": [8, 13, 8.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 0.25, + 8, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 0.25, + 8.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 12.75, + 8.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0.25, + 8.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 0.25, + 8.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 13, + 8.25, + 0.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_3", - "from": [7, 0, 0.5], - "to": [7.25, 0.25, 11.5], + "from": [ + 7, + 0, + 0.5 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 0.5, 7, 0.75], "texture": "#0"}, - "east": {"uv": [7, 0.5, 7.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#0"}, - "west": {"uv": [7, 0.5, 7.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 0.5, 7.25, 11.5], "texture": "#0"}, - "down": {"uv": [7, 11.5, 7.25, 0.5], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 0.5, + 7, + 0.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 0.5, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 0.5, + 7.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 0.5, + 7.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.5, + 7.25, + 0.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_4", - "from": [8.25, 0, 0.5], - "to": [8.5, 0.25, 11.5], + "from": [ + 8.25, + 0, + 0.5 + ], + "to": [ + 8.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [8.5, 0.5, 8.25, 0.75], "texture": "#0"}, - "east": {"uv": [8.25, 0.5, 8.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 11.25, 8.5, 11.5], "texture": "#0"}, - "west": {"uv": [8.25, 0.5, 8.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 0.5, 8.5, 11.5], "texture": "#0"}, - "down": {"uv": [8.25, 11.5, 8.5, 0.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 0.5, + 8.25, + 0.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 0.5, + 8.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 0.5, + 8.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 0.5, + 8.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11.5, + 8.5, + 0.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_5", - "from": [6.75, 0, 0.75], - "to": [7, 0.25, 10.75], + "from": [ + 6.75, + 0, + 0.75 + ], + "to": [ + 7, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7, 0.75, 6.75, 1], "texture": "#0"}, - "east": {"uv": [6.75, 0.75, 7, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.5, 7, 10.75], "texture": "#0"}, - "west": {"uv": [6.75, 0.75, 7, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 0.75, 7, 10.75], "texture": "#0"}, - "down": {"uv": [6.75, 10.75, 7, 0.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 0.75, + 6.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 0.75, + 7, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 0.75, + 7, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 0.75, + 7, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10.75, + 7, + 0.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_6", - "from": [8.5, 0, 0.75], - "to": [8.75, 0.25, 10.75], + "from": [ + 8.5, + 0, + 0.75 + ], + "to": [ + 8.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.75, 0.75, 8.5, 1], "texture": "#0"}, - "east": {"uv": [8.5, 0.75, 8.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.5, 8.75, 10.75], "texture": "#0"}, - "west": {"uv": [8.5, 0.75, 8.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 0.75, 8.75, 10.75], "texture": "#0"}, - "down": {"uv": [8.5, 10.75, 8.75, 0.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 0.75, + 8.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0.75, + 8.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 0.75, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 0.75, + 8.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 8.75, + 0.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_7", - "from": [6.5, 0, 1.25], - "to": [6.75, 0.25, 10.5], + "from": [ + 6.5, + 0, + 1.25 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 1.25, 6.5, 1.5], "texture": "#0"}, - "east": {"uv": [6.5, 1.25, 6.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#0"}, - "west": {"uv": [6.5, 1.25, 6.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 1.25, 6.75, 10.5], "texture": "#0"}, - "down": {"uv": [6.5, 10.5, 6.75, 1.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 1.25, + 6.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 1.25, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 1.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6.75, + 1.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_8", - "from": [8.75, 0, 1.25], - "to": [9, 0.25, 10.5], + "from": [ + 8.75, + 0, + 1.25 + ], + "to": [ + 9, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9, 1.25, 8.75, 1.5], "texture": "#0"}, - "east": {"uv": [8.75, 1.25, 9, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.25, 9, 10.5], "texture": "#0"}, - "west": {"uv": [8.75, 1.25, 9, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 1.25, 9, 10.5], "texture": "#0"}, - "down": {"uv": [8.75, 10.5, 9, 1.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 1.25, + 9, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 1.25, + 9, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 1.25, + 9, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.5, + 9, + 1.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_9", - "from": [4.5, 0, 1.5], - "to": [4.75, 0.25, 9.5], + "from": [ + 4.5, + 0, + 1.5 + ], + "to": [ + 4.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.75, 1.5, 4.5, 1.75], "texture": "#0"}, - "east": {"uv": [4.5, 1.5, 4.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.25, 4.75, 9.5], "texture": "#0"}, - "west": {"uv": [4.5, 1.5, 4.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 1.5, 4.75, 9.5], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 4.75, 1.5], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 1.5, + 4.5, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 1.5, + 4.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 1.5, + 4.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 1.5, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 4.75, + 1.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_10", - "from": [5, 0, 1.5], - "to": [5.25, 0.25, 9.5], + "from": [ + 5, + 0, + 1.5 + ], + "to": [ + 5.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.25, 1.5, 5, 1.75], "texture": "#0"}, - "east": {"uv": [5, 1.5, 5.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#0"}, - "west": {"uv": [5, 1.5, 5.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 1.5, 5.25, 9.5], "texture": "#0"}, - "down": {"uv": [5, 9.5, 5.25, 1.5], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 1.5, + 5, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 5.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 1.5, + 5.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 1.5, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 5.25, + 1.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_11", - "from": [10.25, 0, 1.5], - "to": [10.5, 0.25, 9.5], + "from": [ + 10.25, + 0, + 1.5 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.5, 1.5, 10.25, 1.75], "texture": "#0"}, - "east": {"uv": [10.25, 1.5, 10.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "west": {"uv": [10.25, 1.5, 10.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 1.5, 10.5, 9.5], "texture": "#0"}, - "down": {"uv": [10.25, 9.5, 10.5, 1.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 1.5, + 10.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 1.5, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.5, + 10.5, + 1.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_12", - "from": [10.75, 0, 1.5], - "to": [11, 0.25, 9.5], + "from": [ + 10.75, + 0, + 1.5 + ], + "to": [ + 11, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11, 1.5, 10.75, 1.75], "texture": "#0"}, - "east": {"uv": [10.75, 1.5, 11, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "west": {"uv": [10.75, 1.5, 11, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 1.5, 11, 9.5], "texture": "#0"}, - "down": {"uv": [10.75, 9.5, 11, 1.5], "texture": "#0"} + "north": { + "uv": [ + 11, + 1.5, + 10.75, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 1.5, + 11, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 1.5, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 1.5, + 11, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11, + 1.5 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_13", - "from": [4.25, 0, 1.75], - "to": [4.5, 0.25, 9.5], + "from": [ + 4.25, + 0, + 1.75 + ], + "to": [ + 4.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.5, 1.75, 4.25, 2], "texture": "#0"}, - "east": {"uv": [4.25, 1.75, 4.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.25, 4.5, 9.5], "texture": "#0"}, - "west": {"uv": [4.25, 1.75, 4.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 1.75, 4.5, 9.5], "texture": "#0"}, - "down": {"uv": [4.25, 9.5, 4.5, 1.75], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 1.75, + 4.25, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 1.75, + 4.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 1.75, + 4.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 1.75, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.5, + 4.5, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_14", - "from": [4.75, 0, 1.75], - "to": [5, 0.25, 9.25], + "from": [ + 4.75, + 0, + 1.75 + ], + "to": [ + 5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5, 1.75, 4.75, 2], "texture": "#0"}, - "east": {"uv": [4.75, 1.75, 5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9, 5, 9.25], "texture": "#0"}, - "west": {"uv": [4.75, 1.75, 5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 1.75, 5, 9.25], "texture": "#0"}, - "down": {"uv": [4.75, 9.25, 5, 1.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 1.75, + 4.75, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 1.75, + 5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 1.75, + 5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 1.75, + 5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.25, + 5, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_15", - "from": [5.25, 0, 1.75], - "to": [5.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 1.75 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 1.75, 5.25, 2], "texture": "#0"}, - "east": {"uv": [5.25, 1.75, 5.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#0"}, - "west": {"uv": [5.25, 1.75, 5.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 1.75, 5.5, 9.75], "texture": "#0"}, - "down": {"uv": [5.25, 9.75, 5.5, 1.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 1.75, + 5.25, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 1.75, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 1.75, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 1.75, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_16", - "from": [10, 0, 1.75], - "to": [10.25, 0.25, 9.75], + "from": [ + 10, + 0, + 1.75 + ], + "to": [ + 10.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.25, 1.75, 10, 2], "texture": "#0"}, - "east": {"uv": [10, 1.75, 10.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#0"}, - "west": {"uv": [10, 1.75, 10.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 1.75, 10.25, 9.75], "texture": "#0"}, - "down": {"uv": [10, 9.75, 10.25, 1.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 1.75, + 10, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.75, + 10.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 1.75, + 10.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 1.75, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.75, + 10.25, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_17", - "from": [10.5, 0, 1.75], - "to": [10.75, 0.25, 9.25], + "from": [ + 10.5, + 0, + 1.75 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 1.75, 10.5, 2], "texture": "#0"}, - "east": {"uv": [10.5, 1.75, 10.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9, 10.75, 9.25], "texture": "#0"}, - "west": {"uv": [10.5, 1.75, 10.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 1.75, 10.75, 9.25], "texture": "#0"}, - "down": {"uv": [10.5, 9.25, 10.75, 1.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 1.75, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.75, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 1.75, + 10.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 1.75, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.25, + 10.75, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_18", - "from": [11, 0, 1.75], - "to": [11.25, 0.25, 9.5], + "from": [ + 11, + 0, + 1.75 + ], + "to": [ + 11.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.25, 1.75, 11, 2], "texture": "#0"}, - "east": {"uv": [11, 1.75, 11.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.25, 11.25, 9.5], "texture": "#0"}, - "west": {"uv": [11, 1.75, 11.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 1.75, 11.25, 9.5], "texture": "#0"}, - "down": {"uv": [11, 9.5, 11.25, 1.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 1.75, + 11, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 1.75, + 11.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 1.75, + 11.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 1.75, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.5, + 11.25, + 1.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_19", - "from": [4, 0, 2], - "to": [4.25, 0.25, 3.25], + "from": [ + 4, + 0, + 2 + ], + "to": [ + 4.25, + 0.25, + 3.25 + ], "faces": { - "north": {"uv": [4.25, 2, 4, 2.25], "texture": "#0"}, - "east": {"uv": [4, 2, 4.25, 3.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 3, 4.25, 3.25], "texture": "#0"}, - "west": {"uv": [4, 2, 4.25, 3.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 2, 4.25, 3.25], "texture": "#0"}, - "down": {"uv": [4, 3.25, 4.25, 2], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 2, + 4, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 2, + 4.25, + 3.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 3, + 4.25, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 4.25, + 3.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 2, + 4.25, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 3.25, + 4.25, + 2 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_20", - "from": [5.5, 0, 2], - "to": [6.5, 0.25, 10], + "from": [ + 5.5, + 0, + 2 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 2, 5.5, 2.25], "texture": "#0"}, - "east": {"uv": [6.25, 2, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [5.5, 2, 5.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 2, 6.5, 10], "texture": "#0"}, - "down": {"uv": [5.5, 10, 6.5, 2], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 2, + 5.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 2, + 5.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 2, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10, + 6.5, + 2 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_21", - "from": [9, 0, 2], - "to": [10, 0.25, 10], + "from": [ + 9, + 0, + 2 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 2, 9, 2.25], "texture": "#0"}, - "east": {"uv": [9.75, 2, 10, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.75, 10, 10], "texture": "#0"}, - "west": {"uv": [9, 2, 9.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 2, 10, 10], "texture": "#0"}, - "down": {"uv": [9, 10, 10, 2], "texture": "#0"} + "north": { + "uv": [ + 10, + 2, + 9, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 2, + 10, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 2, + 9.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 2, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10, + 10, + 2 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_22", - "from": [11.25, 0, 2], - "to": [11.5, 0.25, 3.25], + "from": [ + 11.25, + 0, + 2 + ], + "to": [ + 11.5, + 0.25, + 3.25 + ], "faces": { - "north": {"uv": [11.5, 2, 11.25, 2.25], "texture": "#0"}, - "east": {"uv": [11.25, 2, 11.5, 3.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 3, 11.5, 3.25], "texture": "#0"}, - "west": {"uv": [11.25, 2, 11.5, 3.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 2, 11.5, 3.25], "texture": "#0"}, - "down": {"uv": [11.25, 3.25, 11.5, 2], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 2, + 11.25, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 2, + 11.5, + 3.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 3, + 11.5, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 2, + 11.5, + 3.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 2, + 11.5, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 3.25, + 11.5, + 2 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_23", - "from": [11.25, 0, 4], - "to": [11.5, 0.25, 9.25], + "from": [ + 11.25, + 0, + 4 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 4, 11.25, 4.25], "texture": "#0"}, - "east": {"uv": [11.25, 4, 11.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "west": {"uv": [11.25, 4, 11.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 4, 11.5, 9.25], "texture": "#0"}, - "down": {"uv": [11.25, 9.25, 11.5, 4], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4, + 11.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 4, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 4, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.5, + 4 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_24", - "from": [4, 0, 4.25], - "to": [4.25, 0.25, 9.25], + "from": [ + 4, + 0, + 4.25 + ], + "to": [ + 4.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.25, 4.25, 4, 4.5], "texture": "#0"}, - "east": {"uv": [4, 4.25, 4.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9, 4.25, 9.25], "texture": "#0"}, - "west": {"uv": [4, 4.25, 4.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4.25, 4.25, 9.25], "texture": "#0"}, - "down": {"uv": [4, 9.25, 4.25, 4.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 4.25, + 4, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4.25, + 4.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.25, + 4.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4.25, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.25, + 4.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_25", - "from": [3.75, 0, 7.75], - "to": [4, 0.25, 9], + "from": [ + 3.75, + 0, + 7.75 + ], + "to": [ + 4, + 0.25, + 9 + ], "faces": { - "north": {"uv": [4, 7.75, 3.75, 8], "texture": "#0"}, - "east": {"uv": [3.75, 7.75, 4, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.75, 4, 9], "texture": "#0"}, - "west": {"uv": [3.75, 7.75, 4, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 7.75, 4, 9], "texture": "#0"}, - "down": {"uv": [3.75, 9, 4, 7.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 7.75, + 3.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7.75, + 4, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 7.75, + 4, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7.75, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9, + 4, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_26", - "from": [11.5, 0, 7.75], - "to": [11.75, 0.25, 9], + "from": [ + 11.5, + 0, + 7.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 7.75, 11.5, 8], "texture": "#0"}, - "east": {"uv": [11.5, 7.75, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [11.5, 7.75, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7.75, 11.75, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 11.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 7.75, + 11.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_27", - "from": [3.5, 0, 8], - "to": [3.75, 0.25, 8.75], + "from": [ + 3.5, + 0, + 8 + ], + "to": [ + 3.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [3.75, 8, 3.5, 8.25], "texture": "#0"}, - "east": {"uv": [3.5, 8, 3.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.5, 3.75, 8.75], "texture": "#0"}, - "west": {"uv": [3.5, 8, 3.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 8, 3.75, 8.75], "texture": "#0"}, - "down": {"uv": [3.5, 8.75, 3.75, 8], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8, + 3.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.75, + 3.75, + 8 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_28", - "from": [11.75, 0, 8], - "to": [12, 0.25, 8.75], + "from": [ + 11.75, + 0, + 8 + ], + "to": [ + 12, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12, 8, 11.75, 8.25], "texture": "#0"}, - "east": {"uv": [11.75, 8, 12, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.5, 12, 8.75], "texture": "#0"}, - "west": {"uv": [11.75, 8, 12, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8, 12, 8.75], "texture": "#0"}, - "down": {"uv": [11.75, 8.75, 12, 8], "texture": "#0"} + "north": { + "uv": [ + 12, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8, + 12, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8, + 12, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.75, + 12, + 8 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_29", - "from": [3.25, 0, 8.25], - "to": [3.5, 0.25, 8.5], + "from": [ + 3.25, + 0, + 8.25 + ], + "to": [ + 3.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3.5, 8.25, 3.25, 8.5], "texture": "#0"}, - "east": {"uv": [3.25, 8.25, 3.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.25, 3.5, 8.5], "texture": "#0"}, - "west": {"uv": [3.25, 8.25, 3.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.25, 3.5, 8.5], "texture": "#0"}, - "down": {"uv": [3.25, 8.5, 3.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_30", - "from": [12, 0, 8.25], - "to": [12.25, 0.25, 8.5], + "from": [ + 12, + 0, + 8.25 + ], + "to": [ + 12.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.25, 8.25, 12, 8.5], "texture": "#0"}, - "east": {"uv": [12, 8.25, 12.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, - "west": {"uv": [12, 8.25, 12.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, - "down": {"uv": [12, 8.5, 12.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.5, + 12.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_31", - "from": [6.25, 0, 10], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 10 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 10, 6.25, 10.25], "texture": "#0"}, - "east": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.25, 10.25, 6.5, 10], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10 + ], + "texture": "#0" + } } }, { "name": "kamitukigame_32", - "from": [9, 0, 10], - "to": [9.25, 0.25, 10.25], + "from": [ + 9, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 10, 9, 10.25], "texture": "#0"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "west": {"uv": [9, 10, 9.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "down": {"uv": [9, 10.25, 9.25, 10], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.25, + 9.25, + 10 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 5.75], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 5.75 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 5.75], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 5.75 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "firstperson_righthand": { - "rotation": [86, 34, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + 34, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_lefthand": { - "rotation": [86, 51, 1.75], - "translation": [5.75, 0.25, 7.75], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 86, + 51, + 1.75 + ], + "translation": [ + 5.75, + 0.25, + 7.75 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "ground": { - "translation": [0, 7, 0], - "scale": [0.94, 0.94, 0.94] + "translation": [ + 0, + 7, + 0 + ], + "scale": [ + 0.94, + 0.94, + 0.94 + ] }, "gui": { - "rotation": [90, 0, 0] + "rotation": [ + 90, + 0, + 0 + ] }, "head": { - "translation": [0.75, 16.75, 4], - "scale": [1.31, 1.31, 1.31] + "translation": [ + 0.75, + 16.75, + 4 + ], + "scale": [ + 1.31, + 1.31, + 1.31 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "kamitukigame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/karei.json b/pack/assets/minecraft/models/fish/karei.json index a878f881..8ffb520f 100644 --- a/pack/assets/minecraft/models/fish/karei.json +++ b/pack/assets/minecraft/models/fish/karei.json @@ -2,605 +2,3184 @@ "__name": "カレイ", "credit": "Made with Blockbench", "textures": { - "3": "fish/karei", - "particle": "fish/isidai" + "3": "item/fish/karei", + "particle": "item/fish/isidai" }, "elements": [ { "name": "karei_0", - "from": [8.75, 0, 4], - "to": [9.75, 0.25, 12], + "from": [ + 8.75, + 0, + 4 + ], + "to": [ + 9.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.75, 4, 8.75, 4.25], "texture": "#3"}, - "east": {"uv": [9.5, 4, 9.75, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.75, 11.75, 9.75, 12], "texture": "#3"}, - "west": {"uv": [8.75, 4, 9, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.75, 4, 9.75, 12], "texture": "#3"}, - "down": {"uv": [8.75, 12, 9.75, 4], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 4, + 8.75, + 4.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 4, + 9.75, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.75, + 11.75, + 9.75, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.75, + 4, + 9, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.75, + 4, + 9.75, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.75, + 12, + 9.75, + 4 + ], + "texture": "#3" + } } }, { "name": "karei_1", - "from": [7.75, 0, 4.25], - "to": [8.75, 0.25, 12], + "from": [ + 7.75, + 0, + 4.25 + ], + "to": [ + 8.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.75, 4.25, 7.75, 4.5], "texture": "#3"}, - "east": {"uv": [8.5, 4.25, 8.75, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.75, 11.75, 8.75, 12], "texture": "#3"}, - "west": {"uv": [7.75, 4.25, 8, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.75, 4.25, 8.75, 12], "texture": "#3"}, - "down": {"uv": [7.75, 12, 8.75, 4.25], "texture": "#3"} + "north": { + "uv": [ + 8.75, + 4.25, + 7.75, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.5, + 4.25, + 8.75, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.75, + 11.75, + 8.75, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.75, + 4.25, + 8, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.75, + 4.25, + 8.75, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.75, + 12, + 8.75, + 4.25 + ], + "texture": "#3" + } } }, { "name": "karei_2", - "from": [9.75, 0, 4.25], - "to": [10.25, 0.25, 12], + "from": [ + 9.75, + 0, + 4.25 + ], + "to": [ + 10.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [10.25, 4.25, 9.75, 4.5], "texture": "#3"}, - "east": {"uv": [10, 4.25, 10.25, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.75, 11.75, 10.25, 12], "texture": "#3"}, - "west": {"uv": [9.75, 4.25, 10, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.75, 4.25, 10.25, 12], "texture": "#3"}, - "down": {"uv": [9.75, 12, 10.25, 4.25], "texture": "#3"} + "north": { + "uv": [ + 10.25, + 4.25, + 9.75, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10, + 4.25, + 10.25, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.75, + 11.75, + 10.25, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.75, + 4.25, + 10, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.75, + 4.25, + 10.25, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.75, + 12, + 10.25, + 4.25 + ], + "texture": "#3" + } } }, { "name": "karei_3", - "from": [7.25, 0, 4.5], - "to": [7.75, 0.25, 12], + "from": [ + 7.25, + 0, + 4.5 + ], + "to": [ + 7.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.75, 4.5, 7.25, 4.75], "texture": "#3"}, - "east": {"uv": [7.5, 4.5, 7.75, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.25, 11.75, 7.75, 12], "texture": "#3"}, - "west": {"uv": [7.25, 4.5, 7.5, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.25, 4.5, 7.75, 12], "texture": "#3"}, - "down": {"uv": [7.25, 12, 7.75, 4.5], "texture": "#3"} + "north": { + "uv": [ + 7.75, + 4.5, + 7.25, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.5, + 4.5, + 7.75, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.25, + 11.75, + 7.75, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.25, + 4.5, + 7.75, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.25, + 12, + 7.75, + 4.5 + ], + "texture": "#3" + } } }, { "name": "karei_4", - "from": [10.25, 0, 4.5], - "to": [10.75, 0.25, 11.75], + "from": [ + 10.25, + 0, + 4.5 + ], + "to": [ + 10.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.75, 4.5, 10.25, 4.75], "texture": "#3"}, - "east": {"uv": [10.5, 4.5, 10.75, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.25, 11.5, 10.75, 11.75], "texture": "#3"}, - "west": {"uv": [10.25, 4.5, 10.5, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.25, 4.5, 10.75, 11.75], "texture": "#3"}, - "down": {"uv": [10.25, 11.75, 10.75, 4.5], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 4.5, + 10.25, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 4.5, + 10.75, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.25, + 11.5, + 10.75, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.25, + 4.5, + 10.5, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10.75, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.25, + 11.75, + 10.75, + 4.5 + ], + "texture": "#3" + } } }, { "name": "karei_5", - "from": [6.75, 0, 4.75], - "to": [7.25, 0.25, 11.75], + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7.25, 4.75, 6.75, 5], "texture": "#3"}, - "east": {"uv": [7, 4.75, 7.25, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.75, 11.5, 7.25, 11.75], "texture": "#3"}, - "west": {"uv": [6.75, 4.75, 7, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.75, 4.75, 7.25, 11.75], "texture": "#3"}, - "down": {"uv": [6.75, 11.75, 7.25, 4.75], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 4.75, + 6.75, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 4.75, + 7.25, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.75, + 11.5, + 7.25, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7.25, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.75, + 11.75, + 7.25, + 4.75 + ], + "texture": "#3" + } } }, { "name": "karei_6", - "from": [10.75, 0, 4.75], - "to": [11.25, 0.25, 11.25], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11.25, 4.75, 10.75, 5], "texture": "#3"}, - "east": {"uv": [11, 4.75, 11.25, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 11, 11.25, 11.25], "texture": "#3"}, - "west": {"uv": [10.75, 4.75, 11, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 4.75, 11.25, 11.25], "texture": "#3"}, - "down": {"uv": [10.75, 11.25, 11.25, 4.75], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 4.75, + 10.75, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 4.75, + 11.25, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 11, + 11.25, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11.25, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 11.25, + 11.25, + 4.75 + ], + "texture": "#3" + } } }, { "name": "karei_7", - "from": [6.25, 0, 5], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.25, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 5, 6.25, 5.25], "texture": "#3"}, - "east": {"uv": [6.5, 5, 6.75, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#3"}, - "west": {"uv": [6.25, 5, 6.5, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.25, 5, 6.75, 11.5], "texture": "#3"}, - "down": {"uv": [6.25, 11.5, 6.75, 5], "texture": "#3"} + "north": { + "uv": [ + 6.75, + 5, + 6.25, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.25, + 5, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.25, + 5, + 6.75, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.75, + 5 + ], + "texture": "#3" + } } }, { "name": "karei_8", - "from": [11.25, 0, 5], - "to": [11.75, 0.25, 10.75], + "from": [ + 11.25, + 0, + 5 + ], + "to": [ + 11.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.75, 5, 11.25, 5.25], "texture": "#3"}, - "east": {"uv": [11.5, 5, 11.75, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 10.5, 11.75, 10.75], "texture": "#3"}, - "west": {"uv": [11.25, 5, 11.5, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 5, 11.75, 10.75], "texture": "#3"}, - "down": {"uv": [11.25, 10.75, 11.75, 5], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 5, + 11.25, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 5, + 11.75, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 10.5, + 11.75, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 5, + 11.5, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 5, + 11.75, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 10.75, + 11.75, + 5 + ], + "texture": "#3" + } } }, { "name": "karei_9", - "from": [6, 0, 5.25], - "to": [6.25, 0.25, 11.25], + "from": [ + 6, + 0, + 5.25 + ], + "to": [ + 6.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.25, 5.25, 6, 5.5], "texture": "#3"}, - "east": {"uv": [6, 5.25, 6.25, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6, 11, 6.25, 11.25], "texture": "#3"}, - "west": {"uv": [6, 5.25, 6.25, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6, 5.25, 6.25, 11.25], "texture": "#3"}, - "down": {"uv": [6, 11.25, 6.25, 5.25], "texture": "#3"} + "north": { + "uv": [ + 6.25, + 5.25, + 6, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6, + 5.25, + 6.25, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6, + 5.25, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6, + 5.25, + 6.25, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6, + 11.25, + 6.25, + 5.25 + ], + "texture": "#3" + } } }, { "name": "karei_10", - "from": [11.75, 0, 5.25], - "to": [12, 0.25, 10.75], + "from": [ + 11.75, + 0, + 5.25 + ], + "to": [ + 12, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12, 5.25, 11.75, 5.5], "texture": "#3"}, - "east": {"uv": [11.75, 5.25, 12, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 10.5, 12, 10.75], "texture": "#3"}, - "west": {"uv": [11.75, 5.25, 12, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 5.25, 12, 10.75], "texture": "#3"}, - "down": {"uv": [11.75, 10.75, 12, 5.25], "texture": "#3"} + "north": { + "uv": [ + 12, + 5.25, + 11.75, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.75, + 5.25, + 12, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 10.5, + 12, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 5.25, + 12, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 5.25, + 12, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 10.75, + 12, + 5.25 + ], + "texture": "#3" + } } }, { "name": "karei_11", - "from": [5.75, 0, 5.5], - "to": [6, 0.25, 11], + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6, 5.5, 5.75, 5.75], "texture": "#3"}, - "east": {"uv": [5.75, 5.5, 6, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.75, 10.75, 6, 11], "texture": "#3"}, - "west": {"uv": [5.75, 5.5, 6, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.75, 5.5, 6, 11], "texture": "#3"}, - "down": {"uv": [5.75, 11, 6, 5.5], "texture": "#3"} + "north": { + "uv": [ + 6, + 5.5, + 5.75, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.75, + 11, + 6, + 5.5 + ], + "texture": "#3" + } } }, { "name": "karei_12", - "from": [12, 0, 5.5], - "to": [12.5, 0.25, 10.5], + "from": [ + 12, + 0, + 5.5 + ], + "to": [ + 12.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.5, 5.5, 12, 5.75], "texture": "#3"}, - "east": {"uv": [12.25, 5.5, 12.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12, 10.25, 12.5, 10.5], "texture": "#3"}, - "west": {"uv": [12, 5.5, 12.25, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12, 5.5, 12.5, 10.5], "texture": "#3"}, - "down": {"uv": [12, 10.5, 12.5, 5.5], "texture": "#3"} + "north": { + "uv": [ + 12.5, + 5.5, + 12, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.25, + 5.5, + 12.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12, + 10.25, + 12.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12, + 5.5, + 12.25, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12, + 5.5, + 12.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12, + 10.5, + 12.5, + 5.5 + ], + "texture": "#3" + } } }, { "name": "karei_13", - "from": [5.5, 0, 5.75], - "to": [5.75, 0.25, 10.75], + "from": [ + 5.5, + 0, + 5.75 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.75, 5.75, 5.5, 6], "texture": "#3"}, - "east": {"uv": [5.5, 5.75, 5.75, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#3"}, - "west": {"uv": [5.5, 5.75, 5.75, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.5, 5.75, 5.75, 10.75], "texture": "#3"}, - "down": {"uv": [5.5, 10.75, 5.75, 5.75], "texture": "#3"} + "north": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.5, + 5.75, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.5, + 5.75, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.5, + 5.75, + 5.75, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 5.75, + 5.75 + ], + "texture": "#3" + } } }, { "name": "karei_14", - "from": [12.5, 0, 5.75], - "to": [12.75, 0.25, 10.25], + "from": [ + 12.5, + 0, + 5.75 + ], + "to": [ + 12.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.75, 5.75, 12.5, 6], "texture": "#3"}, - "east": {"uv": [12.5, 5.75, 12.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.5, 10, 12.75, 10.25], "texture": "#3"}, - "west": {"uv": [12.5, 5.75, 12.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.5, 5.75, 12.75, 10.25], "texture": "#3"}, - "down": {"uv": [12.5, 10.25, 12.75, 5.75], "texture": "#3"} + "north": { + "uv": [ + 12.75, + 5.75, + 12.5, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.5, + 5.75, + 12.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.5, + 10, + 12.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.5, + 5.75, + 12.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.5, + 5.75, + 12.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.5, + 10.25, + 12.75, + 5.75 + ], + "texture": "#3" + } } }, { "name": "karei_15", - "from": [5.25, 0, 6], - "to": [5.5, 0.25, 10.5], + "from": [ + 5.25, + 0, + 6 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 6, 5.25, 6.25], "texture": "#3"}, - "east": {"uv": [5.25, 6, 5.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#3"}, - "west": {"uv": [5.25, 6, 5.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.25, 6, 5.5, 10.5], "texture": "#3"}, - "down": {"uv": [5.25, 10.5, 5.5, 6], "texture": "#3"} + "north": { + "uv": [ + 5.5, + 6, + 5.25, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.25, + 6, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.25, + 6, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.25, + 6, + 5.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 5.5, + 6 + ], + "texture": "#3" + } } }, { "name": "karei_16", - "from": [12.75, 0, 6], - "to": [13, 0.25, 10.25], + "from": [ + 12.75, + 0, + 6 + ], + "to": [ + 13, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13, 6, 12.75, 6.25], "texture": "#3"}, - "east": {"uv": [12.75, 6, 13, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.75, 10, 13, 10.25], "texture": "#3"}, - "west": {"uv": [12.75, 6, 13, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.75, 6, 13, 10.25], "texture": "#3"}, - "down": {"uv": [12.75, 10.25, 13, 6], "texture": "#3"} + "north": { + "uv": [ + 13, + 6, + 12.75, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.75, + 6, + 13, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.75, + 10, + 13, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.75, + 6, + 13, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.75, + 6, + 13, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.75, + 10.25, + 13, + 6 + ], + "texture": "#3" + } } }, { "name": "karei_17", - "from": [5, 0, 6.25], - "to": [5.25, 0.25, 10.25], + "from": [ + 5, + 0, + 6.25 + ], + "to": [ + 5.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.25, 6.25, 5, 6.5], "texture": "#3"}, - "east": {"uv": [5, 6.25, 5.25, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5, 10, 5.25, 10.25], "texture": "#3"}, - "west": {"uv": [5, 6.25, 5.25, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5, 6.25, 5.25, 10.25], "texture": "#3"}, - "down": {"uv": [5, 10.25, 5.25, 6.25], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 6.25, + 5, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.25, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5, + 6.25, + 5.25, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5, + 6.25, + 5.25, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5, + 10.25, + 5.25, + 6.25 + ], + "texture": "#3" + } } }, { "name": "karei_18", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 10.25], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#3"}, - "east": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13, 10, 13.25, 10.25], "texture": "#3"}, - "west": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13, 6.25, 13.25, 10.25], "texture": "#3"}, - "down": {"uv": [13, 10.25, 13.25, 6.25], "texture": "#3"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13, + 10, + 13.25, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13, + 10.25, + 13.25, + 6.25 + ], + "texture": "#3" + } } }, { "name": "karei_19", - "from": [4.75, 0, 6.5], - "to": [5, 0.25, 10], + "from": [ + 4.75, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5, 6.5, 4.75, 6.75], "texture": "#3"}, - "east": {"uv": [4.75, 6.5, 5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.75, 9.75, 5, 10], "texture": "#3"}, - "west": {"uv": [4.75, 6.5, 5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.75, 6.5, 5, 10], "texture": "#3"}, - "down": {"uv": [4.75, 10, 5, 6.5], "texture": "#3"} + "north": { + "uv": [ + 5, + 6.5, + 4.75, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.75, + 6.5, + 5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.75, + 6.5, + 5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.75, + 10, + 5, + 6.5 + ], + "texture": "#3" + } } }, { "name": "karei_20", - "from": [13.25, 0, 6.5], - "to": [13.5, 0.25, 10], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.5, 6.5, 13.25, 6.75], "texture": "#3"}, - "east": {"uv": [13.25, 6.5, 13.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.25, 9.75, 13.5, 10], "texture": "#3"}, - "west": {"uv": [13.25, 6.5, 13.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.25, 6.5, 13.5, 10], "texture": "#3"}, - "down": {"uv": [13.25, 10, 13.5, 6.5], "texture": "#3"} + "north": { + "uv": [ + 13.5, + 6.5, + 13.25, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.25, + 9.75, + 13.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.25, + 10, + 13.5, + 6.5 + ], + "texture": "#3" + } } }, { "name": "karei_21", - "from": [1.25, 0, 6.75], - "to": [2, 0.25, 10], + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 6.75, 1.25, 7], "texture": "#3"}, - "east": {"uv": [1.75, 6.75, 2, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.25, 9.75, 2, 10], "texture": "#3"}, - "west": {"uv": [1.25, 6.75, 1.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.25, 6.75, 2, 10], "texture": "#3"}, - "down": {"uv": [1.25, 10, 2, 6.75], "texture": "#3"} + "north": { + "uv": [ + 2, + 6.75, + 1.25, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.25, + 9.75, + 2, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 2, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.25, + 10, + 2, + 6.75 + ], + "texture": "#3" + } } }, { "name": "karei_22", - "from": [13.5, 0, 6.75], - "to": [13.75, 0.25, 10], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 13.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.75, 6.75, 13.5, 7], "texture": "#3"}, - "east": {"uv": [13.5, 6.75, 13.75, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.5, 9.75, 13.75, 10], "texture": "#3"}, - "west": {"uv": [13.5, 6.75, 13.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.5, 6.75, 13.75, 10], "texture": "#3"}, - "down": {"uv": [13.5, 10, 13.75, 6.75], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 6.75, + 13.5, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 6.75, + 13.75, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 13.75, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 13.75, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.5, + 10, + 13.75, + 6.75 + ], + "texture": "#3" + } } }, { "name": "karei_23", - "from": [1, 0, 7], - "to": [1.25, 0.25, 9.75], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#3"}, - "east": {"uv": [1, 7, 1.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1, 9.5, 1.25, 9.75], "texture": "#3"}, - "west": {"uv": [1, 7, 1.25, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1, 7, 1.25, 9.75], "texture": "#3"}, - "down": {"uv": [1, 9.75, 1.25, 7], "texture": "#3"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1, + 9.75, + 1.25, + 7 + ], + "texture": "#3" + } } }, { "name": "karei_24", - "from": [2, 0, 7], - "to": [2.5, 0.25, 9.75], + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.5, 7, 2, 7.25], "texture": "#3"}, - "east": {"uv": [2.25, 7, 2.5, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2, 9.5, 2.5, 9.75], "texture": "#3"}, - "west": {"uv": [2, 7, 2.25, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2, 7, 2.5, 9.75], "texture": "#3"}, - "down": {"uv": [2, 9.75, 2.5, 7], "texture": "#3"} + "north": { + "uv": [ + 2.5, + 7, + 2, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2, + 9.5, + 2.5, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2, + 7, + 2.5, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2, + 9.75, + 2.5, + 7 + ], + "texture": "#3" + } } }, { "name": "karei_25", - "from": [4.5, 0, 7], - "to": [4.75, 0.25, 9.5], + "from": [ + 4.5, + 0, + 7 + ], + "to": [ + 4.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.75, 7, 4.5, 7.25], "texture": "#3"}, - "east": {"uv": [4.5, 7, 4.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.5, 9.25, 4.75, 9.5], "texture": "#3"}, - "west": {"uv": [4.5, 7, 4.75, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.5, 7, 4.75, 9.5], "texture": "#3"}, - "down": {"uv": [4.5, 9.5, 4.75, 7], "texture": "#3"} + "north": { + "uv": [ + 4.75, + 7, + 4.5, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.5, + 7, + 4.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.5, + 7, + 4.75, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.5, + 7, + 4.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 4.75, + 7 + ], + "texture": "#3" + } } }, { "name": "karei_26", - "from": [13.75, 0, 7], - "to": [14, 0.25, 9.75], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#3"}, - "east": {"uv": [13.75, 7, 14, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.75, 9.5, 14, 9.75], "texture": "#3"}, - "west": {"uv": [13.75, 7, 14, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.75, 7, 14, 9.75], "texture": "#3"}, - "down": {"uv": [13.75, 9.75, 14, 7], "texture": "#3"} + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14, + 7 + ], + "texture": "#3" + } } }, { "name": "karei_27", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 9.5], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#3"}, - "east": {"uv": [0.75, 7.25, 1, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#3"}, - "west": {"uv": [0.75, 7.25, 1, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 7.25, 1, 9.5], "texture": "#3"}, - "down": {"uv": [0.75, 9.5, 1, 7.25], "texture": "#3"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 9.5, + 1, + 7.25 + ], + "texture": "#3" + } } }, { "name": "karei_28", - "from": [2.5, 0, 7.25], - "to": [3, 0.25, 9.5], + "from": [ + 2.5, + 0, + 7.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 7.25, 2.5, 7.5], "texture": "#3"}, - "east": {"uv": [2.75, 7.25, 3, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.5, 9.25, 3, 9.5], "texture": "#3"}, - "west": {"uv": [2.5, 7.25, 2.75, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.5, 7.25, 3, 9.5], "texture": "#3"}, - "down": {"uv": [2.5, 9.5, 3, 7.25], "texture": "#3"} + "north": { + "uv": [ + 3, + 7.25, + 2.5, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.75, + 7.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 3, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.5, + 7.25, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.5, + 7.25, + 3, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 3, + 7.25 + ], + "texture": "#3" + } } }, { "name": "karei_29", - "from": [4.25, 0, 7.25], - "to": [4.5, 0.25, 9.25], + "from": [ + 4.25, + 0, + 7.25 + ], + "to": [ + 4.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.5, 7.25, 4.25, 7.5], "texture": "#3"}, - "east": {"uv": [4.25, 7.25, 4.5, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.25, 9, 4.5, 9.25], "texture": "#3"}, - "west": {"uv": [4.25, 7.25, 4.5, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.25, 7.25, 4.5, 9.25], "texture": "#3"}, - "down": {"uv": [4.25, 9.25, 4.5, 7.25], "texture": "#3"} + "north": { + "uv": [ + 4.5, + 7.25, + 4.25, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.25, + 7.25, + 4.5, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.25, + 7.25, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.25, + 7.25, + 4.5, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 4.5, + 7.25 + ], + "texture": "#3" + } } }, { "name": "karei_30", - "from": [14, 0, 7.25], - "to": [14.5, 0.25, 9.5], + "from": [ + 14, + 0, + 7.25 + ], + "to": [ + 14.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.5, 7.25, 14, 7.5], "texture": "#3"}, - "east": {"uv": [14.25, 7.25, 14.5, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14, 9.25, 14.5, 9.5], "texture": "#3"}, - "west": {"uv": [14, 7.25, 14.25, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14, 7.25, 14.5, 9.5], "texture": "#3"}, - "down": {"uv": [14, 9.5, 14.5, 7.25], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 7.25, + 14, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 7.25, + 14.5, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.5, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14, + 7.25, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14, + 7.25, + 14.5, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.5, + 7.25 + ], + "texture": "#3" + } } }, { "name": "karei_31", - "from": [3, 0, 7.5], - "to": [4.25, 0.25, 9], + "from": [ + 3, + 0, + 7.5 + ], + "to": [ + 4.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [4.25, 7.5, 3, 7.75], "texture": "#3"}, - "east": {"uv": [4, 7.5, 4.25, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3, 8.75, 4.25, 9], "texture": "#3"}, - "west": {"uv": [3, 7.5, 3.25, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3, 7.5, 4.25, 9], "texture": "#3"}, - "down": {"uv": [3, 9, 4.25, 7.5], "texture": "#3"} + "north": { + "uv": [ + 4.25, + 7.5, + 3, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.25, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3, + 8.75, + 4.25, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.25, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3, + 7.5, + 4.25, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3, + 9, + 4.25, + 7.5 + ], + "texture": "#3" + } } }, { "name": "karei_32", - "from": [14.5, 0, 7.5], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#3"}, - "east": {"uv": [14.5, 7.5, 14.75, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#3"}, - "west": {"uv": [14.5, 7.5, 14.75, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 7.5, 14.75, 9.5], "texture": "#3"}, - "down": {"uv": [14.5, 9.5, 14.75, 7.5], "texture": "#3"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 7.5 + ], + "texture": "#3" + } } }, { "name": "karei_33", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#3"}, - "east": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#3"}, - "west": {"uv": [0.5, 7.75, 0.75, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 7.75, 0.75, 9], "texture": "#3"}, - "down": {"uv": [0.5, 9, 0.75, 7.75], "texture": "#3"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 7.75 + ], + "texture": "#3" + } } }, { "name": "karei_34", - "from": [14.75, 0, 7.75], - "to": [15.25, 0.25, 9], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.25, 7.75, 14.75, 8], "texture": "#3"}, - "east": {"uv": [15, 7.75, 15.25, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 8.75, 15.25, 9], "texture": "#3"}, - "west": {"uv": [14.75, 7.75, 15, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 7.75, 15.25, 9], "texture": "#3"}, - "down": {"uv": [14.75, 9, 15.25, 7.75], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 7.75, + 14.75, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 7.75, + 15.25, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15.25, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15.25, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 9, + 15.25, + 7.75 + ], + "texture": "#3" + } } }, { "name": "karei_35", - "from": [15.25, 0, 8], - "to": [15.5, 0.25, 8.75], + "from": [ + 15.25, + 0, + 8 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.5, 8, 15.25, 8.25], "texture": "#3"}, - "east": {"uv": [15.25, 8, 15.5, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#3"}, - "west": {"uv": [15.25, 8, 15.5, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 8, 15.5, 8.75], "texture": "#3"}, - "down": {"uv": [15.25, 8.75, 15.5, 8], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 8, + 15.25, + 8.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 8 + ], + "texture": "#3" + } } }, { "name": "karei_36", - "from": [3, 0, 9], - "to": [3.25, 0.25, 9.25], + "from": [ + 3, + 0, + 9 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 9, 3, 9.25], "texture": "#3"}, - "east": {"uv": [3, 9, 3.25, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3, 9, 3.25, 9.25], "texture": "#3"}, - "west": {"uv": [3, 9, 3.25, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3, 9, 3.25, 9.25], "texture": "#3"}, - "down": {"uv": [3, 9.25, 3.25, 9], "texture": "#3"} + "north": { + "uv": [ + 3.25, + 9, + 3, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3, + 9.25, + 3.25, + 9 + ], + "texture": "#3" + } } }, { "name": "karei_37", - "from": [14.75, 0, 9], - "to": [15, 0.25, 9.25], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#3"}, - "east": {"uv": [14.75, 9, 15, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#3"}, - "west": {"uv": [14.75, 9, 15, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 9, 15, 9.25], "texture": "#3"}, - "down": {"uv": [14.75, 9.25, 15, 9], "texture": "#3"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 9 + ], + "texture": "#3" + } } }, { "name": "karei_38", - "from": [11.25, 0, 10.75], - "to": [11.5, 0.25, 11], + "from": [ + 11.25, + 0, + 10.75 + ], + "to": [ + 11.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.5, 10.75, 11.25, 11], "texture": "#3"}, - "east": {"uv": [11.25, 10.75, 11.5, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 10.75, 11.5, 11], "texture": "#3"}, - "west": {"uv": [11.25, 10.75, 11.5, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 10.75, 11.5, 11], "texture": "#3"}, - "down": {"uv": [11.25, 11, 11.5, 10.75], "texture": "#3"} + "north": { + "uv": [ + 11.5, + 10.75, + 11.25, + 11 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 11, + 11.5, + 10.75 + ], + "texture": "#3" + } } }, { "name": "karei_39", - "from": [10.75, 0, 11.25], - "to": [11, 0.25, 11.5], + "from": [ + 10.75, + 0, + 11.25 + ], + "to": [ + 11, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11, 11.25, 10.75, 11.5], "texture": "#3"}, - "east": {"uv": [10.75, 11.25, 11, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 11.25, 11, 11.5], "texture": "#3"}, - "west": {"uv": [10.75, 11.25, 11, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 11.25, 11, 11.5], "texture": "#3"}, - "down": {"uv": [10.75, 11.5, 11, 11.25], "texture": "#3"} + "north": { + "uv": [ + 11, + 11.25, + 10.75, + 11.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 11.5, + 11, + 11.25 + ], + "texture": "#3" + } } }, { "name": "karei_40", - "from": [6.5, 0, 11.5], - "to": [6.75, 0.25, 11.75], + "from": [ + 6.5, + 0, + 11.5 + ], + "to": [ + 6.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6.75, 11.5, 6.5, 11.75], "texture": "#3"}, - "east": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#3"}, - "west": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#3"}, - "down": {"uv": [6.5, 11.75, 6.75, 11.5], "texture": "#3"} + "north": { + "uv": [ + 6.75, + 11.5, + 6.5, + 11.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.5, + 11.75, + 6.75, + 11.5 + ], + "texture": "#3" + } } }, { "name": "karei_41", - "from": [7, 0, 11.75], - "to": [7.25, 0.25, 12], + "from": [ + 7, + 0, + 11.75 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 11.75, 7, 12], "texture": "#3"}, - "east": {"uv": [7, 11.75, 7.25, 12], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7, 11.75, 7.25, 12], "texture": "#3"}, - "west": {"uv": [7, 11.75, 7.25, 12], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7, 11.75, 7.25, 12], "texture": "#3"}, - "down": {"uv": [7, 12, 7.25, 11.75], "texture": "#3"} + "north": { + "uv": [ + 7.25, + 11.75, + 7, + 12 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7, + 12, + 7.25, + 11.75 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 1.5, 5.25], - "scale": [0.6, 0.6, 0.6] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 1.5, + 5.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 4.25, 9.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 4.25, + 9.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 10.25, 14.25], - "scale": [1.11, 1.11, 1.11] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 10.25, + 14.25 + ], + "scale": [ + 1.11, + 1.11, + 1.11 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "karei", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kingsa-mon.json b/pack/assets/minecraft/models/fish/kingsa-mon.json index e3822f11..a529c5bc 100644 --- a/pack/assets/minecraft/models/fish/kingsa-mon.json +++ b/pack/assets/minecraft/models/fish/kingsa-mon.json @@ -2,592 +2,3112 @@ "__name": "キングサーモン", "credit": "Made with Blockbench", "textures": { - "4": "fish/kingsalmon", - "particle": "fish/isidai" + "4": "item/fish/kingsalmon", + "particle": "item/fish/isidai" }, "elements": [ { "name": "kingsalmon_0", - "from": [7.5, 0, 5], - "to": [8.25, 0.25, 10.75], + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 8.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.25, 5, 7.5, 5.25], "texture": "#4"}, - "east": {"uv": [8, 5, 8.25, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.5, 10.5, 8.25, 10.75], "texture": "#4"}, - "west": {"uv": [7.5, 5, 7.75, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.5, 5, 8.25, 10.75], "texture": "#4"}, - "down": {"uv": [7.5, 10.75, 8.25, 5], "texture": "#4"} + "north": { + "uv": [ + 8.25, + 5, + 7.5, + 5.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8, + 5, + 8.25, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8.25, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.5, + 5, + 8.25, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.5, + 10.75, + 8.25, + 5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_1", - "from": [7, 0, 5.25], - "to": [7.5, 0.25, 10.5], + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 5.25, 7, 5.5], "texture": "#4"}, - "east": {"uv": [7.25, 5.25, 7.5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7, 10.25, 7.5, 10.5], "texture": "#4"}, - "west": {"uv": [7, 5.25, 7.25, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7, 5.25, 7.5, 10.5], "texture": "#4"}, - "down": {"uv": [7, 10.5, 7.5, 5.25], "texture": "#4"} + "north": { + "uv": [ + 7.5, + 5.25, + 7, + 5.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7, + 10.25, + 7.5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7, + 10.5, + 7.5, + 5.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_2", - "from": [8.25, 0, 5.25], - "to": [8.5, 0.25, 11.5], + "from": [ + 8.25, + 0, + 5.25 + ], + "to": [ + 8.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [8.5, 5.25, 8.25, 5.5], "texture": "#4"}, - "east": {"uv": [8.25, 5.25, 8.5, 11.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.25, 11.25, 8.5, 11.5], "texture": "#4"}, - "west": {"uv": [8.25, 5.25, 8.5, 11.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.25, 5.25, 8.5, 11.5], "texture": "#4"}, - "down": {"uv": [8.25, 11.5, 8.5, 5.25], "texture": "#4"} + "north": { + "uv": [ + 8.5, + 5.25, + 8.25, + 5.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8.25, + 5.25, + 8.5, + 11.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.25, + 5.25, + 8.5, + 11.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.25, + 5.25, + 8.5, + 11.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.25, + 11.5, + 8.5, + 5.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_3", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 10.5], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#4"}, - "east": {"uv": [6.75, 5.5, 7, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.75, 10.25, 7, 10.5], "texture": "#4"}, - "west": {"uv": [6.75, 5.5, 7, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.75, 5.5, 7, 10.5], "texture": "#4"}, - "down": {"uv": [6.75, 10.5, 7, 5.5], "texture": "#4"} + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.75, + 10.5, + 7, + 5.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_4", - "from": [8.5, 0, 5.5], - "to": [8.75, 0.25, 11.25], + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 5.5, 8.5, 5.75], "texture": "#4"}, - "east": {"uv": [8.5, 5.5, 8.75, 11.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#4"}, - "west": {"uv": [8.5, 5.5, 8.75, 11.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.5, 5.5, 8.75, 11.25], "texture": "#4"}, - "down": {"uv": [8.5, 11.25, 8.75, 5.5], "texture": "#4"} + "north": { + "uv": [ + 8.75, + 5.5, + 8.5, + 5.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8.5, + 5.5, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 11.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 8.75, + 11.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.5, + 11.25, + 8.75, + 5.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_5", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 10.5], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#4"}, - "east": {"uv": [6.5, 5.75, 6.75, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#4"}, - "west": {"uv": [6.5, 5.75, 6.75, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.5, 5.75, 6.75, 10.5], "texture": "#4"}, - "down": {"uv": [6.5, 10.5, 6.75, 5.75], "texture": "#4"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6.75, + 5.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_6", - "from": [8.75, 0, 5.75], - "to": [9, 0.25, 11], + "from": [ + 8.75, + 0, + 5.75 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 5.75, 8.75, 6], "texture": "#4"}, - "east": {"uv": [8.75, 5.75, 9, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.75, 10.75, 9, 11], "texture": "#4"}, - "west": {"uv": [8.75, 5.75, 9, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.75, 5.75, 9, 11], "texture": "#4"}, - "down": {"uv": [8.75, 11, 9, 5.75], "texture": "#4"} + "north": { + "uv": [ + 9, + 5.75, + 8.75, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8.75, + 5.75, + 9, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.75, + 5.75, + 9, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.75, + 5.75, + 9, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.75, + 11, + 9, + 5.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_7", - "from": [5, 0, 6], - "to": [6.5, 0.25, 10.5], + "from": [ + 5, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.5, 6, 5, 6.25], "texture": "#4"}, - "east": {"uv": [6.25, 6, 6.5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5, 10.25, 6.5, 10.5], "texture": "#4"}, - "west": {"uv": [5, 6, 5.25, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5, 6, 6.5, 10.5], "texture": "#4"}, - "down": {"uv": [5, 10.5, 6.5, 6], "texture": "#4"} + "north": { + "uv": [ + 6.5, + 6, + 5, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5, + 10.25, + 6.5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5, + 6, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5, + 6, + 6.5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5, + 10.5, + 6.5, + 6 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_8", - "from": [9, 0, 6], - "to": [9.25, 0.25, 6.25], + "from": [ + 9, + 0, + 6 + ], + "to": [ + 9.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [9.25, 6, 9, 6.25], "texture": "#4"}, - "east": {"uv": [9, 6, 9.25, 6.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9, 6, 9.25, 6.25], "texture": "#4"}, - "west": {"uv": [9, 6, 9.25, 6.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9, 6, 9.25, 6.25], "texture": "#4"}, - "down": {"uv": [9, 6.25, 9.25, 6], "texture": "#4"} + "north": { + "uv": [ + 9.25, + 6, + 9, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9, + 6.25, + 9.25, + 6 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_9", - "from": [3.75, 0, 6.25], - "to": [5, 0.25, 10.5], + "from": [ + 3.75, + 0, + 6.25 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 6.25, 3.75, 6.5], "texture": "#4"}, - "east": {"uv": [4.75, 6.25, 5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3.75, 10.25, 5, 10.5], "texture": "#4"}, - "west": {"uv": [3.75, 6.25, 4, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3.75, 6.25, 5, 10.5], "texture": "#4"}, - "down": {"uv": [3.75, 10.5, 5, 6.25], "texture": "#4"} + "north": { + "uv": [ + 5, + 6.25, + 3.75, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4.75, + 6.25, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3.75, + 6.25, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3.75, + 6.25, + 5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 5, + 6.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_10", - "from": [3, 0, 6.5], - "to": [3.75, 0.25, 10.25], + "from": [ + 3, + 0, + 6.5 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.75, 6.5, 3, 6.75], "texture": "#4"}, - "east": {"uv": [3.5, 6.5, 3.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3, 10, 3.75, 10.25], "texture": "#4"}, - "west": {"uv": [3, 6.5, 3.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3, 6.5, 3.75, 10.25], "texture": "#4"}, - "down": {"uv": [3, 10.25, 3.75, 6.5], "texture": "#4"} + "north": { + "uv": [ + 3.75, + 6.5, + 3, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3, + 10, + 3.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3, + 6.5, + 3.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.75, + 6.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_11", - "from": [9, 0, 6.5], - "to": [9.75, 0.25, 10.25], + "from": [ + 9, + 0, + 6.5 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 6.5, 9, 6.75], "texture": "#4"}, - "east": {"uv": [9.5, 6.5, 9.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9, 10, 9.75, 10.25], "texture": "#4"}, - "west": {"uv": [9, 6.5, 9.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9, 6.5, 9.75, 10.25], "texture": "#4"}, - "down": {"uv": [9, 10.25, 9.75, 6.5], "texture": "#4"} + "north": { + "uv": [ + 9.75, + 6.5, + 9, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.5, + 6.5, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9, + 10, + 9.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9, + 6.5, + 9.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9, + 10.25, + 9.75, + 6.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_12", - "from": [11.25, 0, 6.5], - "to": [11.75, 0.25, 9.75], + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 11.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.75, 6.5, 11.25, 6.75], "texture": "#4"}, - "east": {"uv": [11.5, 6.5, 11.75, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.25, 9.5, 11.75, 9.75], "texture": "#4"}, - "west": {"uv": [11.25, 6.5, 11.5, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.25, 6.5, 11.75, 9.75], "texture": "#4"}, - "down": {"uv": [11.25, 9.75, 11.75, 6.5], "texture": "#4"} + "north": { + "uv": [ + 11.75, + 6.5, + 11.25, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.25, + 9.5, + 11.75, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 11.75, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.25, + 9.75, + 11.75, + 6.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_13", - "from": [14.75, 0, 6.5], - "to": [15.25, 0.25, 9.75], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.25, 6.5, 14.75, 6.75], "texture": "#4"}, - "east": {"uv": [15, 6.5, 15.25, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.75, 9.5, 15.25, 9.75], "texture": "#4"}, - "west": {"uv": [14.75, 6.5, 15, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.75, 6.5, 15.25, 9.75], "texture": "#4"}, - "down": {"uv": [14.75, 9.75, 15.25, 6.5], "texture": "#4"} + "north": { + "uv": [ + 15.25, + 6.5, + 14.75, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15.25, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15.25, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15.25, + 6.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_14", - "from": [2, 0, 6.75], - "to": [3, 0.25, 10], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 6.75, 2, 7], "texture": "#4"}, - "east": {"uv": [2.75, 6.75, 3, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 9.75, 3, 10], "texture": "#4"}, - "west": {"uv": [2, 6.75, 2.25, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2, 6.75, 3, 10], "texture": "#4"}, - "down": {"uv": [2, 10, 3, 6.75], "texture": "#4"} + "north": { + "uv": [ + 3, + 6.75, + 2, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.75, + 6.75, + 3, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2, + 9.75, + 3, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2, + 6.75, + 3, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2, + 10, + 3, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_15", - "from": [9.75, 0, 6.75], - "to": [11.25, 0.25, 10.25], + "from": [ + 9.75, + 0, + 6.75 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 6.75, 9.75, 7], "texture": "#4"}, - "east": {"uv": [11, 6.75, 11.25, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9.75, 10, 11.25, 10.25], "texture": "#4"}, - "west": {"uv": [9.75, 6.75, 10, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9.75, 6.75, 11.25, 10.25], "texture": "#4"}, - "down": {"uv": [9.75, 10.25, 11.25, 6.75], "texture": "#4"} + "north": { + "uv": [ + 11.25, + 6.75, + 9.75, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11, + 6.75, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9.75, + 10, + 11.25, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9.75, + 6.75, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9.75, + 6.75, + 11.25, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 11.25, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_16", - "from": [11.75, 0, 6.75], - "to": [12, 0.25, 9.25], + "from": [ + 11.75, + 0, + 6.75 + ], + "to": [ + 12, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12, 6.75, 11.75, 7], "texture": "#4"}, - "east": {"uv": [11.75, 6.75, 12, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.75, 9, 12, 9.25], "texture": "#4"}, - "west": {"uv": [11.75, 6.75, 12, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.75, 6.75, 12, 9.25], "texture": "#4"}, - "down": {"uv": [11.75, 9.25, 12, 6.75], "texture": "#4"} + "north": { + "uv": [ + 12, + 6.75, + 11.75, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.75, + 6.75, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.75, + 6.75, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.75, + 6.75, + 12, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_17", - "from": [14.25, 0, 6.75], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.25, 7], "texture": "#4"}, - "east": {"uv": [14.5, 6.75, 14.75, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.25, 9.25, 14.75, 9.5], "texture": "#4"}, - "west": {"uv": [14.25, 6.75, 14.5, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.25, 6.75, 14.75, 9.5], "texture": "#4"}, - "down": {"uv": [14.25, 9.5, 14.75, 6.75], "texture": "#4"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.25, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.75, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.75, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.75, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_18", - "from": [15.25, 0, 6.75], - "to": [15.5, 0.25, 7.5], + "from": [ + 15.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 6.75, 15.25, 7], "texture": "#4"}, - "east": {"uv": [15.25, 6.75, 15.5, 7.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#4"}, - "west": {"uv": [15.25, 6.75, 15.5, 7.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.25, 6.75, 15.5, 7.5], "texture": "#4"}, - "down": {"uv": [15.25, 7.5, 15.5, 6.75], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 6.75, + 15.25, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.25, + 7.5, + 15.5, + 6.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_19", - "from": [1.25, 0, 7], - "to": [2, 0.25, 8.25], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2, 7, 1.25, 7.25], "texture": "#4"}, - "east": {"uv": [1.75, 7, 2, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.25, 8, 2, 8.25], "texture": "#4"}, - "west": {"uv": [1.25, 7, 1.5, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.25, 7, 2, 8.25], "texture": "#4"}, - "down": {"uv": [1.25, 8.25, 2, 7], "texture": "#4"} + "north": { + "uv": [ + 2, + 7, + 1.25, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.25, + 8, + 2, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.25, + 7, + 2, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.25, + 8.25, + 2, + 7 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_20", - "from": [13.75, 0, 7], - "to": [14.25, 0.25, 9.25], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.25, 7, 13.75, 7.25], "texture": "#4"}, - "east": {"uv": [14, 7, 14.25, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13.75, 9, 14.25, 9.25], "texture": "#4"}, - "west": {"uv": [13.75, 7, 14, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [13.75, 7, 14.25, 9.25], "texture": "#4"}, - "down": {"uv": [13.75, 9.25, 14.25, 7], "texture": "#4"} + "north": { + "uv": [ + 14.25, + 7, + 13.75, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 13.75, + 9, + 14.25, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 13.75, + 7, + 14.25, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14.25, + 7 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_21", - "from": [0.5, 0, 7.25], - "to": [1.25, 0.25, 8], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.25, 7.25, 0.5, 7.5], "texture": "#4"}, - "east": {"uv": [1, 7.25, 1.25, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.5, 7.75, 1.25, 8], "texture": "#4"}, - "west": {"uv": [0.5, 7.25, 0.75, 8], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.5, 7.25, 1.25, 8], "texture": "#4"}, - "down": {"uv": [0.5, 8, 1.25, 7.25], "texture": "#4"} + "north": { + "uv": [ + 1.25, + 7.25, + 0.5, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 1.25, + 8 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 1.25, + 8 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.5, + 8, + 1.25, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_22", - "from": [12, 0, 7.25], - "to": [13.75, 0.25, 9.25], + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 7.25, 12, 7.5], "texture": "#4"}, - "east": {"uv": [13.5, 7.25, 13.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12, 9, 13.75, 9.25], "texture": "#4"}, - "west": {"uv": [12, 7.25, 12.25, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12, 7.25, 13.75, 9.25], "texture": "#4"}, - "down": {"uv": [12, 9.25, 13.75, 7.25], "texture": "#4"} + "north": { + "uv": [ + 13.75, + 7.25, + 12, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12, + 9, + 13.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12, + 7.25, + 13.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12, + 9.25, + 13.75, + 7.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_23", - "from": [0.25, 0, 7.5], - "to": [0.5, 0.25, 7.75], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 0.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.5, 7.5, 0.25, 7.75], "texture": "#4"}, - "east": {"uv": [0.25, 7.5, 0.5, 7.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.25, 7.5, 0.5, 7.75], "texture": "#4"}, - "west": {"uv": [0.25, 7.5, 0.5, 7.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.25, 7.5, 0.5, 7.75], "texture": "#4"}, - "down": {"uv": [0.25, 7.75, 0.5, 7.5], "texture": "#4"} + "north": { + "uv": [ + 0.5, + 7.5, + 0.25, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.25, + 7.75, + 0.5, + 7.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_24", - "from": [1, 0, 8], - "to": [1.25, 0.25, 8.25], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#4"}, - "east": {"uv": [1, 8, 1.25, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#4"}, - "west": {"uv": [1, 8, 1.25, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1, 8, 1.25, 8.25], "texture": "#4"}, - "down": {"uv": [1, 8.25, 1.25, 8], "texture": "#4"} + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 8 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_25", - "from": [0.25, 0, 8.25], - "to": [0.75, 0.25, 9], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.25, 0.25, 8.5], "texture": "#4"}, - "east": {"uv": [0.5, 8.25, 0.75, 9], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.25, 8.75, 0.75, 9], "texture": "#4"}, - "west": {"uv": [0.25, 8.25, 0.5, 9], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.25, 8.25, 0.75, 9], "texture": "#4"}, - "down": {"uv": [0.25, 9, 0.75, 8.25], "texture": "#4"} + "north": { + "uv": [ + 0.75, + 8.25, + 0.25, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.75, + 9 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 9 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.75, + 9 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.25, + 9, + 0.75, + 8.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_26", - "from": [1.5, 0, 8.25], - "to": [2, 0.25, 9.75], + "from": [ + 1.5, + 0, + 8.25 + ], + "to": [ + 2, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2, 8.25, 1.5, 8.5], "texture": "#4"}, - "east": {"uv": [1.75, 8.25, 2, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.5, 9.5, 2, 9.75], "texture": "#4"}, - "west": {"uv": [1.5, 8.25, 1.75, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.5, 8.25, 2, 9.75], "texture": "#4"}, - "down": {"uv": [1.5, 9.75, 2, 8.25], "texture": "#4"} + "north": { + "uv": [ + 2, + 8.25, + 1.5, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.75, + 8.25, + 2, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 2, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.5, + 8.25, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.5, + 8.25, + 2, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 2, + 8.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_27", - "from": [0, 0, 8.5], - "to": [0.25, 0.25, 8.75], + "from": [ + 0, + 0, + 8.5 + ], + "to": [ + 0.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.25, 8.5, 0, 8.75], "texture": "#4"}, - "east": {"uv": [0, 8.5, 0.25, 8.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 8.5, 0.25, 8.75], "texture": "#4"}, - "west": {"uv": [0, 8.5, 0.25, 8.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0, 8.5, 0.25, 8.75], "texture": "#4"}, - "down": {"uv": [0, 8.75, 0.25, 8.5], "texture": "#4"} + "north": { + "uv": [ + 0.25, + 8.5, + 0, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 8.5, + 0.25, + 8.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 8.5, + 0.25, + 8.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 8.5, + 0.25, + 8.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 8.5, + 0.25, + 8.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 8.75, + 0.25, + 8.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_28", - "from": [0.75, 0, 8.5], - "to": [1.5, 0.25, 9.5], + "from": [ + 0.75, + 0, + 8.5 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 8.5, 0.75, 8.75], "texture": "#4"}, - "east": {"uv": [1.25, 8.5, 1.5, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.75, 9.25, 1.5, 9.5], "texture": "#4"}, - "west": {"uv": [0.75, 8.5, 1, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.75, 8.5, 1.5, 9.5], "texture": "#4"}, - "down": {"uv": [0.75, 9.5, 1.5, 8.5], "texture": "#4"} + "north": { + "uv": [ + 1.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.25, + 8.5, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.75, + 9.25, + 1.5, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.75, + 8.5, + 1, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.75, + 8.5, + 1.5, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.75, + 9.5, + 1.5, + 8.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_29", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 9.5], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#4"}, - "east": {"uv": [15.25, 8.75, 15.5, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.25, 9.25, 15.5, 9.5], "texture": "#4"}, - "west": {"uv": [15.25, 8.75, 15.5, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.25, 8.75, 15.5, 9.5], "texture": "#4"}, - "down": {"uv": [15.25, 9.5, 15.5, 8.75], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.25, + 9.5, + 15.5, + 8.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_30", - "from": [0.5, 0, 9], - "to": [0.75, 0.25, 9.25], + "from": [ + 0.5, + 0, + 9 + ], + "to": [ + 0.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.75, 9, 0.5, 9.25], "texture": "#4"}, - "east": {"uv": [0.5, 9, 0.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.5, 9, 0.75, 9.25], "texture": "#4"}, - "west": {"uv": [0.5, 9, 0.75, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.5, 9, 0.75, 9.25], "texture": "#4"}, - "down": {"uv": [0.5, 9.25, 0.75, 9], "texture": "#4"} + "north": { + "uv": [ + 0.75, + 9, + 0.5, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.5, + 9, + 0.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.5, + 9, + 0.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.5, + 9, + 0.75, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.5, + 9, + 0.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_31", - "from": [14, 0, 9.25], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 9.25 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 9.25, 14, 9.5], "texture": "#4"}, - "east": {"uv": [14, 9.25, 14.25, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#4"}, - "west": {"uv": [14, 9.25, 14.25, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#4"}, - "down": {"uv": [14, 9.5, 14.25, 9.25], "texture": "#4"} + "north": { + "uv": [ + 14.25, + 9.25, + 14, + 9.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 9.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_32", - "from": [1.25, 0, 9.5], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 9.5 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 9.5, 1.25, 9.75], "texture": "#4"}, - "east": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#4"}, - "west": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#4"}, - "down": {"uv": [1.25, 9.75, 1.5, 9.5], "texture": "#4"} + "north": { + "uv": [ + 1.5, + 9.5, + 1.25, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 9.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_33", - "from": [14.5, 0, 9.5], - "to": [14.75, 0.25, 9.75], + "from": [ + 14.5, + 0, + 9.5 + ], + "to": [ + 14.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.75, 9.5, 14.5, 9.75], "texture": "#4"}, - "east": {"uv": [14.5, 9.5, 14.75, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.5, 9.5, 14.75, 9.75], "texture": "#4"}, - "west": {"uv": [14.5, 9.5, 14.75, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.5, 9.5, 14.75, 9.75], "texture": "#4"}, - "down": {"uv": [14.5, 9.75, 14.75, 9.5], "texture": "#4"} + "north": { + "uv": [ + 14.75, + 9.5, + 14.5, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.5, + 9.75, + 14.75, + 9.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_34", - "from": [11.25, 0, 9.75], - "to": [11.5, 0.25, 10], + "from": [ + 11.25, + 0, + 9.75 + ], + "to": [ + 11.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.5, 9.75, 11.25, 10], "texture": "#4"}, - "east": {"uv": [11.25, 9.75, 11.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.25, 9.75, 11.5, 10], "texture": "#4"}, - "west": {"uv": [11.25, 9.75, 11.5, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.25, 9.75, 11.5, 10], "texture": "#4"}, - "down": {"uv": [11.25, 10, 11.5, 9.75], "texture": "#4"} + "north": { + "uv": [ + 11.5, + 9.75, + 11.25, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.25, + 9.75, + 11.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.25, + 10, + 11.5, + 9.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_35", - "from": [2.75, 0, 10], - "to": [3, 0.25, 10.25], + "from": [ + 2.75, + 0, + 10 + ], + "to": [ + 3, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3, 10, 2.75, 10.25], "texture": "#4"}, - "east": {"uv": [2.75, 10, 3, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2.75, 10, 3, 10.25], "texture": "#4"}, - "west": {"uv": [2.75, 10, 3, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2.75, 10, 3, 10.25], "texture": "#4"}, - "down": {"uv": [2.75, 10.25, 3, 10], "texture": "#4"} + "north": { + "uv": [ + 3, + 10, + 2.75, + 10.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 3, + 10 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_36", - "from": [10, 0, 10.25], - "to": [11.25, 0.25, 10.5], + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 10.25, 10, 10.5], "texture": "#4"}, - "east": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10, 10.25, 11.25, 10.5], "texture": "#4"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10, 10.25, 11.25, 10.5], "texture": "#4"}, - "down": {"uv": [10, 10.5, 11.25, 10.25], "texture": "#4"} + "north": { + "uv": [ + 11.25, + 10.25, + 10, + 10.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10, + 10.25, + 11.25, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10, + 10.25, + 11.25, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10, + 10.5, + 11.25, + 10.25 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_37", - "from": [4.75, 0, 10.5], - "to": [5, 0.25, 10.75], + "from": [ + 4.75, + 0, + 10.5 + ], + "to": [ + 5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5, 10.5, 4.75, 10.75], "texture": "#4"}, - "east": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#4"}, - "west": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#4"}, - "down": {"uv": [4.75, 10.75, 5, 10.5], "texture": "#4"} + "north": { + "uv": [ + 5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5, + 10.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_38", - "from": [10.25, 0, 10.5], - "to": [11, 0.25, 10.75], + "from": [ + 10.25, + 0, + 10.5 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 10.5, 10.25, 10.75], "texture": "#4"}, - "east": {"uv": [10.75, 10.5, 11, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10.25, 10.5, 11, 10.75], "texture": "#4"}, - "west": {"uv": [10.25, 10.5, 10.5, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10.25, 10.5, 11, 10.75], "texture": "#4"}, - "down": {"uv": [10.25, 10.75, 11, 10.5], "texture": "#4"} + "north": { + "uv": [ + 11, + 10.5, + 10.25, + 10.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10.25, + 10.5, + 11, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10.25, + 10.5, + 10.5, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10.25, + 10.5, + 11, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10.25, + 10.75, + 11, + 10.5 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_39", - "from": [7.75, 0, 10.75], - "to": [8.25, 0.25, 11], + "from": [ + 7.75, + 0, + 10.75 + ], + "to": [ + 8.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.25, 10.75, 7.75, 11], "texture": "#4"}, - "east": {"uv": [8, 10.75, 8.25, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.75, 10.75, 8.25, 11], "texture": "#4"}, - "west": {"uv": [7.75, 10.75, 8, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.75, 10.75, 8.25, 11], "texture": "#4"}, - "down": {"uv": [7.75, 11, 8.25, 10.75], "texture": "#4"} + "north": { + "uv": [ + 8.25, + 10.75, + 7.75, + 11 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.75, + 10.75, + 8.25, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.75, + 10.75, + 8.25, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.75, + 11, + 8.25, + 10.75 + ], + "texture": "#4" + } } }, { "name": "kingsalmon_40", - "from": [8, 0, 11], - "to": [8.25, 0.25, 11.25], + "from": [ + 8, + 0, + 11 + ], + "to": [ + 8.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.25, 11, 8, 11.25], "texture": "#4"}, - "east": {"uv": [8, 11, 8.25, 11.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8, 11, 8.25, 11.25], "texture": "#4"}, - "west": {"uv": [8, 11, 8.25, 11.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8, 11, 8.25, 11.25], "texture": "#4"}, - "down": {"uv": [8, 11.25, 8.25, 11], "texture": "#4"} + "north": { + "uv": [ + 8.25, + 11, + 8, + 11.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8, + 11.25, + 8.25, + 11 + ], + "texture": "#4" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 5, 12.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 5, + 12.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 5, 12.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 5, + 12.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 5, 12.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 5, + 12.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 5, 12.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 5, + 12.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 8, 12.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 8, + 12.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 11.25, 17.25], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 11.25, + 17.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "kingsalmon", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kingyo.json b/pack/assets/minecraft/models/fish/kingyo.json index 23cde25d..5fb0290f 100644 --- a/pack/assets/minecraft/models/fish/kingyo.json +++ b/pack/assets/minecraft/models/fish/kingyo.json @@ -2,888 +2,4757 @@ "__name": "キンギョ", "credit": "Made with Blockbench", "textures": { - "1": "fish/kingyo" + "1": "item/fish/kingyo" }, "elements": [ { "name": "kingyo_0", - "from": [5.5, 0, 2.25], - "to": [6.5, 0.25, 10.75], + "from": [ + 5.5, + 0, + 2.25 + ], + "to": [ + 6.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6.5, 2.25, 5.5, 2.5], "texture": "#1"}, - "east": {"uv": [6.25, 2.25, 6.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 10.5, 6.5, 10.75], "texture": "#1"}, - "west": {"uv": [5.5, 2.25, 5.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 2.25, 6.5, 10.75], "texture": "#1"}, - "down": {"uv": [5.5, 10.75, 6.5, 2.25], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 2.25, + 5.5, + 2.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 2.25, + 6.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 6.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 2.25, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 2.25, + 6.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 6.5, + 2.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_1", - "from": [5.25, 0, 2.5], - "to": [5.5, 0.25, 10.75], + "from": [ + 5.25, + 0, + 2.5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.5, 2.5, 5.25, 2.75], "texture": "#1"}, - "east": {"uv": [5.25, 2.5, 5.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#1"}, - "west": {"uv": [5.25, 2.5, 5.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 2.5, 5.5, 10.75], "texture": "#1"}, - "down": {"uv": [5.25, 10.75, 5.5, 2.5], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 2.5, + 5.25, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 2.5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 2.5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 2.5, + 5.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 5.5, + 2.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_2", - "from": [6.5, 0, 2.5], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.5, + 0, + 2.5 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 2.5, 6.5, 2.75], "texture": "#1"}, - "east": {"uv": [6.5, 2.5, 6.75, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#1"}, - "west": {"uv": [6.5, 2.5, 6.75, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 2.5, 6.75, 11.5], "texture": "#1"}, - "down": {"uv": [6.5, 11.5, 6.75, 2.5], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 2.5, + 6.5, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 2.5, + 6.75, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 11.5, + 6.75, + 2.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_3", - "from": [5, 0, 2.75], - "to": [5.25, 0.25, 10.75], + "from": [ + 5, + 0, + 2.75 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 2.75, 5, 3], "texture": "#1"}, - "east": {"uv": [5, 2.75, 5.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#1"}, - "west": {"uv": [5, 2.75, 5.25, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 2.75, 5.25, 10.75], "texture": "#1"}, - "down": {"uv": [5, 10.75, 5.25, 2.75], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 2.75, + 5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2.75, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2.75, + 5.25, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 2.75, + 5.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 10.75, + 5.25, + 2.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_4", - "from": [6.75, 0, 2.75], - "to": [7, 0.25, 11.75], + "from": [ + 6.75, + 0, + 2.75 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 2.75, 6.75, 3], "texture": "#1"}, - "east": {"uv": [6.75, 2.75, 7, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 11.5, 7, 11.75], "texture": "#1"}, - "west": {"uv": [6.75, 2.75, 7, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 2.75, 7, 11.75], "texture": "#1"}, - "down": {"uv": [6.75, 11.75, 7, 2.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 2.75, + 6.75, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 11.5, + 7, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 11.75, + 7, + 2.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_5", - "from": [4.75, 0, 3], - "to": [5, 0.25, 10.75], + "from": [ + 4.75, + 0, + 3 + ], + "to": [ + 5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5, 3, 4.75, 3.25], "texture": "#1"}, - "east": {"uv": [4.75, 3, 5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#1"}, - "west": {"uv": [4.75, 3, 5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 3, 5, 10.75], "texture": "#1"}, - "down": {"uv": [4.75, 10.75, 5, 3], "texture": "#1"} + "north": { + "uv": [ + 5, + 3, + 4.75, + 3.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 3, + 5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 3, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 3, + 5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5, + 3 + ], + "texture": "#1" + } } }, { "name": "kingyo_6", - "from": [7, 0, 3], - "to": [7.25, 0.25, 12], + "from": [ + 7, + 0, + 3 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 3, 7, 3.25], "texture": "#1"}, - "east": {"uv": [7, 3, 7.25, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 11.75, 7.25, 12], "texture": "#1"}, - "west": {"uv": [7, 3, 7.25, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 3, 7.25, 12], "texture": "#1"}, - "down": {"uv": [7, 12, 7.25, 3], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 3, + 7, + 3.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 3, + 7.25, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 12, + 7.25, + 3 + ], + "texture": "#1" + } } }, { "name": "kingyo_7", - "from": [7.25, 0, 3.25], - "to": [7.75, 0.25, 12], + "from": [ + 7.25, + 0, + 3.25 + ], + "to": [ + 7.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.75, 3.25, 7.25, 3.5], "texture": "#1"}, - "east": {"uv": [7.5, 3.25, 7.75, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 11.75, 7.75, 12], "texture": "#1"}, - "west": {"uv": [7.25, 3.25, 7.5, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 3.25, 7.75, 12], "texture": "#1"}, - "down": {"uv": [7.25, 12, 7.75, 3.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 3.25, + 7.25, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 3.25, + 7.75, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 11.75, + 7.75, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 3.25, + 7.5, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 3.25, + 7.75, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 12, + 7.75, + 3.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_8", - "from": [7.75, 0, 3.5], - "to": [8, 0.25, 9], + "from": [ + 7.75, + 0, + 3.5 + ], + "to": [ + 8, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8, 3.5, 7.75, 3.75], "texture": "#1"}, - "east": {"uv": [7.75, 3.5, 8, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#1"}, - "west": {"uv": [7.75, 3.5, 8, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 3.5, 8, 9], "texture": "#1"}, - "down": {"uv": [7.75, 9, 8, 3.5], "texture": "#1"} + "north": { + "uv": [ + 8, + 3.5, + 7.75, + 3.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 3.5, + 8, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 3.5, + 8, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 3.5, + 8, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 3.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_9", - "from": [4.5, 0, 3.75], - "to": [4.75, 0.25, 10.75], + "from": [ + 4.5, + 0, + 3.75 + ], + "to": [ + 4.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4.75, 3.75, 4.5, 4], "texture": "#1"}, - "east": {"uv": [4.5, 3.75, 4.75, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 10.5, 4.75, 10.75], "texture": "#1"}, - "west": {"uv": [4.5, 3.75, 4.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 3.75, 4.75, 10.75], "texture": "#1"}, - "down": {"uv": [4.5, 10.75, 4.75, 3.75], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 3.75, + 4.5, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 3.75, + 4.75, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 3.75, + 4.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 3.75, + 4.75, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 10.75, + 4.75, + 3.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_10", - "from": [8, 0, 3.75], - "to": [8.25, 0.25, 9.25], + "from": [ + 8, + 0, + 3.75 + ], + "to": [ + 8.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.25, 3.75, 8, 4], "texture": "#1"}, - "east": {"uv": [8, 3.75, 8.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9, 8.25, 9.25], "texture": "#1"}, - "west": {"uv": [8, 3.75, 8.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 3.75, 8.25, 9.25], "texture": "#1"}, - "down": {"uv": [8, 9.25, 8.25, 3.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 3.75, + 8, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 3.75, + 8.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 3.75, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 3.75, + 8.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9.25, + 8.25, + 3.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_11", - "from": [13.75, 0, 3.75], - "to": [15.25, 0.25, 5.5], + "from": [ + 13.75, + 0, + 3.75 + ], + "to": [ + 15.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [15.25, 3.75, 13.75, 4], "texture": "#1"}, - "east": {"uv": [15, 3.75, 15.25, 5.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 5.25, 15.25, 5.5], "texture": "#1"}, - "west": {"uv": [13.75, 3.75, 14, 5.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 3.75, 15.25, 5.5], "texture": "#1"}, - "down": {"uv": [13.75, 5.5, 15.25, 3.75], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 3.75, + 13.75, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 3.75, + 15.25, + 5.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 5.25, + 15.25, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 3.75, + 14, + 5.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 3.75, + 15.25, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 5.5, + 15.25, + 3.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_12", - "from": [8.25, 0, 4], - "to": [8.5, 0.25, 9.75], + "from": [ + 8.25, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.5, 4, 8.25, 4.25], "texture": "#1"}, - "east": {"uv": [8.25, 4, 8.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 9.75], "texture": "#1"}, - "west": {"uv": [8.25, 4, 8.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 4, 8.5, 9.75], "texture": "#1"}, - "down": {"uv": [8.25, 9.75, 8.5, 4], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 4, + 8.25, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 4, + 8.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 4, + 8.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9.75, + 8.5, + 4 + ], + "texture": "#1" + } } }, { "name": "kingyo_13", - "from": [12.75, 0, 4], - "to": [13.75, 0.25, 7.25], + "from": [ + 12.75, + 0, + 4 + ], + "to": [ + 13.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [13.75, 4, 12.75, 4.25], "texture": "#1"}, - "east": {"uv": [13.5, 4, 13.75, 7.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 7, 13.75, 7.25], "texture": "#1"}, - "west": {"uv": [12.75, 4, 13, 7.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 4, 13.75, 7.25], "texture": "#1"}, - "down": {"uv": [12.75, 7.25, 13.75, 4], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 4, + 12.75, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 4, + 13.75, + 7.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 7, + 13.75, + 7.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 4, + 13, + 7.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 4, + 13.75, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 7.25, + 13.75, + 4 + ], + "texture": "#1" + } } }, { "name": "kingyo_14", - "from": [15.25, 0, 4], - "to": [15.5, 0.25, 5], + "from": [ + 15.25, + 0, + 4 + ], + "to": [ + 15.5, + 0.25, + 5 + ], "faces": { - "north": {"uv": [15.5, 4, 15.25, 4.25], "texture": "#1"}, - "east": {"uv": [15.25, 4, 15.5, 5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 4.75, 15.5, 5], "texture": "#1"}, - "west": {"uv": [15.25, 4, 15.5, 5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 4, 15.5, 5], "texture": "#1"}, - "down": {"uv": [15.25, 5, 15.5, 4], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 4, + 15.25, + 4.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 4, + 15.5, + 5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 4.75, + 15.5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 4, + 15.5, + 5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 4, + 15.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 5, + 15.5, + 4 + ], + "texture": "#1" + } } }, { "name": "kingyo_15", - "from": [11.75, 0, 4.25], - "to": [12.75, 0.25, 12.25], + "from": [ + 11.75, + 0, + 4.25 + ], + "to": [ + 12.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12.75, 4.25, 11.75, 4.5], "texture": "#1"}, - "east": {"uv": [12.5, 4.25, 12.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 12, 12.75, 12.25], "texture": "#1"}, - "west": {"uv": [11.75, 4.25, 12, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 4.25, 12.75, 12.25], "texture": "#1"}, - "down": {"uv": [11.75, 12.25, 12.75, 4.25], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 4.25, + 11.75, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 4.25, + 12.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 12, + 12.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 4.25, + 12, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 4.25, + 12.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 12.25, + 12.75, + 4.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_16", - "from": [8.5, 0, 4.5], - "to": [8.75, 0.25, 10], + "from": [ + 8.5, + 0, + 4.5 + ], + "to": [ + 8.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.75, 4.5, 8.5, 4.75], "texture": "#1"}, - "east": {"uv": [8.5, 4.5, 8.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 9.75, 8.75, 10], "texture": "#1"}, - "west": {"uv": [8.5, 4.5, 8.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 4.5, 8.75, 10], "texture": "#1"}, - "down": {"uv": [8.5, 10, 8.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 4.5, + 8.5, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.5, + 8.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 4.5, + 8.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 10, + 8.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_17", - "from": [11.5, 0, 4.5], - "to": [11.75, 0.25, 12.25], + "from": [ + 11.5, + 0, + 4.5 + ], + "to": [ + 11.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.75, 4.5, 11.5, 4.75], "texture": "#1"}, - "east": {"uv": [11.5, 4.5, 11.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 12, 11.75, 12.25], "texture": "#1"}, - "west": {"uv": [11.5, 4.5, 11.75, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 4.5, 11.75, 12.25], "texture": "#1"}, - "down": {"uv": [11.5, 12.25, 11.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 4.5, + 11.5, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 4.5, + 11.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 12, + 11.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 4.5, + 11.75, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 11.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 12.25, + 11.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_18", - "from": [3.75, 0, 4.75], - "to": [4.5, 0.25, 10.5], + "from": [ + 3.75, + 0, + 4.75 + ], + "to": [ + 4.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.5, 4.75, 3.75, 5], "texture": "#1"}, - "east": {"uv": [4.25, 4.75, 4.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 10.25, 4.5, 10.5], "texture": "#1"}, - "west": {"uv": [3.75, 4.75, 4, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 4.75, 4.5, 10.5], "texture": "#1"}, - "down": {"uv": [3.75, 10.5, 4.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 4.75, + 3.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 4.75, + 4.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 4.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 4.75, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 4.75, + 4.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 4.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_19", - "from": [10.75, 0, 4.75], - "to": [11.5, 0.25, 11.75], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [11.5, 4.75, 10.75, 5], "texture": "#1"}, - "east": {"uv": [11.25, 4.75, 11.5, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 11.5, 11.5, 11.75], "texture": "#1"}, - "west": {"uv": [10.75, 4.75, 11, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 4.75, 11.5, 11.75], "texture": "#1"}, - "down": {"uv": [10.75, 11.75, 11.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 4.75, + 10.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 4.75, + 11.5, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 11.5, + 11.5, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11.5, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 11.75, + 11.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_20", - "from": [3.5, 0, 5], - "to": [3.75, 0.25, 10.25], + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.75, 5, 3.5, 5.25], "texture": "#1"}, - "east": {"uv": [3.5, 5, 3.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#1"}, - "west": {"uv": [3.5, 5, 3.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 5, 3.75, 10.25], "texture": "#1"}, - "down": {"uv": [3.5, 10.25, 3.75, 5], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 5, + 3.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 5, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 5, + 3.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 3.75, + 5 + ], + "texture": "#1" + } } }, { "name": "kingyo_21", - "from": [8.75, 0, 5], - "to": [9, 0.25, 10.25], + "from": [ + 8.75, + 0, + 5 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 5, 8.75, 5.25], "texture": "#1"}, - "east": {"uv": [8.75, 5, 9, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#1"}, - "west": {"uv": [8.75, 5, 9, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 5, 9, 10.25], "texture": "#1"}, - "down": {"uv": [8.75, 10.25, 9, 5], "texture": "#1"} + "north": { + "uv": [ + 9, + 5, + 8.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 5, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 5, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 5, + 9, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 5 + ], + "texture": "#1" + } } }, { "name": "kingyo_22", - "from": [10.25, 0, 5], - "to": [10.75, 0.25, 11.5], + "from": [ + 10.25, + 0, + 5 + ], + "to": [ + 10.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.75, 5, 10.25, 5.25], "texture": "#1"}, - "east": {"uv": [10.5, 5, 10.75, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 11.25, 10.75, 11.5], "texture": "#1"}, - "west": {"uv": [10.25, 5, 10.5, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 5, 10.75, 11.5], "texture": "#1"}, - "down": {"uv": [10.25, 11.5, 10.75, 5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 5, + 10.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.75, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 11.25, + 10.75, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 5, + 10.5, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 5, + 10.75, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 11.5, + 10.75, + 5 + ], + "texture": "#1" + } } }, { "name": "kingyo_23", - "from": [3.25, 0, 5.25], - "to": [3.5, 0.25, 10.25], + "from": [ + 3.25, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.5, 5.25, 3.25, 5.5], "texture": "#1"}, - "east": {"uv": [3.25, 5.25, 3.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 10, 3.5, 10.25], "texture": "#1"}, - "west": {"uv": [3.25, 5.25, 3.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 5.25, 3.5, 10.25], "texture": "#1"}, - "down": {"uv": [3.25, 10.25, 3.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 5.25, + 3.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 10.25, + 3.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_24", - "from": [10, 0, 5.25], - "to": [10.25, 0.25, 11.25], + "from": [ + 10, + 0, + 5.25 + ], + "to": [ + 10.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10.25, 5.25, 10, 5.5], "texture": "#1"}, - "east": {"uv": [10, 5.25, 10.25, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 11, 10.25, 11.25], "texture": "#1"}, - "west": {"uv": [10, 5.25, 10.25, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 5.25, 10.25, 11.25], "texture": "#1"}, - "down": {"uv": [10, 11.25, 10.25, 5.25], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 5.25, + 10, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 11, + 10.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 5.25, + 10.25, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 5.25, + 10.25, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 11.25, + 10.25, + 5.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_25", - "from": [3, 0, 5.5], - "to": [3.25, 0.25, 10.25], + "from": [ + 3, + 0, + 5.5 + ], + "to": [ + 3.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.25, 5.5, 3, 5.75], "texture": "#1"}, - "east": {"uv": [3, 5.5, 3.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 10, 3.25, 10.25], "texture": "#1"}, - "west": {"uv": [3, 5.5, 3.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 5.5, 3.25, 10.25], "texture": "#1"}, - "down": {"uv": [3, 10.25, 3.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 5.5, + 3, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 5.5, + 3.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 5.5, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 5.5, + 3.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_26", - "from": [9.75, 0, 5.5], - "to": [10, 0.25, 11.25], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10, 5.5, 9.75, 5.75], "texture": "#1"}, - "east": {"uv": [9.75, 5.5, 10, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 11, 10, 11.25], "texture": "#1"}, - "west": {"uv": [9.75, 5.5, 10, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 5.5, 10, 11.25], "texture": "#1"}, - "down": {"uv": [9.75, 11.25, 10, 5.5], "texture": "#1"} + "north": { + "uv": [ + 10, + 5.5, + 9.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 5.5, + 10, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 11.25, + 10, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_27", - "from": [13.75, 0, 5.5], - "to": [14.75, 0.25, 6.25], + "from": [ + 13.75, + 0, + 5.5 + ], + "to": [ + 14.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [14.75, 5.5, 13.75, 5.75], "texture": "#1"}, - "east": {"uv": [14.5, 5.5, 14.75, 6.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 6, 14.75, 6.25], "texture": "#1"}, - "west": {"uv": [13.75, 5.5, 14, 6.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 5.5, 14.75, 6.25], "texture": "#1"}, - "down": {"uv": [13.75, 6.25, 14.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 5.5, + 13.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 5.5, + 14.75, + 6.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 6, + 14.75, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 5.5, + 14, + 6.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 5.5, + 14.75, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 6.25, + 14.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_28", - "from": [14.75, 0, 5.5], - "to": [15, 0.25, 5.75], + "from": [ + 14.75, + 0, + 5.5 + ], + "to": [ + 15, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [15, 5.5, 14.75, 5.75], "texture": "#1"}, - "east": {"uv": [14.75, 5.5, 15, 5.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 5.5, 15, 5.75], "texture": "#1"}, - "west": {"uv": [14.75, 5.5, 15, 5.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 5.5, 15, 5.75], "texture": "#1"}, - "down": {"uv": [14.75, 5.75, 15, 5.5], "texture": "#1"} + "north": { + "uv": [ + 15, + 5.5, + 14.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 5.5, + 15, + 5.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 5.5, + 15, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 5.5, + 15, + 5.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 5.5, + 15, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 5.75, + 15, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_29", - "from": [2.5, 0, 5.75], - "to": [3, 0.25, 10], + "from": [ + 2.5, + 0, + 5.75 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 5.75, 2.5, 6], "texture": "#1"}, - "east": {"uv": [2.75, 5.75, 3, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9.75, 3, 10], "texture": "#1"}, - "west": {"uv": [2.5, 5.75, 2.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 5.75, 3, 10], "texture": "#1"}, - "down": {"uv": [2.5, 10, 3, 5.75], "texture": "#1"} + "north": { + "uv": [ + 3, + 5.75, + 2.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 5.75, + 3, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 3, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 5.75, + 3, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10, + 3, + 5.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_30", - "from": [9.5, 0, 5.75], - "to": [9.75, 0.25, 11], + "from": [ + 9.5, + 0, + 5.75 + ], + "to": [ + 9.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.75, 5.75, 9.5, 6], "texture": "#1"}, - "east": {"uv": [9.5, 5.75, 9.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 10.75, 9.75, 11], "texture": "#1"}, - "west": {"uv": [9.5, 5.75, 9.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 5.75, 9.75, 11], "texture": "#1"}, - "down": {"uv": [9.5, 11, 9.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 5.75, + 9.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10.75, + 9.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 11, + 9.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_31", - "from": [1.75, 0, 6], - "to": [2.5, 0.25, 10], + "from": [ + 1.75, + 0, + 6 + ], + "to": [ + 2.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.5, 6, 1.75, 6.25], "texture": "#1"}, - "east": {"uv": [2.25, 6, 2.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.75, 2.5, 10], "texture": "#1"}, - "west": {"uv": [1.75, 6, 2, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 6, 2.5, 10], "texture": "#1"}, - "down": {"uv": [1.75, 10, 2.5, 6], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 6, + 1.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 6, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6, + 2, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 6, + 2.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 10, + 2.5, + 6 + ], + "texture": "#1" + } } }, { "name": "kingyo_32", - "from": [9.25, 0, 6], - "to": [9.5, 0.25, 10.75], + "from": [ + 9.25, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 6, 9.25, 6.25], "texture": "#1"}, - "east": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#1"}, - "west": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 6, 9.5, 10.75], "texture": "#1"}, - "down": {"uv": [9.25, 10.75, 9.5, 6], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 6, + 9.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 6 + ], + "texture": "#1" + } } }, { "name": "kingyo_33", - "from": [1.5, 0, 6.25], - "to": [1.75, 0.25, 10], + "from": [ + 1.5, + 0, + 6.25 + ], + "to": [ + 1.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 6.25, 1.5, 6.5], "texture": "#1"}, - "east": {"uv": [1.5, 6.25, 1.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9.75, 1.75, 10], "texture": "#1"}, - "west": {"uv": [1.5, 6.25, 1.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 6.25, 1.75, 10], "texture": "#1"}, - "down": {"uv": [1.5, 10, 1.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 6.25, + 1.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 1.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 10, + 1.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_34", - "from": [9, 0, 6.25], - "to": [9.25, 0.25, 10.5], + "from": [ + 9, + 0, + 6.25 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.25, 6.25, 9, 6.5], "texture": "#1"}, - "east": {"uv": [9, 6.25, 9.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#1"}, - "west": {"uv": [9, 6.25, 9.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 6.25, 9.25, 10.5], "texture": "#1"}, - "down": {"uv": [9, 10.5, 9.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 6.25, + 9, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6.25, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.25, + 9.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 10.5, + 9.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_35", - "from": [13.75, 0, 6.25], - "to": [14.25, 0.25, 6.75], + "from": [ + 13.75, + 0, + 6.25 + ], + "to": [ + 14.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [14.25, 6.25, 13.75, 6.5], "texture": "#1"}, - "east": {"uv": [14, 6.25, 14.25, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 6.5, 14.25, 6.75], "texture": "#1"}, - "west": {"uv": [13.75, 6.25, 14, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6.25, 14.25, 6.75], "texture": "#1"}, - "down": {"uv": [13.75, 6.75, 14.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 6.25, + 13.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 6.25, + 14.25, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 6.5, + 14.25, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6.25, + 14, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6.25, + 14.25, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 6.75, + 14.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_36", - "from": [14.25, 0, 6.25], - "to": [14.5, 0.25, 6.5], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [14.5, 6.25, 14.25, 6.5], "texture": "#1"}, - "east": {"uv": [14.25, 6.25, 14.5, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 6.25, 14.5, 6.5], "texture": "#1"}, - "west": {"uv": [14.25, 6.25, 14.5, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 6.25, 14.5, 6.5], "texture": "#1"}, - "down": {"uv": [14.25, 6.5, 14.5, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 6.25, + 14.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_37", - "from": [1.25, 0, 6.5], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 6.5, 1.25, 6.75], "texture": "#1"}, - "east": {"uv": [1.25, 6.5, 1.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "west": {"uv": [1.25, 6.5, 1.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 6.5, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [1.25, 9.75, 1.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 6.5, + 1.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_38", - "from": [1, 0, 6.75], - "to": [1.25, 0.25, 9.75], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.25, 6.75, 1, 7], "texture": "#1"}, - "east": {"uv": [1, 6.75, 1.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 9.5, 1.25, 9.75], "texture": "#1"}, - "west": {"uv": [1, 6.75, 1.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 6.75, 1.25, 9.75], "texture": "#1"}, - "down": {"uv": [1, 9.75, 1.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 6.75, + 1, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9.75, + 1.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_39", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 7], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 7 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#1"}, - "east": {"uv": [13.75, 6.75, 14, 7], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 6.75, 14, 7], "texture": "#1"}, - "west": {"uv": [13.75, 6.75, 14, 7], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6.75, 14, 7], "texture": "#1"}, - "down": {"uv": [13.75, 7, 14, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 7, + 14, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_40", - "from": [0.75, 0, 7], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#1"}, - "east": {"uv": [0.75, 7, 1, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#1"}, - "west": {"uv": [0.75, 7, 1, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7, 1, 9.75], "texture": "#1"}, - "down": {"uv": [0.75, 9.75, 1, 7], "texture": "#1"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 7 + ], + "texture": "#1" + } } }, { "name": "kingyo_41", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#1"}, - "east": {"uv": [0.5, 7.25, 0.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#1"}, - "west": {"uv": [0.5, 7.25, 0.75, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.25, 0.75, 8.5], "texture": "#1"}, - "down": {"uv": [0.5, 8.5, 0.75, 7.25], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_42", - "from": [12.75, 0, 7.25], - "to": [13.25, 0.25, 7.75], + "from": [ + 12.75, + 0, + 7.25 + ], + "to": [ + 13.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [13.25, 7.25, 12.75, 7.5], "texture": "#1"}, - "east": {"uv": [13, 7.25, 13.25, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 7.5, 13.25, 7.75], "texture": "#1"}, - "west": {"uv": [12.75, 7.25, 13, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 7.25, 13.25, 7.75], "texture": "#1"}, - "down": {"uv": [12.75, 7.75, 13.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 7.25, + 12.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 7.25, + 13.25, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 7.5, + 13.25, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 7.25, + 13, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 7.25, + 13.25, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 7.75, + 13.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_43", - "from": [13.25, 0, 7.25], - "to": [13.5, 0.25, 7.5], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [13.5, 7.25, 13.25, 7.5], "texture": "#1"}, - "east": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#1"}, - "west": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#1"}, - "down": {"uv": [13.25, 7.5, 13.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 7.25, + 13.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kingyo_44", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#1"}, - "east": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#1"}, - "west": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7.75, 0.5, 8.25], "texture": "#1"}, - "down": {"uv": [0.25, 8.25, 0.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_45", - "from": [12.75, 0, 7.75], - "to": [13, 0.25, 8], + "from": [ + 12.75, + 0, + 7.75 + ], + "to": [ + 13, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13, 7.75, 12.75, 8], "texture": "#1"}, - "east": {"uv": [12.75, 7.75, 13, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 7.75, 13, 8], "texture": "#1"}, - "west": {"uv": [12.75, 7.75, 13, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 7.75, 13, 8], "texture": "#1"}, - "down": {"uv": [12.75, 8, 13, 7.75], "texture": "#1"} + "north": { + "uv": [ + 13, + 7.75, + 12.75, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 8, + 13, + 7.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_46", - "from": [12.75, 0, 8.5], - "to": [13, 0.25, 12.5], + "from": [ + 12.75, + 0, + 8.5 + ], + "to": [ + 13, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [13, 8.5, 12.75, 8.75], "texture": "#1"}, - "east": {"uv": [12.75, 8.5, 13, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 12.25, 13, 12.5], "texture": "#1"}, - "west": {"uv": [12.75, 8.5, 13, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 8.5, 13, 12.5], "texture": "#1"}, - "down": {"uv": [12.75, 12.5, 13, 8.5], "texture": "#1"} + "north": { + "uv": [ + 13, + 8.5, + 12.75, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 8.5, + 13, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 12.25, + 13, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 8.5, + 13, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 8.5, + 13, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 12.5, + 13, + 8.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_47", - "from": [13, 0, 8.75], - "to": [13.25, 0.25, 12.5], + "from": [ + 13, + 0, + 8.75 + ], + "to": [ + 13.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [13.25, 8.75, 13, 9], "texture": "#1"}, - "east": {"uv": [13, 8.75, 13.25, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 12.25, 13.25, 12.5], "texture": "#1"}, - "west": {"uv": [13, 8.75, 13.25, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 8.75, 13.25, 12.5], "texture": "#1"}, - "down": {"uv": [13, 12.5, 13.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 8.75, + 13, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 8.75, + 13.25, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 12.25, + 13.25, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 8.75, + 13.25, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 8.75, + 13.25, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 12.5, + 13.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_48", - "from": [0.5, 0, 9], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 9 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 9, 0.5, 9.25], "texture": "#1"}, - "east": {"uv": [0.5, 9, 0.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#1"}, - "west": {"uv": [0.5, 9, 0.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 9, 0.75, 9.5], "texture": "#1"}, - "down": {"uv": [0.5, 9.5, 0.75, 9], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 9, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 9, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 9, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9, + 0.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 9 + ], + "texture": "#1" + } } }, { "name": "kingyo_49", - "from": [13.25, 0, 9], - "to": [13.5, 0.25, 12.5], + "from": [ + 13.25, + 0, + 9 + ], + "to": [ + 13.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [13.5, 9, 13.25, 9.25], "texture": "#1"}, - "east": {"uv": [13.25, 9, 13.5, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 12.25, 13.5, 12.5], "texture": "#1"}, - "west": {"uv": [13.25, 9, 13.5, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 9, 13.5, 12.5], "texture": "#1"}, - "down": {"uv": [13.25, 12.5, 13.5, 9], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 9, + 13.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 9, + 13.5, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 12.25, + 13.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 9, + 13.5, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 9, + 13.5, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 12.5, + 13.5, + 9 + ], + "texture": "#1" + } } }, { "name": "kingyo_50", - "from": [7.75, 0, 9.5], - "to": [8, 0.25, 12.5], + "from": [ + 7.75, + 0, + 9.5 + ], + "to": [ + 8, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8, 9.5, 7.75, 9.75], "texture": "#1"}, - "east": {"uv": [7.75, 9.5, 8, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 12.25, 8, 12.5], "texture": "#1"}, - "west": {"uv": [7.75, 9.5, 8, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 9.5, 8, 12.5], "texture": "#1"}, - "down": {"uv": [7.75, 12.5, 8, 9.5], "texture": "#1"} + "north": { + "uv": [ + 8, + 9.5, + 7.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 9.5, + 8, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 12.25, + 8, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 8, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 8, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 12.5, + 8, + 9.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_51", - "from": [13.5, 0, 9.5], - "to": [13.75, 0.25, 12.25], + "from": [ + 13.5, + 0, + 9.5 + ], + "to": [ + 13.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [13.75, 9.5, 13.5, 9.75], "texture": "#1"}, - "east": {"uv": [13.5, 9.5, 13.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 12, 13.75, 12.25], "texture": "#1"}, - "west": {"uv": [13.5, 9.5, 13.75, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 9.5, 13.75, 12.25], "texture": "#1"}, - "down": {"uv": [13.5, 12.25, 13.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 9.5, + 13.5, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 9.5, + 13.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 12, + 13.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 9.5, + 13.75, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 9.5, + 13.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 12.25, + 13.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_52", - "from": [8, 0, 9.75], - "to": [8.25, 0.25, 12.5], + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 8.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.25, 9.75, 8, 10], "texture": "#1"}, - "east": {"uv": [8, 9.75, 8.25, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 12.25, 8.25, 12.5], "texture": "#1"}, - "west": {"uv": [8, 9.75, 8.25, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 9.75, 8.25, 12.5], "texture": "#1"}, - "down": {"uv": [8, 12.5, 8.25, 9.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 9.75, + 8, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 9.75, + 8.25, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 12.25, + 8.25, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9.75, + 8.25, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 12.5, + 8.25, + 9.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_53", - "from": [8.25, 0, 10], - "to": [8.5, 0.25, 12.5], + "from": [ + 8.25, + 0, + 10 + ], + "to": [ + 8.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.5, 10, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [8.25, 10, 8.5, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 12.25, 8.5, 12.5], "texture": "#1"}, - "west": {"uv": [8.25, 10, 8.5, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 10, 8.5, 12.5], "texture": "#1"}, - "down": {"uv": [8.25, 12.5, 8.5, 10], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 10, + 8.25, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 10, + 8.5, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 12.25, + 8.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 10, + 8.5, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 10, + 8.5, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 12.5, + 8.5, + 10 + ], + "texture": "#1" + } } }, { "name": "kingyo_54", - "from": [13.75, 0, 10], - "to": [14, 0.25, 12], + "from": [ + 13.75, + 0, + 10 + ], + "to": [ + 14, + 0.25, + 12 + ], "faces": { - "north": {"uv": [14, 10, 13.75, 10.25], "texture": "#1"}, - "east": {"uv": [13.75, 10, 14, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 11.75, 14, 12], "texture": "#1"}, - "west": {"uv": [13.75, 10, 14, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 10, 14, 12], "texture": "#1"}, - "down": {"uv": [13.75, 12, 14, 10], "texture": "#1"} + "north": { + "uv": [ + 14, + 10, + 13.75, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 10, + 14, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 11.75, + 14, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 10, + 14, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 10, + 14, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 12, + 14, + 10 + ], + "texture": "#1" + } } }, { "name": "kingyo_55", - "from": [8.5, 0, 10.5], - "to": [8.75, 0.25, 12.25], + "from": [ + 8.5, + 0, + 10.5 + ], + "to": [ + 8.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8.75, 10.5, 8.5, 10.75], "texture": "#1"}, - "east": {"uv": [8.5, 10.5, 8.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 12, 8.75, 12.25], "texture": "#1"}, - "west": {"uv": [8.5, 10.5, 8.75, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 10.5, 8.75, 12.25], "texture": "#1"}, - "down": {"uv": [8.5, 12.25, 8.75, 10.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 10.5, + 8.5, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 10.5, + 8.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 12, + 8.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 10.5, + 8.75, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 10.5, + 8.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 12.25, + 8.75, + 10.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_56", - "from": [14, 0, 10.5], - "to": [14.25, 0.25, 11.5], + "from": [ + 14, + 0, + 10.5 + ], + "to": [ + 14.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [14.25, 10.5, 14, 10.75], "texture": "#1"}, - "east": {"uv": [14, 10.5, 14.25, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 11.25, 14.25, 11.5], "texture": "#1"}, - "west": {"uv": [14, 10.5, 14.25, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 10.5, 14.25, 11.5], "texture": "#1"}, - "down": {"uv": [14, 11.5, 14.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 10.5, + 14, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 10.5, + 14.25, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 11.25, + 14.25, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 10.5, + 14.25, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 10.5, + 14.25, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 11.5, + 14.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_57", - "from": [6, 0, 10.75], - "to": [6.5, 0.25, 11], + "from": [ + 6, + 0, + 10.75 + ], + "to": [ + 6.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.5, 10.75, 6, 11], "texture": "#1"}, - "east": {"uv": [6.25, 10.75, 6.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 10.75, 6.5, 11], "texture": "#1"}, - "west": {"uv": [6, 10.75, 6.25, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 10.75, 6.5, 11], "texture": "#1"}, - "down": {"uv": [6, 11, 6.5, 10.75], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 10.75, + 6, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 10.75, + 6.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 10.75, + 6.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 11, + 6.5, + 10.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_58", - "from": [6.25, 0, 11], - "to": [6.5, 0.25, 11.25], + "from": [ + 6.25, + 0, + 11 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.5, 11, 6.25, 11.25], "texture": "#1"}, - "east": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#1"}, - "west": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#1"}, - "down": {"uv": [6.25, 11.25, 6.5, 11], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 11, + 6.25, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11 + ], + "texture": "#1" + } } }, { "name": "kingyo_59", - "from": [10.5, 0, 11.5], - "to": [10.75, 0.25, 11.75], + "from": [ + 10.5, + 0, + 11.5 + ], + "to": [ + 10.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.75, 11.5, 10.5, 11.75], "texture": "#1"}, - "east": {"uv": [10.5, 11.5, 10.75, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 11.5, 10.75, 11.75], "texture": "#1"}, - "west": {"uv": [10.5, 11.5, 10.75, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 11.5, 10.75, 11.75], "texture": "#1"}, - "down": {"uv": [10.5, 11.75, 10.75, 11.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 11.5, + 10.5, + 11.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 11.75, + 10.75, + 11.5 + ], + "texture": "#1" + } } }, { "name": "kingyo_60", - "from": [11, 0, 11.75], - "to": [11.5, 0.25, 12], + "from": [ + 11, + 0, + 11.75 + ], + "to": [ + 11.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.5, 11.75, 11, 12], "texture": "#1"}, - "east": {"uv": [11.25, 11.75, 11.5, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 11.75, 11.5, 12], "texture": "#1"}, - "west": {"uv": [11, 11.75, 11.25, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 11.75, 11.5, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 11.5, 11.75], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 11.75, + 11, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 11.75, + 11.5, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 11.75, + 11.5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 11.75, + 11.25, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 11.75, + 11.5, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 12, + 11.5, + 11.75 + ], + "texture": "#1" + } } }, { "name": "kingyo_61", - "from": [7.5, 0, 12], - "to": [7.75, 0.25, 12.25], + "from": [ + 7.5, + 0, + 12 + ], + "to": [ + 7.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.75, 12, 7.5, 12.25], "texture": "#1"}, - "east": {"uv": [7.5, 12, 7.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 12, 7.75, 12.25], "texture": "#1"}, - "west": {"uv": [7.5, 12, 7.75, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 12, 7.75, 12.25], "texture": "#1"}, - "down": {"uv": [7.5, 12.25, 7.75, 12], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 12, + 7.5, + 12.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 12.25, + 7.75, + 12 + ], + "texture": "#1" + } } }, { "name": "kingyo_62", - "from": [11.25, 0, 12], - "to": [11.5, 0.25, 12.25], + "from": [ + 11.25, + 0, + 12 + ], + "to": [ + 11.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.5, 12, 11.25, 12.25], "texture": "#1"}, - "east": {"uv": [11.25, 12, 11.5, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 12, 11.5, 12.25], "texture": "#1"}, - "west": {"uv": [11.25, 12, 11.5, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 12, 11.5, 12.25], "texture": "#1"}, - "down": {"uv": [11.25, 12.25, 11.5, 12], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 12, + 11.25, + 12.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 12.25, + 11.5, + 12 + ], + "texture": "#1" + } } }, { "name": "kingyo_63", - "from": [12, 0, 12.25], - "to": [12.75, 0.25, 12.5], + "from": [ + 12, + 0, + 12.25 + ], + "to": [ + 12.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [12.75, 12.25, 12, 12.5], "texture": "#1"}, - "east": {"uv": [12.5, 12.25, 12.75, 12.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 12.25, 12.75, 12.5], "texture": "#1"}, - "west": {"uv": [12, 12.25, 12.25, 12.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 12.25, 12.75, 12.5], "texture": "#1"}, - "down": {"uv": [12, 12.5, 12.75, 12.25], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 12.25, + 12, + 12.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 12.25, + 12.75, + 12.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 12.25, + 12.75, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 12.25, + 12.25, + 12.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 12.25, + 12.75, + 12.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 12.5, + 12.75, + 12.25 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 3.75], - "scale": [0.39, 0.39, 0.39] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 3.75 + ], + "scale": [ + 0.39, + 0.39, + 0.39 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.5, 3.75], - "scale": [0.39, 0.39, 0.39] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.5, + 3.75 + ], + "scale": [ + 0.39, + 0.39, + 0.39 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [2, 1.75, 3.75], - "scale": [0.39, 0.39, 0.39] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 2, + 1.75, + 3.75 + ], + "scale": [ + 0.39, + 0.39, + 0.39 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [2, 1.75, 3.75], - "scale": [0.39, 0.39, 0.39] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 2, + 1.75, + 3.75 + ], + "scale": [ + 0.39, + 0.39, + 0.39 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0, 4], - "scale": [0.39, 0.39, 0.39] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 4 + ], + "scale": [ + 0.39, + 0.39, + 0.39 + ] }, "gui": { - "rotation": [90, 0, 0] + "rotation": [ + 90, + 0, + 0 + ] }, "head": { - "rotation": [90, 0, 90], - "translation": [-10.25, -3, -3.5], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 90 + ], + "translation": [ + -10.25, + -3, + -3.5 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "kingyo", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kobanzame.json b/pack/assets/minecraft/models/fish/kobanzame.json index 58b35850..d2052fea 100644 --- a/pack/assets/minecraft/models/fish/kobanzame.json +++ b/pack/assets/minecraft/models/fish/kobanzame.json @@ -2,449 +2,2320 @@ "__name": "コバンザメ", "credit": "Made with Blockbench", "textures": { - "1": "fish/kobanzame", - "particle": "fish/kobanzame" + "1": "item/fish/kobanzame", + "particle": "item/fish/kobanzame" }, "elements": [ { "name": "kobanzame_0", - "from": [4.25, 0, 5.25], - "to": [4.5, 0.25, 10.25], + "from": [ + 4.25, + 0, + 5.25 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.5, 5.25, 4.25, 5.5], "texture": "#1"}, - "east": {"uv": [4.25, 5.25, 4.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 10, 4.5, 10.25], "texture": "#1"}, - "west": {"uv": [4.25, 5.25, 4.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 5.25, 4.5, 10.25], "texture": "#1"}, - "down": {"uv": [4.25, 10.25, 4.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 5.25, + 4.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 5.25, + 4.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 10.25, + 4.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_1", - "from": [4, 0, 5.5], - "to": [4.25, 0.25, 10.5], + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 4.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.25, 5.5, 4, 5.75], "texture": "#1"}, - "east": {"uv": [4, 5.5, 4.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 10.25, 4.25, 10.5], "texture": "#1"}, - "west": {"uv": [4, 5.5, 4.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 5.5, 4.25, 10.5], "texture": "#1"}, - "down": {"uv": [4, 10.5, 4.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 5.5, + 4, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5.5, + 4.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 5.5, + 4.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 10.5, + 4.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_2", - "from": [4.5, 0, 5.5], - "to": [4.75, 0.25, 8.75], + "from": [ + 4.5, + 0, + 5.5 + ], + "to": [ + 4.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [4.75, 5.5, 4.5, 5.75], "texture": "#1"}, - "east": {"uv": [4.5, 5.5, 4.75, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 8.5, 4.75, 8.75], "texture": "#1"}, - "west": {"uv": [4.5, 5.5, 4.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 5.5, 4.75, 8.75], "texture": "#1"}, - "down": {"uv": [4.5, 8.75, 4.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 5.5, + 4.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 5.5, + 4.75, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 5.5, + 4.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 8.75, + 4.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_3", - "from": [3.75, 0, 5.75], - "to": [4, 0.25, 10.25], + "from": [ + 3.75, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4, 5.75, 3.75, 6], "texture": "#1"}, - "east": {"uv": [3.75, 5.75, 4, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 10, 4, 10.25], "texture": "#1"}, - "west": {"uv": [3.75, 5.75, 4, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 5.75, 4, 10.25], "texture": "#1"}, - "down": {"uv": [3.75, 10.25, 4, 5.75], "texture": "#1"} + "north": { + "uv": [ + 4, + 5.75, + 3.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 10, + 4, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 5.75, + 4, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 5.75, + 4, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 10.25, + 4, + 5.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_4", - "from": [3.5, 0, 6], - "to": [3.75, 0.25, 10], + "from": [ + 3.5, + 0, + 6 + ], + "to": [ + 3.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.75, 6, 3.5, 6.25], "texture": "#1"}, - "east": {"uv": [3.5, 6, 3.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 9.75, 3.75, 10], "texture": "#1"}, - "west": {"uv": [3.5, 6, 3.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 6, 3.75, 10], "texture": "#1"}, - "down": {"uv": [3.5, 10, 3.75, 6], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 6, + 3.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 6, + 3.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 6, + 3.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10, + 3.75, + 6 + ], + "texture": "#1" + } } }, { "name": "kobanzame_5", - "from": [3.25, 0, 6.5], - "to": [3.5, 0.25, 9.5], + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 3.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.5, 6.5, 3.25, 6.75], "texture": "#1"}, - "east": {"uv": [3.25, 6.5, 3.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 9.25, 3.5, 9.5], "texture": "#1"}, - "west": {"uv": [3.25, 6.5, 3.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 6.5, 3.5, 9.5], "texture": "#1"}, - "down": {"uv": [3.25, 9.5, 3.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 6.5, + 3.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 6.5, + 3.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 3.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 3.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_6", - "from": [14.75, 0, 6.5], - "to": [15.25, 0.25, 7.5], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.25, 6.5, 14.75, 6.75], "texture": "#1"}, - "east": {"uv": [15, 6.5, 15.25, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 7.25, 15.25, 7.5], "texture": "#1"}, - "west": {"uv": [14.75, 6.5, 15, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6.5, 15.25, 7.5], "texture": "#1"}, - "down": {"uv": [14.75, 7.5, 15.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.5, + 14.75, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15.25, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15.25, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_7", - "from": [3, 0, 6.75], - "to": [3.25, 0.25, 9], + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 3.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.25, 6.75, 3, 7], "texture": "#1"}, - "east": {"uv": [3, 6.75, 3.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 8.75, 3.25, 9], "texture": "#1"}, - "west": {"uv": [3, 6.75, 3.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 6.75, 3.25, 9], "texture": "#1"}, - "down": {"uv": [3, 9, 3.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 6.75, + 3, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 6.75, + 3.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 6.75, + 3.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9, + 3.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_8", - "from": [8, 0, 6.75], - "to": [8.5, 0.25, 9], + "from": [ + 8, + 0, + 6.75 + ], + "to": [ + 8.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.5, 6.75, 8, 7], "texture": "#1"}, - "east": {"uv": [8.25, 6.75, 8.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 8.75, 8.5, 9], "texture": "#1"}, - "west": {"uv": [8, 6.75, 8.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 6.75, 8.5, 9], "texture": "#1"}, - "down": {"uv": [8, 9, 8.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 6.75, + 8, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6.75, + 8.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 8.75, + 8.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 6.75, + 8.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 6.75, + 8.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9, + 8.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_9", - "from": [14.5, 0, 6.75], - "to": [14.75, 0.25, 9], + "from": [ + 14.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.5, 7], "texture": "#1"}, - "east": {"uv": [14.5, 6.75, 14.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#1"}, - "west": {"uv": [14.5, 6.75, 14.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.75, 14.75, 9], "texture": "#1"}, - "down": {"uv": [14.5, 9, 14.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.75, + 14.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.75, + 14.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9, + 14.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_10", - "from": [15.25, 0, 6.75], - "to": [15.5, 0.25, 7.25], + "from": [ + 15.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.5, 6.75, 15.25, 7], "texture": "#1"}, - "east": {"uv": [15.25, 6.75, 15.5, 7.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#1"}, - "west": {"uv": [15.25, 6.75, 15.5, 7.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 6.75, 15.5, 7.25], "texture": "#1"}, - "down": {"uv": [15.25, 7.25, 15.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 6.75, + 15.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 7.25, + 15.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_11", - "from": [1.75, 0, 7], - "to": [3, 0.25, 8.75], + "from": [ + 1.75, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [3, 7, 1.75, 7.25], "texture": "#1"}, - "east": {"uv": [2.75, 7, 3, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 8.5, 3, 8.75], "texture": "#1"}, - "west": {"uv": [1.75, 7, 2, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7, 3, 8.75], "texture": "#1"}, - "down": {"uv": [1.75, 8.75, 3, 7], "texture": "#1"} + "north": { + "uv": [ + 3, + 7, + 1.75, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 8.5, + 3, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7, + 2, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7, + 3, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 8.75, + 3, + 7 + ], + "texture": "#1" + } } }, { "name": "kobanzame_12", - "from": [7.5, 0, 7], - "to": [8, 0.25, 8.75], + "from": [ + 7.5, + 0, + 7 + ], + "to": [ + 8, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8, 7, 7.5, 7.25], "texture": "#1"}, - "east": {"uv": [7.75, 7, 8, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 8.5, 8, 8.75], "texture": "#1"}, - "west": {"uv": [7.5, 7, 7.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 7, 8, 8.75], "texture": "#1"}, - "down": {"uv": [7.5, 8.75, 8, 7], "texture": "#1"} + "north": { + "uv": [ + 8, + 7, + 7.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 7, + 8, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 8.5, + 8, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 7, + 7.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 7, + 8, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 8.75, + 8, + 7 + ], + "texture": "#1" + } } }, { "name": "kobanzame_13", - "from": [8.5, 0, 7], - "to": [8.75, 0.25, 9], + "from": [ + 8.5, + 0, + 7 + ], + "to": [ + 8.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8.75, 7, 8.5, 7.25], "texture": "#1"}, - "east": {"uv": [8.5, 7, 8.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 8.75, 8.75, 9], "texture": "#1"}, - "west": {"uv": [8.5, 7, 8.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 7, 8.75, 9], "texture": "#1"}, - "down": {"uv": [8.5, 9, 8.75, 7], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 7, + 8.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7, + 8.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 7, + 8.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 7, + 8.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 9, + 8.75, + 7 + ], + "texture": "#1" + } } }, { "name": "kobanzame_14", - "from": [14.25, 0, 7], - "to": [14.5, 0.25, 8.75], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.5, 7, 14.25, 7.25], "texture": "#1"}, - "east": {"uv": [14.25, 7, 14.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#1"}, - "west": {"uv": [14.25, 7, 14.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7, 14.5, 8.75], "texture": "#1"}, - "down": {"uv": [14.25, 8.75, 14.5, 7], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 7, + 14.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.5, + 7 + ], + "texture": "#1" + } } }, { "name": "kobanzame_15", - "from": [1, 0, 7.25], - "to": [1.75, 0.25, 8.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1, 7.5], "texture": "#1"}, - "east": {"uv": [1.5, 7.25, 1.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.25, 1.75, 8.5], "texture": "#1"}, - "west": {"uv": [1, 7.25, 1.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.25, 1.75, 8.5], "texture": "#1"}, - "down": {"uv": [1, 8.5, 1.75, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7.25, + 1, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.75, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_16", - "from": [4.75, 0, 7.25], - "to": [7.5, 0.25, 8.75], + "from": [ + 4.75, + 0, + 7.25 + ], + "to": [ + 7.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [7.5, 7.25, 4.75, 7.5], "texture": "#1"}, - "east": {"uv": [7.25, 7.25, 7.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 8.5, 7.5, 8.75], "texture": "#1"}, - "west": {"uv": [4.75, 7.25, 5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 7.25, 7.5, 8.75], "texture": "#1"}, - "down": {"uv": [4.75, 8.75, 7.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 7.25, + 4.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 7.25, + 7.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 8.5, + 7.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 7.25, + 5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 7.25, + 7.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 8.75, + 7.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_17", - "from": [8.75, 0, 7.25], - "to": [12, 0.25, 8.5], + "from": [ + 8.75, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12, 7.25, 8.75, 7.5], "texture": "#1"}, - "east": {"uv": [11.75, 7.25, 12, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 8.25, 12, 8.5], "texture": "#1"}, - "west": {"uv": [8.75, 7.25, 9, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 7.25, 12, 8.5], "texture": "#1"}, - "down": {"uv": [8.75, 8.5, 12, 7.25], "texture": "#1"} + "north": { + "uv": [ + 12, + 7.25, + 8.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 8.25, + 12, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 7.25, + 9, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 7.25, + 12, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 8.5, + 12, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_18", - "from": [13.75, 0, 7.25], - "to": [14.25, 0.25, 8.5], + "from": [ + 13.75, + 0, + 7.25 + ], + "to": [ + 14.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.25, 7.25, 13.75, 7.5], "texture": "#1"}, - "east": {"uv": [14, 7.25, 14.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 8.25, 14.25, 8.5], "texture": "#1"}, - "west": {"uv": [13.75, 7.25, 14, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 7.25, 14.25, 8.5], "texture": "#1"}, - "down": {"uv": [13.75, 8.5, 14.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 7.25, + 13.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 7.25, + 14.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 8.25, + 14.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 7.25, + 14, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 7.25, + 14.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 8.5, + 14.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_19", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#1"}, - "east": {"uv": [0.75, 7.5, 1, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#1"}, - "west": {"uv": [0.75, 7.5, 1, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.5, 1, 8.5], "texture": "#1"}, - "down": {"uv": [0.75, 8.5, 1, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 7.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_20", - "from": [12, 0, 7.5], - "to": [13.75, 0.25, 8.25], + "from": [ + 12, + 0, + 7.5 + ], + "to": [ + 13.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.75, 7.5, 12, 7.75], "texture": "#1"}, - "east": {"uv": [13.5, 7.5, 13.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 8, 13.75, 8.25], "texture": "#1"}, - "west": {"uv": [12, 7.5, 12.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 7.5, 13.75, 8.25], "texture": "#1"}, - "down": {"uv": [12, 8.25, 13.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7.5, + 12, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7.5, + 13.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 8, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 7.5, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 7.5, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 8.25, + 13.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_21", - "from": [14.75, 0, 7.5], - "to": [15, 0.25, 9], + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15, 7.5, 14.75, 7.75], "texture": "#1"}, - "east": {"uv": [14.75, 7.5, 15, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 8.75, 15, 9], "texture": "#1"}, - "west": {"uv": [14.75, 7.5, 15, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 7.5, 15, 9], "texture": "#1"}, - "down": {"uv": [14.75, 9, 15, 7.5], "texture": "#1"} + "north": { + "uv": [ + 15, + 7.5, + 14.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 9, + 15, + 7.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_22", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#1"}, - "east": {"uv": [0.5, 7.75, 0.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#1"}, - "west": {"uv": [0.5, 7.75, 0.75, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.75, 0.75, 8.5], "texture": "#1"}, - "down": {"uv": [0.5, 8.5, 0.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_23", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#1"}, - "east": {"uv": [0.25, 8, 0.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#1"}, - "west": {"uv": [0.25, 8, 0.5, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#1"}, - "down": {"uv": [0.25, 8.25, 0.5, 8], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8 + ], + "texture": "#1" + } } }, { "name": "kobanzame_24", - "from": [12, 0, 8.25], - "to": [12.75, 0.25, 8.5], + "from": [ + 12, + 0, + 8.25 + ], + "to": [ + 12.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.75, 8.25, 12, 8.5], "texture": "#1"}, - "east": {"uv": [12.5, 8.25, 12.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 8.25, 12.75, 8.5], "texture": "#1"}, - "west": {"uv": [12, 8.25, 12.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 8.25, 12.75, 8.5], "texture": "#1"}, - "down": {"uv": [12, 8.5, 12.75, 8.25], "texture": "#1"} + "north": { + "uv": [ + 12.75, + 8.25, + 12, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 8.25, + 12.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 8.25, + 12.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 8.5, + 12.75, + 8.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_25", - "from": [15, 0, 8.25], - "to": [15.25, 0.25, 8.75], + "from": [ + 15, + 0, + 8.25 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 8.25, 15, 8.5], "texture": "#1"}, - "east": {"uv": [15, 8.25, 15.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#1"}, - "west": {"uv": [15, 8.25, 15.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 8.25, 15.25, 8.75], "texture": "#1"}, - "down": {"uv": [15, 8.75, 15.25, 8.25], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 8.25, + 15, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 8.25, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 8.25, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 8.25, + 15.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 8.25 + ], + "texture": "#1" + } } }, { "name": "kobanzame_26", - "from": [1.5, 0, 8.5], - "to": [1.75, 0.25, 8.75], + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 1.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.75, 8.5, 1.5, 8.75], "texture": "#1"}, - "east": {"uv": [1.5, 8.5, 1.75, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8.5, 1.75, 8.75], "texture": "#1"}, - "west": {"uv": [1.5, 8.5, 1.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 8.5, 1.75, 8.75], "texture": "#1"}, - "down": {"uv": [1.5, 8.75, 1.75, 8.5], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 1.75, + 8.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_27", - "from": [8.75, 0, 8.5], - "to": [10, 0.25, 8.75], + "from": [ + 8.75, + 0, + 8.5 + ], + "to": [ + 10, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [10, 8.5, 8.75, 8.75], "texture": "#1"}, - "east": {"uv": [9.75, 8.5, 10, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 8.5, 10, 8.75], "texture": "#1"}, - "west": {"uv": [8.75, 8.5, 9, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 8.5, 10, 8.75], "texture": "#1"}, - "down": {"uv": [8.75, 8.75, 10, 8.5], "texture": "#1"} + "north": { + "uv": [ + 10, + 8.5, + 8.75, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 8.5, + 10, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 8.5, + 10, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.5, + 9, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 8.5, + 10, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 8.75, + 10, + 8.5 + ], + "texture": "#1" + } } }, { "name": "kobanzame_28", - "from": [7.75, 0, 8.75], - "to": [8, 0.25, 9], + "from": [ + 7.75, + 0, + 8.75 + ], + "to": [ + 8, + 0.25, + 9 + ], "faces": { - "north": {"uv": [8, 8.75, 7.75, 9], "texture": "#1"}, - "east": {"uv": [7.75, 8.75, 8, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#1"}, - "west": {"uv": [7.75, 8.75, 8, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 8.75, 8, 9], "texture": "#1"}, - "down": {"uv": [7.75, 9, 8, 8.75], "texture": "#1"} + "north": { + "uv": [ + 8, + 8.75, + 7.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 8.75 + ], + "texture": "#1" + } } }, { "name": "kobanzame_29", - "from": [8, 0, 9], - "to": [8.25, 0.25, 9.25], + "from": [ + 8, + 0, + 9 + ], + "to": [ + 8.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.25, 9, 8, 9.25], "texture": "#1"}, - "east": {"uv": [8, 9, 8.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9, 8.25, 9.25], "texture": "#1"}, - "west": {"uv": [8, 9, 8.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 9, 8.25, 9.25], "texture": "#1"}, - "down": {"uv": [8, 9.25, 8.25, 9], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 9, + 8, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9.25, + 8.25, + 9 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 1.75, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 1.75, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 1.75, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 1.75, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 1.75, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 1.75, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 1.75, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 1.75, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 1.75, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 1.75, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 9.25, 7.75], - "scale": [0.84, 0.84, 0.84] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 9.25, + 7.75 + ], + "scale": [ + 0.84, + 0.84, + 0.84 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "kobanzame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/koi.json b/pack/assets/minecraft/models/fish/koi.json index 4f5bece9..97fa5c1e 100644 --- a/pack/assets/minecraft/models/fish/koi.json +++ b/pack/assets/minecraft/models/fish/koi.json @@ -2,668 +2,3538 @@ "__name": "コイ", "credit": "Made with Blockbench", "textures": { - "2": "fish/koi" + "2": "item/fish/koi" }, "elements": [ { "name": "koi_0", - "from": [6.25, 0, 4.25], - "to": [6.75, 0.25, 11.25], + "from": [ + 6.25, + 0, + 4.25 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 4.25, 6.25, 4.5], "texture": "#2"}, - "east": {"uv": [6.5, 4.25, 6.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.25, 11, 6.75, 11.25], "texture": "#2"}, - "west": {"uv": [6.25, 4.25, 6.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.25, 4.25, 6.75, 11.25], "texture": "#2"}, - "down": {"uv": [6.25, 11.25, 6.75, 4.25], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 4.25, + 6.25, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 4.25, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.25, + 4.25, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.25, + 4.25, + 6.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.75, + 4.25 + ], + "texture": "#2" + } } }, { "name": "koi_1", - "from": [6, 0, 4.5], - "to": [6.25, 0.25, 11], + "from": [ + 6, + 0, + 4.5 + ], + "to": [ + 6.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.25, 4.5, 6, 4.75], "texture": "#2"}, - "east": {"uv": [6, 4.5, 6.25, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 10.75, 6.25, 11], "texture": "#2"}, - "west": {"uv": [6, 4.5, 6.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 4.5, 6.25, 11], "texture": "#2"}, - "down": {"uv": [6, 11, 6.25, 4.5], "texture": "#2"} + "north": { + "uv": [ + 6.25, + 4.5, + 6, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11, + 6.25, + 4.5 + ], + "texture": "#2" + } } }, { "name": "koi_2", - "from": [6.75, 0, 4.5], - "to": [7, 0.25, 11.5], + "from": [ + 6.75, + 0, + 4.5 + ], + "to": [ + 7, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7, 4.5, 6.75, 4.75], "texture": "#2"}, - "east": {"uv": [6.75, 4.5, 7, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.75, 11.25, 7, 11.5], "texture": "#2"}, - "west": {"uv": [6.75, 4.5, 7, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.75, 4.5, 7, 11.5], "texture": "#2"}, - "down": {"uv": [6.75, 11.5, 7, 4.5], "texture": "#2"} + "north": { + "uv": [ + 7, + 4.5, + 6.75, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 11.25, + 7, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.75, + 11.5, + 7, + 4.5 + ], + "texture": "#2" + } } }, { "name": "koi_3", - "from": [5.75, 0, 4.75], - "to": [6, 0.25, 10.75], + "from": [ + 5.75, + 0, + 4.75 + ], + "to": [ + 6, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6, 4.75, 5.75, 5], "texture": "#2"}, - "east": {"uv": [5.75, 4.75, 6, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#2"}, - "west": {"uv": [5.75, 4.75, 6, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 4.75, 6, 10.75], "texture": "#2"}, - "down": {"uv": [5.75, 10.75, 6, 4.75], "texture": "#2"} + "north": { + "uv": [ + 6, + 4.75, + 5.75, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 6, + 4.75 + ], + "texture": "#2" + } } }, { "name": "koi_4", - "from": [5.5, 0, 5], - "to": [5.75, 0.25, 10.5], + "from": [ + 5.5, + 0, + 5 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 5, 5.5, 5.25], "texture": "#2"}, - "east": {"uv": [5.5, 5, 5.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 10.25, 5.75, 10.5], "texture": "#2"}, - "west": {"uv": [5.5, 5, 5.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 5, 5.75, 10.5], "texture": "#2"}, - "down": {"uv": [5.5, 10.5, 5.75, 5], "texture": "#2"} + "north": { + "uv": [ + 5.75, + 5, + 5.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 5.75, + 5 + ], + "texture": "#2" + } } }, { "name": "koi_5", - "from": [7, 0, 5], - "to": [7.5, 0.25, 11.25], + "from": [ + 7, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.5, 5, 7, 5.25], "texture": "#2"}, - "east": {"uv": [7.25, 5, 7.5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 11, 7.5, 11.25], "texture": "#2"}, - "west": {"uv": [7, 5, 7.25, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 5, 7.5, 11.25], "texture": "#2"}, - "down": {"uv": [7, 11.25, 7.5, 5], "texture": "#2"} + "north": { + "uv": [ + 7.5, + 5, + 7, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 11, + 7.5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 5, + 7.25, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 5, + 7.5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 11.25, + 7.5, + 5 + ], + "texture": "#2" + } } }, { "name": "koi_6", - "from": [5, 0, 5.25], - "to": [5.5, 0.25, 10.5], + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 5.25, 5, 5.5], "texture": "#2"}, - "east": {"uv": [5.25, 5.25, 5.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 10.25, 5.5, 10.5], "texture": "#2"}, - "west": {"uv": [5, 5.25, 5.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 5.25, 5.5, 10.5], "texture": "#2"}, - "down": {"uv": [5, 10.5, 5.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 5.5, + 5.25, + 5, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5.25, + 5.25, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "koi_7", - "from": [7.5, 0, 5.25], - "to": [8.75, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 5.25, 7.5, 5.5], "texture": "#2"}, - "east": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 10, 8.75, 10.25], "texture": "#2"}, - "west": {"uv": [7.5, 5.25, 7.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 5.25, 8.75, 10.25], "texture": "#2"}, - "down": {"uv": [7.5, 10.25, 8.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 8.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 10, + 8.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 8.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 8.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "koi_8", - "from": [4, 0, 5.5], - "to": [5, 0.25, 10.5], + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 5.5, 4, 5.75], "texture": "#2"}, - "east": {"uv": [4.75, 5.5, 5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 10.25, 5, 10.5], "texture": "#2"}, - "west": {"uv": [4, 5.5, 4.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 5.5, 5, 10.5], "texture": "#2"}, - "down": {"uv": [4, 10.5, 5, 5.5], "texture": "#2"} + "north": { + "uv": [ + 5, + 5.5, + 4, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 10.25, + 5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 5.5, + 5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 10.5, + 5, + 5.5 + ], + "texture": "#2" + } } }, { "name": "koi_9", - "from": [8.75, 0, 5.5], - "to": [9.75, 0.25, 10], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 5.5, 8.75, 5.75], "texture": "#2"}, - "east": {"uv": [9.5, 5.5, 9.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 9.75, 9.75, 10], "texture": "#2"}, - "west": {"uv": [8.75, 5.5, 9, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 5.5, 9.75, 10], "texture": "#2"}, - "down": {"uv": [8.75, 10, 9.75, 5.5], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 5.5, + 8.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.75, + 5.5 + ], + "texture": "#2" + } } }, { "name": "koi_10", - "from": [3.5, 0, 5.75], - "to": [4, 0.25, 10.5], + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4, 5.75, 3.5, 6], "texture": "#2"}, - "east": {"uv": [3.75, 5.75, 4, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.5, 10.25, 4, 10.5], "texture": "#2"}, - "west": {"uv": [3.5, 5.75, 3.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.5, 5.75, 4, 10.5], "texture": "#2"}, - "down": {"uv": [3.5, 10.5, 4, 5.75], "texture": "#2"} + "north": { + "uv": [ + 4, + 5.75, + 3.5, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.5, + 10.25, + 4, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 4, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 4, + 5.75 + ], + "texture": "#2" + } } }, { "name": "koi_11", - "from": [9.75, 0, 5.75], - "to": [10.25, 0.25, 10.25], + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.25, 5.75, 9.75, 6], "texture": "#2"}, - "east": {"uv": [10, 5.75, 10.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 10, 10.25, 10.25], "texture": "#2"}, - "west": {"uv": [9.75, 5.75, 10, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 5.75, 10.25, 10.25], "texture": "#2"}, - "down": {"uv": [9.75, 10.25, 10.25, 5.75], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 5.75, + 9.75, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 5.75, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 10, + 10.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10.25, + 5.75 + ], + "texture": "#2" + } } }, { "name": "koi_12", - "from": [3, 0, 6], - "to": [3.5, 0.25, 10.5], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.5, 6, 3, 6.25], "texture": "#2"}, - "east": {"uv": [3.25, 6, 3.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3, 10.25, 3.5, 10.5], "texture": "#2"}, - "west": {"uv": [3, 6, 3.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3, 6, 3.5, 10.5], "texture": "#2"}, - "down": {"uv": [3, 10.5, 3.5, 6], "texture": "#2"} + "north": { + "uv": [ + 3.5, + 6, + 3, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 6, + 3.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.5, + 6 + ], + "texture": "#2" + } } }, { "name": "koi_13", - "from": [10.25, 0, 6], - "to": [10.75, 0.25, 10.75], + "from": [ + 10.25, + 0, + 6 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 6, 10.25, 6.25], "texture": "#2"}, - "east": {"uv": [10.5, 6, 10.75, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 10.5, 10.75, 10.75], "texture": "#2"}, - "west": {"uv": [10.25, 6, 10.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 6, 10.75, 10.75], "texture": "#2"}, - "down": {"uv": [10.25, 10.75, 10.75, 6], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 6, + 10.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 6, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 10.5, + 10.75, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 6, + 10.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 6, + 10.75, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 10.75, + 10.75, + 6 + ], + "texture": "#2" + } } }, { "name": "koi_14", - "from": [2.5, 0, 6.25], - "to": [3, 0.25, 10.5], + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3, 6.25, 2.5, 6.5], "texture": "#2"}, - "east": {"uv": [2.75, 6.25, 3, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.5, 10.25, 3, 10.5], "texture": "#2"}, - "west": {"uv": [2.5, 6.25, 2.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.5, 6.25, 3, 10.5], "texture": "#2"}, - "down": {"uv": [2.5, 10.5, 3, 6.25], "texture": "#2"} + "north": { + "uv": [ + 3, + 6.25, + 2.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.5, + 10.25, + 3, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 3, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.5, + 10.5, + 3, + 6.25 + ], + "texture": "#2" + } } }, { "name": "koi_15", - "from": [10.75, 0, 6.25], - "to": [11, 0.25, 10.75], + "from": [ + 10.75, + 0, + 6.25 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 6.25, 10.75, 6.5], "texture": "#2"}, - "east": {"uv": [10.75, 6.25, 11, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 10.5, 11, 10.75], "texture": "#2"}, - "west": {"uv": [10.75, 6.25, 11, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 6.25, 11, 10.75], "texture": "#2"}, - "down": {"uv": [10.75, 10.75, 11, 6.25], "texture": "#2"} + "north": { + "uv": [ + 11, + 6.25, + 10.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11, + 6.25 + ], + "texture": "#2" + } } }, { "name": "koi_16", - "from": [2, 0, 6.5], - "to": [2.5, 0.25, 10.25], + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 6.5, 2, 6.75], "texture": "#2"}, - "east": {"uv": [2.25, 6.5, 2.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 10, 2.5, 10.25], "texture": "#2"}, - "west": {"uv": [2, 6.5, 2.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 6.5, 2.5, 10.25], "texture": "#2"}, - "down": {"uv": [2, 10.25, 2.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 2.5, + 6.5, + 2, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 10, + 2.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "koi_17", - "from": [11, 0, 6.5], - "to": [11.25, 0.25, 10.75], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.25, 6.5, 11, 6.75], "texture": "#2"}, - "east": {"uv": [11, 6.5, 11.25, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 10.5, 11.25, 10.75], "texture": "#2"}, - "west": {"uv": [11, 6.5, 11.25, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 6.5, 11.25, 10.75], "texture": "#2"}, - "down": {"uv": [11, 10.75, 11.25, 6.5], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 6.5, + 11, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 10.5, + 11.25, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 10.75, + 11.25, + 6.5 + ], + "texture": "#2" + } } }, { "name": "koi_18", - "from": [14.25, 0, 6.5], - "to": [15.5, 0.25, 7.75], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.5, 6.5, 14.25, 6.75], "texture": "#2"}, - "east": {"uv": [15.25, 6.5, 15.5, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 7.5, 15.5, 7.75], "texture": "#2"}, - "west": {"uv": [14.25, 6.5, 14.5, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 6.5, 15.5, 7.75], "texture": "#2"}, - "down": {"uv": [14.25, 7.75, 15.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 15.5, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 15.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "koi_19", - "from": [1.5, 0, 6.75], - "to": [2, 0.25, 10], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 6.75, 1.5, 7], "texture": "#2"}, - "east": {"uv": [1.75, 6.75, 2, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 9.75, 2, 10], "texture": "#2"}, - "west": {"uv": [1.5, 6.75, 1.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 6.75, 2, 10], "texture": "#2"}, - "down": {"uv": [1.5, 10, 2, 6.75], "texture": "#2"} + "north": { + "uv": [ + 2, + 6.75, + 1.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 2, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 2, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 10, + 2, + 6.75 + ], + "texture": "#2" + } } }, { "name": "koi_20", - "from": [13.5, 0, 6.75], - "to": [14.25, 0.25, 10], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 6.75, 13.5, 7], "texture": "#2"}, - "east": {"uv": [14, 6.75, 14.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.5, 9.75, 14.25, 10], "texture": "#2"}, - "west": {"uv": [13.5, 6.75, 13.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.5, 6.75, 14.25, 10], "texture": "#2"}, - "down": {"uv": [13.5, 10, 14.25, 6.75], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 6.75, + 13.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 14.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.5, + 10, + 14.25, + 6.75 + ], + "texture": "#2" + } } }, { "name": "koi_21", - "from": [15.5, 0, 6.75], - "to": [15.75, 0.25, 7.5], + "from": [ + 15.5, + 0, + 6.75 + ], + "to": [ + 15.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.75, 6.75, 15.5, 7], "texture": "#2"}, - "east": {"uv": [15.5, 6.75, 15.75, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 7.25, 15.75, 7.5], "texture": "#2"}, - "west": {"uv": [15.5, 6.75, 15.75, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 6.75, 15.75, 7.5], "texture": "#2"}, - "down": {"uv": [15.5, 7.5, 15.75, 6.75], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 6.75, + 15.5, + 7 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 7.5, + 15.75, + 6.75 + ], + "texture": "#2" + } } }, { "name": "koi_22", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 10], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#2"}, - "east": {"uv": [1.25, 7, 1.5, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 9.75, 1.5, 10], "texture": "#2"}, - "west": {"uv": [1.25, 7, 1.5, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 7, 1.5, 10], "texture": "#2"}, - "down": {"uv": [1.25, 10, 1.5, 7], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 9.75, + 1.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 10, + 1.5, + 7 + ], + "texture": "#2" + } } }, { "name": "koi_23", - "from": [13, 0, 7], - "to": [13.5, 0.25, 9.5], + "from": [ + 13, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 7, 13, 7.25], "texture": "#2"}, - "east": {"uv": [13.25, 7, 13.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 9.25, 13.5, 9.5], "texture": "#2"}, - "west": {"uv": [13, 7, 13.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 7, 13.5, 9.5], "texture": "#2"}, - "down": {"uv": [13, 9.5, 13.5, 7], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 7, + 13, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 7, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 7, + 13.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.5, + 7 + ], + "texture": "#2" + } } }, { "name": "koi_24", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 10], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#2"}, - "east": {"uv": [1, 7.25, 1.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 9.75, 1.25, 10], "texture": "#2"}, - "west": {"uv": [1, 7.25, 1.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 7.25, 1.25, 10], "texture": "#2"}, - "down": {"uv": [1, 10, 1.25, 7.25], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 10, + 1.25, + 7.25 + ], + "texture": "#2" + } } }, { "name": "koi_25", - "from": [11.25, 0, 7.25], - "to": [13, 0.25, 9.5], + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 7.25, 11.25, 7.5], "texture": "#2"}, - "east": {"uv": [12.75, 7.25, 13, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 9.25, 13, 9.5], "texture": "#2"}, - "west": {"uv": [11.25, 7.25, 11.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 7.25, 13, 9.5], "texture": "#2"}, - "down": {"uv": [11.25, 9.5, 13, 7.25], "texture": "#2"} + "north": { + "uv": [ + 13, + 7.25, + 11.25, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.75, + 7.25, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 13, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 13, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 13, + 7.25 + ], + "texture": "#2" + } } }, { "name": "koi_26", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#2"}, - "east": {"uv": [0.75, 7.5, 1, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#2"}, - "west": {"uv": [0.75, 7.5, 1, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 7.5, 1, 9.75], "texture": "#2"}, - "down": {"uv": [0.75, 9.75, 1, 7.5], "texture": "#2"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 7.5 + ], + "texture": "#2" + } } }, { "name": "koi_27", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#2"}, - "east": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#2"}, - "west": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.75, 0.75, 9.5], "texture": "#2"}, - "down": {"uv": [0.5, 9.5, 0.75, 7.75], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 7.75 + ], + "texture": "#2" + } } }, { "name": "koi_28", - "from": [14.25, 0, 7.75], - "to": [15, 0.25, 8.25], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15, 7.75, 14.25, 8], "texture": "#2"}, - "east": {"uv": [14.75, 7.75, 15, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 8, 15, 8.25], "texture": "#2"}, - "west": {"uv": [14.25, 7.75, 14.5, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 7.75, 15, 8.25], "texture": "#2"}, - "down": {"uv": [14.25, 8.25, 15, 7.75], "texture": "#2"} + "north": { + "uv": [ + 15, + 7.75, + 14.25, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 8, + 15, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 15, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 8.25, + 15, + 7.75 + ], + "texture": "#2" + } } }, { "name": "koi_29", - "from": [15, 0, 7.75], - "to": [15.25, 0.25, 8], + "from": [ + 15, + 0, + 7.75 + ], + "to": [ + 15.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.25, 7.75, 15, 8], "texture": "#2"}, - "east": {"uv": [15, 7.75, 15.25, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 7.75, 15.25, 8], "texture": "#2"}, - "west": {"uv": [15, 7.75, 15.25, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 7.75, 15.25, 8], "texture": "#2"}, - "down": {"uv": [15, 8, 15.25, 7.75], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 7.75, + 15, + 8 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 8, + 15.25, + 7.75 + ], + "texture": "#2" + } } }, { "name": "koi_30", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 9.25], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#2"}, - "east": {"uv": [0.25, 8, 0.5, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#2"}, - "west": {"uv": [0.25, 8, 0.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 8, 0.5, 9.25], "texture": "#2"}, - "down": {"uv": [0.25, 9.25, 0.5, 8], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 9.25, + 0.5, + 8 + ], + "texture": "#2" + } } }, { "name": "koi_31", - "from": [0, 0, 8.25], - "to": [0.25, 0.25, 9], + "from": [ + 0, + 0, + 8.25 + ], + "to": [ + 0.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.25, 8.25, 0, 8.5], "texture": "#2"}, - "east": {"uv": [0, 8.25, 0.25, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0, 8.75, 0.25, 9], "texture": "#2"}, - "west": {"uv": [0, 8.25, 0.25, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0, 8.25, 0.25, 9], "texture": "#2"}, - "down": {"uv": [0, 9, 0.25, 8.25], "texture": "#2"} + "north": { + "uv": [ + 0.25, + 8.25, + 0, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 9, + 0.25, + 8.25 + ], + "texture": "#2" + } } }, { "name": "koi_32", - "from": [14.25, 0, 8.25], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.25, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.25, 8.5], "texture": "#2"}, - "east": {"uv": [14.5, 8.25, 14.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 10, 14.75, 10.25], "texture": "#2"}, - "west": {"uv": [14.25, 8.25, 14.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 8.25, 14.75, 10.25], "texture": "#2"}, - "down": {"uv": [14.25, 10.25, 14.75, 8.25], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.25, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 8.25, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 8.25, + 14.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.75, + 8.25 + ], + "texture": "#2" + } } }, { "name": "koi_33", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#2"}, - "east": {"uv": [14.75, 8.5, 15, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#2"}, - "west": {"uv": [14.75, 8.5, 15, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 8.5, 15, 10.25], "texture": "#2"}, - "down": {"uv": [14.75, 10.25, 15, 8.5], "texture": "#2"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 8.5 + ], + "texture": "#2" + } } }, { "name": "koi_34", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#2"}, - "east": {"uv": [15, 8.75, 15.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#2"}, - "west": {"uv": [15, 8.75, 15.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15, 8.75, 15.25, 10.25], "texture": "#2"}, - "down": {"uv": [15, 10.25, 15.25, 8.75], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 8.75 + ], + "texture": "#2" + } } }, { "name": "koi_35", - "from": [15.25, 0, 9], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 9 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 9, 15.25, 9.25], "texture": "#2"}, - "east": {"uv": [15.25, 9, 15.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#2"}, - "west": {"uv": [15.25, 9, 15.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 9, 15.5, 10.25], "texture": "#2"}, - "down": {"uv": [15.25, 10.25, 15.5, 9], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 9, + 15.25, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 9 + ], + "texture": "#2" + } } }, { "name": "koi_36", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#2"}, - "east": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#2"}, - "west": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 9.25, 15.75, 10], "texture": "#2"}, - "down": {"uv": [15.5, 10, 15.75, 9.25], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 9.25 + ], + "texture": "#2" + } } }, { "name": "koi_37", - "from": [11.25, 0, 9.5], - "to": [11.5, 0.25, 10.75], + "from": [ + 11.25, + 0, + 9.5 + ], + "to": [ + 11.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.5, 9.5, 11.25, 9.75], "texture": "#2"}, - "east": {"uv": [11.25, 9.5, 11.5, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 10.5, 11.5, 10.75], "texture": "#2"}, - "west": {"uv": [11.25, 9.5, 11.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 9.5, 11.5, 10.75], "texture": "#2"}, - "down": {"uv": [11.25, 10.75, 11.5, 9.5], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 9.5, + 11.25, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 10.5, + 11.5, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 10.75, + 11.5, + 9.5 + ], + "texture": "#2" + } } }, { "name": "koi_38", - "from": [13.25, 0, 9.5], - "to": [13.5, 0.25, 9.75], + "from": [ + 13.25, + 0, + 9.5 + ], + "to": [ + 13.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.5, 9.5, 13.25, 9.75], "texture": "#2"}, - "east": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#2"}, - "west": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#2"}, - "down": {"uv": [13.25, 9.75, 13.5, 9.5], "texture": "#2"} + "north": { + "uv": [ + 13.5, + 9.5, + 13.25, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 9.75, + 13.5, + 9.5 + ], + "texture": "#2" + } } }, { "name": "koi_39", - "from": [11.5, 0, 9.75], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 9.75, 11.5, 10], "texture": "#2"}, - "east": {"uv": [11.5, 9.75, 11.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#2"}, - "west": {"uv": [11.5, 9.75, 11.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 9.75, 11.75, 10.5], "texture": "#2"}, - "down": {"uv": [11.5, 10.5, 11.75, 9.75], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 9.75, + 11.5, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 9.75 + ], + "texture": "#2" + } } }, { "name": "koi_40", - "from": [1.75, 0, 10], - "to": [2, 0.25, 10.25], + "from": [ + 1.75, + 0, + 10 + ], + "to": [ + 2, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2, 10, 1.75, 10.25], "texture": "#2"}, - "east": {"uv": [1.75, 10, 2, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 10, 2, 10.25], "texture": "#2"}, - "west": {"uv": [1.75, 10, 2, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 10, 2, 10.25], "texture": "#2"}, - "down": {"uv": [1.75, 10.25, 2, 10], "texture": "#2"} + "north": { + "uv": [ + 2, + 10, + 1.75, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 10.25, + 2, + 10 + ], + "texture": "#2" + } } }, { "name": "koi_41", - "from": [8.75, 0, 10], - "to": [9.25, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 10, 8.75, 10.25], "texture": "#2"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#2"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#2"}, - "down": {"uv": [8.75, 10.25, 9.25, 10], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 10, + 8.75, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9.25, + 10 + ], + "texture": "#2" + } } }, { "name": "koi_42", - "from": [14, 0, 10], - "to": [14.25, 0.25, 10.25], + "from": [ + 14, + 0, + 10 + ], + "to": [ + 14.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.25, 10, 14, 10.25], "texture": "#2"}, - "east": {"uv": [14, 10, 14.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 10, 14.25, 10.25], "texture": "#2"}, - "west": {"uv": [14, 10, 14.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 10, 14.25, 10.25], "texture": "#2"}, - "down": {"uv": [14, 10.25, 14.25, 10], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 10, + 14, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 10.25, + 14.25, + 10 + ], + "texture": "#2" + } } }, { "name": "koi_43", - "from": [7.5, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 7.5, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 7.5, 10.5], "texture": "#2"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.5, 10.25, 8.5, 10.5], "texture": "#2"}, - "west": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.5, 10.25, 8.5, 10.5], "texture": "#2"}, - "down": {"uv": [7.5, 10.5, 8.5, 10.25], "texture": "#2"} + "north": { + "uv": [ + 8.5, + 10.25, + 7.5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 8.5, + 10.25 + ], + "texture": "#2" + } } }, { "name": "koi_44", - "from": [10, 0, 10.25], - "to": [10.25, 0.25, 10.5], + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 10.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.25, 10.25, 10, 10.5], "texture": "#2"}, - "east": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#2"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#2"}, - "down": {"uv": [10, 10.5, 10.25, 10.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 10.25, + 10, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.25, + 10.25 + ], + "texture": "#2" + } } }, { "name": "koi_45", - "from": [6.5, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.5, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.5, 11.5], "texture": "#2"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#2"}, - "west": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#2"}, - "down": {"uv": [6.5, 11.5, 6.75, 11.25], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.5, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.25 + ], + "texture": "#2" + } } }, { "name": "koi_46", - "from": [7, 0, 11.25], - "to": [7.25, 0.25, 11.5], + "from": [ + 7, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 11.25, 7, 11.5], "texture": "#2"}, - "east": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#2"}, - "west": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#2"}, - "down": {"uv": [7, 11.5, 7.25, 11.25], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 11.25, + 7, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 11.5, + 7.25, + 11.25 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 0.75, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 0.75, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 0.75, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 0.75, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 2, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 2, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_lefthand": { - "rotation": [90, -2.75, -180], - "translation": [1, 2, -5.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + -180 + ], + "translation": [ + 1, + 2, + -5.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 3.5, 18.5], - "scale": [1.39, 1.39, 1.39] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 3.5, + 18.5 + ], + "scale": [ + 1.39, + 1.39, + 1.39 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0.5, 0.25, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 0.25, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 9, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 9, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "koi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kumanomi.json b/pack/assets/minecraft/models/fish/kumanomi.json index 02ef3d33..440e5787 100644 --- a/pack/assets/minecraft/models/fish/kumanomi.json +++ b/pack/assets/minecraft/models/fish/kumanomi.json @@ -2,695 +2,3687 @@ "__name": "クマノミ", "credit": "Made with Blockbench", "textures": { - "0": "fish/kumanomi", - "particle": "fish/kumanomi" + "0": "item/fish/kumanomi", + "particle": "item/fish/kumanomi" }, "elements": [ { "name": "kumanomi_0", - "from": [5.5, 0, 3.5], - "to": [6.75, 0.25, 11], + "from": [ + 5.5, + 0, + 3.5 + ], + "to": [ + 6.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.75, 3.5, 5.5, 3.75], "texture": "#0"}, - "east": {"uv": [6.5, 3.5, 6.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.75, 6.75, 11], "texture": "#0"}, - "west": {"uv": [5.5, 3.5, 5.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3.5, 6.75, 11], "texture": "#0"}, - "down": {"uv": [5.5, 11, 6.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 3.5, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3.5, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.75, + 6.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.5, + 5.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.5, + 6.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 11, + 6.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_1", - "from": [5, 0, 3.75], - "to": [5.5, 0.25, 10.5], + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 3.75, 5, 4], "texture": "#0"}, - "east": {"uv": [5.25, 3.75, 5.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.25, 5.5, 10.5], "texture": "#0"}, - "west": {"uv": [5, 3.75, 5.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 3.75, 5.5, 10.5], "texture": "#0"}, - "down": {"uv": [5, 10.5, 5.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 3.75, + 5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.75, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_2", - "from": [6.75, 0, 3.75], - "to": [7, 0.25, 9.75], + "from": [ + 6.75, + 0, + 3.75 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 3.75, 6.75, 4], "texture": "#0"}, - "east": {"uv": [6.75, 3.75, 7, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#0"}, - "west": {"uv": [6.75, 3.75, 7, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.75, 7, 9.75], "texture": "#0"}, - "down": {"uv": [6.75, 9.75, 7, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.75, + 7, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 3.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_3", - "from": [4.75, 0, 4], - "to": [5, 0.25, 10.25], + "from": [ + 4.75, + 0, + 4 + ], + "to": [ + 5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5, 4, 4.75, 4.25], "texture": "#0"}, - "east": {"uv": [4.75, 4, 5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10, 5, 10.25], "texture": "#0"}, - "west": {"uv": [4.75, 4, 5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4, 5, 10.25], "texture": "#0"}, - "down": {"uv": [4.75, 10.25, 5, 4], "texture": "#0"} + "north": { + "uv": [ + 5, + 4, + 4.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4, + 5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4, + 5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 5, + 4 + ], + "texture": "#0" + } } }, { "name": "kumanomi_4", - "from": [7, 0, 4], - "to": [7.25, 0.25, 9.75], + "from": [ + 7, + 0, + 4 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.25, 4, 7, 4.25], "texture": "#0"}, - "east": {"uv": [7, 4, 7.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#0"}, - "west": {"uv": [7, 4, 7.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4, 7.25, 9.75], "texture": "#0"}, - "down": {"uv": [7, 9.75, 7.25, 4], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 4, + 7, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 7.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.75, + 7.25, + 4 + ], + "texture": "#0" + } } }, { "name": "kumanomi_5", - "from": [4.5, 0, 4.25], - "to": [4.75, 0.25, 10], + "from": [ + 4.5, + 0, + 4.25 + ], + "to": [ + 4.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.75, 4.25, 4.5, 4.5], "texture": "#0"}, - "east": {"uv": [4.5, 4.25, 4.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.75, 4.75, 10], "texture": "#0"}, - "west": {"uv": [4.5, 4.25, 4.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.25, 4.75, 10], "texture": "#0"}, - "down": {"uv": [4.5, 10, 4.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 4.25, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.25, + 4.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.25, + 4.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10, + 4.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_6", - "from": [9.5, 0, 4.25], - "to": [10.5, 0.25, 10.5], + "from": [ + 9.5, + 0, + 4.25 + ], + "to": [ + 10.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.5, 4.25, 9.5, 4.5], "texture": "#0"}, - "east": {"uv": [10.25, 4.25, 10.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.25, 10.5, 10.5], "texture": "#0"}, - "west": {"uv": [9.5, 4.25, 9.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 4.25, 10.5, 10.5], "texture": "#0"}, - "down": {"uv": [9.5, 10.5, 10.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 4.25, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 4.25, + 10.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4.25, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 10.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_7", - "from": [4.25, 0, 4.5], - "to": [4.5, 0.25, 10], + "from": [ + 4.25, + 0, + 4.5 + ], + "to": [ + 4.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.5, 4.5, 4.25, 4.75], "texture": "#0"}, - "east": {"uv": [4.25, 4.5, 4.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.75, 4.5, 10], "texture": "#0"}, - "west": {"uv": [4.25, 4.5, 4.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.5, 4.5, 10], "texture": "#0"}, - "down": {"uv": [4.25, 10, 4.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 4.5, + 4.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.5, + 4.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.5, + 4.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.5, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10, + 4.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_8", - "from": [7.25, 0, 4.5], - "to": [7.5, 0.25, 9.75], + "from": [ + 7.25, + 0, + 4.5 + ], + "to": [ + 7.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.5, 4.5, 7.25, 4.75], "texture": "#0"}, - "east": {"uv": [7.25, 4.5, 7.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#0"}, - "west": {"uv": [7.25, 4.5, 7.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.5, 7.5, 9.75], "texture": "#0"}, - "down": {"uv": [7.25, 9.75, 7.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.5, + 7.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 7.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_9", - "from": [9, 0, 4.5], - "to": [9.5, 0.25, 10.5], + "from": [ + 9, + 0, + 4.5 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.5, 4.5, 9, 4.75], "texture": "#0"}, - "east": {"uv": [9.25, 4.5, 9.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.25, 9.5, 10.5], "texture": "#0"}, - "west": {"uv": [9, 4.5, 9.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4.5, 9.5, 10.5], "texture": "#0"}, - "down": {"uv": [9, 10.5, 9.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 4.5, + 9, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4.5, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.5, + 9.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4.5, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.5, + 9.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_10", - "from": [10.5, 0, 4.5], - "to": [10.75, 0.25, 10.75], + "from": [ + 10.5, + 0, + 4.5 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 4.5, 10.5, 4.75], "texture": "#0"}, - "east": {"uv": [10.5, 4.5, 10.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10.5, 10.75, 10.75], "texture": "#0"}, - "west": {"uv": [10.5, 4.5, 10.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 10.75, 10.75], "texture": "#0"}, - "down": {"uv": [10.5, 10.75, 10.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 4.5, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4.5, + 10.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 4.5, + 10.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.75, + 10.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_11", - "from": [4, 0, 4.75], - "to": [4.25, 0.25, 10], + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.25, 4.75, 4, 5], "texture": "#0"}, - "east": {"uv": [4, 4.75, 4.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.75, 4.25, 10], "texture": "#0"}, - "west": {"uv": [4, 4.75, 4.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4.75, 4.25, 10], "texture": "#0"}, - "down": {"uv": [4, 10, 4.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 4.75, + 4, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4.75, + 4.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10, + 4.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_12", - "from": [8.75, 0, 4.75], - "to": [9, 0.25, 10.25], + "from": [ + 8.75, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 4.75, 8.75, 5], "texture": "#0"}, - "east": {"uv": [8.75, 4.75, 9, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#0"}, - "west": {"uv": [8.75, 4.75, 9, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.75, 9, 10.25], "texture": "#0"}, - "down": {"uv": [8.75, 10.25, 9, 4.75], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.75, + 8.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.75, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.75, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_13", - "from": [10.75, 0, 4.75], - "to": [11, 0.25, 10.75], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 4.75, 10.75, 5], "texture": "#0"}, - "east": {"uv": [10.75, 4.75, 11, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10.5, 11, 10.75], "texture": "#0"}, - "west": {"uv": [10.75, 4.75, 11, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 4.75, 11, 10.75], "texture": "#0"}, - "down": {"uv": [10.75, 10.75, 11, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 4.75, + 10.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4.75, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11, + 4.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_14", - "from": [3.5, 0, 5], - "to": [4, 0.25, 9.75], + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4, 5, 3.5, 5.25], "texture": "#0"}, - "east": {"uv": [3.75, 5, 4, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.5, 4, 9.75], "texture": "#0"}, - "west": {"uv": [3.5, 5, 3.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5, 4, 9.75], "texture": "#0"}, - "down": {"uv": [3.5, 9.75, 4, 5], "texture": "#0"} + "north": { + "uv": [ + 4, + 5, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5, + 4, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 4, + 5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_15", - "from": [7.5, 0, 5], - "to": [8.75, 0.25, 9.75], + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 8.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.75, 5, 7.5, 5.25], "texture": "#0"}, - "east": {"uv": [8.5, 5, 8.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.5, 8.75, 9.75], "texture": "#0"}, - "west": {"uv": [7.5, 5, 7.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5, 8.75, 9.75], "texture": "#0"}, - "down": {"uv": [7.5, 9.75, 8.75, 5], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5, + 8.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.75, + 8.75, + 5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_16", - "from": [11, 0, 5], - "to": [11.25, 0.25, 6.25], + "from": [ + 11, + 0, + 5 + ], + "to": [ + 11.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.25, 5, 11, 5.25], "texture": "#0"}, - "east": {"uv": [11, 5, 11.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6, 11.25, 6.25], "texture": "#0"}, - "west": {"uv": [11, 5, 11.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 5, 11.25, 6.25], "texture": "#0"}, - "down": {"uv": [11, 6.25, 11.25, 5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 5, + 11, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 5, + 11.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5, + 11.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.25, + 11.25, + 5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_17", - "from": [3, 0, 5.25], - "to": [3.5, 0.25, 9.75], + "from": [ + 3, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.5, 5.25, 3, 5.5], "texture": "#0"}, - "east": {"uv": [3.25, 5.25, 3.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.5, 3.5, 9.75], "texture": "#0"}, - "west": {"uv": [3, 5.25, 3.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5.25, 3.5, 9.75], "texture": "#0"}, - "down": {"uv": [3, 9.75, 3.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 5.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.25, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_18", - "from": [11.25, 0, 5.25], - "to": [11.5, 0.25, 6], + "from": [ + 11.25, + 0, + 5.25 + ], + "to": [ + 11.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11.5, 5.25, 11.25, 5.5], "texture": "#0"}, - "east": {"uv": [11.25, 5.25, 11.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 5.75, 11.5, 6], "texture": "#0"}, - "west": {"uv": [11.25, 5.25, 11.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 5.25, 11.5, 6], "texture": "#0"}, - "down": {"uv": [11.25, 6, 11.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 5.25, + 11.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 5.25, + 11.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 5.25, + 11.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 5.25, + 11.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6, + 11.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_19", - "from": [2.75, 0, 5.5], - "to": [3, 0.25, 9.5], + "from": [ + 2.75, + 0, + 5.5 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 5.5, 2.75, 5.75], "texture": "#0"}, - "east": {"uv": [2.75, 5.5, 3, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#0"}, - "west": {"uv": [2.75, 5.5, 3, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.5, 3, 9.5], "texture": "#0"}, - "down": {"uv": [2.75, 9.5, 3, 5.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 5.5, + 2.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5.5, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.5, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.5, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 3, + 5.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_20", - "from": [13, 0, 5.5], - "to": [14, 0.25, 9.75], + "from": [ + 13, + 0, + 5.5 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 5.5, 13, 5.75], "texture": "#0"}, - "east": {"uv": [13.75, 5.5, 14, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9.5, 14, 9.75], "texture": "#0"}, - "west": {"uv": [13, 5.5, 13.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 5.5, 14, 9.75], "texture": "#0"}, - "down": {"uv": [13, 9.75, 14, 5.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 5.5, + 13, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 5.5, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9.5, + 14, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5.5, + 13.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 5.5, + 14, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.75, + 14, + 5.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_21", - "from": [2.5, 0, 5.75], - "to": [2.75, 0.25, 9.5], + "from": [ + 2.5, + 0, + 5.75 + ], + "to": [ + 2.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.75, 5.75, 2.5, 6], "texture": "#0"}, - "east": {"uv": [2.5, 5.75, 2.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.25, 2.75, 9.5], "texture": "#0"}, - "west": {"uv": [2.5, 5.75, 2.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.75, 2.75, 9.5], "texture": "#0"}, - "down": {"uv": [2.5, 9.5, 2.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 5.75, + 2.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.75, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.75, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 2.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_22", - "from": [12.5, 0, 5.75], - "to": [13, 0.25, 9.5], + "from": [ + 12.5, + 0, + 5.75 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 5.75, 12.5, 6], "texture": "#0"}, - "east": {"uv": [12.75, 5.75, 13, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 9.25, 13, 9.5], "texture": "#0"}, - "west": {"uv": [12.5, 5.75, 12.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 5.75, 13, 9.5], "texture": "#0"}, - "down": {"uv": [12.5, 9.5, 13, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 5.75, + 12.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 5.75, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 13, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 5.75, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5.75, + 13, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 13, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_23", - "from": [14, 0, 5.75], - "to": [14.5, 0.25, 9.5], + "from": [ + 14, + 0, + 5.75 + ], + "to": [ + 14.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.5, 5.75, 14, 6], "texture": "#0"}, - "east": {"uv": [14.25, 5.75, 14.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.25, 14.5, 9.5], "texture": "#0"}, - "west": {"uv": [14, 5.75, 14.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5.75, 14.5, 9.5], "texture": "#0"}, - "down": {"uv": [14, 9.5, 14.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 5.75, + 14, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 5.75, + 14.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.75, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5.75, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_24", - "from": [2.25, 0, 6], - "to": [2.5, 0.25, 9.25], + "from": [ + 2.25, + 0, + 6 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 6, 2.25, 6.25], "texture": "#0"}, - "east": {"uv": [2.25, 6, 2.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 6, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6, 2.5, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 2.5, 6], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6, + 2.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.5, + 6 + ], + "texture": "#0" + } } }, { "name": "kumanomi_25", - "from": [12.25, 0, 6], - "to": [12.5, 0.25, 9.25], + "from": [ + 12.25, + 0, + 6 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 6, 12.25, 6.25], "texture": "#0"}, - "east": {"uv": [12.25, 6, 12.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 9, 12.5, 9.25], "texture": "#0"}, - "west": {"uv": [12.25, 6, 12.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6, 12.5, 9.25], "texture": "#0"}, - "down": {"uv": [12.25, 9.25, 12.5, 6], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6, + 12.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6, + 12.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 9.25, + 12.5, + 6 + ], + "texture": "#0" + } } }, { "name": "kumanomi_26", - "from": [14.5, 0, 6], - "to": [14.75, 0.25, 9.25], + "from": [ + 14.5, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.75, 6, 14.5, 6.25], "texture": "#0"}, - "east": {"uv": [14.5, 6, 14.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9, 14.75, 9.25], "texture": "#0"}, - "west": {"uv": [14.5, 6, 14.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6, 14.75, 9.25], "texture": "#0"}, - "down": {"uv": [14.5, 9.25, 14.75, 6], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6, + 14.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 14.75, + 6 + ], + "texture": "#0" + } } }, { "name": "kumanomi_27", - "from": [2, 0, 6.25], - "to": [2.25, 0.25, 9.25], + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 6.25, 2, 6.5], "texture": "#0"}, - "east": {"uv": [2, 6.25, 2.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9, 2.25, 9.25], "texture": "#0"}, - "west": {"uv": [2, 6.25, 2.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.25, 2.25, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.25, 2.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.25, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_28", - "from": [12, 0, 6.25], - "to": [12.25, 0.25, 9], + "from": [ + 12, + 0, + 6.25 + ], + "to": [ + 12.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.25, 6.25, 12, 6.5], "texture": "#0"}, - "east": {"uv": [12, 6.25, 12.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, - "west": {"uv": [12, 6.25, 12.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.25, 12.25, 9], "texture": "#0"}, - "down": {"uv": [12, 9, 12.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 6.25, + 12, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.25, + 12.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.25, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.25, + 12.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9, + 12.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_29", - "from": [14.75, 0, 6.25], - "to": [15, 0.25, 9], + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15, 6.25, 14.75, 6.5], "texture": "#0"}, - "east": {"uv": [14.75, 6.25, 15, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.75, 15, 9], "texture": "#0"}, - "west": {"uv": [14.75, 6.25, 15, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6.25, 15, 9], "texture": "#0"}, - "down": {"uv": [14.75, 9, 15, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9, + 15, + 6.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_30", - "from": [1.75, 0, 6.5], - "to": [2, 0.25, 9], + "from": [ + 1.75, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 6.5, 1.75, 6.75], "texture": "#0"}, - "east": {"uv": [1.75, 6.5, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.75, 6.5, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.5, 2, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.5, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_31", - "from": [11, 0, 6.5], - "to": [12, 0.25, 8.75], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12, 6.5, 11, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.5, 12, 8.75], "texture": "#0"}, - "west": {"uv": [11, 6.5, 11.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.5, 12, 8.75], "texture": "#0"}, - "down": {"uv": [11, 8.75, 12, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.75, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_32", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 8.75], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#0"}, - "east": {"uv": [15, 6.5, 15.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#0"}, - "west": {"uv": [15, 6.5, 15.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.5, 15.25, 8.75], "texture": "#0"}, - "down": {"uv": [15, 8.75, 15.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_33", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 8.75], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.5, 6.75, 1.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.5, 1.75, 8.75], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 1.75, 8.75], "texture": "#0"}, - "down": {"uv": [1.5, 8.75, 1.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 1.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_34", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 8.5], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.25, 1.5, 8.5], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 8.5], "texture": "#0"}, - "down": {"uv": [1.25, 8.5, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.5, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "kumanomi_35", - "from": [15.25, 0, 7], - "to": [15.5, 0.25, 8.5], + "from": [ + 15.25, + 0, + 7 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.5, 7, 15.25, 7.25], "texture": "#0"}, - "east": {"uv": [15.25, 7, 15.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "west": {"uv": [15.25, 7, 15.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7, 15.5, 8.5], "texture": "#0"}, - "down": {"uv": [15.25, 8.5, 15.5, 7], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.5, + 15.5, + 7 + ], + "texture": "#0" + } } }, { "name": "kumanomi_36", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 8], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1, 7.5, 1.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.75, 1.25, 8], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.25, 8], "texture": "#0"}, - "down": {"uv": [1, 8, 1.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8, + 1.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_37", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 9], + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#0"}, - "east": {"uv": [11.75, 8.75, 12, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "west": {"uv": [11.75, 8.75, 12, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "down": {"uv": [11.75, 9, 12, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 8.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_38", - "from": [11, 0, 9], - "to": [11.25, 0.25, 10.5], + "from": [ + 11, + 0, + 9 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 9, 11, 9.25], "texture": "#0"}, - "east": {"uv": [11, 9, 11.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.25, 11.25, 10.5], "texture": "#0"}, - "west": {"uv": [11, 9, 11.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9, 11.25, 10.5], "texture": "#0"}, - "down": {"uv": [11, 10.5, 11.25, 9], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.25, + 9 + ], + "texture": "#0" + } } }, { "name": "kumanomi_39", - "from": [11.25, 0, 9.25], - "to": [11.5, 0.25, 10.25], + "from": [ + 11.25, + 0, + 9.25 + ], + "to": [ + 11.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.5, 9.25, 11.25, 9.5], "texture": "#0"}, - "east": {"uv": [11.25, 9.25, 11.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10, 11.5, 10.25], "texture": "#0"}, - "west": {"uv": [11.25, 9.25, 11.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9.25, 11.5, 10.25], "texture": "#0"}, - "down": {"uv": [11.25, 10.25, 11.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10, + 11.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9.25, + 11.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10.25, + 11.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_40", - "from": [3.75, 0, 9.75], - "to": [4, 0.25, 10], + "from": [ + 3.75, + 0, + 9.75 + ], + "to": [ + 4, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4, 9.75, 3.75, 10], "texture": "#0"}, - "east": {"uv": [3.75, 9.75, 4, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.75, 4, 10], "texture": "#0"}, - "west": {"uv": [3.75, 9.75, 4, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.75, 4, 10], "texture": "#0"}, - "down": {"uv": [3.75, 10, 4, 9.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10, + 4, + 9.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_41", - "from": [8.25, 0, 9.75], - "to": [8.75, 0.25, 10], + "from": [ + 8.25, + 0, + 9.75 + ], + "to": [ + 8.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.75, 9.75, 8.25, 10], "texture": "#0"}, - "east": {"uv": [8.5, 9.75, 8.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.75, 8.75, 10], "texture": "#0"}, - "west": {"uv": [8.25, 9.75, 8.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.75, 8.75, 10], "texture": "#0"}, - "down": {"uv": [8.25, 10, 8.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 9.75, + 8.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10, + 8.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "kumanomi_42", - "from": [6.75, 0, 10], - "to": [7, 0.25, 11.25], + "from": [ + 6.75, + 0, + 10 + ], + "to": [ + 7, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7, 10, 6.75, 10.25], "texture": "#0"}, - "east": {"uv": [6.75, 10, 7, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 11, 7, 11.25], "texture": "#0"}, - "west": {"uv": [6.75, 10, 7, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10, 7, 11.25], "texture": "#0"}, - "down": {"uv": [6.75, 11.25, 7, 10], "texture": "#0"} + "north": { + "uv": [ + 7, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10, + 7, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 11, + 7, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10, + 7, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10, + 7, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 11.25, + 7, + 10 + ], + "texture": "#0" + } } }, { "name": "kumanomi_43", - "from": [8.5, 0, 10], - "to": [8.75, 0.25, 10.25], + "from": [ + 8.5, + 0, + 10 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 10, 8.5, 10.25], "texture": "#0"}, - "east": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#0"}, - "down": {"uv": [8.5, 10.25, 8.75, 10], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10 + ], + "texture": "#0" + } } }, { "name": "kumanomi_44", - "from": [7, 0, 10.25], - "to": [7.25, 0.25, 11], + "from": [ + 7, + 0, + 10.25 + ], + "to": [ + 7.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.25, 10.25, 7, 10.5], "texture": "#0"}, - "east": {"uv": [7, 10.25, 7.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.75, 7.25, 11], "texture": "#0"}, - "west": {"uv": [7, 10.25, 7.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10.25, 7.25, 11], "texture": "#0"}, - "down": {"uv": [7, 11, 7.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 10.25, + 7, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10.25, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.25, + 7.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.25, + 7.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11, + 7.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "kumanomi_45", - "from": [5.25, 0, 10.5], - "to": [5.5, 0.25, 10.75], + "from": [ + 5.25, + 0, + 10.5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.5, 10.5, 5.25, 10.75], "texture": "#0"}, - "east": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#0"}, - "west": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#0"}, - "down": {"uv": [5.25, 10.75, 5.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 5.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_46", - "from": [9.75, 0, 10.5], - "to": [10.5, 0.25, 10.75], + "from": [ + 9.75, + 0, + 10.5 + ], + "to": [ + 10.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.5, 10.5, 9.75, 10.75], "texture": "#0"}, - "east": {"uv": [10.25, 10.5, 10.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.5, 10.5, 10.75], "texture": "#0"}, - "west": {"uv": [9.75, 10.5, 10, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10.5, 10.5, 10.75], "texture": "#0"}, - "down": {"uv": [9.75, 10.75, 10.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 10.5, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 10.5, + 10.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.5, + 10.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10.5, + 10.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.75, + 10.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "kumanomi_47", - "from": [5.75, 0, 11], - "to": [6.75, 0.25, 11.25], + "from": [ + 5.75, + 0, + 11 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 11, 5.75, 11.25], "texture": "#0"}, - "east": {"uv": [6.5, 11, 6.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11, 6.75, 11.25], "texture": "#0"}, - "west": {"uv": [5.75, 11, 6, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11, 6.75, 11.25], "texture": "#0"}, - "down": {"uv": [5.75, 11.25, 6.75, 11], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11, + 5.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.25, + 6.75, + 11 + ], + "texture": "#0" + } } }, { "name": "kumanomi_48", - "from": [6.25, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.25, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.25, 11.5], "texture": "#0"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#0"}, - "west": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#0"}, - "down": {"uv": [6.25, 11.5, 6.75, 11.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.25, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.75, + 11.25 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "kumanomi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/kurione.json b/pack/assets/minecraft/models/fish/kurione.json index 64b1f871..a1c33394 100644 --- a/pack/assets/minecraft/models/fish/kurione.json +++ b/pack/assets/minecraft/models/fish/kurione.json @@ -2,461 +2,2391 @@ "__name": "クリオネ", "credit": "Made with Blockbench", "textures": { - "0": "fish/kurione", - "particle": "fish/kurione" + "0": "item/fish/kurione", + "particle": "item/fish/kurione" }, "elements": [ { "name": "kurione_0", - "from": [6.25, 0, 2.75], - "to": [6.5, 0.25, 11.5], + "from": [ + 6.25, + 0, + 2.75 + ], + "to": [ + 6.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.5, 2.75, 6.25, 3], "texture": "#0"}, - "east": {"uv": [6.25, 2.75, 6.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.25, 6.5, 11.5], "texture": "#0"}, - "west": {"uv": [6.25, 2.75, 6.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 2.75, 6.5, 11.5], "texture": "#0"}, - "down": {"uv": [6.25, 11.5, 6.5, 2.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 2.75, + 6.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.75, + 6.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 2.75, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 2.75, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.5, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kurione_1", - "from": [8.25, 0, 2.75], - "to": [8.5, 0.25, 10.5], + "from": [ + 8.25, + 0, + 2.75 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 2.75, 8.25, 3], "texture": "#0"}, - "east": {"uv": [8.25, 2.75, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [8.25, 2.75, 8.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 2.75, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [8.25, 10.5, 8.5, 2.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 2.75, + 8.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2.75, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 2.75, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 2.75, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 2.75 + ], + "texture": "#0" + } } }, { "name": "kurione_2", - "from": [6, 0, 3], - "to": [6.25, 0.25, 9.25], + "from": [ + 6, + 0, + 3 + ], + "to": [ + 6.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.25, 3, 6, 3.25], "texture": "#0"}, - "east": {"uv": [6, 3, 6.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9, 6.25, 9.25], "texture": "#0"}, - "west": {"uv": [6, 3, 6.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 3, 6.25, 9.25], "texture": "#0"}, - "down": {"uv": [6, 9.25, 6.25, 3], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 3, + 6, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3, + 6.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3, + 6.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 3, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.25, + 6.25, + 3 + ], + "texture": "#0" + } } }, { "name": "kurione_3", - "from": [6.5, 0, 3], - "to": [6.75, 0.25, 13], + "from": [ + 6.5, + 0, + 3 + ], + "to": [ + 6.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [6.75, 3, 6.5, 3.25], "texture": "#0"}, - "east": {"uv": [6.5, 3, 6.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 12.75, 6.75, 13], "texture": "#0"}, - "west": {"uv": [6.5, 3, 6.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 3, 6.75, 13], "texture": "#0"}, - "down": {"uv": [6.5, 13, 6.75, 3], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 3, + 6.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3, + 6.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12.75, + 6.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 3, + 6.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 3, + 6.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 13, + 6.75, + 3 + ], + "texture": "#0" + } } }, { "name": "kurione_4", - "from": [8, 0, 3], - "to": [8.25, 0.25, 11.75], + "from": [ + 8, + 0, + 3 + ], + "to": [ + 8.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [8.25, 3, 8, 3.25], "texture": "#0"}, - "east": {"uv": [8, 3, 8.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 11.5, 8.25, 11.75], "texture": "#0"}, - "west": {"uv": [8, 3, 8.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 3, 8.25, 11.75], "texture": "#0"}, - "down": {"uv": [8, 11.75, 8.25, 3], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 3, + 8, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3, + 8.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 11.5, + 8.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3, + 8.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 3, + 8.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 11.75, + 8.25, + 3 + ], + "texture": "#0" + } } }, { "name": "kurione_5", - "from": [8.5, 0, 3], - "to": [8.75, 0.25, 9.25], + "from": [ + 8.5, + 0, + 3 + ], + "to": [ + 8.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.75, 3, 8.5, 3.25], "texture": "#0"}, - "east": {"uv": [8.5, 3, 8.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9, 8.75, 9.25], "texture": "#0"}, - "west": {"uv": [8.5, 3, 8.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 3, 8.75, 9.25], "texture": "#0"}, - "down": {"uv": [8.5, 9.25, 8.75, 3], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 3, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 8.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 8.75, + 3 + ], + "texture": "#0" + } } }, { "name": "kurione_6", - "from": [6.75, 0, 3.25], - "to": [8, 0.25, 12.5], + "from": [ + 6.75, + 0, + 3.25 + ], + "to": [ + 8, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8, 3.25, 6.75, 3.5], "texture": "#0"}, - "east": {"uv": [7.75, 3.25, 8, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 12.25, 8, 12.5], "texture": "#0"}, - "west": {"uv": [6.75, 3.25, 7, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.25, 8, 12.5], "texture": "#0"}, - "down": {"uv": [6.75, 12.5, 8, 3.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 3.25, + 6.75, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3.25, + 8, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 12.25, + 8, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.25, + 7, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.25, + 8, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 12.5, + 8, + 3.25 + ], + "texture": "#0" + } } }, { "name": "kurione_7", - "from": [5.75, 0, 4.25], - "to": [6, 0.25, 5.25], + "from": [ + 5.75, + 0, + 4.25 + ], + "to": [ + 6, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [6, 4.25, 5.75, 4.5], "texture": "#0"}, - "east": {"uv": [5.75, 4.25, 6, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5, 6, 5.25], "texture": "#0"}, - "west": {"uv": [5.75, 4.25, 6, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.25, 6, 5.25], "texture": "#0"}, - "down": {"uv": [5.75, 5.25, 6, 4.25], "texture": "#0"} + "north": { + "uv": [ + 6, + 4.25, + 5.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.25, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.25, + 6, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.25, + 6, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.25, + 6, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kurione_8", - "from": [8.75, 0, 4.25], - "to": [9, 0.25, 5.25], + "from": [ + 8.75, + 0, + 4.25 + ], + "to": [ + 9, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [9, 4.25, 8.75, 4.5], "texture": "#0"}, - "east": {"uv": [8.75, 4.25, 9, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 5, 9, 5.25], "texture": "#0"}, - "west": {"uv": [8.75, 4.25, 9, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.25, 9, 5.25], "texture": "#0"}, - "down": {"uv": [8.75, 5.25, 9, 4.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.25, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.25, + 9, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.25, + 9, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.25, + 9, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5.25, + 9, + 4.25 + ], + "texture": "#0" + } } }, { "name": "kurione_9", - "from": [5.5, 0, 5.5], - "to": [6, 0.25, 7.5], + "from": [ + 5.5, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [6, 5.5, 5.5, 5.75], "texture": "#0"}, - "east": {"uv": [5.75, 5.5, 6, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 7.25, 6, 7.5], "texture": "#0"}, - "west": {"uv": [5.5, 5.5, 5.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.5, 6, 7.5], "texture": "#0"}, - "down": {"uv": [5.5, 7.5, 6, 5.5], "texture": "#0"} + "north": { + "uv": [ + 6, + 5.5, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.25, + 6, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.5, + 5.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.5, + 6, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.5, + 6, + 5.5 + ], + "texture": "#0" + } } }, { "name": "kurione_10", - "from": [8.75, 0, 5.5], - "to": [9.25, 0.25, 7.5], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [9.25, 5.5, 8.75, 5.75], "texture": "#0"}, - "east": {"uv": [9, 5.5, 9.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 7.25, 9.25, 7.5], "texture": "#0"}, - "west": {"uv": [8.75, 5.5, 9, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.5, 9.25, 7.5], "texture": "#0"}, - "down": {"uv": [8.75, 7.5, 9.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 7.5, + 9.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "kurione_11", - "from": [2.75, 0, 5.75], - "to": [5.5, 0.25, 6], + "from": [ + 2.75, + 0, + 5.75 + ], + "to": [ + 5.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [5.5, 5.75, 2.75, 6], "texture": "#0"}, - "east": {"uv": [5.25, 5.75, 5.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5.75, 5.5, 6], "texture": "#0"}, - "west": {"uv": [2.75, 5.75, 3, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.75, 5.5, 6], "texture": "#0"}, - "down": {"uv": [2.75, 6, 5.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 5.75, + 2.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.75, + 5.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.75, + 3, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6, + 5.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kurione_12", - "from": [9.25, 0, 5.75], - "to": [10.75, 0.25, 7.25], + "from": [ + 9.25, + 0, + 5.75 + ], + "to": [ + 10.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [10.75, 5.75, 9.25, 6], "texture": "#0"}, - "east": {"uv": [10.5, 5.75, 10.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7, 10.75, 7.25], "texture": "#0"}, - "west": {"uv": [9.25, 5.75, 9.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.75, 10.75, 7.25], "texture": "#0"}, - "down": {"uv": [9.25, 7.25, 10.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.75, + 10.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.75, + 9.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.75, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.25, + 10.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kurione_13", - "from": [10.75, 0, 5.75], - "to": [11.5, 0.25, 6.5], + "from": [ + 10.75, + 0, + 5.75 + ], + "to": [ + 11.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11.5, 5.75, 10.75, 6], "texture": "#0"}, - "east": {"uv": [11.25, 5.75, 11.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.25, 11.5, 6.5], "texture": "#0"}, - "west": {"uv": [10.75, 5.75, 11, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.75, 11.5, 6.5], "texture": "#0"}, - "down": {"uv": [10.75, 6.5, 11.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.25, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.75, + 11, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.75, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6.5, + 11.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kurione_14", - "from": [11.5, 0, 5.75], - "to": [12, 0.25, 6], + "from": [ + 11.5, + 0, + 5.75 + ], + "to": [ + 12, + 0.25, + 6 + ], "faces": { - "north": {"uv": [12, 5.75, 11.5, 6], "texture": "#0"}, - "east": {"uv": [11.75, 5.75, 12, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 5.75, 12, 6], "texture": "#0"}, - "west": {"uv": [11.5, 5.75, 11.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 5.75, 12, 6], "texture": "#0"}, - "down": {"uv": [11.5, 6, 12, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.75, + 11.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.75, + 12, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 5.75, + 12, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 5.75, + 12, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6, + 12, + 5.75 + ], + "texture": "#0" + } } }, { "name": "kurione_15", - "from": [3, 0, 6], - "to": [5.5, 0.25, 6.25], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 5.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [5.5, 6, 3, 6.25], "texture": "#0"}, - "east": {"uv": [5.25, 6, 5.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6, 5.5, 6.25], "texture": "#0"}, - "west": {"uv": [3, 6, 3.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6, 5.5, 6.25], "texture": "#0"}, - "down": {"uv": [3, 6.25, 5.5, 6], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6, + 5.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.25, + 5.5, + 6 + ], + "texture": "#0" + } } }, { "name": "kurione_16", - "from": [11.5, 0, 6], - "to": [11.75, 0.25, 6.25], + "from": [ + 11.5, + 0, + 6 + ], + "to": [ + 11.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.75, 6, 11.5, 6.25], "texture": "#0"}, - "east": {"uv": [11.5, 6, 11.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6, 11.75, 6.25], "texture": "#0"}, - "west": {"uv": [11.5, 6, 11.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6, 11.75, 6.25], "texture": "#0"}, - "down": {"uv": [11.5, 6.25, 11.75, 6], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6 + ], + "texture": "#0" + } } }, { "name": "kurione_17", - "from": [3.25, 0, 6.25], - "to": [5.5, 0.25, 6.5], + "from": [ + 3.25, + 0, + 6.25 + ], + "to": [ + 5.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [5.5, 6.25, 3.25, 6.5], "texture": "#0"}, - "east": {"uv": [5.25, 6.25, 5.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6.25, 5.5, 6.5], "texture": "#0"}, - "west": {"uv": [3.25, 6.25, 3.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.25, 5.5, 6.5], "texture": "#0"}, - "down": {"uv": [3.25, 6.5, 5.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.25, + 3.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6.5, + 5.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "kurione_18", - "from": [3.5, 0, 6.5], - "to": [5.5, 0.25, 6.75], + "from": [ + 3.5, + 0, + 6.5 + ], + "to": [ + 5.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [5.5, 6.5, 3.5, 6.75], "texture": "#0"}, - "east": {"uv": [5.25, 6.5, 5.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6.5, 5.5, 6.75], "texture": "#0"}, - "west": {"uv": [3.5, 6.5, 3.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.5, 5.5, 6.75], "texture": "#0"}, - "down": {"uv": [3.5, 6.75, 5.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6.75, + 5.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kurione_19", - "from": [10.75, 0, 6.5], - "to": [11.25, 0.25, 6.75], + "from": [ + 10.75, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [11.25, 6.5, 10.75, 6.75], "texture": "#0"}, - "east": {"uv": [11, 6.5, 11.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.5, 11.25, 6.75], "texture": "#0"}, - "west": {"uv": [10.75, 6.5, 11, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.5, 11.25, 6.75], "texture": "#0"}, - "down": {"uv": [10.75, 6.75, 11.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.5, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6.75, + 11.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "kurione_20", - "from": [3.75, 0, 6.75], - "to": [5.5, 0.25, 7], + "from": [ + 3.75, + 0, + 6.75 + ], + "to": [ + 5.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [5.5, 6.75, 3.75, 7], "texture": "#0"}, - "east": {"uv": [5.25, 6.75, 5.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6.75, 5.5, 7], "texture": "#0"}, - "west": {"uv": [3.75, 6.75, 4, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.75, 5.5, 7], "texture": "#0"}, - "down": {"uv": [3.75, 7, 5.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.75, + 5.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.75, + 5.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.75, + 5.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7, + 5.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "kurione_21", - "from": [10.75, 0, 6.75], - "to": [11, 0.25, 7], + "from": [ + 10.75, + 0, + 6.75 + ], + "to": [ + 11, + 0.25, + 7 + ], "faces": { - "north": {"uv": [11, 6.75, 10.75, 7], "texture": "#0"}, - "east": {"uv": [10.75, 6.75, 11, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.75, 11, 7], "texture": "#0"}, - "west": {"uv": [10.75, 6.75, 11, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.75, 11, 7], "texture": "#0"}, - "down": {"uv": [10.75, 7, 11, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7, + 11, + 6.75 + ], + "texture": "#0" + } } }, { "name": "kurione_22", - "from": [4, 0, 7], - "to": [5.5, 0.25, 7.25], + "from": [ + 4, + 0, + 7 + ], + "to": [ + 5.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [5.5, 7, 4, 7.25], "texture": "#0"}, - "east": {"uv": [5.25, 7, 5.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7, 5.5, 7.25], "texture": "#0"}, - "west": {"uv": [4, 7, 4.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7, 5.5, 7.25], "texture": "#0"}, - "down": {"uv": [4, 7.25, 5.5, 7], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7, + 5.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.25, + 5.5, + 7 + ], + "texture": "#0" + } } }, { "name": "kurione_23", - "from": [4.25, 0, 7.25], - "to": [5.5, 0.25, 7.5], + "from": [ + 4.25, + 0, + 7.25 + ], + "to": [ + 5.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [5.5, 7.25, 4.25, 7.5], "texture": "#0"}, - "east": {"uv": [5.25, 7.25, 5.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.25, 5.5, 7.5], "texture": "#0"}, - "west": {"uv": [4.25, 7.25, 4.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.25, 5.5, 7.5], "texture": "#0"}, - "down": {"uv": [4.25, 7.5, 5.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 7.25, + 4.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7.5, + 5.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kurione_24", - "from": [9.25, 0, 7.25], - "to": [10, 0.25, 7.75], + "from": [ + 9.25, + 0, + 7.25 + ], + "to": [ + 10, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [10, 7.25, 9.25, 7.5], "texture": "#0"}, - "east": {"uv": [9.75, 7.25, 10, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7.5, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 7.25, 9.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7.25, 10, 7.75], "texture": "#0"}, - "down": {"uv": [9.25, 7.75, 10, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 7.25, + 10, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.25, + 10, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.75, + 10, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kurione_25", - "from": [10, 0, 7.25], - "to": [10.5, 0.25, 7.5], + "from": [ + 10, + 0, + 7.25 + ], + "to": [ + 10.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [10.5, 7.25, 10, 7.5], "texture": "#0"}, - "east": {"uv": [10.25, 7.25, 10.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.25, 10.5, 7.5], "texture": "#0"}, - "west": {"uv": [10, 7.25, 10.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7.25, 10.5, 7.5], "texture": "#0"}, - "down": {"uv": [10, 7.5, 10.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 7.25, + 10, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.5, + 10.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "kurione_26", - "from": [4.75, 0, 7.5], - "to": [5.75, 0.25, 7.75], + "from": [ + 4.75, + 0, + 7.5 + ], + "to": [ + 5.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [5.75, 7.5, 4.75, 7.75], "texture": "#0"}, - "east": {"uv": [5.5, 7.5, 5.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7.5, 5.75, 7.75], "texture": "#0"}, - "west": {"uv": [4.75, 7.5, 5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 7.5, 5.75, 7.75], "texture": "#0"}, - "down": {"uv": [4.75, 7.75, 5.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7.75, + 5.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kurione_27", - "from": [9, 0, 7.5], - "to": [9.25, 0.25, 7.75], + "from": [ + 9, + 0, + 7.5 + ], + "to": [ + 9.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [9.25, 7.5, 9, 7.75], "texture": "#0"}, - "east": {"uv": [9, 7.5, 9.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.5, 9.25, 7.75], "texture": "#0"}, - "west": {"uv": [9, 7.5, 9.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.5, 9.25, 7.75], "texture": "#0"}, - "down": {"uv": [9, 7.75, 9.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.75, + 9.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "kurione_28", - "from": [6.75, 0, 12.5], - "to": [7.5, 0.25, 13.25], + "from": [ + 6.75, + 0, + 12.5 + ], + "to": [ + 7.5, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [7.5, 12.5, 6.75, 12.75], "texture": "#0"}, - "east": {"uv": [7.25, 12.5, 7.5, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 13, 7.5, 13.25], "texture": "#0"}, - "west": {"uv": [6.75, 12.5, 7, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 12.5, 7.5, 13.25], "texture": "#0"}, - "down": {"uv": [6.75, 13.25, 7.5, 12.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 12.5, + 6.75, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 13, + 7.5, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 12.5, + 7, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 12.5, + 7.5, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 13.25, + 7.5, + 12.5 + ], + "texture": "#0" + } } }, { "name": "kurione_29", - "from": [7.5, 0, 12.5], - "to": [7.75, 0.25, 13], + "from": [ + 7.5, + 0, + 12.5 + ], + "to": [ + 7.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7.75, 12.5, 7.5, 12.75], "texture": "#0"}, - "east": {"uv": [7.5, 12.5, 7.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 12.75, 7.75, 13], "texture": "#0"}, - "west": {"uv": [7.5, 12.5, 7.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 12.5, 7.75, 13], "texture": "#0"}, - "down": {"uv": [7.5, 13, 7.75, 12.5], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 12.5, + 7.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 12.5, + 7.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 12.75, + 7.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 12.5, + 7.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 12.5, + 7.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 13, + 7.75, + 12.5 + ], + "texture": "#0" + } } }, { "name": "kurione_30", - "from": [7, 0, 13.25], - "to": [7.25, 0.25, 13.75], + "from": [ + 7, + 0, + 13.25 + ], + "to": [ + 7.25, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [7.25, 13.25, 7, 13.5], "texture": "#0"}, - "east": {"uv": [7, 13.25, 7.25, 13.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 13.5, 7.25, 13.75], "texture": "#0"}, - "west": {"uv": [7, 13.25, 7.25, 13.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 13.25, 7.25, 13.75], "texture": "#0"}, - "down": {"uv": [7, 13.75, 7.25, 13.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 13.25, + 7, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 13.25, + 7.25, + 13.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 13.5, + 7.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 13.25, + 7.25, + 13.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 13.25, + 7.25, + 13.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 13.75, + 7.25, + 13.25 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0.5, 8, -3.75], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 8, + -3.75 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "kurione", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/maguro.json b/pack/assets/minecraft/models/fish/maguro.json index 2402fb05..37218281 100644 --- a/pack/assets/minecraft/models/fish/maguro.json +++ b/pack/assets/minecraft/models/fish/maguro.json @@ -2,785 +2,4182 @@ "__name": "マグロ", "credit": "Made with Blockbench", "textures": { - "0": "fish/maguro", - "particle": "fish/maguro" + "0": "item/fish/maguro", + "particle": "item/fish/maguro" }, "elements": [ { "name": "maguro_0", - "from": [10, 0, 6.5], - "to": [10.75, 0.25, 7], + "from": [ + 10, + 0, + 6.5 + ], + "to": [ + 10.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [10.75, 6.5, 10, 6.75], "texture": "#0"}, - "east": {"uv": [10.5, 6.5, 10.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 6.75, 10.75, 7], "texture": "#0"}, - "west": {"uv": [10, 6.5, 10.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.5, 10.75, 7], "texture": "#0"}, - "down": {"uv": [10, 7, 10.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.5, + 10.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.5, + 10.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.5, + 10.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7, + 10.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "maguro_1", - "from": [9.5, 0, 6.75], - "to": [10, 0.25, 7.75], + "from": [ + 9.5, + 0, + 6.75 + ], + "to": [ + 10, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [10, 6.75, 9.5, 7], "texture": "#0"}, - "east": {"uv": [9.75, 6.75, 10, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.5, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.5, 6.75, 9.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.75, 10, 7.75], "texture": "#0"}, - "down": {"uv": [9.5, 7.75, 10, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.75, + 10, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.75, + 9.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.75, + 10, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7.75, + 10, + 6.75 + ], + "texture": "#0" + } } }, { "name": "maguro_2", - "from": [6.25, 0, 7], - "to": [7, 0.25, 12.25], + "from": [ + 6.25, + 0, + 7 + ], + "to": [ + 7, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7, 7, 6.25, 7.25], "texture": "#0"}, - "east": {"uv": [6.75, 7, 7, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 12, 7, 12.25], "texture": "#0"}, - "west": {"uv": [6.25, 7, 6.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7, 7, 12.25], "texture": "#0"}, - "down": {"uv": [6.25, 12.25, 7, 7], "texture": "#0"} + "north": { + "uv": [ + 7, + 7, + 6.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7, + 7, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 12, + 7, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7, + 6.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7, + 7, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12.25, + 7, + 7 + ], + "texture": "#0" + } } }, { "name": "maguro_3", - "from": [9.25, 0, 7], - "to": [9.5, 0.25, 12.25], + "from": [ + 9.25, + 0, + 7 + ], + "to": [ + 9.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [9.5, 7, 9.25, 7.25], "texture": "#0"}, - "east": {"uv": [9.25, 7, 9.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 12, 9.5, 12.25], "texture": "#0"}, - "west": {"uv": [9.25, 7, 9.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7, 9.5, 12.25], "texture": "#0"}, - "down": {"uv": [9.25, 12.25, 9.5, 7], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 7, + 9.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7, + 9.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 12, + 9.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7, + 9.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7, + 9.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 12.25, + 9.5, + 7 + ], + "texture": "#0" + } } }, { "name": "maguro_4", - "from": [10, 0, 7], - "to": [10.5, 0.25, 7.25], + "from": [ + 10, + 0, + 7 + ], + "to": [ + 10.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [10.5, 7, 10, 7.25], "texture": "#0"}, - "east": {"uv": [10.25, 7, 10.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7, 10.5, 7.25], "texture": "#0"}, - "west": {"uv": [10, 7, 10.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7, 10.5, 7.25], "texture": "#0"}, - "down": {"uv": [10, 7.25, 10.5, 7], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 7, + 10, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7, + 10.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.25, + 10.5, + 7 + ], + "texture": "#0" + } } }, { "name": "maguro_5", - "from": [5.5, 0, 7.25], - "to": [6.25, 0.25, 12.75], + "from": [ + 5.5, + 0, + 7.25 + ], + "to": [ + 6.25, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [6.25, 7.25, 5.5, 7.5], "texture": "#0"}, - "east": {"uv": [6, 7.25, 6.25, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 12.5, 6.25, 12.75], "texture": "#0"}, - "west": {"uv": [5.5, 7.25, 5.75, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7.25, 6.25, 12.75], "texture": "#0"}, - "down": {"uv": [5.5, 12.75, 6.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.25, + 6.25, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 12.5, + 6.25, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.25, + 5.75, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.25, + 6.25, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 12.75, + 6.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "maguro_6", - "from": [7, 0, 7.25], - "to": [7.25, 0.25, 12.25], + "from": [ + 7, + 0, + 7.25 + ], + "to": [ + 7.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.25, 7.25, 7, 7.5], "texture": "#0"}, - "east": {"uv": [7, 7.25, 7.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 12, 7.25, 12.25], "texture": "#0"}, - "west": {"uv": [7, 7.25, 7.25, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7.25, 7.25, 12.25], "texture": "#0"}, - "down": {"uv": [7, 12.25, 7.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 7.25, + 7, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7.25, + 7.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.25, + 7.25, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7.25, + 7.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 12.25, + 7.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "maguro_7", - "from": [8.75, 0, 7.25], - "to": [9.25, 0.25, 12], + "from": [ + 8.75, + 0, + 7.25 + ], + "to": [ + 9.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.25, 7.25, 8.75, 7.5], "texture": "#0"}, - "east": {"uv": [9, 7.25, 9.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11.75, 9.25, 12], "texture": "#0"}, - "west": {"uv": [8.75, 7.25, 9, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7.25, 9.25, 12], "texture": "#0"}, - "down": {"uv": [8.75, 12, 9.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 7.25, + 8.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.25, + 9.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11.75, + 9.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7.25, + 9, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7.25, + 9.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 12, + 9.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "maguro_8", - "from": [10, 0, 7.25], - "to": [10.25, 0.25, 7.5], + "from": [ + 10, + 0, + 7.25 + ], + "to": [ + 10.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [10.25, 7.25, 10, 7.5], "texture": "#0"}, - "east": {"uv": [10, 7.25, 10.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.25, 10.25, 7.5], "texture": "#0"}, - "west": {"uv": [10, 7.25, 10.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7.25, 10.25, 7.5], "texture": "#0"}, - "down": {"uv": [10, 7.5, 10.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 7.25, + 10, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.5, + 10.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "maguro_9", - "from": [15.25, 0, 7.25], - "to": [15.75, 0.25, 8], + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.75, 7.25, 15.25, 7.5], "texture": "#0"}, - "east": {"uv": [15.5, 7.25, 15.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7.75, 15.75, 8], "texture": "#0"}, - "west": {"uv": [15.25, 7.25, 15.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.25, 15.75, 8], "texture": "#0"}, - "down": {"uv": [15.25, 8, 15.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 7.25, + 15.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7.75, + 15.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8, + 15.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "maguro_10", - "from": [4.25, 0, 7.5], - "to": [5.5, 0.25, 12.25], + "from": [ + 4.25, + 0, + 7.5 + ], + "to": [ + 5.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [5.5, 7.5, 4.25, 7.75], "texture": "#0"}, - "east": {"uv": [5.25, 7.5, 5.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 12, 5.5, 12.25], "texture": "#0"}, - "west": {"uv": [4.25, 7.5, 4.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.5, 5.5, 12.25], "texture": "#0"}, - "down": {"uv": [4.25, 12.25, 5.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 7.5, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.5, + 5.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 12, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.5, + 4.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.5, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 12.25, + 5.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "maguro_11", - "from": [7.25, 0, 7.5], - "to": [8, 0.25, 12.25], + "from": [ + 7.25, + 0, + 7.5 + ], + "to": [ + 8, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8, 7.5, 7.25, 7.75], "texture": "#0"}, - "east": {"uv": [7.75, 7.5, 8, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 12, 8, 12.25], "texture": "#0"}, - "west": {"uv": [7.25, 7.5, 7.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 7.5, 8, 12.25], "texture": "#0"}, - "down": {"uv": [7.25, 12.25, 8, 7.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 7.5, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7.5, + 8, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 12, + 8, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.5, + 7.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7.5, + 8, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 12.25, + 8, + 7.5 + ], + "texture": "#0" + } } }, { "name": "maguro_12", - "from": [8.5, 0, 7.5], - "to": [8.75, 0.25, 12], + "from": [ + 8.5, + 0, + 7.5 + ], + "to": [ + 8.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.75, 7.5, 8.5, 7.75], "texture": "#0"}, - "east": {"uv": [8.5, 7.5, 8.75, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 11.75, 8.75, 12], "texture": "#0"}, - "west": {"uv": [8.5, 7.5, 8.75, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 7.5, 8.75, 12], "texture": "#0"}, - "down": {"uv": [8.5, 12, 8.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 7.5, + 8.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.5, + 8.75, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 11.75, + 8.75, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.75, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8.75, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 12, + 8.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "maguro_13", - "from": [15, 0, 7.5], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 7.5, 15, 7.75], "texture": "#0"}, - "east": {"uv": [15, 7.5, 15.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#0"}, - "west": {"uv": [15, 7.5, 15.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.5, 15.25, 9.5], "texture": "#0"}, - "down": {"uv": [15, 9.5, 15.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 7.5, + 15, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "maguro_14", - "from": [15.75, 0, 7.5], - "to": [16, 0.25, 7.75], + "from": [ + 15.75, + 0, + 7.5 + ], + "to": [ + 16, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [16, 7.5, 15.75, 7.75], "texture": "#0"}, - "east": {"uv": [15.75, 7.5, 16, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.75, 7.5, 16, 7.75], "texture": "#0"}, - "west": {"uv": [15.75, 7.5, 16, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.75, 7.5, 16, 7.75], "texture": "#0"}, - "down": {"uv": [15.75, 7.75, 16, 7.5], "texture": "#0"} + "north": { + "uv": [ + 16, + 7.5, + 15.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.75, + 7.5, + 16, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.75, + 7.5, + 16, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.75, + 7.5, + 16, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.75, + 7.5, + 16, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.75, + 7.75, + 16, + 7.5 + ], + "texture": "#0" + } } }, { "name": "maguro_15", - "from": [3.25, 0, 7.75], - "to": [4.25, 0.25, 11.75], + "from": [ + 3.25, + 0, + 7.75 + ], + "to": [ + 4.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [4.25, 7.75, 3.25, 8], "texture": "#0"}, - "east": {"uv": [4, 7.75, 4.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 11.5, 4.25, 11.75], "texture": "#0"}, - "west": {"uv": [3.25, 7.75, 3.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 7.75, 4.25, 11.75], "texture": "#0"}, - "down": {"uv": [3.25, 11.75, 4.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 7.75, + 3.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.75, + 4.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 11.5, + 4.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7.75, + 3.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7.75, + 4.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 11.75, + 4.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "maguro_16", - "from": [8, 0, 7.75], - "to": [8.5, 0.25, 12], + "from": [ + 8, + 0, + 7.75 + ], + "to": [ + 8.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.5, 7.75, 8, 8], "texture": "#0"}, - "east": {"uv": [8.25, 7.75, 8.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 11.75, 8.5, 12], "texture": "#0"}, - "west": {"uv": [8, 7.75, 8.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7.75, 8.5, 12], "texture": "#0"}, - "down": {"uv": [8, 12, 8.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 7.75, + 8, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.75, + 8.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 11.75, + 8.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.75, + 8.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.75, + 8.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 12, + 8.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "maguro_17", - "from": [9.5, 0, 7.75], - "to": [9.75, 0.25, 8], + "from": [ + 9.5, + 0, + 7.75 + ], + "to": [ + 9.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [9.75, 7.75, 9.5, 8], "texture": "#0"}, - "east": {"uv": [9.5, 7.75, 9.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.75, 9.75, 8], "texture": "#0"}, - "west": {"uv": [9.5, 7.75, 9.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7.75, 9.75, 8], "texture": "#0"}, - "down": {"uv": [9.5, 8, 9.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 7.75, + 9.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8, + 9.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "maguro_18", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 12.5], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#0"}, - "east": {"uv": [14.75, 7.75, 15, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 12.25, 15, 12.5], "texture": "#0"}, - "west": {"uv": [14.75, 7.75, 15, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.75, 15, 12.5], "texture": "#0"}, - "down": {"uv": [14.75, 12.5, 15, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 12.25, + 15, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 12.5, + 15, + 7.75 + ], + "texture": "#0" + } } }, { "name": "maguro_19", - "from": [2.5, 0, 8], - "to": [3.25, 0.25, 11.5], + "from": [ + 2.5, + 0, + 8 + ], + "to": [ + 3.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [3.25, 8, 2.5, 8.25], "texture": "#0"}, - "east": {"uv": [3, 8, 3.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 11.25, 3.25, 11.5], "texture": "#0"}, - "west": {"uv": [2.5, 8, 2.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8, 3.25, 11.5], "texture": "#0"}, - "down": {"uv": [2.5, 11.5, 3.25, 8], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 8, + 2.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 11.25, + 3.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8, + 2.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8, + 3.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 11.5, + 3.25, + 8 + ], + "texture": "#0" + } } }, { "name": "maguro_20", - "from": [14.5, 0, 8], - "to": [14.75, 0.25, 12.25], + "from": [ + 14.5, + 0, + 8 + ], + "to": [ + 14.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [14.75, 8, 14.5, 8.25], "texture": "#0"}, - "east": {"uv": [14.5, 8, 14.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 12, 14.75, 12.25], "texture": "#0"}, - "west": {"uv": [14.5, 8, 14.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8, 14.75, 12.25], "texture": "#0"}, - "down": {"uv": [14.5, 12.25, 14.75, 8], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8, + 14.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8, + 14.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 12, + 14.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8, + 14.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8, + 14.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 12.25, + 14.75, + 8 + ], + "texture": "#0" + } } }, { "name": "maguro_21", - "from": [15.25, 0, 8], - "to": [15.5, 0.25, 8.75], + "from": [ + 15.25, + 0, + 8 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.5, 8, 15.25, 8.25], "texture": "#0"}, - "east": {"uv": [15.25, 8, 15.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#0"}, - "west": {"uv": [15.25, 8, 15.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8, 15.5, 8.75], "texture": "#0"}, - "down": {"uv": [15.25, 8.75, 15.5, 8], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 8, + 15.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 8 + ], + "texture": "#0" + } } }, { "name": "maguro_22", - "from": [2, 0, 8.25], - "to": [2.5, 0.25, 11.25], + "from": [ + 2, + 0, + 8.25 + ], + "to": [ + 2.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [2.5, 8.25, 2, 8.5], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 11, 2.5, 11.25], "texture": "#0"}, - "west": {"uv": [2, 8.25, 2.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8.25, 2.5, 11.25], "texture": "#0"}, - "down": {"uv": [2, 11.25, 2.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 11, + 2.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.25, + 2.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8.25, + 2.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 11.25, + 2.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "maguro_23", - "from": [9.5, 0, 8.25], - "to": [10, 0.25, 12.5], + "from": [ + 9.5, + 0, + 8.25 + ], + "to": [ + 10, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10, 8.25, 9.5, 8.5], "texture": "#0"}, - "east": {"uv": [9.75, 8.25, 10, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 12.25, 10, 12.5], "texture": "#0"}, - "west": {"uv": [9.5, 8.25, 9.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 8.25, 10, 12.5], "texture": "#0"}, - "down": {"uv": [9.5, 12.5, 10, 8.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 8.25, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 8.25, + 10, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 12.25, + 10, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8.25, + 9.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.25, + 10, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 12.5, + 10, + 8.25 + ], + "texture": "#0" + } } }, { "name": "maguro_24", - "from": [1.5, 0, 8.5], - "to": [2, 0.25, 11], + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 2, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2, 8.5, 1.5, 8.75], "texture": "#0"}, - "east": {"uv": [1.75, 8.5, 2, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 10.75, 2, 11], "texture": "#0"}, - "west": {"uv": [1.5, 8.5, 1.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.5, 2, 11], "texture": "#0"}, - "down": {"uv": [1.5, 11, 2, 8.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.5, + 2, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 10.75, + 2, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 2, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 11, + 2, + 8.5 + ], + "texture": "#0" + } } }, { "name": "maguro_25", - "from": [10, 0, 8.5], - "to": [10.5, 0.25, 12.75], + "from": [ + 10, + 0, + 8.5 + ], + "to": [ + 10.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [10.5, 8.5, 10, 8.75], "texture": "#0"}, - "east": {"uv": [10.25, 8.5, 10.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 12.5, 10.5, 12.75], "texture": "#0"}, - "west": {"uv": [10, 8.5, 10.25, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.5, 10.5, 12.75], "texture": "#0"}, - "down": {"uv": [10, 12.75, 10.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8.5, + 10.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 12.5, + 10.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.5, + 10.25, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.5, + 10.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 12.75, + 10.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "maguro_26", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 11.75], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "east": {"uv": [14.25, 8.5, 14.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 11.5, 14.5, 11.75], "texture": "#0"}, - "west": {"uv": [14.25, 8.5, 14.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.5, 14.5, 11.75], "texture": "#0"}, - "down": {"uv": [14.25, 11.75, 14.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 11.5, + 14.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 11.75, + 14.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "maguro_27", - "from": [1.25, 0, 8.75], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 8.75 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 8.75, 1.25, 9], "texture": "#0"}, - "east": {"uv": [1.25, 8.75, 1.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#0"}, - "west": {"uv": [1.25, 8.75, 1.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.75, 1.5, 9.75], "texture": "#0"}, - "down": {"uv": [1.25, 9.75, 1.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "maguro_28", - "from": [10.5, 0, 8.75], - "to": [11, 0.25, 11.25], + "from": [ + 10.5, + 0, + 8.75 + ], + "to": [ + 11, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11, 8.75, 10.5, 9], "texture": "#0"}, - "east": {"uv": [10.75, 8.75, 11, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 11, 11, 11.25], "texture": "#0"}, - "west": {"uv": [10.5, 8.75, 10.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.75, 11, 11.25], "texture": "#0"}, - "down": {"uv": [10.5, 11.25, 11, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.75, + 11, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 11, + 11, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.75, + 10.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.75, + 11, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 11.25, + 11, + 8.75 + ], + "texture": "#0" + } } }, { "name": "maguro_29", - "from": [1, 0, 9], - "to": [1.25, 0.25, 9.75], + "from": [ + 1, + 0, + 9 + ], + "to": [ + 1.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.25, 9, 1, 9.25], "texture": "#0"}, - "east": {"uv": [1, 9, 1.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 9.5, 1.25, 9.75], "texture": "#0"}, - "west": {"uv": [1, 9, 1.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 9, 1.25, 9.75], "texture": "#0"}, - "down": {"uv": [1, 9.75, 1.25, 9], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 9, + 1, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9, + 1.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9, + 1.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 1.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9.75, + 1.25, + 9 + ], + "texture": "#0" + } } }, { "name": "maguro_30", - "from": [11, 0, 9], - "to": [11.5, 0.25, 11], + "from": [ + 11, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.5, 9, 11, 9.25], "texture": "#0"}, - "east": {"uv": [11.25, 9, 11.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.75, 11.5, 11], "texture": "#0"}, - "west": {"uv": [11, 9, 11.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9, 11.5, 11], "texture": "#0"}, - "down": {"uv": [11, 11, 11.5, 9], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.75, + 11.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9, + 11.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9, + 11.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 11, + 11.5, + 9 + ], + "texture": "#0" + } } }, { "name": "maguro_31", - "from": [14, 0, 9], - "to": [14.25, 0.25, 11.25], + "from": [ + 14, + 0, + 9 + ], + "to": [ + 14.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [14.25, 9, 14, 9.25], "texture": "#0"}, - "east": {"uv": [14, 9, 14.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 11, 14.25, 11.25], "texture": "#0"}, - "west": {"uv": [14, 9, 14.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 9, 14.25, 11.25], "texture": "#0"}, - "down": {"uv": [14, 11.25, 14.25, 9], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9, + 14.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 11, + 14.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 9, + 14.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 9, + 14.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 11.25, + 14.25, + 9 + ], + "texture": "#0" + } } }, { "name": "maguro_32", - "from": [0.75, 0, 9.25], - "to": [1, 0.25, 9.5], + "from": [ + 0.75, + 0, + 9.25 + ], + "to": [ + 1, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1, 9.25, 0.75, 9.5], "texture": "#0"}, - "east": {"uv": [0.75, 9.25, 1, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#0"}, - "west": {"uv": [0.75, 9.25, 1, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#0"}, - "down": {"uv": [0.75, 9.5, 1, 9.25], "texture": "#0"} + "north": { + "uv": [ + 1, + 9.25, + 0.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9.5, + 1, + 9.25 + ], + "texture": "#0" + } } }, { "name": "maguro_33", - "from": [11.5, 0, 9.25], - "to": [12.25, 0.25, 10.75], + "from": [ + 11.5, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12.25, 9.25, 11.5, 9.5], "texture": "#0"}, - "east": {"uv": [12, 9.25, 12.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10.5, 12.25, 10.75], "texture": "#0"}, - "west": {"uv": [11.5, 9.25, 11.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9.25, 12.25, 10.75], "texture": "#0"}, - "down": {"uv": [11.5, 10.75, 12.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.5, + 12.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9.25, + 11.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9.25, + 12.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.75, + 12.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "maguro_34", - "from": [12.25, 0, 9.5], - "to": [14, 0.25, 10.5], + "from": [ + 12.25, + 0, + 9.5 + ], + "to": [ + 14, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14, 9.5, 12.25, 9.75], "texture": "#0"}, - "east": {"uv": [13.75, 9.5, 14, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 10.25, 14, 10.5], "texture": "#0"}, - "west": {"uv": [12.25, 9.5, 12.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 9.5, 14, 10.5], "texture": "#0"}, - "down": {"uv": [12.25, 10.5, 14, 9.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 9.5, + 12.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 9.5, + 14, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 10.25, + 14, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 9.5, + 12.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 9.5, + 14, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 10.5, + 14, + 9.5 + ], + "texture": "#0" + } } }, { "name": "maguro_35", - "from": [0.5, 0, 10], - "to": [1.5, 0.25, 10.25], + "from": [ + 0.5, + 0, + 10 + ], + "to": [ + 1.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.5, 10, 0.5, 10.25], "texture": "#0"}, - "east": {"uv": [1.25, 10, 1.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 10, 1.5, 10.25], "texture": "#0"}, - "west": {"uv": [0.5, 10, 0.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 10, 1.5, 10.25], "texture": "#0"}, - "down": {"uv": [0.5, 10.25, 1.5, 10], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 10, + 0.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10, + 1.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 10, + 1.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 10, + 0.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10, + 1.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 10.25, + 1.5, + 10 + ], + "texture": "#0" + } } }, { "name": "maguro_36", - "from": [0.75, 0, 10.25], - "to": [1.5, 0.25, 10.5], + "from": [ + 0.75, + 0, + 10.25 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 10.25, 0.75, 10.5], "texture": "#0"}, - "east": {"uv": [1.25, 10.25, 1.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 10.25, 1.5, 10.5], "texture": "#0"}, - "west": {"uv": [0.75, 10.25, 1, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 10.25, 1.5, 10.5], "texture": "#0"}, - "down": {"uv": [0.75, 10.5, 1.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 10.25, + 0.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.25, + 1.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 10.25, + 1, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 10.25, + 1.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 10.5, + 1.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "maguro_37", - "from": [1, 0, 10.5], - "to": [1.5, 0.25, 10.75], + "from": [ + 1, + 0, + 10.5 + ], + "to": [ + 1.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [1.5, 10.5, 1, 10.75], "texture": "#0"}, - "east": {"uv": [1.25, 10.5, 1.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 10.5, 1.5, 10.75], "texture": "#0"}, - "west": {"uv": [1, 10.5, 1.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 10.5, 1.5, 10.75], "texture": "#0"}, - "down": {"uv": [1, 10.75, 1.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 10.5, + 1, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.5, + 1.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10.5, + 1.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 10.5, + 1.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 10.5, + 1.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 10.75, + 1.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "maguro_38", - "from": [12.25, 0, 10.5], - "to": [12.75, 0.25, 10.75], + "from": [ + 12.25, + 0, + 10.5 + ], + "to": [ + 12.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12.75, 10.5, 12.25, 10.75], "texture": "#0"}, - "east": {"uv": [12.5, 10.5, 12.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 10.5, 12.75, 10.75], "texture": "#0"}, - "west": {"uv": [12.25, 10.5, 12.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 10.5, 12.75, 10.75], "texture": "#0"}, - "down": {"uv": [12.25, 10.75, 12.75, 10.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 10.5, + 12.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 10.5, + 12.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 10.5, + 12.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 10.5, + 12.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 10.5, + 12.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 10.75, + 12.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "maguro_39", - "from": [13.75, 0, 10.5], - "to": [14, 0.25, 10.75], + "from": [ + 13.75, + 0, + 10.5 + ], + "to": [ + 14, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14, 10.5, 13.75, 10.75], "texture": "#0"}, - "east": {"uv": [13.75, 10.5, 14, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.5, 14, 10.75], "texture": "#0"}, - "west": {"uv": [13.75, 10.5, 14, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 10.5, 14, 10.75], "texture": "#0"}, - "down": {"uv": [13.75, 10.75, 14, 10.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 10.5, + 13.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 10.5, + 14, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.5, + 14, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 10.5, + 14, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 10.5, + 14, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 10.75, + 14, + 10.5 + ], + "texture": "#0" + } } }, { "name": "maguro_40", - "from": [11.5, 0, 10.75], - "to": [11.75, 0.25, 11], + "from": [ + 11.5, + 0, + 10.75 + ], + "to": [ + 11.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.75, 10.75, 11.5, 11], "texture": "#0"}, - "east": {"uv": [11.5, 10.75, 11.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10.75, 11.75, 11], "texture": "#0"}, - "west": {"uv": [11.5, 10.75, 11.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 10.75, 11.75, 11], "texture": "#0"}, - "down": {"uv": [11.5, 11, 11.75, 10.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 10.75, + 11.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 11, + 11.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "maguro_41", - "from": [11, 0, 11], - "to": [11.25, 0.25, 11.25], + "from": [ + 11, + 0, + 11 + ], + "to": [ + 11.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11.25, 11, 11, 11.25], "texture": "#0"}, - "east": {"uv": [11, 11, 11.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 11, 11.25, 11.25], "texture": "#0"}, - "west": {"uv": [11, 11, 11.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 11, 11.25, 11.25], "texture": "#0"}, - "down": {"uv": [11, 11.25, 11.25, 11], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 11, + 11, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 11, + 11.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 11, + 11.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 11, + 11.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 11, + 11.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 11.25, + 11.25, + 11 + ], + "texture": "#0" + } } }, { "name": "maguro_42", - "from": [15, 0, 11], - "to": [15.25, 0.25, 12.75], + "from": [ + 15, + 0, + 11 + ], + "to": [ + 15.25, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [15.25, 11, 15, 11.25], "texture": "#0"}, - "east": {"uv": [15, 11, 15.25, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 12.5, 15.25, 12.75], "texture": "#0"}, - "west": {"uv": [15, 11, 15.25, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 11, 15.25, 12.75], "texture": "#0"}, - "down": {"uv": [15, 12.75, 15.25, 11], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 11, + 15, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 11, + 15.25, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 12.5, + 15.25, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 11, + 15.25, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 11, + 15.25, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 12.75, + 15.25, + 11 + ], + "texture": "#0" + } } }, { "name": "maguro_43", - "from": [10.5, 0, 11.25], - "to": [10.75, 0.25, 11.5], + "from": [ + 10.5, + 0, + 11.25 + ], + "to": [ + 10.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.75, 11.25, 10.5, 11.5], "texture": "#0"}, - "east": {"uv": [10.5, 11.25, 10.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 11.25, 10.75, 11.5], "texture": "#0"}, - "west": {"uv": [10.5, 11.25, 10.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 11.25, 10.75, 11.5], "texture": "#0"}, - "down": {"uv": [10.5, 11.5, 10.75, 11.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 11.25, + 10.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 11.25, + 10.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 11.25, + 10.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 11.25, + 10.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 11.25, + 10.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.25 + ], + "texture": "#0" + } } }, { "name": "maguro_44", - "from": [2.75, 0, 11.5], - "to": [3.25, 0.25, 11.75], + "from": [ + 2.75, + 0, + 11.5 + ], + "to": [ + 3.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [3.25, 11.5, 2.75, 11.75], "texture": "#0"}, - "east": {"uv": [3, 11.5, 3.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 11.5, 3.25, 11.75], "texture": "#0"}, - "west": {"uv": [2.75, 11.5, 3, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 11.5, 3.25, 11.75], "texture": "#0"}, - "down": {"uv": [2.75, 11.75, 3.25, 11.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 11.5, + 2.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 11.5, + 3.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 11.5, + 3.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 11.5, + 3, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 11.5, + 3.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 11.75, + 3.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "maguro_45", - "from": [3.5, 0, 11.75], - "to": [4.25, 0.25, 12], + "from": [ + 3.5, + 0, + 11.75 + ], + "to": [ + 4.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [4.25, 11.75, 3.5, 12], "texture": "#0"}, - "east": {"uv": [4, 11.75, 4.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 11.75, 4.25, 12], "texture": "#0"}, - "west": {"uv": [3.5, 11.75, 3.75, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 11.75, 4.25, 12], "texture": "#0"}, - "down": {"uv": [3.5, 12, 4.25, 11.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 11.75, + 3.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 11.75, + 4.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 11.75, + 3.75, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 11.75, + 4.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 12, + 4.25, + 11.75 + ], + "texture": "#0" + } } }, { "name": "maguro_46", - "from": [15.25, 0, 11.75], - "to": [15.5, 0.25, 13], + "from": [ + 15.25, + 0, + 11.75 + ], + "to": [ + 15.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [15.5, 11.75, 15.25, 12], "texture": "#0"}, - "east": {"uv": [15.25, 11.75, 15.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 12.75, 15.5, 13], "texture": "#0"}, - "west": {"uv": [15.25, 11.75, 15.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 11.75, 15.5, 13], "texture": "#0"}, - "down": {"uv": [15.25, 13, 15.5, 11.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 11.75, + 15.25, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 11.75, + 15.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 12.75, + 15.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 11.75, + 15.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 11.75, + 15.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 13, + 15.5, + 11.75 + ], + "texture": "#0" + } } }, { "name": "maguro_47", - "from": [10.5, 0, 12], - "to": [10.75, 0.25, 13], + "from": [ + 10.5, + 0, + 12 + ], + "to": [ + 10.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [10.75, 12, 10.5, 12.25], "texture": "#0"}, - "east": {"uv": [10.5, 12, 10.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 12.75, 10.75, 13], "texture": "#0"}, - "west": {"uv": [10.5, 12, 10.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 12, 10.75, 13], "texture": "#0"}, - "down": {"uv": [10.5, 13, 10.75, 12], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 12, + 10.5, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 12, + 10.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 12.75, + 10.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 12, + 10.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 12, + 10.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13, + 10.75, + 12 + ], + "texture": "#0" + } } }, { "name": "maguro_48", - "from": [5.25, 0, 12.25], - "to": [5.5, 0.25, 12.5], + "from": [ + 5.25, + 0, + 12.25 + ], + "to": [ + 5.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [5.5, 12.25, 5.25, 12.5], "texture": "#0"}, - "east": {"uv": [5.25, 12.25, 5.5, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 12.25, 5.5, 12.5], "texture": "#0"}, - "west": {"uv": [5.25, 12.25, 5.5, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 12.25, 5.5, 12.5], "texture": "#0"}, - "down": {"uv": [5.25, 12.5, 5.5, 12.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 12.25, + 5.25, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 12.25, + 5.5, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 12.25, + 5.5, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 12.25, + 5.5, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 12.25, + 5.5, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 12.5, + 5.5, + 12.25 + ], + "texture": "#0" + } } }, { "name": "maguro_49", - "from": [6.25, 0, 12.25], - "to": [6.75, 0.25, 12.5], + "from": [ + 6.25, + 0, + 12.25 + ], + "to": [ + 6.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [6.75, 12.25, 6.25, 12.5], "texture": "#0"}, - "east": {"uv": [6.5, 12.25, 6.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 12.25, 6.75, 12.5], "texture": "#0"}, - "west": {"uv": [6.25, 12.25, 6.5, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 12.25, 6.75, 12.5], "texture": "#0"}, - "down": {"uv": [6.25, 12.5, 6.75, 12.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 12.25, + 6.25, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 12.25, + 6.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 12.25, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 12.25, + 6.5, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 12.25, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12.5, + 6.75, + 12.25 + ], + "texture": "#0" + } } }, { "name": "maguro_50", - "from": [10.75, 0, 12.25], - "to": [11, 0.25, 13], + "from": [ + 10.75, + 0, + 12.25 + ], + "to": [ + 11, + 0.25, + 13 + ], "faces": { - "north": {"uv": [11, 12.25, 10.75, 12.5], "texture": "#0"}, - "east": {"uv": [10.75, 12.25, 11, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 12.75, 11, 13], "texture": "#0"}, - "west": {"uv": [10.75, 12.25, 11, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 12.25, 11, 13], "texture": "#0"}, - "down": {"uv": [10.75, 13, 11, 12.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 12.25, + 10.75, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 12.25, + 11, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 12.75, + 11, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 12.25, + 11, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 12.25, + 11, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 13, + 11, + 12.25 + ], + "texture": "#0" + } } }, { "name": "maguro_51", - "from": [15.5, 0, 12.25], - "to": [15.75, 0.25, 13], + "from": [ + 15.5, + 0, + 12.25 + ], + "to": [ + 15.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [15.75, 12.25, 15.5, 12.5], "texture": "#0"}, - "east": {"uv": [15.5, 12.25, 15.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 12.75, 15.75, 13], "texture": "#0"}, - "west": {"uv": [15.5, 12.25, 15.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 12.25, 15.75, 13], "texture": "#0"}, - "down": {"uv": [15.5, 13, 15.75, 12.25], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 12.25, + 15.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 12.25, + 15.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 12.75, + 15.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 12.25, + 15.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 12.25, + 15.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 13, + 15.75, + 12.25 + ], + "texture": "#0" + } } }, { "name": "maguro_52", - "from": [6.25, 0, 12.5], - "to": [6.5, 0.25, 12.75], + "from": [ + 6.25, + 0, + 12.5 + ], + "to": [ + 6.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [6.5, 12.5, 6.25, 12.75], "texture": "#0"}, - "east": {"uv": [6.25, 12.5, 6.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 12.5, 6.5, 12.75], "texture": "#0"}, - "west": {"uv": [6.25, 12.5, 6.5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 12.5, 6.5, 12.75], "texture": "#0"}, - "down": {"uv": [6.25, 12.75, 6.5, 12.5], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 12.5, + 6.25, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 12.5, + 6.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 12.5, + 6.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 12.5, + 6.5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 12.5, + 6.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12.75, + 6.5, + 12.5 + ], + "texture": "#0" + } } }, { "name": "maguro_53", - "from": [11, 0, 12.5], - "to": [11.25, 0.25, 12.75], + "from": [ + 11, + 0, + 12.5 + ], + "to": [ + 11.25, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [11.25, 12.5, 11, 12.75], "texture": "#0"}, - "east": {"uv": [11, 12.5, 11.25, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 12.5, 11.25, 12.75], "texture": "#0"}, - "west": {"uv": [11, 12.5, 11.25, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 12.5, 11.25, 12.75], "texture": "#0"}, - "down": {"uv": [11, 12.75, 11.25, 12.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 12.5, + 11, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 12.5, + 11.25, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 12.5, + 11.25, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 12.5, + 11.25, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 12.5, + 11.25, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 12.75, + 11.25, + 12.5 + ], + "texture": "#0" + } } }, { "name": "maguro_54", - "from": [15.75, 0, 12.5], - "to": [16, 0.25, 12.75], + "from": [ + 15.75, + 0, + 12.5 + ], + "to": [ + 16, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [16, 12.5, 15.75, 12.75], "texture": "#0"}, - "east": {"uv": [15.75, 12.5, 16, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.75, 12.5, 16, 12.75], "texture": "#0"}, - "west": {"uv": [15.75, 12.5, 16, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.75, 12.5, 16, 12.75], "texture": "#0"}, - "down": {"uv": [15.75, 12.75, 16, 12.5], "texture": "#0"} + "north": { + "uv": [ + 16, + 12.5, + 15.75, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.75, + 12.5, + 16, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.75, + 12.5, + 16, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.75, + 12.5, + 16, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.75, + 12.5, + 16, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.75, + 12.75, + 16, + 12.5 + ], + "texture": "#0" + } } }, { "name": "maguro_55", - "from": [10.25, 0, 12.75], - "to": [10.5, 0.25, 13], + "from": [ + 10.25, + 0, + 12.75 + ], + "to": [ + 10.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [10.5, 12.75, 10.25, 13], "texture": "#0"}, - "east": {"uv": [10.25, 12.75, 10.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 12.75, 10.5, 13], "texture": "#0"}, - "west": {"uv": [10.25, 12.75, 10.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 12.75, 10.5, 13], "texture": "#0"}, - "down": {"uv": [10.25, 13, 10.5, 12.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 12.75, + 10.25, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 12.75, + 10.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 13, + 10.5, + 12.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 10, 24], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 10, + 24 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 10, 24], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 10, + 24 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "firstperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 10, 24], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 10, + 24 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "firstperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 10, 24], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 10, + 24 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 6.5, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 6.5, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 2, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 2, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 23, 36.5], - "scale": [4, 4, 4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 23, + 36.5 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 2.5, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 2.5, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "maguro", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/manbou.json b/pack/assets/minecraft/models/fish/manbou.json index 55f084c6..981d4f6e 100644 --- a/pack/assets/minecraft/models/fish/manbou.json +++ b/pack/assets/minecraft/models/fish/manbou.json @@ -2,539 +2,2819 @@ "__name": "マンボウ", "credit": "Made with Blockbench", "textures": { - "0": "fish/manbou", - "particle": "fish/manbou" + "0": "item/fish/manbou", + "particle": "item/fish/manbou" }, "elements": [ { "name": "manbou_0", - "from": [9.75, 0, 0.75], - "to": [10.25, 0.25, 15.75], + "from": [ + 9.75, + 0, + 0.75 + ], + "to": [ + 10.25, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [10.25, 0.75, 9.75, 1], "texture": "#0"}, - "east": {"uv": [10, 0.75, 10.25, 15.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 15.5, 10.25, 15.75], "texture": "#0"}, - "west": {"uv": [9.75, 0.75, 10, 15.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 0.75, 10.25, 15.75], "texture": "#0"}, - "down": {"uv": [9.75, 15.75, 10.25, 0.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 0.75, + 9.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 0.75, + 10.25, + 15.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 15.5, + 10.25, + 15.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 0.75, + 10, + 15.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 0.75, + 10.25, + 15.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 15.75, + 10.25, + 0.75 + ], + "texture": "#0" + } } }, { "name": "manbou_1", - "from": [9.5, 0, 1], - "to": [9.75, 0.25, 15.5], + "from": [ + 9.5, + 0, + 1 + ], + "to": [ + 9.75, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [9.75, 1, 9.5, 1.25], "texture": "#0"}, - "east": {"uv": [9.5, 1, 9.75, 15.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 15.25, 9.75, 15.5], "texture": "#0"}, - "west": {"uv": [9.5, 1, 9.75, 15.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 1, 9.75, 15.5], "texture": "#0"}, - "down": {"uv": [9.5, 15.5, 9.75, 1], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 1, + 9.5, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 1, + 9.75, + 15.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 15.25, + 9.75, + 15.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 9.75, + 15.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 1, + 9.75, + 15.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 15.5, + 9.75, + 1 + ], + "texture": "#0" + } } }, { "name": "manbou_2", - "from": [10.25, 0, 1], - "to": [10.5, 0.25, 15.75], + "from": [ + 10.25, + 0, + 1 + ], + "to": [ + 10.5, + 0.25, + 15.75 + ], "faces": { - "north": {"uv": [10.5, 1, 10.25, 1.25], "texture": "#0"}, - "east": {"uv": [10.25, 1, 10.5, 15.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 15.5, 10.5, 15.75], "texture": "#0"}, - "west": {"uv": [10.25, 1, 10.5, 15.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 1, 10.5, 15.75], "texture": "#0"}, - "down": {"uv": [10.25, 15.75, 10.5, 1], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 1, + 10.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 1, + 10.5, + 15.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 15.5, + 10.5, + 15.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 1, + 10.5, + 15.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 1, + 10.5, + 15.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 15.75, + 10.5, + 1 + ], + "texture": "#0" + } } }, { "name": "manbou_3", - "from": [10.5, 0, 1.25], - "to": [10.75, 0.25, 15.5], + "from": [ + 10.5, + 0, + 1.25 + ], + "to": [ + 10.75, + 0.25, + 15.5 + ], "faces": { - "north": {"uv": [10.75, 1.25, 10.5, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 1.25, 10.75, 15.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 15.25, 10.75, 15.5], "texture": "#0"}, - "west": {"uv": [10.5, 1.25, 10.75, 15.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 1.25, 10.75, 15.5], "texture": "#0"}, - "down": {"uv": [10.5, 15.5, 10.75, 1.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 1.25, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.25, + 10.75, + 15.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 15.25, + 10.75, + 15.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 1.25, + 10.75, + 15.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 1.25, + 10.75, + 15.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 15.5, + 10.75, + 1.25 + ], + "texture": "#0" + } } }, { "name": "manbou_4", - "from": [9.25, 0, 1.5], - "to": [9.5, 0.25, 15], + "from": [ + 9.25, + 0, + 1.5 + ], + "to": [ + 9.5, + 0.25, + 15 + ], "faces": { - "north": {"uv": [9.5, 1.5, 9.25, 1.75], "texture": "#0"}, - "east": {"uv": [9.25, 1.5, 9.5, 15], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 14.75, 9.5, 15], "texture": "#0"}, - "west": {"uv": [9.25, 1.5, 9.5, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 1.5, 9.5, 15], "texture": "#0"}, - "down": {"uv": [9.25, 15, 9.5, 1.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 1.5, + 9.5, + 15 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 14.75, + 9.5, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 1.5, + 9.5, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 1.5, + 9.5, + 15 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 15, + 9.5, + 1.5 + ], + "texture": "#0" + } } }, { "name": "manbou_5", - "from": [9, 0, 2], - "to": [9.25, 0.25, 14.5], + "from": [ + 9, + 0, + 2 + ], + "to": [ + 9.25, + 0.25, + 14.5 + ], "faces": { - "north": {"uv": [9.25, 2, 9, 2.25], "texture": "#0"}, - "east": {"uv": [9, 2, 9.25, 14.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 14.25, 9.25, 14.5], "texture": "#0"}, - "west": {"uv": [9, 2, 9.25, 14.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 2, 9.25, 14.5], "texture": "#0"}, - "down": {"uv": [9, 14.5, 9.25, 2], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 2, + 9, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 2, + 9.25, + 14.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 14.25, + 9.25, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 2, + 9.25, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 2, + 9.25, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 14.5, + 9.25, + 2 + ], + "texture": "#0" + } } }, { "name": "manbou_6", - "from": [10.75, 0, 2.25], - "to": [11, 0.25, 4.25], + "from": [ + 10.75, + 0, + 2.25 + ], + "to": [ + 11, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [11, 2.25, 10.75, 2.5], "texture": "#0"}, - "east": {"uv": [10.75, 2.25, 11, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 4, 11, 4.25], "texture": "#0"}, - "west": {"uv": [10.75, 2.25, 11, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 2.25, 11, 4.25], "texture": "#0"}, - "down": {"uv": [10.75, 4.25, 11, 2.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 2.25, + 10.75, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 2.25, + 11, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 4, + 11, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 2.25, + 11, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 2.25, + 11, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 4.25, + 11, + 2.25 + ], + "texture": "#0" + } } }, { "name": "manbou_7", - "from": [8.75, 0, 2.5], - "to": [9, 0.25, 14], + "from": [ + 8.75, + 0, + 2.5 + ], + "to": [ + 9, + 0.25, + 14 + ], "faces": { - "north": {"uv": [9, 2.5, 8.75, 2.75], "texture": "#0"}, - "east": {"uv": [8.75, 2.5, 9, 14], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 13.75, 9, 14], "texture": "#0"}, - "west": {"uv": [8.75, 2.5, 9, 14], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 2.5, 9, 14], "texture": "#0"}, - "down": {"uv": [8.75, 14, 9, 2.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 2.5, + 8.75, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 2.5, + 9, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 13.75, + 9, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 2.5, + 9, + 14 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 2.5, + 9, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 14, + 9, + 2.5 + ], + "texture": "#0" + } } }, { "name": "manbou_8", - "from": [8.5, 0, 3], - "to": [8.75, 0.25, 13.5], + "from": [ + 8.5, + 0, + 3 + ], + "to": [ + 8.75, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [8.75, 3, 8.5, 3.25], "texture": "#0"}, - "east": {"uv": [8.5, 3, 8.75, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 13.25, 8.75, 13.5], "texture": "#0"}, - "west": {"uv": [8.5, 3, 8.75, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 3, 8.75, 13.5], "texture": "#0"}, - "down": {"uv": [8.5, 13.5, 8.75, 3], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 3, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 8.75, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 13.25, + 8.75, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.75, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3, + 8.75, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 13.5, + 8.75, + 3 + ], + "texture": "#0" + } } }, { "name": "manbou_9", - "from": [8.25, 0, 3.75], - "to": [8.5, 0.25, 13], + "from": [ + 8.25, + 0, + 3.75 + ], + "to": [ + 8.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [8.5, 3.75, 8.25, 4], "texture": "#0"}, - "east": {"uv": [8.25, 3.75, 8.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 12.75, 8.5, 13], "texture": "#0"}, - "west": {"uv": [8.25, 3.75, 8.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 3.75, 8.5, 13], "texture": "#0"}, - "down": {"uv": [8.25, 13, 8.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 3.75, + 8.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 3.75, + 8.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 12.75, + 8.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 3.75, + 8.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 3.75, + 8.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 13, + 8.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "manbou_10", - "from": [7.75, 0, 4], - "to": [8.25, 0.25, 12.5], + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8.25, 4, 7.75, 4.25], "texture": "#0"}, - "east": {"uv": [8, 4, 8.25, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 12.25, 8.25, 12.5], "texture": "#0"}, - "west": {"uv": [7.75, 4, 8, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4, 8.25, 12.5], "texture": "#0"}, - "down": {"uv": [7.75, 12.5, 8.25, 4], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 8.25, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 12.25, + 8.25, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4, + 8.25, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 12.5, + 8.25, + 4 + ], + "texture": "#0" + } } }, { "name": "manbou_11", - "from": [6.5, 0, 4.25], - "to": [7.75, 0.25, 12.5], + "from": [ + 6.5, + 0, + 4.25 + ], + "to": [ + 7.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.75, 4.25, 6.5, 4.5], "texture": "#0"}, - "east": {"uv": [7.5, 4.25, 7.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 12.25, 7.75, 12.5], "texture": "#0"}, - "west": {"uv": [6.5, 4.25, 6.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4.25, 7.75, 12.5], "texture": "#0"}, - "down": {"uv": [6.5, 12.5, 7.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 4.25, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 7.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12.25, + 7.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.25, + 6.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4.25, + 7.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 12.5, + 7.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "manbou_12", - "from": [5.5, 0, 4.5], - "to": [6.5, 0.25, 12.25], + "from": [ + 5.5, + 0, + 4.5 + ], + "to": [ + 6.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6.5, 4.5, 5.5, 4.75], "texture": "#0"}, - "east": {"uv": [6.25, 4.5, 6.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 12, 6.5, 12.25], "texture": "#0"}, - "west": {"uv": [5.5, 4.5, 5.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4.5, 6.5, 12.25], "texture": "#0"}, - "down": {"uv": [5.5, 12.25, 6.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 4.5, + 5.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.5, + 6.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 12, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.5, + 5.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4.5, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 12.25, + 6.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "manbou_13", - "from": [10.75, 0, 4.5], - "to": [11.5, 0.25, 12], + "from": [ + 10.75, + 0, + 4.5 + ], + "to": [ + 11.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.5, 4.5, 10.75, 4.75], "texture": "#0"}, - "east": {"uv": [11.25, 4.5, 11.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 11.75, 11.5, 12], "texture": "#0"}, - "west": {"uv": [10.75, 4.5, 11, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 4.5, 11.5, 12], "texture": "#0"}, - "down": {"uv": [10.75, 12, 11.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.5, + 10.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.5, + 11.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 11.75, + 11.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 4.5, + 11, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 4.5, + 11.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 12, + 11.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "manbou_14", - "from": [4.75, 0, 4.75], - "to": [5.5, 0.25, 12], + "from": [ + 4.75, + 0, + 4.75 + ], + "to": [ + 5.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [5.5, 4.75, 4.75, 5], "texture": "#0"}, - "east": {"uv": [5.25, 4.75, 5.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 11.75, 5.5, 12], "texture": "#0"}, - "west": {"uv": [4.75, 4.75, 5, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.75, 5.5, 12], "texture": "#0"}, - "down": {"uv": [4.75, 12, 5.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 4.75, + 4.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.75, + 5.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 11.75, + 5.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.75, + 5, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.75, + 5.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 12, + 5.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "manbou_15", - "from": [11.5, 0, 4.75], - "to": [12, 0.25, 11.75], + "from": [ + 11.5, + 0, + 4.75 + ], + "to": [ + 12, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [12, 4.75, 11.5, 5], "texture": "#0"}, - "east": {"uv": [11.75, 4.75, 12, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 11.5, 12, 11.75], "texture": "#0"}, - "west": {"uv": [11.5, 4.75, 11.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 4.75, 12, 11.75], "texture": "#0"}, - "down": {"uv": [11.5, 11.75, 12, 4.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 4.75, + 11.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 4.75, + 12, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 11.5, + 12, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 4.75, + 11.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 4.75, + 12, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 11.75, + 12, + 4.75 + ], + "texture": "#0" + } } }, { "name": "manbou_16", - "from": [4.25, 0, 5], - "to": [4.75, 0.25, 11.75], + "from": [ + 4.25, + 0, + 5 + ], + "to": [ + 4.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [4.75, 5, 4.25, 5.25], "texture": "#0"}, - "east": {"uv": [4.5, 5, 4.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 11.5, 4.75, 11.75], "texture": "#0"}, - "west": {"uv": [4.25, 5, 4.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5, 4.75, 11.75], "texture": "#0"}, - "down": {"uv": [4.25, 11.75, 4.75, 5], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5, + 4.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 11.5, + 4.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5, + 4.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5, + 4.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11.75, + 4.75, + 5 + ], + "texture": "#0" + } } }, { "name": "manbou_17", - "from": [12, 0, 5], - "to": [12.25, 0.25, 11.75], + "from": [ + 12, + 0, + 5 + ], + "to": [ + 12.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [12.25, 5, 12, 5.25], "texture": "#0"}, - "east": {"uv": [12, 5, 12.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 11.5, 12.25, 11.75], "texture": "#0"}, - "west": {"uv": [12, 5, 12.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5, 12.25, 11.75], "texture": "#0"}, - "down": {"uv": [12, 11.75, 12.25, 5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 5, + 12, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5, + 12.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 11.5, + 12.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5, + 12.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5, + 12.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 11.75, + 12.25, + 5 + ], + "texture": "#0" + } } }, { "name": "manbou_18", - "from": [3.75, 0, 5.25], - "to": [4.25, 0.25, 11.5], + "from": [ + 3.75, + 0, + 5.25 + ], + "to": [ + 4.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4.25, 5.25, 3.75, 5.5], "texture": "#0"}, - "east": {"uv": [4, 5.25, 4.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 11.25, 4.25, 11.5], "texture": "#0"}, - "west": {"uv": [3.75, 5.25, 4, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.25, 4.25, 11.5], "texture": "#0"}, - "down": {"uv": [3.75, 11.5, 4.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 5.25, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.25, + 4.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 11.25, + 4.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.25, + 4, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.25, + 4.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 11.5, + 4.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "manbou_19", - "from": [12.25, 0, 5.25], - "to": [12.5, 0.25, 11.5], + "from": [ + 12.25, + 0, + 5.25 + ], + "to": [ + 12.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.5, 5.25, 12.25, 5.5], "texture": "#0"}, - "east": {"uv": [12.25, 5.25, 12.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 11.25, 12.5, 11.5], "texture": "#0"}, - "west": {"uv": [12.25, 5.25, 12.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 5.25, 12.5, 11.5], "texture": "#0"}, - "down": {"uv": [12.25, 11.5, 12.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.25, + 12.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.25, + 12.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 5.25, + 12.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 5.25, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 11.5, + 12.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "manbou_20", - "from": [3.5, 0, 5.5], - "to": [3.75, 0.25, 11.25], + "from": [ + 3.5, + 0, + 5.5 + ], + "to": [ + 3.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [3.75, 5.5, 3.5, 5.75], "texture": "#0"}, - "east": {"uv": [3.5, 5.5, 3.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 11, 3.75, 11.25], "texture": "#0"}, - "west": {"uv": [3.5, 5.5, 3.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.5, 3.75, 11.25], "texture": "#0"}, - "down": {"uv": [3.5, 11.25, 3.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 5.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5.5, + 3.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 11, + 3.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.5, + 3.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.5, + 3.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 11.25, + 3.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "manbou_21", - "from": [12.5, 0, 5.5], - "to": [12.75, 0.25, 11.25], + "from": [ + 12.5, + 0, + 5.5 + ], + "to": [ + 12.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [12.75, 5.5, 12.5, 5.75], "texture": "#0"}, - "east": {"uv": [12.5, 5.5, 12.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 11, 12.75, 11.25], "texture": "#0"}, - "west": {"uv": [12.5, 5.5, 12.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 5.5, 12.75, 11.25], "texture": "#0"}, - "down": {"uv": [12.5, 11.25, 12.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 5.5, + 12.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 5.5, + 12.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 11, + 12.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 5.5, + 12.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5.5, + 12.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 11.25, + 12.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "manbou_22", - "from": [3.25, 0, 5.75], - "to": [3.5, 0.25, 11], + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 3.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.5, 5.75, 3.25, 6], "texture": "#0"}, - "east": {"uv": [3.25, 5.75, 3.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.75, 3.5, 11], "texture": "#0"}, - "west": {"uv": [3.25, 5.75, 3.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.75, 3.5, 11], "texture": "#0"}, - "down": {"uv": [3.25, 11, 3.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 5.75, + 3.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.75, + 3.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 3.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 11, + 3.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "manbou_23", - "from": [12.75, 0, 5.75], - "to": [13, 0.25, 11], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13, + 0.25, + 11 + ], "faces": { - "north": {"uv": [13, 5.75, 12.75, 6], "texture": "#0"}, - "east": {"uv": [12.75, 5.75, 13, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 10.75, 13, 11], "texture": "#0"}, - "west": {"uv": [12.75, 5.75, 13, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 5.75, 13, 11], "texture": "#0"}, - "down": {"uv": [12.75, 11, 13, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 5.75, + 12.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 5.75, + 13, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 10.75, + 13, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 11, + 13, + 5.75 + ], + "texture": "#0" + } } }, { "name": "manbou_24", - "from": [2.75, 0, 6], - "to": [3.25, 0.25, 10.5], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.25, 6, 2.75, 6.25], "texture": "#0"}, - "east": {"uv": [3, 6, 3.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10.25, 3.25, 10.5], "texture": "#0"}, - "west": {"uv": [2.75, 6, 3, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6, 3.25, 10.5], "texture": "#0"}, - "down": {"uv": [2.75, 10.5, 3.25, 6], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.5, + 3.25, + 6 + ], + "texture": "#0" + } } }, { "name": "manbou_25", - "from": [2.5, 0, 6.25], - "to": [2.75, 0.25, 10.25], + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.75, 6.25, 2.5, 6.5], "texture": "#0"}, - "east": {"uv": [2.5, 6.25, 2.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#0"}, - "west": {"uv": [2.5, 6.25, 2.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.25, 2.75, 10.25], "texture": "#0"}, - "down": {"uv": [2.5, 10.25, 2.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 6.25, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 2.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "manbou_26", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 10.25], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#0"}, - "east": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 10, 13.25, 10.25], "texture": "#0"}, - "west": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.25, 13.25, 10.25], "texture": "#0"}, - "down": {"uv": [13, 10.25, 13.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 10, + 13.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 10.25, + 13.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "manbou_27", - "from": [2, 0, 6.5], - "to": [2.5, 0.25, 8], + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2.5, 6.5, 2, 6.75], "texture": "#0"}, - "east": {"uv": [2.25, 6.5, 2.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 7.75, 2.5, 8], "texture": "#0"}, - "west": {"uv": [2, 6.5, 2.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.5, 2.5, 8], "texture": "#0"}, - "down": {"uv": [2, 8, 2.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 7.75, + 2.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8, + 2.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "manbou_28", - "from": [1.75, 0, 6.75], - "to": [2, 0.25, 7.75], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [2, 6.75, 1.75, 7], "texture": "#0"}, - "east": {"uv": [1.75, 6.75, 2, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.5, 2, 7.75], "texture": "#0"}, - "west": {"uv": [1.75, 6.75, 2, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.75, 2, 7.75], "texture": "#0"}, - "down": {"uv": [1.75, 7.75, 2, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7.75, + 2, + 6.75 + ], + "texture": "#0" + } } }, { "name": "manbou_29", - "from": [13.25, 0, 7], - "to": [13.5, 0.25, 9.25], + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 7, 13.25, 7.25], "texture": "#0"}, - "east": {"uv": [13.25, 7, 13.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#0"}, - "west": {"uv": [13.25, 7, 13.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7, 13.5, 9.25], "texture": "#0"}, - "down": {"uv": [13.25, 9.25, 13.5, 7], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 7, + 13.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.5, + 7 + ], + "texture": "#0" + } } }, { "name": "manbou_30", - "from": [2.25, 0, 8], - "to": [2.5, 0.25, 9.75], + "from": [ + 2.25, + 0, + 8 + ], + "to": [ + 2.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.5, 8, 2.25, 8.25], "texture": "#0"}, - "east": {"uv": [2.25, 8, 2.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.5, 2.5, 9.75], "texture": "#0"}, - "west": {"uv": [2.25, 8, 2.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8, 2.5, 9.75], "texture": "#0"}, - "down": {"uv": [2.25, 9.75, 2.5, 8], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 8, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8, + 2.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 2.5, + 8 + ], + "texture": "#0" + } } }, { "name": "manbou_31", - "from": [2, 0, 8.5], - "to": [2.25, 0.25, 9], + "from": [ + 2, + 0, + 8.5 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 8.5, 2, 8.75], "texture": "#0"}, - "east": {"uv": [2, 8.5, 2.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.25, 9], "texture": "#0"}, - "west": {"uv": [2, 8.5, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8.5, 2.25, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.5, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8.5, + 2.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "manbou_32", - "from": [3, 0, 10.5], - "to": [3.25, 0.25, 10.75], + "from": [ + 3, + 0, + 10.5 + ], + "to": [ + 3.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.25, 10.5, 3, 10.75], "texture": "#0"}, - "east": {"uv": [3, 10.5, 3.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.5, 3.25, 10.75], "texture": "#0"}, - "west": {"uv": [3, 10.5, 3.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 10.5, 3.25, 10.75], "texture": "#0"}, - "down": {"uv": [3, 10.75, 3.25, 10.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.75, + 3.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "manbou_33", - "from": [11.5, 0, 11.75], - "to": [11.75, 0.25, 12], + "from": [ + 11.5, + 0, + 11.75 + ], + "to": [ + 11.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.75, 11.75, 11.5, 12], "texture": "#0"}, - "east": {"uv": [11.5, 11.75, 11.75, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 11.75, 11.75, 12], "texture": "#0"}, - "west": {"uv": [11.5, 11.75, 11.75, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 11.75, 11.75, 12], "texture": "#0"}, - "down": {"uv": [11.5, 12, 11.75, 11.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 11.75, + 11.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 11.75, + 11.75, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 11.75, + 11.75, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 11.75, + 11.75, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 11.75, + 11.75, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 12, + 11.75, + 11.75 + ], + "texture": "#0" + } } }, { "name": "manbou_34", - "from": [5.25, 0, 12], - "to": [5.5, 0.25, 12.25], + "from": [ + 5.25, + 0, + 12 + ], + "to": [ + 5.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [5.5, 12, 5.25, 12.25], "texture": "#0"}, - "east": {"uv": [5.25, 12, 5.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 12, 5.5, 12.25], "texture": "#0"}, - "west": {"uv": [5.25, 12, 5.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 12, 5.5, 12.25], "texture": "#0"}, - "down": {"uv": [5.25, 12.25, 5.5, 12], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 12, + 5.25, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 12, + 5.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 12, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 12, + 5.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 12, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 12.25, + 5.5, + 12 + ], + "texture": "#0" + } } }, { "name": "manbou_35", - "from": [10.75, 0, 12], - "to": [11.25, 0.25, 13.25], + "from": [ + 10.75, + 0, + 12 + ], + "to": [ + 11.25, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [11.25, 12, 10.75, 12.25], "texture": "#0"}, - "east": {"uv": [11, 12, 11.25, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 13, 11.25, 13.25], "texture": "#0"}, - "west": {"uv": [10.75, 12, 11, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 12, 11.25, 13.25], "texture": "#0"}, - "down": {"uv": [10.75, 13.25, 11.25, 12], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 12, + 10.75, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 12, + 11.25, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 13, + 11.25, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 12, + 11, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 12, + 11.25, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 13.25, + 11.25, + 12 + ], + "texture": "#0" + } } }, { "name": "manbou_36", - "from": [10.75, 0, 13.25], - "to": [11, 0.25, 14.25], + "from": [ + 10.75, + 0, + 13.25 + ], + "to": [ + 11, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [11, 13.25, 10.75, 13.5], "texture": "#0"}, - "east": {"uv": [10.75, 13.25, 11, 14.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 14, 11, 14.25], "texture": "#0"}, - "west": {"uv": [10.75, 13.25, 11, 14.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 13.25, 11, 14.25], "texture": "#0"}, - "down": {"uv": [10.75, 14.25, 11, 13.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 13.25, + 10.75, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 13.25, + 11, + 14.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 14, + 11, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 13.25, + 11, + 14.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 13.25, + 11, + 14.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 14.25, + 11, + 13.25 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 6.75, 23], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 6.75, + 23 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-0.5, 6.75, 24.75], - "scale": [3.01, 3.01, 3.01] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -0.5, + 6.75, + 24.75 + ], + "scale": [ + 3.01, + 3.01, + 3.01 + ] }, "firstperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [9.25, 6.5, 34], - "scale": [4, 4, 4] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 9.25, + 6.5, + 34 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_lefthand": { - "rotation": [90, 152, 1.75], - "translation": [9.25, -7.75, 34], - "scale": [4, 4, 4] + "rotation": [ + 90, + 152, + 1.75 + ], + "translation": [ + 9.25, + -7.75, + 34 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 21, 18.5], - "scale": [4, 4, 4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 21, + 18.5 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 25.25, 36.5], - "scale": [4, 4, 4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 25.25, + 36.5 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "manbou", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/medaka.json b/pack/assets/minecraft/models/fish/medaka.json index 17fddaac..05d55a6e 100644 --- a/pack/assets/minecraft/models/fish/medaka.json +++ b/pack/assets/minecraft/models/fish/medaka.json @@ -2,552 +2,2895 @@ "__name": "メダカ", "credit": "Made with Blockbench", "textures": { - "2": "fish/medaka" + "2": "item/fish/medaka" }, "elements": [ { "name": "medaka_0", - "from": [10.25, 0, 5], - "to": [11, 0.25, 9.25], + "from": [ + 10.25, + 0, + 5 + ], + "to": [ + 11, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11, 5, 10.25, 5.25], "texture": "#2"}, - "east": {"uv": [10.75, 5, 11, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 9, 11, 9.25], "texture": "#2"}, - "west": {"uv": [10.25, 5, 10.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 5, 11, 9.25], "texture": "#2"}, - "down": {"uv": [10.25, 9.25, 11, 5], "texture": "#2"} + "north": { + "uv": [ + 11, + 5, + 10.25, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 9, + 11, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 5, + 10.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 5, + 11, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 9.25, + 11, + 5 + ], + "texture": "#2" + } } }, { "name": "medaka_1", - "from": [14, 0, 5], - "to": [15.5, 0.25, 9.5], + "from": [ + 14, + 0, + 5 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 5, 14, 5.25], "texture": "#2"}, - "east": {"uv": [15.25, 5, 15.5, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14, 9.25, 15.5, 9.5], "texture": "#2"}, - "west": {"uv": [14, 5, 14.25, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14, 5, 15.5, 9.5], "texture": "#2"}, - "down": {"uv": [14, 9.5, 15.5, 5], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 5, + 14, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 5, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14, + 9.25, + 15.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14, + 5, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14, + 5, + 15.5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14, + 9.5, + 15.5, + 5 + ], + "texture": "#2" + } } }, { "name": "medaka_2", - "from": [10, 0, 5.25], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 5.25 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 5.25, 10, 5.5], "texture": "#2"}, - "east": {"uv": [10, 5.25, 10.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#2"}, - "west": {"uv": [10, 5.25, 10.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 5.25, 10.25, 10], "texture": "#2"}, - "down": {"uv": [10, 10, 10.25, 5.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 5.25, + 10, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 5.25, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 5.25, + 10.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 5.25 + ], + "texture": "#2" + } } }, { "name": "medaka_3", - "from": [11, 0, 5.25], - "to": [11.5, 0.25, 6.25], + "from": [ + 11, + 0, + 5.25 + ], + "to": [ + 11.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.5, 5.25, 11, 5.5], "texture": "#2"}, - "east": {"uv": [11.25, 5.25, 11.5, 6.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 6, 11.5, 6.25], "texture": "#2"}, - "west": {"uv": [11, 5.25, 11.25, 6.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 5.25, 11.5, 6.25], "texture": "#2"}, - "down": {"uv": [11, 6.25, 11.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 5.25, + 11, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 5.25, + 11.5, + 6.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 6, + 11.5, + 6.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 5.25, + 11.25, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 5.25, + 11.5, + 6.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 6.25, + 11.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "medaka_4", - "from": [13.75, 0, 5.25], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 5.25 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 5.25, 13.75, 5.5], "texture": "#2"}, - "east": {"uv": [13.75, 5.25, 14, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#2"}, - "west": {"uv": [13.75, 5.25, 14, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 5.25, 14, 9.5], "texture": "#2"}, - "down": {"uv": [13.75, 9.5, 14, 5.25], "texture": "#2"} + "north": { + "uv": [ + 14, + 5.25, + 13.75, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.75, + 5.25, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 5.25, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 5.25, + 14, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 5.25 + ], + "texture": "#2" + } } }, { "name": "medaka_5", - "from": [15.5, 0, 5.25], - "to": [15.75, 0.25, 9.25], + "from": [ + 15.5, + 0, + 5.25 + ], + "to": [ + 15.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.75, 5.25, 15.5, 5.5], "texture": "#2"}, - "east": {"uv": [15.5, 5.25, 15.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 9, 15.75, 9.25], "texture": "#2"}, - "west": {"uv": [15.5, 5.25, 15.75, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 5.25, 15.75, 9.25], "texture": "#2"}, - "down": {"uv": [15.5, 9.25, 15.75, 5.25], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 5.25, + 15.5, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 5.25, + 15.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 9, + 15.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 5.25, + 15.75, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 5.25, + 15.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 9.25, + 15.75, + 5.25 + ], + "texture": "#2" + } } }, { "name": "medaka_6", - "from": [9.75, 0, 5.5], - "to": [10, 0.25, 10.25], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10, 5.5, 9.75, 5.75], "texture": "#2"}, - "east": {"uv": [9.75, 5.5, 10, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#2"}, - "west": {"uv": [9.75, 5.5, 10, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 5.5, 10, 10.25], "texture": "#2"}, - "down": {"uv": [9.75, 10.25, 10, 5.5], "texture": "#2"} + "north": { + "uv": [ + 10, + 5.5, + 9.75, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 5.5 + ], + "texture": "#2" + } } }, { "name": "medaka_7", - "from": [11.5, 0, 5.5], - "to": [11.75, 0.25, 6], + "from": [ + 11.5, + 0, + 5.5 + ], + "to": [ + 11.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11.75, 5.5, 11.5, 5.75], "texture": "#2"}, - "east": {"uv": [11.5, 5.5, 11.75, 6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 5.75, 11.75, 6], "texture": "#2"}, - "west": {"uv": [11.5, 5.5, 11.75, 6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 5.5, 11.75, 6], "texture": "#2"}, - "down": {"uv": [11.5, 6, 11.75, 5.5], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 5.5, + 11.5, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 6, + 11.75, + 5.5 + ], + "texture": "#2" + } } }, { "name": "medaka_8", - "from": [13.25, 0, 5.5], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.25, + 0, + 5.5 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 5.5, 13.25, 5.75], "texture": "#2"}, - "east": {"uv": [13.5, 5.5, 13.75, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 9, 13.75, 9.25], "texture": "#2"}, - "west": {"uv": [13.25, 5.5, 13.5, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 5.5, 13.75, 9.25], "texture": "#2"}, - "down": {"uv": [13.25, 9.25, 13.75, 5.5], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 5.5, + 13.25, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 5.5, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.75, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 5.5, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 5.5, + 13.75, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.75, + 5.5 + ], + "texture": "#2" + } } }, { "name": "medaka_9", - "from": [3.25, 0, 5.75], - "to": [9.75, 0.25, 9.5], + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 5.75, 3.25, 6], "texture": "#2"}, - "east": {"uv": [9.5, 5.75, 9.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.25, 9.25, 9.75, 9.5], "texture": "#2"}, - "west": {"uv": [3.25, 5.75, 3.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.25, 5.75, 9.75, 9.5], "texture": "#2"}, - "down": {"uv": [3.25, 9.5, 9.75, 5.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 5.75, + 3.25, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 5.75, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 9.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 9.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 9.75, + 5.75 + ], + "texture": "#2" + } } }, { "name": "medaka_10", - "from": [12.75, 0, 5.75], - "to": [13.25, 0.25, 9], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.25, 5.75, 12.75, 6], "texture": "#2"}, - "east": {"uv": [13, 5.75, 13.25, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.75, 8.75, 13.25, 9], "texture": "#2"}, - "west": {"uv": [12.75, 5.75, 13, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.75, 5.75, 13.25, 9], "texture": "#2"}, - "down": {"uv": [12.75, 9, 13.25, 5.75], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 5.75, + 12.75, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 5.75, + 13.25, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.75, + 8.75, + 13.25, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13.25, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.75, + 9, + 13.25, + 5.75 + ], + "texture": "#2" + } } }, { "name": "medaka_11", - "from": [1.25, 0, 6], - "to": [3.25, 0.25, 8.75], + "from": [ + 1.25, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [3.25, 6, 1.25, 6.25], "texture": "#2"}, - "east": {"uv": [3, 6, 3.25, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 8.5, 3.25, 8.75], "texture": "#2"}, - "west": {"uv": [1.25, 6, 1.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 6, 3.25, 8.75], "texture": "#2"}, - "down": {"uv": [1.25, 8.75, 3.25, 6], "texture": "#2"} + "north": { + "uv": [ + 3.25, + 6, + 1.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 3.25, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 6, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 6, + 3.25, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 3.25, + 6 + ], + "texture": "#2" + } } }, { "name": "medaka_12", - "from": [12.25, 0, 6], - "to": [12.75, 0.25, 8.75], + "from": [ + 12.25, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.75, 6, 12.25, 6.25], "texture": "#2"}, - "east": {"uv": [12.5, 6, 12.75, 8.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.25, 8.5, 12.75, 8.75], "texture": "#2"}, - "west": {"uv": [12.25, 6, 12.5, 8.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.25, 6, 12.75, 8.75], "texture": "#2"}, - "down": {"uv": [12.25, 8.75, 12.75, 6], "texture": "#2"} + "north": { + "uv": [ + 12.75, + 6, + 12.25, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 8.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.25, + 8.5, + 12.75, + 8.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.25, + 6, + 12.5, + 8.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.25, + 6, + 12.75, + 8.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.25, + 8.75, + 12.75, + 6 + ], + "texture": "#2" + } } }, { "name": "medaka_13", - "from": [0.5, 0, 6.25], - "to": [1.25, 0.25, 8], + "from": [ + 0.5, + 0, + 6.25 + ], + "to": [ + 1.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.25, 6.25, 0.5, 6.5], "texture": "#2"}, - "east": {"uv": [1, 6.25, 1.25, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 7.75, 1.25, 8], "texture": "#2"}, - "west": {"uv": [0.5, 6.25, 0.75, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 6.25, 1.25, 8], "texture": "#2"}, - "down": {"uv": [0.5, 8, 1.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 6.25, + 0.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6.25, + 1.25, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 1.25, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 6.25, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 6.25, + 1.25, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 8, + 1.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "medaka_14", - "from": [11.75, 0, 6.25], - "to": [12.25, 0.25, 8.5], + "from": [ + 11.75, + 0, + 6.25 + ], + "to": [ + 12.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.25, 6.25, 11.75, 6.5], "texture": "#2"}, - "east": {"uv": [12, 6.25, 12.25, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 8.25, 12.25, 8.5], "texture": "#2"}, - "west": {"uv": [11.75, 6.25, 12, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 6.25, 12.25, 8.5], "texture": "#2"}, - "down": {"uv": [11.75, 8.5, 12.25, 6.25], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 6.25, + 11.75, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 6.25, + 12.25, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 8.25, + 12.25, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 6.25, + 12, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 6.25, + 12.25, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 8.5, + 12.25, + 6.25 + ], + "texture": "#2" + } } }, { "name": "medaka_15", - "from": [0.25, 0, 6.5], - "to": [0.5, 0.25, 7.5], + "from": [ + 0.25, + 0, + 6.5 + ], + "to": [ + 0.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [0.5, 6.5, 0.25, 6.75], "texture": "#2"}, - "east": {"uv": [0.25, 6.5, 0.5, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.25, 7.25, 0.5, 7.5], "texture": "#2"}, - "west": {"uv": [0.25, 6.5, 0.5, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.25, 6.5, 0.5, 7.5], "texture": "#2"}, - "down": {"uv": [0.25, 7.5, 0.5, 6.5], "texture": "#2"} + "north": { + "uv": [ + 0.5, + 6.5, + 0.25, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.25, + 6.5, + 0.5, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.25, + 7.25, + 0.5, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.25, + 6.5, + 0.5, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.25, + 6.5, + 0.5, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.25, + 7.5, + 0.5, + 6.5 + ], + "texture": "#2" + } } }, { "name": "medaka_16", - "from": [11, 0, 6.5], - "to": [11.75, 0.25, 8.25], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.75, 6.5, 11, 6.75], "texture": "#2"}, - "east": {"uv": [11.5, 6.5, 11.75, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 8, 11.75, 8.25], "texture": "#2"}, - "west": {"uv": [11, 6.5, 11.25, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 6.5, 11.75, 8.25], "texture": "#2"}, - "down": {"uv": [11, 8.25, 11.75, 6.5], "texture": "#2"} + "north": { + "uv": [ + 11.75, + 6.5, + 11, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.5, + 6.5, + 11.75, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 8, + 11.75, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.75, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 8.25, + 11.75, + 6.5 + ], + "texture": "#2" + } } }, { "name": "medaka_17", - "from": [0.75, 0, 8], - "to": [1.25, 0.25, 8.25], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 8, 0.75, 8.25], "texture": "#2"}, - "east": {"uv": [1, 8, 1.25, 8.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 8, 1.25, 8.25], "texture": "#2"}, - "west": {"uv": [0.75, 8, 1, 8.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 8, 1.25, 8.25], "texture": "#2"}, - "down": {"uv": [0.75, 8.25, 1.25, 8], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 8, + 0.75, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 8, + 1.25, + 8.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 8, + 1.25, + 8.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1.25, + 8 + ], + "texture": "#2" + } } }, { "name": "medaka_18", - "from": [1, 0, 8.25], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 8.25 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 8.25, 1, 8.5], "texture": "#2"}, - "east": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#2"}, - "west": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#2"}, - "down": {"uv": [1, 8.5, 1.25, 8.25], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 8.25, + 1, + 8.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 8.25 + ], + "texture": "#2" + } } }, { "name": "medaka_19", - "from": [11, 0, 8.5], - "to": [11.25, 0.25, 9], + "from": [ + 11, + 0, + 8.5 + ], + "to": [ + 11.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.25, 8.5, 11, 8.75], "texture": "#2"}, - "east": {"uv": [11, 8.5, 11.25, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 8.75, 11.25, 9], "texture": "#2"}, - "west": {"uv": [11, 8.5, 11.25, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 8.5, 11.25, 9], "texture": "#2"}, - "down": {"uv": [11, 9, 11.25, 8.5], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 8.5, + 11, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.25, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 8.75, + 11.25, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 8.5, + 11.25, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 8.5, + 11.25, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 9, + 11.25, + 8.5 + ], + "texture": "#2" + } } }, { "name": "medaka_20", - "from": [1.5, 0, 8.75], - "to": [3.25, 0.25, 9], + "from": [ + 1.5, + 0, + 8.75 + ], + "to": [ + 3.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.25, 8.75, 1.5, 9], "texture": "#2"}, - "east": {"uv": [3, 8.75, 3.25, 9], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 8.75, 3.25, 9], "texture": "#2"}, - "west": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 8.75, 3.25, 9], "texture": "#2"}, - "down": {"uv": [1.5, 9, 3.25, 8.75], "texture": "#2"} + "north": { + "uv": [ + 3.25, + 8.75, + 1.5, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 3.25, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 8.75, + 3.25, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 9, + 3.25, + 8.75 + ], + "texture": "#2" + } } }, { "name": "medaka_21", - "from": [2, 0, 9], - "to": [3.25, 0.25, 9.25], + "from": [ + 2, + 0, + 9 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 9, 2, 9.25], "texture": "#2"}, - "east": {"uv": [3, 9, 3.25, 9.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2, 9, 3.25, 9.25], "texture": "#2"}, - "west": {"uv": [2, 9, 2.25, 9.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2, 9, 3.25, 9.25], "texture": "#2"}, - "down": {"uv": [2, 9.25, 3.25, 9], "texture": "#2"} + "north": { + "uv": [ + 3.25, + 9, + 2, + 9.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2, + 9, + 3.25, + 9.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 9, + 3.25, + 9.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 9.25, + 3.25, + 9 + ], + "texture": "#2" + } } }, { "name": "medaka_22", - "from": [2.5, 0, 9.25], - "to": [3.25, 0.25, 9.5], + "from": [ + 2.5, + 0, + 9.25 + ], + "to": [ + 3.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.25, 9.25, 2.5, 9.5], "texture": "#2"}, - "east": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.5, 9.25, 3.25, 9.5], "texture": "#2"}, - "west": {"uv": [2.5, 9.25, 2.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.5, 9.25, 3.25, 9.5], "texture": "#2"}, - "down": {"uv": [2.5, 9.5, 3.25, 9.25], "texture": "#2"} + "north": { + "uv": [ + 3.25, + 9.25, + 2.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 3.25, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 9.25, + 3.25, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 3.25, + 9.25 + ], + "texture": "#2" + } } }, { "name": "medaka_23", - "from": [10.25, 0, 9.25], - "to": [10.75, 0.25, 9.5], + "from": [ + 10.25, + 0, + 9.25 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.75, 9.25, 10.25, 9.5], "texture": "#2"}, - "east": {"uv": [10.5, 9.25, 10.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 9.25, 10.75, 9.5], "texture": "#2"}, - "west": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 9.25, 10.75, 9.5], "texture": "#2"}, - "down": {"uv": [10.25, 9.5, 10.75, 9.25], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 9.25, + 10.25, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 9.25, + 10.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 9.25, + 10.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 9.5, + 10.75, + 9.25 + ], + "texture": "#2" + } } }, { "name": "medaka_24", - "from": [2.75, 0, 9.5], - "to": [7, 0.25, 9.75], + "from": [ + 2.75, + 0, + 9.5 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 9.5, 2.75, 9.75], "texture": "#2"}, - "east": {"uv": [6.75, 9.5, 7, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.75, 9.5, 7, 9.75], "texture": "#2"}, - "west": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.75, 9.5, 7, 9.75], "texture": "#2"}, - "down": {"uv": [2.75, 9.75, 7, 9.5], "texture": "#2"} + "north": { + "uv": [ + 7, + 9.5, + 2.75, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.75, + 9.5, + 7, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.75, + 9.5, + 7, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.75, + 9.75, + 7, + 9.5 + ], + "texture": "#2" + } } }, { "name": "medaka_25", - "from": [7.75, 0, 9.5], - "to": [9.75, 0.25, 9.75], + "from": [ + 7.75, + 0, + 9.5 + ], + "to": [ + 9.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.75, 9.5, 7.75, 9.75], "texture": "#2"}, - "east": {"uv": [9.5, 9.5, 9.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 9.5, 9.75, 9.75], "texture": "#2"}, - "west": {"uv": [7.75, 9.5, 8, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 9.5, 9.75, 9.75], "texture": "#2"}, - "down": {"uv": [7.75, 9.75, 9.75, 9.5], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 9.5, + 7.75, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 9.5, + 9.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 9.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 9.75, + 9.75, + 9.5 + ], + "texture": "#2" + } } }, { "name": "medaka_26", - "from": [10.25, 0, 9.5], - "to": [10.5, 0.25, 9.75], + "from": [ + 10.25, + 0, + 9.5 + ], + "to": [ + 10.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.5, 9.5, 10.25, 9.75], "texture": "#2"}, - "east": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.25, 9.5, 10.5, 9.75], "texture": "#2"}, - "west": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.25, 9.5, 10.5, 9.75], "texture": "#2"}, - "down": {"uv": [10.25, 9.75, 10.5, 9.5], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 9.5, + 10.25, + 9.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 10.5, + 9.5 + ], + "texture": "#2" + } } }, { "name": "medaka_27", - "from": [3.5, 0, 9.75], - "to": [6.75, 0.25, 10], + "from": [ + 3.5, + 0, + 9.75 + ], + "to": [ + 6.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.75, 9.75, 3.5, 10], "texture": "#2"}, - "east": {"uv": [6.5, 9.75, 6.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.5, 9.75, 6.75, 10], "texture": "#2"}, - "west": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.5, 9.75, 6.75, 10], "texture": "#2"}, - "down": {"uv": [3.5, 10, 6.75, 9.75], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 9.75, + 3.5, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 6.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 9.75, + 6.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 10, + 6.75, + 9.75 + ], + "texture": "#2" + } } }, { "name": "medaka_28", - "from": [8, 0, 9.75], - "to": [9.75, 0.25, 10], + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 9.75, 8, 10], "texture": "#2"}, - "east": {"uv": [9.5, 9.75, 9.75, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 9.75, 9.75, 10], "texture": "#2"}, - "west": {"uv": [8, 9.75, 8.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 9.75, 9.75, 10], "texture": "#2"}, - "down": {"uv": [8, 10, 9.75, 9.75], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 9.75, + 8, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 9.75, + 9.75, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 9.75, + 9.75, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 10, + 9.75, + 9.75 + ], + "texture": "#2" + } } }, { "name": "medaka_29", - "from": [5.25, 0, 10], - "to": [7, 0.25, 10.25], + "from": [ + 5.25, + 0, + 10 + ], + "to": [ + 7, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7, 10, 5.25, 10.25], "texture": "#2"}, - "east": {"uv": [6.75, 10, 7, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 10, 7, 10.25], "texture": "#2"}, - "west": {"uv": [5.25, 10, 5.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 10, 7, 10.25], "texture": "#2"}, - "down": {"uv": [5.25, 10.25, 7, 10], "texture": "#2"} + "north": { + "uv": [ + 7, + 10, + 5.25, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 10, + 7, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 10, + 7, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 10.25, + 7, + 10 + ], + "texture": "#2" + } } }, { "name": "medaka_30", - "from": [8.25, 0, 10], - "to": [9.75, 0.25, 10.25], + "from": [ + 8.25, + 0, + 10 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.75, 10, 8.25, 10.25], "texture": "#2"}, - "east": {"uv": [9.5, 10, 9.75, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 10, 9.75, 10.25], "texture": "#2"}, - "west": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 10, 9.75, 10.25], "texture": "#2"}, - "down": {"uv": [8.25, 10.25, 9.75, 10], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 10, + 8.25, + 10.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 10, + 9.75, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 10.25, + 9.75, + 10 + ], + "texture": "#2" + } } }, { "name": "medaka_31", - "from": [5.5, 0, 10.25], - "to": [7, 0.25, 10.5], + "from": [ + 5.5, + 0, + 10.25 + ], + "to": [ + 7, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7, 10.25, 5.5, 10.5], "texture": "#2"}, - "east": {"uv": [6.75, 10.25, 7, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 10.25, 7, 10.5], "texture": "#2"}, - "west": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 10.25, 7, 10.5], "texture": "#2"}, - "down": {"uv": [5.5, 10.5, 7, 10.25], "texture": "#2"} + "north": { + "uv": [ + 7, + 10.25, + 5.5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 7, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 10.25, + 7, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 7, + 10.25 + ], + "texture": "#2" + } } }, { "name": "medaka_32", - "from": [8.5, 0, 10.25], - "to": [9.25, 0.25, 10.75], + "from": [ + 8.5, + 0, + 10.25 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 10.25, 8.5, 10.5], "texture": "#2"}, - "east": {"uv": [9, 10.25, 9.25, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 10.5, 9.25, 10.75], "texture": "#2"}, - "west": {"uv": [8.5, 10.25, 8.75, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 10.25, 9.25, 10.75], "texture": "#2"}, - "down": {"uv": [8.5, 10.75, 9.25, 10.25], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 10.25, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 9.25, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 10.25, + 9.25, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 9.25, + 10.25 + ], + "texture": "#2" + } } }, { "name": "medaka_33", - "from": [9.5, 0, 10.25], - "to": [9.75, 0.25, 10.5], + "from": [ + 9.5, + 0, + 10.25 + ], + "to": [ + 9.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.75, 10.25, 9.5, 10.5], "texture": "#2"}, - "east": {"uv": [9.5, 10.25, 9.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#2"}, - "west": {"uv": [9.5, 10.25, 9.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#2"}, - "down": {"uv": [9.5, 10.5, 9.75, 10.25], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.25 + ], + "texture": "#2" + } } }, { "name": "medaka_34", - "from": [5.75, 0, 10.5], - "to": [7, 0.25, 10.75], + "from": [ + 5.75, + 0, + 10.5 + ], + "to": [ + 7, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7, 10.5, 5.75, 10.75], "texture": "#2"}, - "east": {"uv": [6.75, 10.5, 7, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.75, 10.5, 7, 10.75], "texture": "#2"}, - "west": {"uv": [5.75, 10.5, 6, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.75, 10.5, 7, 10.75], "texture": "#2"}, - "down": {"uv": [5.75, 10.75, 7, 10.5], "texture": "#2"} + "north": { + "uv": [ + 7, + 10.5, + 5.75, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 7, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.75, + 10.5, + 7, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 7, + 10.5 + ], + "texture": "#2" + } } }, { "name": "medaka_35", - "from": [9.25, 0, 10.5], - "to": [9.5, 0.25, 10.75], + "from": [ + 9.25, + 0, + 10.5 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 10.5, 9.25, 10.75], "texture": "#2"}, - "east": {"uv": [9.25, 10.5, 9.5, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#2"}, - "west": {"uv": [9.25, 10.5, 9.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#2"}, - "down": {"uv": [9.25, 10.75, 9.5, 10.5], "texture": "#2"} + "north": { + "uv": [ + 9.5, + 10.5, + 9.25, + 10.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 10.5 + ], + "texture": "#2" + } } }, { "name": "medaka_36", - "from": [6, 0, 10.75], - "to": [6.75, 0.25, 11], + "from": [ + 6, + 0, + 10.75 + ], + "to": [ + 6.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.75, 10.75, 6, 11], "texture": "#2"}, - "east": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [6, 10.75, 6.75, 11], "texture": "#2"}, - "west": {"uv": [6, 10.75, 6.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [6, 10.75, 6.75, 11], "texture": "#2"}, - "down": {"uv": [6, 11, 6.75, 10.75], "texture": "#2"} + "north": { + "uv": [ + 6.75, + 10.75, + 6, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.75, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 10.75, + 6.75, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11, + 6.75, + 10.75 + ], + "texture": "#2" + } } }, { "name": "medaka_37", - "from": [8.75, 0, 10.75], - "to": [9.25, 0.25, 11], + "from": [ + 8.75, + 0, + 10.75 + ], + "to": [ + 9.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.25, 10.75, 8.75, 11], "texture": "#2"}, - "east": {"uv": [9, 10.75, 9.25, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 10.75, 9.25, 11], "texture": "#2"}, - "west": {"uv": [8.75, 10.75, 9, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 10.75, 9.25, 11], "texture": "#2"}, - "down": {"uv": [8.75, 11, 9.25, 10.75], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 10.75, + 8.75, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9.25, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 10.75, + 9.25, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 11, + 9.25, + 10.75 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 0.5, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 0.5, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 0.5, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 0.5, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 0.5, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 0.5, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 0.5, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 0.5, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 0.5, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 0.5, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [0.25, 7.25, 2.5], - "scale": [0.28, 0.28, 0.28] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + 0.25, + 7.25, + 2.5 + ], + "scale": [ + 0.28, + 0.28, + 0.28 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "medaka", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/minokasago.json b/pack/assets/minecraft/models/fish/minokasago.json index 2e7d102b..e4b0007e 100644 --- a/pack/assets/minecraft/models/fish/minokasago.json +++ b/pack/assets/minecraft/models/fish/minokasago.json @@ -2,1072 +2,5775 @@ "__name": "ミノカサゴ", "credit": "Made with Blockbench", "textures": { - "0": "fish/minokasago", - "particle": "fish/minokasago" + "0": "item/fish/minokasago", + "particle": "item/fish/minokasago" }, "elements": [ { "name": "minokasago_0", - "from": [6.25, 0, 1.75], - "to": [6.5, 0.25, 12.25], + "from": [ + 6.25, + 0, + 1.75 + ], + "to": [ + 6.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6.5, 1.75, 6.25, 2], "texture": "#0"}, - "east": {"uv": [6.25, 1.75, 6.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 12, 6.5, 12.25], "texture": "#0"}, - "west": {"uv": [6.25, 1.75, 6.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 1.75, 6.5, 12.25], "texture": "#0"}, - "down": {"uv": [6.25, 12.25, 6.5, 1.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 1.75, + 6.25, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 1.75, + 6.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 12, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 1.75, + 6.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 1.75, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12.25, + 6.5, + 1.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_1", - "from": [4.75, 0, 2], - "to": [5, 0.25, 11.75], + "from": [ + 4.75, + 0, + 2 + ], + "to": [ + 5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5, 2, 4.75, 2.25], "texture": "#0"}, - "east": {"uv": [4.75, 2, 5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 11.5, 5, 11.75], "texture": "#0"}, - "west": {"uv": [4.75, 2, 5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 2, 5, 11.75], "texture": "#0"}, - "down": {"uv": [4.75, 11.75, 5, 2], "texture": "#0"} + "north": { + "uv": [ + 5, + 2, + 4.75, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 2, + 5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 11.5, + 5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 2, + 5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 2, + 5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 11.75, + 5, + 2 + ], + "texture": "#0" + } } }, { "name": "minokasago_2", - "from": [6, 0, 2], - "to": [6.25, 0.25, 12.25], + "from": [ + 6, + 0, + 2 + ], + "to": [ + 6.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6.25, 2, 6, 2.25], "texture": "#0"}, - "east": {"uv": [6, 2, 6.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 12, 6.25, 12.25], "texture": "#0"}, - "west": {"uv": [6, 2, 6.25, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 2, 6.25, 12.25], "texture": "#0"}, - "down": {"uv": [6, 12.25, 6.25, 2], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 2, + 6, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2, + 6.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 12, + 6.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2, + 6.25, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 2, + 6.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 12.25, + 6.25, + 2 + ], + "texture": "#0" + } } }, { "name": "minokasago_3", - "from": [6.5, 0, 2], - "to": [6.75, 0.25, 2.5], + "from": [ + 6.5, + 0, + 2 + ], + "to": [ + 6.75, + 0.25, + 2.5 + ], "faces": { - "north": {"uv": [6.75, 2, 6.5, 2.25], "texture": "#0"}, - "east": {"uv": [6.5, 2, 6.75, 2.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 2.25, 6.75, 2.5], "texture": "#0"}, - "west": {"uv": [6.5, 2, 6.75, 2.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 2, 6.75, 2.5], "texture": "#0"}, - "down": {"uv": [6.5, 2.5, 6.75, 2], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 2, + 6.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 2, + 6.75, + 2.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.25, + 6.75, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 2, + 6.75, + 2.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2, + 6.75, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 2.5, + 6.75, + 2 + ], + "texture": "#0" + } } }, { "name": "minokasago_4", - "from": [7.25, 0, 2], - "to": [7.5, 0.25, 9.5], + "from": [ + 7.25, + 0, + 2 + ], + "to": [ + 7.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.5, 2, 7.25, 2.25], "texture": "#0"}, - "east": {"uv": [7.25, 2, 7.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.25, 7.5, 9.5], "texture": "#0"}, - "west": {"uv": [7.25, 2, 7.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 2, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [7.25, 9.5, 7.5, 2], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 2, + 7.25, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 2, + 7.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 2, + 7.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 2, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.5, + 7.5, + 2 + ], + "texture": "#0" + } } }, { "name": "minokasago_5", - "from": [4.5, 0, 2.25], - "to": [4.75, 0.25, 4], + "from": [ + 4.5, + 0, + 2.25 + ], + "to": [ + 4.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [4.75, 2.25, 4.5, 2.5], "texture": "#0"}, - "east": {"uv": [4.5, 2.25, 4.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 3.75, 4.75, 4], "texture": "#0"}, - "west": {"uv": [4.5, 2.25, 4.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 2.25, 4.75, 4], "texture": "#0"}, - "down": {"uv": [4.5, 4, 4.75, 2.25], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 2.25, + 4.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 2.25, + 4.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.75, + 4.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 2.25, + 4.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 2.25, + 4.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4, + 4.75, + 2.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_6", - "from": [5, 0, 2.25], - "to": [5.25, 0.25, 12], + "from": [ + 5, + 0, + 2.25 + ], + "to": [ + 5.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [5.25, 2.25, 5, 2.5], "texture": "#0"}, - "east": {"uv": [5, 2.25, 5.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 11.75, 5.25, 12], "texture": "#0"}, - "west": {"uv": [5, 2.25, 5.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 2.25, 5.25, 12], "texture": "#0"}, - "down": {"uv": [5, 12, 5.25, 2.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 2.25, + 5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 2.25, + 5.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 11.75, + 5.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 2.25, + 5.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 2.25, + 5.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 12, + 5.25, + 2.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_7", - "from": [7, 0, 2.25], - "to": [7.25, 0.25, 9.5], + "from": [ + 7, + 0, + 2.25 + ], + "to": [ + 7.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.25, 2.25, 7, 2.5], "texture": "#0"}, - "east": {"uv": [7, 2.25, 7.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.25, 7.25, 9.5], "texture": "#0"}, - "west": {"uv": [7, 2.25, 7.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 2.25, 7.25, 9.5], "texture": "#0"}, - "down": {"uv": [7, 9.5, 7.25, 2.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 2.25, + 7, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2.25, + 7.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2.25, + 7.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 2.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.5, + 7.25, + 2.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_8", - "from": [7.5, 0, 2.25], - "to": [7.75, 0.25, 9.5], + "from": [ + 7.5, + 0, + 2.25 + ], + "to": [ + 7.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.75, 2.25, 7.5, 2.5], "texture": "#0"}, - "east": {"uv": [7.5, 2.25, 7.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.25, 7.75, 9.5], "texture": "#0"}, - "west": {"uv": [7.5, 2.25, 7.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 2.25, 7.75, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.75, 2.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 2.25, + 7.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 2.25, + 7.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.25, + 7.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 2.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7.75, + 2.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_9", - "from": [5.75, 0, 2.5], - "to": [6, 0.25, 12.25], + "from": [ + 5.75, + 0, + 2.5 + ], + "to": [ + 6, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6, 2.5, 5.75, 2.75], "texture": "#0"}, - "east": {"uv": [5.75, 2.5, 6, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 12, 6, 12.25], "texture": "#0"}, - "west": {"uv": [5.75, 2.5, 6, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 2.5, 6, 12.25], "texture": "#0"}, - "down": {"uv": [5.75, 12.25, 6, 2.5], "texture": "#0"} + "north": { + "uv": [ + 6, + 2.5, + 5.75, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 2.5, + 6, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 12, + 6, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 2.5, + 6, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 2.5, + 6, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 12.25, + 6, + 2.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_10", - "from": [7.75, 0, 2.5], - "to": [8.5, 0.25, 3.5], + "from": [ + 7.75, + 0, + 2.5 + ], + "to": [ + 8.5, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [8.5, 2.5, 7.75, 2.75], "texture": "#0"}, - "east": {"uv": [8.25, 2.5, 8.5, 3.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 3.25, 8.5, 3.5], "texture": "#0"}, - "west": {"uv": [7.75, 2.5, 8, 3.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 2.5, 8.5, 3.5], "texture": "#0"}, - "down": {"uv": [7.75, 3.5, 8.5, 2.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 2.5, + 7.75, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2.5, + 8.5, + 3.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 3.25, + 8.5, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 2.5, + 8, + 3.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 2.5, + 8.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 3.5, + 8.5, + 2.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_11", - "from": [3.75, 0, 2.75], - "to": [4, 0.25, 4.5], + "from": [ + 3.75, + 0, + 2.75 + ], + "to": [ + 4, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [4, 2.75, 3.75, 3], "texture": "#0"}, - "east": {"uv": [3.75, 2.75, 4, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 4.25, 4, 4.5], "texture": "#0"}, - "west": {"uv": [3.75, 2.75, 4, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 2.75, 4, 4.5], "texture": "#0"}, - "down": {"uv": [3.75, 4.5, 4, 2.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 2.75, + 3.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 2.75, + 4, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 4.25, + 4, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 2.75, + 4, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 2.75, + 4, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 4.5, + 4, + 2.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_12", - "from": [6.5, 0, 2.75], - "to": [7, 0.25, 11.75], + "from": [ + 6.5, + 0, + 2.75 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 2.75, 6.5, 3], "texture": "#0"}, - "east": {"uv": [6.75, 2.75, 7, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 11.5, 7, 11.75], "texture": "#0"}, - "west": {"uv": [6.5, 2.75, 6.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 2.75, 7, 11.75], "texture": "#0"}, - "down": {"uv": [6.5, 11.75, 7, 2.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 2.75, + 6.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 2.75, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 7, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 2.75, + 6.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2.75, + 7, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 11.75, + 7, + 2.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_13", - "from": [8.5, 0, 2.75], - "to": [8.75, 0.25, 3], + "from": [ + 8.5, + 0, + 2.75 + ], + "to": [ + 8.75, + 0.25, + 3 + ], "faces": { - "north": {"uv": [8.75, 2.75, 8.5, 3], "texture": "#0"}, - "east": {"uv": [8.5, 2.75, 8.75, 3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 2.75, 8.75, 3], "texture": "#0"}, - "west": {"uv": [8.5, 2.75, 8.75, 3], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 2.75, 8.75, 3], "texture": "#0"}, - "down": {"uv": [8.5, 3, 8.75, 2.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 2.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2.75, + 8.75, + 3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 2.75, + 8.75, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.75, + 8.75, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 2.75, + 8.75, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 3, + 8.75, + 2.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_14", - "from": [3.5, 0, 3], - "to": [3.75, 0.25, 4], + "from": [ + 3.5, + 0, + 3 + ], + "to": [ + 3.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [3.75, 3, 3.5, 3.25], "texture": "#0"}, - "east": {"uv": [3.5, 3, 3.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 3.75, 3.75, 4], "texture": "#0"}, - "west": {"uv": [3.5, 3, 3.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 3, 3.75, 4], "texture": "#0"}, - "down": {"uv": [3.5, 4, 3.75, 3], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 3, + 3.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 3, + 3.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 3.75, + 3.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 3, + 3.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 3, + 3.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 4, + 3.75, + 3 + ], + "texture": "#0" + } } }, { "name": "minokasago_15", - "from": [4, 0, 3], - "to": [4.25, 0.25, 11], + "from": [ + 4, + 0, + 3 + ], + "to": [ + 4.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.25, 3, 4, 3.25], "texture": "#0"}, - "east": {"uv": [4, 3, 4.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.75, 4.25, 11], "texture": "#0"}, - "west": {"uv": [4, 3, 4.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 3, 4.25, 11], "texture": "#0"}, - "down": {"uv": [4, 11, 4.25, 3], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 3, + 4, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3, + 4.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 3, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 3, + 4.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 11, + 4.25, + 3 + ], + "texture": "#0" + } } }, { "name": "minokasago_16", - "from": [8.75, 0, 3.25], - "to": [9, 0.25, 4], + "from": [ + 8.75, + 0, + 3.25 + ], + "to": [ + 9, + 0.25, + 4 + ], "faces": { - "north": {"uv": [9, 3.25, 8.75, 3.5], "texture": "#0"}, - "east": {"uv": [8.75, 3.25, 9, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 3.75, 9, 4], "texture": "#0"}, - "west": {"uv": [8.75, 3.25, 9, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 3.25, 9, 4], "texture": "#0"}, - "down": {"uv": [8.75, 4, 9, 3.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 3.25, + 8.75, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 3.25, + 9, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 3.75, + 9, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 3.25, + 9, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 3.25, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4, + 9, + 3.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_17", - "from": [5.5, 0, 3.5], - "to": [5.75, 0.25, 12.25], + "from": [ + 5.5, + 0, + 3.5 + ], + "to": [ + 5.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [5.75, 3.5, 5.5, 3.75], "texture": "#0"}, - "east": {"uv": [5.5, 3.5, 5.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 12, 5.75, 12.25], "texture": "#0"}, - "west": {"uv": [5.5, 3.5, 5.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3.5, 5.75, 12.25], "texture": "#0"}, - "down": {"uv": [5.5, 12.25, 5.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 3.5, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 3.5, + 5.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 12, + 5.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.5, + 5.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.5, + 5.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 12.25, + 5.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_18", - "from": [7.75, 0, 3.5], - "to": [8.25, 0.25, 3.75], + "from": [ + 7.75, + 0, + 3.5 + ], + "to": [ + 8.25, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [8.25, 3.5, 7.75, 3.75], "texture": "#0"}, - "east": {"uv": [8, 3.5, 8.25, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 3.5, 8.25, 3.75], "texture": "#0"}, - "west": {"uv": [7.75, 3.5, 8, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 3.5, 8.25, 3.75], "texture": "#0"}, - "down": {"uv": [7.75, 3.75, 8.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 3.5, + 7.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3.5, + 8.25, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 3.5, + 8.25, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 3.5, + 8, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 3.5, + 8.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 3.75, + 8.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_19", - "from": [8.5, 0, 3.5], - "to": [8.75, 0.25, 9.25], + "from": [ + 8.5, + 0, + 3.5 + ], + "to": [ + 8.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.75, 3.5, 8.5, 3.75], "texture": "#0"}, - "east": {"uv": [8.5, 3.5, 8.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9, 8.75, 9.25], "texture": "#0"}, - "west": {"uv": [8.5, 3.5, 8.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 3.5, 8.75, 9.25], "texture": "#0"}, - "down": {"uv": [8.5, 9.25, 8.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 3.5, + 8.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3.5, + 8.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3.5, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3.5, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 8.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_20", - "from": [9, 0, 3.5], - "to": [9.25, 0.25, 3.75], + "from": [ + 9, + 0, + 3.5 + ], + "to": [ + 9.25, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [9.25, 3.5, 9, 3.75], "texture": "#0"}, - "east": {"uv": [9, 3.5, 9.25, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 3.5, 9.25, 3.75], "texture": "#0"}, - "west": {"uv": [9, 3.5, 9.25, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 3.5, 9.25, 3.75], "texture": "#0"}, - "down": {"uv": [9, 3.75, 9.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3.5, + 9.25, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3.5, + 9.25, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3.5, + 9.25, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3.5, + 9.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 3.75, + 9.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_21", - "from": [5.25, 0, 3.75], - "to": [5.5, 0.25, 12.25], + "from": [ + 5.25, + 0, + 3.75 + ], + "to": [ + 5.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [5.5, 3.75, 5.25, 4], "texture": "#0"}, - "east": {"uv": [5.25, 3.75, 5.5, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 12, 5.5, 12.25], "texture": "#0"}, - "west": {"uv": [5.25, 3.75, 5.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 3.75, 5.5, 12.25], "texture": "#0"}, - "down": {"uv": [5.25, 12.25, 5.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 3.75, + 5.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.75, + 5.5, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 12, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3.75, + 5.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 3.75, + 5.5, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 12.25, + 5.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_22", - "from": [7.75, 0, 3.75], - "to": [8, 0.25, 4], + "from": [ + 7.75, + 0, + 3.75 + ], + "to": [ + 8, + 0.25, + 4 + ], "faces": { - "north": {"uv": [8, 3.75, 7.75, 4], "texture": "#0"}, - "east": {"uv": [7.75, 3.75, 8, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 3.75, 8, 4], "texture": "#0"}, - "west": {"uv": [7.75, 3.75, 8, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 3.75, 8, 4], "texture": "#0"}, - "down": {"uv": [7.75, 4, 8, 3.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 4, + 8, + 3.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_23", - "from": [8.25, 0, 3.75], - "to": [8.5, 0.25, 9.5], + "from": [ + 8.25, + 0, + 3.75 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 3.75, 8.25, 4], "texture": "#0"}, - "east": {"uv": [8.25, 3.75, 8.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#0"}, - "west": {"uv": [8.25, 3.75, 8.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 3.75, 8.5, 9.5], "texture": "#0"}, - "down": {"uv": [8.25, 9.5, 8.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 3.75, + 8.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 3.75, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 3.75, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 3.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_24", - "from": [3, 0, 4], - "to": [3.25, 0.25, 4.75], + "from": [ + 3, + 0, + 4 + ], + "to": [ + 3.25, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [3.25, 4, 3, 4.25], "texture": "#0"}, - "east": {"uv": [3, 4, 3.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 4.5, 3.25, 4.75], "texture": "#0"}, - "west": {"uv": [3, 4, 3.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 4, 3.25, 4.75], "texture": "#0"}, - "down": {"uv": [3, 4.75, 3.25, 4], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 4, + 3, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 4, + 3.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4.5, + 3.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 4, + 3.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 4, + 3.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 4.75, + 3.25, + 4 + ], + "texture": "#0" + } } }, { "name": "minokasago_25", - "from": [4.25, 0, 4], - "to": [4.5, 0.25, 11.5], + "from": [ + 4.25, + 0, + 4 + ], + "to": [ + 4.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4.5, 4, 4.25, 4.25], "texture": "#0"}, - "east": {"uv": [4.25, 4, 4.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 11.25, 4.5, 11.5], "texture": "#0"}, - "west": {"uv": [4.25, 4, 4.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4, 4.5, 11.5], "texture": "#0"}, - "down": {"uv": [4.25, 11.5, 4.5, 4], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 4, + 4.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4, + 4.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 11.25, + 4.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4, + 4.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4, + 4.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11.5, + 4.5, + 4 + ], + "texture": "#0" + } } }, { "name": "minokasago_26", - "from": [8, 0, 4], - "to": [8.25, 0.25, 9.5], + "from": [ + 8, + 0, + 4 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.25, 4, 8, 4.25], "texture": "#0"}, - "east": {"uv": [8, 4, 8.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#0"}, - "west": {"uv": [8, 4, 8.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4, 8.25, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 8.25, 4], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 4 + ], + "texture": "#0" + } } }, { "name": "minokasago_27", - "from": [9, 0, 4], - "to": [9.25, 0.25, 4.75], + "from": [ + 9, + 0, + 4 + ], + "to": [ + 9.25, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [9.25, 4, 9, 4.25], "texture": "#0"}, - "east": {"uv": [9, 4, 9.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 4.5, 9.25, 4.75], "texture": "#0"}, - "west": {"uv": [9, 4, 9.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4, 9.25, 4.75], "texture": "#0"}, - "down": {"uv": [9, 4.75, 9.25, 4], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 4, + 9, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4, + 9.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.5, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4, + 9.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 4.75, + 9.25, + 4 + ], + "texture": "#0" + } } }, { "name": "minokasago_28", - "from": [2.75, 0, 4.25], - "to": [3, 0.25, 4.5], + "from": [ + 2.75, + 0, + 4.25 + ], + "to": [ + 3, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [3, 4.25, 2.75, 4.5], "texture": "#0"}, - "east": {"uv": [2.75, 4.25, 3, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 4.25, 3, 4.5], "texture": "#0"}, - "west": {"uv": [2.75, 4.25, 3, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 4.25, 3, 4.5], "texture": "#0"}, - "down": {"uv": [2.75, 4.5, 3, 4.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 4.25, + 2.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 4.25, + 3, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 4.25, + 3, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 4.25, + 3, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 4.25, + 3, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 4.5, + 3, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_29", - "from": [3.25, 0, 4.25], - "to": [3.5, 0.25, 5], + "from": [ + 3.25, + 0, + 4.25 + ], + "to": [ + 3.5, + 0.25, + 5 + ], "faces": { - "north": {"uv": [3.5, 4.25, 3.25, 4.5], "texture": "#0"}, - "east": {"uv": [3.25, 4.25, 3.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 4.75, 3.5, 5], "texture": "#0"}, - "west": {"uv": [3.25, 4.25, 3.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 4.25, 3.5, 5], "texture": "#0"}, - "down": {"uv": [3.25, 5, 3.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 4.25, + 3.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 4.25, + 3.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 4.75, + 3.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 4.25, + 3.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4.25, + 3.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5, + 3.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_30", - "from": [7.75, 0, 4.25], - "to": [8, 0.25, 9.25], + "from": [ + 7.75, + 0, + 4.25 + ], + "to": [ + 8, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8, 4.25, 7.75, 4.5], "texture": "#0"}, - "east": {"uv": [7.75, 4.25, 8, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9, 8, 9.25], "texture": "#0"}, - "west": {"uv": [7.75, 4.25, 8, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4.25, 8, 9.25], "texture": "#0"}, - "down": {"uv": [7.75, 9.25, 8, 4.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 4.25, + 7.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.25, + 8, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9, + 8, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4.25, + 8, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.25, + 8, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.25, + 8, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_31", - "from": [8.75, 0, 4.25], - "to": [9, 0.25, 9.25], + "from": [ + 8.75, + 0, + 4.25 + ], + "to": [ + 9, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9, 4.25, 8.75, 4.5], "texture": "#0"}, - "east": {"uv": [8.75, 4.25, 9, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9, 9, 9.25], "texture": "#0"}, - "west": {"uv": [8.75, 4.25, 9, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.25, 9, 9.25], "texture": "#0"}, - "down": {"uv": [8.75, 9.25, 9, 4.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.25, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.25, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.25, + 9, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.25, + 9, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.25, + 9, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_32", - "from": [9.25, 0, 4.25], - "to": [9.5, 0.25, 4.5], + "from": [ + 9.25, + 0, + 4.25 + ], + "to": [ + 9.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [9.5, 4.25, 9.25, 4.5], "texture": "#0"}, - "east": {"uv": [9.25, 4.25, 9.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 4.25, 9.5, 4.5], "texture": "#0"}, - "west": {"uv": [9.25, 4.25, 9.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 4.25, 9.5, 4.5], "texture": "#0"}, - "down": {"uv": [9.25, 4.5, 9.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 4.25, + 9.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4.25, + 9.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 4.25, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 4.25, + 9.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.25, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_33", - "from": [10.5, 0, 4.25], - "to": [11, 0.25, 8.25], + "from": [ + 10.5, + 0, + 4.25 + ], + "to": [ + 11, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11, 4.25, 10.5, 4.5], "texture": "#0"}, - "east": {"uv": [10.75, 4.25, 11, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8, 11, 8.25], "texture": "#0"}, - "west": {"uv": [10.5, 4.25, 10.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 4.25, 11, 8.25], "texture": "#0"}, - "down": {"uv": [10.5, 8.25, 11, 4.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 4.25, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4.25, + 11, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4.25, + 10.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 4.25, + 11, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.25, + 11, + 4.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_34", - "from": [3.5, 0, 4.5], - "to": [3.75, 0.25, 5.25], + "from": [ + 3.5, + 0, + 4.5 + ], + "to": [ + 3.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [3.75, 4.5, 3.5, 4.75], "texture": "#0"}, - "east": {"uv": [3.5, 4.5, 3.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5, 3.75, 5.25], "texture": "#0"}, - "west": {"uv": [3.5, 4.5, 3.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 4.5, 3.75, 5.25], "texture": "#0"}, - "down": {"uv": [3.5, 5.25, 3.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 4.5, + 3.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 4.5, + 3.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5, + 3.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 4.5, + 3.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 4.5, + 3.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5.25, + 3.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_35", - "from": [4.5, 0, 4.5], - "to": [4.75, 0.25, 11.75], + "from": [ + 4.5, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [4.75, 4.5, 4.5, 4.75], "texture": "#0"}, - "east": {"uv": [4.5, 4.5, 4.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 11.5, 4.75, 11.75], "texture": "#0"}, - "west": {"uv": [4.5, 4.5, 4.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.5, 4.75, 11.75], "texture": "#0"}, - "down": {"uv": [4.5, 11.75, 4.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 4.5, + 4.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 11.5, + 4.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.5, + 4.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 11.75, + 4.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_36", - "from": [10, 0, 4.5], - "to": [10.5, 0.25, 10.5], + "from": [ + 10, + 0, + 4.5 + ], + "to": [ + 10.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.5, 4.5, 10, 4.75], "texture": "#0"}, - "east": {"uv": [10.25, 4.5, 10.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.25, 10.5, 10.5], "texture": "#0"}, - "west": {"uv": [10, 4.5, 10.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 4.5, 10.5, 10.5], "texture": "#0"}, - "down": {"uv": [10, 10.5, 10.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 4.5, + 10, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 4.5, + 10.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 4.5, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 4.5, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_37", - "from": [11, 0, 4.5], - "to": [11.25, 0.25, 6.75], + "from": [ + 11, + 0, + 4.5 + ], + "to": [ + 11.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [11.25, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [11, 4.5, 11.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6.5, 11.25, 6.75], "texture": "#0"}, - "west": {"uv": [11, 4.5, 11.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 4.5, 11.25, 6.75], "texture": "#0"}, - "down": {"uv": [11, 6.75, 11.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 4.5, + 11, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 4.5, + 11.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4.5, + 11.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.75, + 11.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_38", - "from": [3.75, 0, 4.75], - "to": [4, 0.25, 5.5], + "from": [ + 3.75, + 0, + 4.75 + ], + "to": [ + 4, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [4, 4.75, 3.75, 5], "texture": "#0"}, - "east": {"uv": [3.75, 4.75, 4, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 5.25, 4, 5.5], "texture": "#0"}, - "west": {"uv": [3.75, 4.75, 4, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 4.75, 4, 5.5], "texture": "#0"}, - "down": {"uv": [3.75, 5.5, 4, 4.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 4.75, + 3.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4.75, + 4, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 5.25, + 4, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4.75, + 4, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 4.75, + 4, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 5.5, + 4, + 4.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_39", - "from": [9.75, 0, 4.75], - "to": [10, 0.25, 10.25], + "from": [ + 9.75, + 0, + 4.75 + ], + "to": [ + 10, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10, 4.75, 9.75, 5], "texture": "#0"}, - "east": {"uv": [9.75, 4.75, 10, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#0"}, - "west": {"uv": [9.75, 4.75, 10, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 4.75, 10, 10.25], "texture": "#0"}, - "down": {"uv": [9.75, 10.25, 10, 4.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 4.75, + 9.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4.75, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 4.75, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 4.75, + 10, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 4.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_40", - "from": [11.25, 0, 4.75], - "to": [11.5, 0.25, 6.75], + "from": [ + 11.25, + 0, + 4.75 + ], + "to": [ + 11.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [11.5, 4.75, 11.25, 5], "texture": "#0"}, - "east": {"uv": [11.25, 4.75, 11.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 6.5, 11.5, 6.75], "texture": "#0"}, - "west": {"uv": [11.25, 4.75, 11.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 4.75, 11.5, 6.75], "texture": "#0"}, - "down": {"uv": [11.25, 6.75, 11.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.75, + 11.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.75, + 11.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 4.75, + 11.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 4.75, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6.75, + 11.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_41", - "from": [9.5, 0, 5], - "to": [9.75, 0.25, 10], + "from": [ + 9.5, + 0, + 5 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 5, 9.5, 5.25], "texture": "#0"}, - "east": {"uv": [9.5, 5, 9.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#0"}, - "west": {"uv": [9.5, 5, 9.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5, 9.75, 10], "texture": "#0"}, - "down": {"uv": [9.5, 10, 9.75, 5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5, + 9.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10, + 9.75, + 5 + ], + "texture": "#0" + } } }, { "name": "minokasago_42", - "from": [11.5, 0, 5], - "to": [11.75, 0.25, 6.5], + "from": [ + 11.5, + 0, + 5 + ], + "to": [ + 11.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11.75, 5, 11.5, 5.25], "texture": "#0"}, - "east": {"uv": [11.5, 5, 11.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6.25, 11.75, 6.5], "texture": "#0"}, - "west": {"uv": [11.5, 5, 11.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 5, 11.75, 6.5], "texture": "#0"}, - "down": {"uv": [11.5, 6.5, 11.75, 5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 5, + 11.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 5, + 11.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 5, + 11.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 5, + 11.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6.5, + 11.75, + 5 + ], + "texture": "#0" + } } }, { "name": "minokasago_43", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 10], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "east": {"uv": [9.25, 5.25, 9.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#0"}, - "west": {"uv": [9.25, 5.25, 9.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.25, 9.5, 10], "texture": "#0"}, - "down": {"uv": [9.25, 10, 9.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10, + 9.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_44", - "from": [9, 0, 5.5], - "to": [9.25, 0.25, 9.75], + "from": [ + 9, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.25, 5.5, 9, 5.75], "texture": "#0"}, - "east": {"uv": [9, 5.5, 9.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#0"}, - "west": {"uv": [9, 5.5, 9.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.5, 9.25, 9.75], "texture": "#0"}, - "down": {"uv": [9, 9.75, 9.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_45", - "from": [3.25, 0, 5.75], - "to": [3.5, 0.25, 9.25], + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 3.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.5, 5.75, 3.25, 6], "texture": "#0"}, - "east": {"uv": [3.25, 5.75, 3.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "west": {"uv": [3.25, 5.75, 3.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.75, 3.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.25, 9.25, 3.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 5.75, + 3.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.75, + 3.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.25, + 3.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_46", - "from": [3.75, 0, 5.75], - "to": [4, 0.25, 10.5], + "from": [ + 3.75, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4, 5.75, 3.75, 6], "texture": "#0"}, - "east": {"uv": [3.75, 5.75, 4, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.25, 4, 10.5], "texture": "#0"}, - "west": {"uv": [3.75, 5.75, 4, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.75, 4, 10.5], "texture": "#0"}, - "down": {"uv": [3.75, 10.5, 4, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 5.75, + 3.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 4, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 4, + 5.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_47", - "from": [2, 0, 6], - "to": [2.25, 0.25, 9], + "from": [ + 2, + 0, + 6 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 6, 2, 6.25], "texture": "#0"}, - "east": {"uv": [2, 6, 2.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.25, 9], "texture": "#0"}, - "west": {"uv": [2, 6, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6, 2.25, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.25, 6], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 6, + 2, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6, + 2.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.25, + 6 + ], + "texture": "#0" + } } }, { "name": "minokasago_48", - "from": [3, 0, 6], - "to": [3.25, 0.25, 9.25], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 6, 3, 6.25], "texture": "#0"}, - "east": {"uv": [3, 6, 3.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9, 3.25, 9.25], "texture": "#0"}, - "west": {"uv": [3, 6, 3.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6, 3.25, 9.25], "texture": "#0"}, - "down": {"uv": [3, 9.25, 3.25, 6], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.25, + 3.25, + 6 + ], + "texture": "#0" + } } }, { "name": "minokasago_49", - "from": [3.5, 0, 6], - "to": [3.75, 0.25, 9.25], + "from": [ + 3.5, + 0, + 6 + ], + "to": [ + 3.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.75, 6, 3.5, 6.25], "texture": "#0"}, - "east": {"uv": [3.5, 6, 3.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9, 3.75, 9.25], "texture": "#0"}, - "west": {"uv": [3.5, 6, 3.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6, 3.75, 9.25], "texture": "#0"}, - "down": {"uv": [3.5, 9.25, 3.75, 6], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 6, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6, + 3.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.25, + 3.75, + 6 + ], + "texture": "#0" + } } }, { "name": "minokasago_50", - "from": [13.5, 0, 6], - "to": [14.5, 0.25, 8.5], + "from": [ + 13.5, + 0, + 6 + ], + "to": [ + 14.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.5, 6, 13.5, 6.25], "texture": "#0"}, - "east": {"uv": [14.25, 6, 14.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.25, 14.5, 8.5], "texture": "#0"}, - "west": {"uv": [13.5, 6, 13.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6, 14.5, 8.5], "texture": "#0"}, - "down": {"uv": [13.5, 8.5, 14.5, 6], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6, + 13.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6, + 14.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6, + 13.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.5, + 14.5, + 6 + ], + "texture": "#0" + } } }, { "name": "minokasago_51", - "from": [1.75, 0, 6.25], - "to": [2, 0.25, 6.5], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [2, 6.25, 1.75, 6.5], "texture": "#0"}, - "east": {"uv": [1.75, 6.25, 2, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 6.25, 2, 6.5], "texture": "#0"}, - "west": {"uv": [1.75, 6.25, 2, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.25, 2, 6.5], "texture": "#0"}, - "down": {"uv": [1.75, 6.5, 2, 6.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.25, + 1.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 6.5, + 2, + 6.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_52", - "from": [2.25, 0, 6.25], - "to": [3, 0.25, 9], + "from": [ + 2.25, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3, 6.25, 2.25, 6.5], "texture": "#0"}, - "east": {"uv": [2.75, 6.25, 3, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8.75, 3, 9], "texture": "#0"}, - "west": {"uv": [2.25, 6.25, 2.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.25, 3, 9], "texture": "#0"}, - "down": {"uv": [2.25, 9, 3, 6.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.25, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.75, + 3, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.25, + 2.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.25, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9, + 3, + 6.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_53", - "from": [13, 0, 6.25], - "to": [13.5, 0.25, 9], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 6.25, 13, 6.5], "texture": "#0"}, - "east": {"uv": [13.25, 6.25, 13.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.75, 13.5, 9], "texture": "#0"}, - "west": {"uv": [13, 6.25, 13.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.25, 13.5, 9], "texture": "#0"}, - "down": {"uv": [13, 9, 13.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6.25, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.25, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9, + 13.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_54", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 8.25], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#0"}, - "east": {"uv": [14.5, 6.25, 14.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#0"}, - "west": {"uv": [14.5, 6.25, 14.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.25, 14.75, 8.25], "texture": "#0"}, - "down": {"uv": [14.5, 8.25, 14.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 14.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_55", - "from": [12.5, 0, 6.5], - "to": [13, 0.25, 8.75], + "from": [ + 12.5, + 0, + 6.5 + ], + "to": [ + 13, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13, 6.5, 12.5, 6.75], "texture": "#0"}, - "east": {"uv": [12.75, 6.5, 13, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 13, 8.75], "texture": "#0"}, - "west": {"uv": [12.5, 6.5, 12.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6.5, 13, 8.75], "texture": "#0"}, - "down": {"uv": [12.5, 8.75, 13, 6.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 6.5, + 12.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 6.5, + 13, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6.5, + 12.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.75, + 13, + 6.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_56", - "from": [14.75, 0, 6.5], - "to": [15, 0.25, 8], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15, 6.5, 14.75, 6.75], "texture": "#0"}, - "east": {"uv": [14.75, 6.5, 15, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.75, 15, 8], "texture": "#0"}, - "west": {"uv": [14.75, 6.5, 15, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6.5, 15, 8], "texture": "#0"}, - "down": {"uv": [14.75, 8, 15, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.5, + 15, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8, + 15, + 6.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_57", - "from": [1.75, 0, 6.75], - "to": [2, 0.25, 9], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 6.75, 1.75, 7], "texture": "#0"}, - "east": {"uv": [1.75, 6.75, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.75, 6.75, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.75, 2, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2, + 6.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_58", - "from": [12.25, 0, 6.75], - "to": [12.5, 0.25, 8.5], + "from": [ + 12.25, + 0, + 6.75 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.5, 6.75, 12.25, 7], "texture": "#0"}, - "east": {"uv": [12.25, 6.75, 12.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#0"}, - "west": {"uv": [12.25, 6.75, 12.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6.75, 12.5, 8.5], "texture": "#0"}, - "down": {"uv": [12.25, 8.5, 12.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.75, + 12.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.75, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6.75, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6.75, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 12.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_59", - "from": [15, 0, 6.75], - "to": [15.25, 0.25, 7.75], + "from": [ + 15, + 0, + 6.75 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.25, 6.75, 15, 7], "texture": "#0"}, - "east": {"uv": [15, 6.75, 15.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.5, 15.25, 7.75], "texture": "#0"}, - "west": {"uv": [15, 6.75, 15.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.75, 15.25, 7.75], "texture": "#0"}, - "down": {"uv": [15, 7.75, 15.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.75, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.75, + 15.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.75, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7.75, + 15.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_60", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#0"}, - "east": {"uv": [1.5, 7, 1.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "west": {"uv": [1.5, 7, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7, 1.75, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 1.75, 7], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 7 + ], + "texture": "#0" + } } }, { "name": "minokasago_61", - "from": [12, 0, 7], - "to": [12.25, 0.25, 8.5], + "from": [ + 12, + 0, + 7 + ], + "to": [ + 12.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.25, 7, 12, 7.25], "texture": "#0"}, - "east": {"uv": [12, 7, 12.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, - "west": {"uv": [12, 7, 12.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7, 12.25, 8.5], "texture": "#0"}, - "down": {"uv": [12, 8.5, 12.25, 7], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 7, + 12, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7, + 12.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.5, + 12.25, + 7 + ], + "texture": "#0" + } } }, { "name": "minokasago_62", - "from": [1.25, 0, 7.25], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1.25, 7.5], "texture": "#0"}, - "east": {"uv": [1.25, 7.25, 1.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 7.25, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.25, 1.5, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_63", - "from": [11, 0, 7.25], - "to": [12, 0.25, 8.25], + "from": [ + 11, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 7.25, 11, 7.5], "texture": "#0"}, - "east": {"uv": [11.75, 7.25, 12, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8, 12, 8.25], "texture": "#0"}, - "west": {"uv": [11, 7.25, 11.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 7.25, 12, 8.25], "texture": "#0"}, - "down": {"uv": [11, 8.25, 12, 7.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 7.25, + 11, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7.25, + 11.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7.25, + 12, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.25, + 12, + 7.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_64", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 8.75], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1, 7.5, 1.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.25, 8.75], "texture": "#0"}, - "down": {"uv": [1, 8.75, 1.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_65", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 8], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#0"}, - "east": {"uv": [0.75, 7.75, 1, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "west": {"uv": [0.75, 7.75, 1, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "down": {"uv": [0.75, 8, 1, 7.75], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_66", - "from": [0.75, 0, 8.25], - "to": [1, 0.25, 8.5], + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1, 8.25, 0.75, 8.5], "texture": "#0"}, - "east": {"uv": [0.75, 8.25, 1, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 8.25, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 1, 8.25], "texture": "#0"} + "north": { + "uv": [ + 1, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 8.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_67", - "from": [10.5, 0, 8.25], - "to": [10.75, 0.25, 10.5], + "from": [ + 10.5, + 0, + 8.25 + ], + "to": [ + 10.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.75, 8.25, 10.5, 8.5], "texture": "#0"}, - "east": {"uv": [10.5, 8.25, 10.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10.25, 10.75, 10.5], "texture": "#0"}, - "west": {"uv": [10.5, 8.25, 10.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.25, 10.75, 10.5], "texture": "#0"}, - "down": {"uv": [10.5, 10.5, 10.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 8.25, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.25, + 10.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10.25, + 10.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.25, + 10.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.25, + 10.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 10.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_68", - "from": [10.75, 0, 8.5], - "to": [12, 0.25, 10.75], + "from": [ + 10.75, + 0, + 8.5 + ], + "to": [ + 12, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12, 8.5, 10.75, 8.75], "texture": "#0"}, - "east": {"uv": [11.75, 8.5, 12, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10.5, 12, 10.75], "texture": "#0"}, - "west": {"uv": [10.75, 8.5, 11, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.5, 12, 10.75], "texture": "#0"}, - "down": {"uv": [10.75, 10.75, 12, 8.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.5, + 12, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 12, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.5, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.5, + 12, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 12, + 8.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_69", - "from": [13.5, 0, 8.5], - "to": [14.25, 0.25, 8.75], + "from": [ + 13.5, + 0, + 8.5 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 8.5, 13.5, 8.75], "texture": "#0"}, - "east": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "west": {"uv": [13.5, 8.5, 13.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "down": {"uv": [13.5, 8.75, 14.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 14.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "minokasago_70", - "from": [12, 0, 8.75], - "to": [12.25, 0.25, 10.5], + "from": [ + 12, + 0, + 8.75 + ], + "to": [ + 12.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.25, 8.75, 12, 9], "texture": "#0"}, - "east": {"uv": [12, 8.75, 12.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 10.25, 12.25, 10.5], "texture": "#0"}, - "west": {"uv": [12, 8.75, 12.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.75, 12.25, 10.5], "texture": "#0"}, - "down": {"uv": [12, 10.5, 12.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.75, + 12.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 10.25, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.75, + 12.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.75, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 10.5, + 12.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_71", - "from": [13.5, 0, 8.75], - "to": [13.75, 0.25, 9], + "from": [ + 13.5, + 0, + 8.75 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 8.75, 13.5, 9], "texture": "#0"}, - "east": {"uv": [13.5, 8.75, 13.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#0"}, - "west": {"uv": [13.5, 8.75, 13.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#0"}, - "down": {"uv": [13.5, 9, 13.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9, + 13.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "minokasago_72", - "from": [2.5, 0, 9], - "to": [3, 0.25, 9.25], + "from": [ + 2.5, + 0, + 9 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 9, 2.5, 9.25], "texture": "#0"}, - "east": {"uv": [2.75, 9, 3, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9, 3, 9.25], "texture": "#0"}, - "west": {"uv": [2.5, 9, 2.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9, 3, 9.25], "texture": "#0"}, - "down": {"uv": [2.5, 9.25, 3, 9], "texture": "#0"} + "north": { + "uv": [ + 3, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 3, + 9 + ], + "texture": "#0" + } } }, { "name": "minokasago_73", - "from": [12.25, 0, 9], - "to": [12.5, 0.25, 10.25], + "from": [ + 12.25, + 0, + 9 + ], + "to": [ + 12.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.5, 9, 12.25, 9.25], "texture": "#0"}, - "east": {"uv": [12.25, 9, 12.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 10, 12.5, 10.25], "texture": "#0"}, - "west": {"uv": [12.25, 9, 12.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 9, 12.5, 10.25], "texture": "#0"}, - "down": {"uv": [12.25, 10.25, 12.5, 9], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 9, + 12.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 9, + 12.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 10, + 12.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 9, + 12.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 9, + 12.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 10.25, + 12.5, + 9 + ], + "texture": "#0" + } } }, { "name": "minokasago_74", - "from": [12.5, 0, 9.25], - "to": [12.75, 0.25, 10], + "from": [ + 12.5, + 0, + 9.25 + ], + "to": [ + 12.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.75, 9.25, 12.5, 9.5], "texture": "#0"}, - "east": {"uv": [12.5, 9.25, 12.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 9.75, 12.75, 10], "texture": "#0"}, - "west": {"uv": [12.5, 9.25, 12.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 9.25, 12.75, 10], "texture": "#0"}, - "down": {"uv": [12.5, 10, 12.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 9.25, + 12.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 9.25, + 12.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 9.75, + 12.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 9.25, + 12.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 9.25, + 12.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 10, + 12.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_75", - "from": [7, 0, 10], - "to": [7.25, 0.25, 11.25], + "from": [ + 7, + 0, + 10 + ], + "to": [ + 7.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.25, 10, 7, 10.25], "texture": "#0"}, - "east": {"uv": [7, 10, 7.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11, 7.25, 11.25], "texture": "#0"}, - "west": {"uv": [7, 10, 7.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10, 7.25, 11.25], "texture": "#0"}, - "down": {"uv": [7, 11.25, 7.25, 10], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 10, + 7, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10, + 7.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10, + 7.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.25, + 7.25, + 10 + ], + "texture": "#0" + } } }, { "name": "minokasago_76", - "from": [7.25, 0, 10.25], - "to": [7.5, 0.25, 11], + "from": [ + 7.25, + 0, + 10.25 + ], + "to": [ + 7.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.5, 10.25, 7.25, 10.5], "texture": "#0"}, - "east": {"uv": [7.25, 10.25, 7.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10.75, 7.5, 11], "texture": "#0"}, - "west": {"uv": [7.25, 10.25, 7.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10.25, 7.5, 11], "texture": "#0"}, - "down": {"uv": [7.25, 11, 7.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 10.25, + 7.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 10.25, + 7.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10.25, + 7.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10.25, + 7.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11, + 7.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "minokasago_77", - "from": [6.5, 0, 11.75], - "to": [6.75, 0.25, 12], + "from": [ + 6.5, + 0, + 11.75 + ], + "to": [ + 6.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [6.75, 11.75, 6.5, 12], "texture": "#0"}, - "east": {"uv": [6.5, 11.75, 6.75, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 11.75, 6.75, 12], "texture": "#0"}, - "west": {"uv": [6.5, 11.75, 6.75, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 11.75, 6.75, 12], "texture": "#0"}, - "down": {"uv": [6.5, 12, 6.75, 11.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11.75, + 6.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 12, + 6.75, + 11.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 1.5, 4.75], - "scale": [0.62, 0.62, 0.62] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 4.75 + ], + "scale": [ + 0.62, + 0.62, + 0.62 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 7], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 7 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-10.5, -180, 0], - "translation": [0.25, 0, -9.5], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + -10.5, + -180, + 0 + ], + "translation": [ + 0.25, + 0, + -9.5 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "minokasago", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/namazu.json b/pack/assets/minecraft/models/fish/namazu.json index 14c3b80d..12b5323f 100644 --- a/pack/assets/minecraft/models/fish/namazu.json +++ b/pack/assets/minecraft/models/fish/namazu.json @@ -2,617 +2,3251 @@ "__name": "ナマズ", "credit": "Made with Blockbench", "textures": { - "1": "fish/namazu", - "particle": "fish/manbou" + "1": "item/fish/namazu", + "particle": "item/fish/manbou" }, "elements": [ { "name": "namazu_0", - "from": [6.25, 0, 4.5], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.25, + 0, + 4.5 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 4.5, 6.25, 4.75], "texture": "#1"}, - "east": {"uv": [6.5, 4.5, 6.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 9.5, 6.75, 9.75], "texture": "#1"}, - "west": {"uv": [6.25, 4.5, 6.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 4.5, 6.75, 9.75], "texture": "#1"}, - "down": {"uv": [6.25, 9.75, 6.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 4.5, + 6.25, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 4.5, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 9.5, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 4.5, + 6.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 4.5, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 9.75, + 6.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "namazu_1", - "from": [6, 0, 4.75], - "to": [6.25, 0.25, 9.75], + "from": [ + 6, + 0, + 4.75 + ], + "to": [ + 6.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.25, 4.75, 6, 5], "texture": "#1"}, - "east": {"uv": [6, 4.75, 6.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 9.5, 6.25, 9.75], "texture": "#1"}, - "west": {"uv": [6, 4.75, 6.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 4.75, 6.25, 9.75], "texture": "#1"}, - "down": {"uv": [6, 9.75, 6.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 4.75, + 6, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 4.75, + 6.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 4.75, + 6.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 4.75, + 6.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 9.75, + 6.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "namazu_2", - "from": [6.75, 0, 4.75], - "to": [7, 0.25, 10.25], + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7, 4.75, 6.75, 5], "texture": "#1"}, - "east": {"uv": [6.75, 4.75, 7, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 10, 7, 10.25], "texture": "#1"}, - "west": {"uv": [6.75, 4.75, 7, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 4.75, 7, 10.25], "texture": "#1"}, - "down": {"uv": [6.75, 10.25, 7, 4.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 4.75, + 6.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 4.75, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10.25, + 7, + 4.75 + ], + "texture": "#1" + } } }, { "name": "namazu_3", - "from": [5.75, 0, 5], - "to": [6, 0.25, 9.75], + "from": [ + 5.75, + 0, + 5 + ], + "to": [ + 6, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6, 5, 5.75, 5.25], "texture": "#1"}, - "east": {"uv": [5.75, 5, 6, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 9.5, 6, 9.75], "texture": "#1"}, - "west": {"uv": [5.75, 5, 6, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 5, 6, 9.75], "texture": "#1"}, - "down": {"uv": [5.75, 9.75, 6, 5], "texture": "#1"} + "north": { + "uv": [ + 6, + 5, + 5.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 5, + 6, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 5, + 6, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 9.75, + 6, + 5 + ], + "texture": "#1" + } } }, { "name": "namazu_4", - "from": [5.5, 0, 5.25], - "to": [5.75, 0.25, 9.75], + "from": [ + 5.5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.75, 5.25, 5.5, 5.5], "texture": "#1"}, - "east": {"uv": [5.5, 5.25, 5.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 9.5, 5.75, 9.75], "texture": "#1"}, - "west": {"uv": [5.5, 5.25, 5.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 5.25, 5.75, 9.75], "texture": "#1"}, - "down": {"uv": [5.5, 9.75, 5.75, 5.25], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 5.25, + 5.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 5.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 5.25, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 9.75, + 5.75, + 5.25 + ], + "texture": "#1" + } } }, { "name": "namazu_5", - "from": [5.25, 0, 5.5], - "to": [5.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 5.5 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 5.5, 5.25, 5.75], "texture": "#1"}, - "east": {"uv": [5.25, 5.5, 5.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#1"}, - "west": {"uv": [5.25, 5.5, 5.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 5.5, 5.5, 9.75], "texture": "#1"}, - "down": {"uv": [5.25, 9.75, 5.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "namazu_6", - "from": [5, 0, 5.75], - "to": [5.25, 0.25, 9.75], + "from": [ + 5, + 0, + 5.75 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.25, 5.75, 5, 6], "texture": "#1"}, - "east": {"uv": [5, 5.75, 5.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 9.5, 5.25, 9.75], "texture": "#1"}, - "west": {"uv": [5, 5.75, 5.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 5.75, 5.25, 9.75], "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 5.75, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 5.75, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 5.75, + 5.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 5.75, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 9.75, + 5.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "namazu_7", - "from": [4, 0, 6], - "to": [5, 0.25, 9.5], + "from": [ + 4, + 0, + 6 + ], + "to": [ + 5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5, 6, 4, 6.25], "texture": "#1"}, - "east": {"uv": [4.75, 6, 5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 9.25, 5, 9.5], "texture": "#1"}, - "west": {"uv": [4, 6, 4.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 6, 5, 9.5], "texture": "#1"}, - "down": {"uv": [4, 9.5, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 5, + 6, + 4, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 6, + 5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 9.25, + 5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 6, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 6, + 5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 9.5, + 5, + 6 + ], + "texture": "#1" + } } }, { "name": "namazu_8", - "from": [7, 0, 6], - "to": [9.5, 0.25, 9.25], + "from": [ + 7, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 6, 7, 6.25], "texture": "#1"}, - "east": {"uv": [9.25, 6, 9.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 9, 9.5, 9.25], "texture": "#1"}, - "west": {"uv": [7, 6, 7.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 6, 9.5, 9.25], "texture": "#1"}, - "down": {"uv": [7, 9.25, 9.5, 6], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 6, + 7, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 9, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6, + 7.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 6, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 9.25, + 9.5, + 6 + ], + "texture": "#1" + } } }, { "name": "namazu_9", - "from": [14.75, 0, 6], - "to": [15.5, 0.25, 8.5], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15.5, 6, 14.75, 6.25], "texture": "#1"}, - "east": {"uv": [15.25, 6, 15.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 8.25, 15.5, 8.5], "texture": "#1"}, - "west": {"uv": [14.75, 6, 15, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6, 15.5, 8.5], "texture": "#1"}, - "down": {"uv": [14.75, 8.5, 15.5, 6], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 6, + 14.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6, + 15.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15.5, + 6 + ], + "texture": "#1" + } } }, { "name": "namazu_10", - "from": [3.25, 0, 6.25], - "to": [4, 0.25, 9.5], + "from": [ + 3.25, + 0, + 6.25 + ], + "to": [ + 4, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4, 6.25, 3.25, 6.5], "texture": "#1"}, - "east": {"uv": [3.75, 6.25, 4, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 9.25, 4, 9.5], "texture": "#1"}, - "west": {"uv": [3.25, 6.25, 3.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 6.25, 4, 9.5], "texture": "#1"}, - "down": {"uv": [3.25, 9.5, 4, 6.25], "texture": "#1"} + "north": { + "uv": [ + 4, + 6.25, + 3.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 6.25, + 4, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 4, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 6.25, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 6.25, + 4, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 4, + 6.25 + ], + "texture": "#1" + } } }, { "name": "namazu_11", - "from": [9.5, 0, 6.25], - "to": [11.25, 0.25, 9], + "from": [ + 9.5, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.25, 6.25, 9.5, 6.5], "texture": "#1"}, - "east": {"uv": [11, 6.25, 11.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 8.75, 11.25, 9], "texture": "#1"}, - "west": {"uv": [9.5, 6.25, 9.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 6.25, 11.25, 9], "texture": "#1"}, - "down": {"uv": [9.5, 9, 11.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 6.25, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 8.75, + 11.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 6.25, + 9.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 6.25, + 11.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9, + 11.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "namazu_12", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 8.25], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#1"}, - "east": {"uv": [14.5, 6.25, 14.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#1"}, - "west": {"uv": [14.5, 6.25, 14.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.25, 14.75, 8.25], "texture": "#1"}, - "down": {"uv": [14.5, 8.25, 14.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 14.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "namazu_13", - "from": [15.5, 0, 6.25], - "to": [15.75, 0.25, 8], + "from": [ + 15.5, + 0, + 6.25 + ], + "to": [ + 15.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.75, 6.25, 15.5, 6.5], "texture": "#1"}, - "east": {"uv": [15.5, 6.25, 15.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 7.75, 15.75, 8], "texture": "#1"}, - "west": {"uv": [15.5, 6.25, 15.75, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 6.25, 15.75, 8], "texture": "#1"}, - "down": {"uv": [15.5, 8, 15.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 6.25, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 6.25, + 15.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 6.25, + 15.75, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 6.25, + 15.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 8, + 15.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "namazu_14", - "from": [2.5, 0, 6.5], - "to": [3.25, 0.25, 9.25], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 6.5, 2.5, 6.75], "texture": "#1"}, - "east": {"uv": [3, 6.5, 3.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9, 3.25, 9.25], "texture": "#1"}, - "west": {"uv": [2.5, 6.5, 2.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 6.5, 3.25, 9.25], "texture": "#1"}, - "down": {"uv": [2.5, 9.25, 3.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 6.5, + 2.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 6.5, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9, + 3.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 3.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 3.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "namazu_15", - "from": [11.25, 0, 6.5], - "to": [13.5, 0.25, 8.5], + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 13.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.5, 6.5, 11.25, 6.75], "texture": "#1"}, - "east": {"uv": [13.25, 6.5, 13.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8.25, 13.5, 8.5], "texture": "#1"}, - "west": {"uv": [11.25, 6.5, 11.5, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 6.5, 13.5, 8.5], "texture": "#1"}, - "down": {"uv": [11.25, 8.5, 13.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 6.5, + 11.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8.25, + 13.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 13.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 8.5, + 13.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "namazu_16", - "from": [13.5, 0, 6.5], - "to": [14.5, 0.25, 7.75], + "from": [ + 13.5, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.5, 6.5, 13.5, 6.75], "texture": "#1"}, - "east": {"uv": [14.25, 6.5, 14.5, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 7.5, 14.5, 7.75], "texture": "#1"}, - "west": {"uv": [13.5, 6.5, 13.75, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 6.5, 14.5, 7.75], "texture": "#1"}, - "down": {"uv": [13.5, 7.75, 14.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 6.5, + 13.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 7.5, + 14.5, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 6.5, + 13.75, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 6.5, + 14.5, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 7.75, + 14.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "namazu_17", - "from": [1.75, 0, 6.75], - "to": [2.5, 0.25, 9.25], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 6.75, 1.75, 7], "texture": "#1"}, - "east": {"uv": [2.25, 6.75, 2.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9, 2.5, 9.25], "texture": "#1"}, - "west": {"uv": [1.75, 6.75, 2, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 6.75, 2.5, 9.25], "texture": "#1"}, - "down": {"uv": [1.75, 9.25, 2.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 6.75, + 1.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "namazu_18", - "from": [1, 0, 7], - "to": [1.75, 0.25, 9], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7, 1, 7.25], "texture": "#1"}, - "east": {"uv": [1.5, 7, 1.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.75, 1.75, 9], "texture": "#1"}, - "west": {"uv": [1, 7, 1.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7, 1.75, 9], "texture": "#1"}, - "down": {"uv": [1, 9, 1.75, 7], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7, + 1, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.75, + 1.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7, + 1.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9, + 1.75, + 7 + ], + "texture": "#1" + } } }, { "name": "namazu_19", - "from": [0.25, 0, 7.25], - "to": [1, 0.25, 8.75], + "from": [ + 0.25, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 7.25, 0.25, 7.5], "texture": "#1"}, - "east": {"uv": [0.75, 7.25, 1, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.5, 1, 8.75], "texture": "#1"}, - "west": {"uv": [0.25, 7.25, 0.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7.25, 1, 8.75], "texture": "#1"}, - "down": {"uv": [0.25, 8.75, 1, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.25, + 0.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 1, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.25, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7.25, + 1, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 1, + 7.25 + ], + "texture": "#1" + } } }, { "name": "namazu_20", - "from": [0, 0, 7.5], - "to": [0.25, 0.25, 8], + "from": [ + 0, + 0, + 7.5 + ], + "to": [ + 0.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.25, 7.5, 0, 7.75], "texture": "#1"}, - "east": {"uv": [0, 7.5, 0.25, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 7.75, 0.25, 8], "texture": "#1"}, - "west": {"uv": [0, 7.5, 0.25, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 7.5, 0.25, 8], "texture": "#1"}, - "down": {"uv": [0, 8, 0.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 0.25, + 7.5, + 0, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.25, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7.5, + 0.25, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 7.5, + 0.25, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 8, + 0.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "namazu_21", - "from": [13.5, 0, 7.75], - "to": [13.75, 0.25, 8.25], + "from": [ + 13.5, + 0, + 7.75 + ], + "to": [ + 13.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.75, 7.75, 13.5, 8], "texture": "#1"}, - "east": {"uv": [13.5, 7.75, 13.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8, 13.75, 8.25], "texture": "#1"}, - "west": {"uv": [13.5, 7.75, 13.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 7.75, 13.75, 8.25], "texture": "#1"}, - "down": {"uv": [13.5, 8.25, 13.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 7.75, + 13.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 8.25, + 13.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "namazu_22", - "from": [14.25, 0, 7.75], - "to": [14.5, 0.25, 8], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 14.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.5, 7.75, 14.25, 8], "texture": "#1"}, - "east": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#1"}, - "west": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#1"}, - "down": {"uv": [14.25, 8, 14.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 7.75, + 14.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "namazu_23", - "from": [0, 0, 8.5], - "to": [0.25, 0.25, 9], + "from": [ + 0, + 0, + 8.5 + ], + "to": [ + 0.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.25, 8.5, 0, 8.75], "texture": "#1"}, - "east": {"uv": [0, 8.5, 0.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 8.75, 0.25, 9], "texture": "#1"}, - "west": {"uv": [0, 8.5, 0.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 8.5, 0.25, 9], "texture": "#1"}, - "down": {"uv": [0, 9, 0.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 0.25, + 8.5, + 0, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8.5, + 0.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.5, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 8.5, + 0.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 9, + 0.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "namazu_24", - "from": [11.25, 0, 8.5], - "to": [12.5, 0.25, 9], + "from": [ + 11.25, + 0, + 8.5 + ], + "to": [ + 12.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.5, 8.5, 11.25, 8.75], "texture": "#1"}, - "east": {"uv": [12.25, 8.5, 12.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8.75, 12.5, 9], "texture": "#1"}, - "west": {"uv": [11.25, 8.5, 11.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 8.5, 12.5, 9], "texture": "#1"}, - "down": {"uv": [11.25, 9, 12.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 8.5, + 11.25, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 8.5, + 12.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8.75, + 12.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 8.5, + 11.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 8.5, + 12.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 9, + 12.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "namazu_25", - "from": [12.5, 0, 8.5], - "to": [13.25, 0.25, 8.75], + "from": [ + 12.5, + 0, + 8.5 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 8.5, 12.5, 8.75], "texture": "#1"}, - "east": {"uv": [13, 8.5, 13.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.5, 8.5, 13.25, 8.75], "texture": "#1"}, - "west": {"uv": [12.5, 8.5, 12.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.5, 8.5, 13.25, 8.75], "texture": "#1"}, - "down": {"uv": [12.5, 8.75, 13.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 8.5, + 12.5, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 8.5, + 13.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 8.5, + 12.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.5, + 8.5, + 13.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 8.75, + 13.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "namazu_26", - "from": [15, 0, 8.5], - "to": [15.25, 0.25, 8.75], + "from": [ + 15, + 0, + 8.5 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.25, 8.5, 15, 8.75], "texture": "#1"}, - "east": {"uv": [15, 8.5, 15.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#1"}, - "west": {"uv": [15, 8.5, 15.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#1"}, - "down": {"uv": [15, 8.75, 15.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 8.5, + 15, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "namazu_27", - "from": [0.25, 0, 8.75], - "to": [0.75, 0.25, 9], + "from": [ + 0.25, + 0, + 8.75 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.75, 0.25, 9], "texture": "#1"}, - "east": {"uv": [0.5, 8.75, 0.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.75, 0.75, 9], "texture": "#1"}, - "west": {"uv": [0.25, 8.75, 0.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 8.75, 0.75, 9], "texture": "#1"}, - "down": {"uv": [0.25, 9, 0.75, 8.75], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 8.75, + 0.25, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 8.75, + 0.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 9, + 0.75, + 8.75 + ], + "texture": "#1" + } } }, { "name": "namazu_28", - "from": [0.25, 0, 9], - "to": [0.5, 0.25, 9.25], + "from": [ + 0.25, + 0, + 9 + ], + "to": [ + 0.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.5, 9, 0.25, 9.25], "texture": "#1"}, - "east": {"uv": [0.25, 9, 0.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#1"}, - "west": {"uv": [0.25, 9, 0.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#1"}, - "down": {"uv": [0.25, 9.25, 0.5, 9], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 9, + 0.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 9.25, + 0.5, + 9 + ], + "texture": "#1" + } } }, { "name": "namazu_29", - "from": [1.5, 0, 9], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 9, 1.5, 9.25], "texture": "#1"}, - "east": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#1"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#1"}, - "down": {"uv": [1.5, 9.25, 1.75, 9], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 9, + 1.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9 + ], + "texture": "#1" + } } }, { "name": "namazu_30", - "from": [9.5, 0, 9], - "to": [11, 0.25, 9.25], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 11, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11, 9, 9.5, 9.25], "texture": "#1"}, - "east": {"uv": [10.75, 9, 11, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9, 11, 9.25], "texture": "#1"}, - "west": {"uv": [9.5, 9, 9.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 9, 11, 9.25], "texture": "#1"}, - "down": {"uv": [9.5, 9.25, 11, 9], "texture": "#1"} + "north": { + "uv": [ + 11, + 9, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9, + 11, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 9, + 11, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 11, + 9 + ], + "texture": "#1" + } } }, { "name": "namazu_31", - "from": [2, 0, 9.25], - "to": [2.5, 0.25, 9.5], + "from": [ + 2, + 0, + 9.25 + ], + "to": [ + 2.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.5, 9.25, 2, 9.5], "texture": "#1"}, - "east": {"uv": [2.25, 9.25, 2.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 9.25, 2.5, 9.5], "texture": "#1"}, - "west": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 9.25, 2.5, 9.5], "texture": "#1"}, - "down": {"uv": [2, 9.5, 2.5, 9.25], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 9.25, + 2, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 9.25, + 2.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.5, + 9.25 + ], + "texture": "#1" + } } }, { "name": "namazu_32", - "from": [7, 0, 9.25], - "to": [7.75, 0.25, 10.5], + "from": [ + 7, + 0, + 9.25 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.75, 9.25, 7, 9.5], "texture": "#1"}, - "east": {"uv": [7.5, 9.25, 7.75, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 10.25, 7.75, 10.5], "texture": "#1"}, - "west": {"uv": [7, 9.25, 7.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 9.25, 7.75, 10.5], "texture": "#1"}, - "down": {"uv": [7, 10.5, 7.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 9.25, + 7, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 9.25, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10.25, + 7.75, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 9.25, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 9.25, + 7.75, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10.5, + 7.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "namazu_33", - "from": [7.75, 0, 9.25], - "to": [9, 0.25, 9.5], + "from": [ + 7.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 9.25, 7.75, 9.5], "texture": "#1"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 9.25, 9, 9.5], "texture": "#1"}, - "west": {"uv": [7.75, 9.25, 8, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 9.25, 9, 9.5], "texture": "#1"}, - "down": {"uv": [7.75, 9.5, 9, 9.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 9.25, + 7.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 9.5, + 9, + 9.25 + ], + "texture": "#1" + } } }, { "name": "namazu_34", - "from": [2.25, 0, 9.5], - "to": [2.75, 0.25, 9.75], + "from": [ + 2.25, + 0, + 9.5 + ], + "to": [ + 2.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.75, 9.5, 2.25, 9.75], "texture": "#1"}, - "east": {"uv": [2.5, 9.5, 2.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9.5, 2.75, 9.75], "texture": "#1"}, - "west": {"uv": [2.25, 9.5, 2.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 9.5, 2.75, 9.75], "texture": "#1"}, - "down": {"uv": [2.25, 9.75, 2.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 2.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 9.5, + 2.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 2.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "namazu_35", - "from": [4.25, 0, 9.5], - "to": [5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5, 9.5, 4.25, 9.75], "texture": "#1"}, - "east": {"uv": [4.75, 9.5, 5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 9.5, 5, 9.75], "texture": "#1"}, - "west": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 9.5, 5, 9.75], "texture": "#1"}, - "down": {"uv": [4.25, 9.75, 5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 5, + 9.5, + 4.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "namazu_36", - "from": [2.5, 0, 9.75], - "to": [3.25, 0.25, 10], + "from": [ + 2.5, + 0, + 9.75 + ], + "to": [ + 3.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.25, 9.75, 2.5, 10], "texture": "#1"}, - "east": {"uv": [3, 9.75, 3.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9.75, 3.25, 10], "texture": "#1"}, - "west": {"uv": [2.5, 9.75, 2.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 9.75, 3.25, 10], "texture": "#1"}, - "down": {"uv": [2.5, 10, 3.25, 9.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 9.75, + 2.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 9.75, + 3.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 3.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 9.75, + 3.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 10, + 3.25, + 9.75 + ], + "texture": "#1" + } } }, { "name": "namazu_37", - "from": [6.5, 0, 9.75], - "to": [6.75, 0.25, 10], + "from": [ + 6.5, + 0, + 9.75 + ], + "to": [ + 6.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.75, 9.75, 6.5, 10], "texture": "#1"}, - "east": {"uv": [6.5, 9.75, 6.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.75, 6.75, 10], "texture": "#1"}, - "west": {"uv": [6.5, 9.75, 6.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 9.75, 6.75, 10], "texture": "#1"}, - "down": {"uv": [6.5, 10, 6.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 9.75, + 6.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 10, + 6.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "namazu_38", - "from": [7.75, 0, 9.75], - "to": [8, 0.25, 10.5], + "from": [ + 7.75, + 0, + 9.75 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 9.75, 7.75, 10], "texture": "#1"}, - "east": {"uv": [7.75, 9.75, 8, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#1"}, - "west": {"uv": [7.75, 9.75, 8, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 9.75, 8, 10.5], "texture": "#1"}, - "down": {"uv": [7.75, 10.5, 8, 9.75], "texture": "#1"} + "north": { + "uv": [ + 8, + 9.75, + 7.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 9.75, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 9.75, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 9.75, + 8, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8, + 9.75 + ], + "texture": "#1" + } } }, { "name": "namazu_39", - "from": [3, 0, 10], - "to": [3.75, 0.25, 10.25], + "from": [ + 3, + 0, + 10 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.75, 10, 3, 10.25], "texture": "#1"}, - "east": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 10, 3.75, 10.25], "texture": "#1"}, - "west": {"uv": [3, 10, 3.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 10, 3.75, 10.25], "texture": "#1"}, - "down": {"uv": [3, 10.25, 3.75, 10], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 10, + 3, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10, + 3.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 10, + 3.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.75, + 10 + ], + "texture": "#1" + } } }, { "name": "namazu_40", - "from": [8, 0, 10], - "to": [8.25, 0.25, 10.25], + "from": [ + 8, + 0, + 10 + ], + "to": [ + 8.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.25, 10, 8, 10.25], "texture": "#1"}, - "east": {"uv": [8, 10, 8.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 10, 8.25, 10.25], "texture": "#1"}, - "west": {"uv": [8, 10, 8.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 10, 8.25, 10.25], "texture": "#1"}, - "down": {"uv": [8, 10.25, 8.25, 10], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 10, + 8, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.25, + 10 + ], + "texture": "#1" + } } }, { "name": "namazu_41", - "from": [3.5, 0, 10.25], - "to": [4.25, 0.25, 10.5], + "from": [ + 3.5, + 0, + 10.25 + ], + "to": [ + 4.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4.25, 10.25, 3.5, 10.5], "texture": "#1"}, - "east": {"uv": [4, 10.25, 4.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 10.25, 4.25, 10.5], "texture": "#1"}, - "west": {"uv": [3.5, 10.25, 3.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 10.25, 4.25, 10.5], "texture": "#1"}, - "down": {"uv": [3.5, 10.5, 4.25, 10.25], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 10.25, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.25, + 4.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 10.25, + 4.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 4.25, + 10.25 + ], + "texture": "#1" + } } }, { "name": "namazu_42", - "from": [4, 0, 10.5], - "to": [5, 0.25, 10.75], + "from": [ + 4, + 0, + 10.5 + ], + "to": [ + 5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5, 10.5, 4, 10.75], "texture": "#1"}, - "east": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 10.5, 5, 10.75], "texture": "#1"}, - "west": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 10.5, 5, 10.75], "texture": "#1"}, - "down": {"uv": [4, 10.75, 5, 10.5], "texture": "#1"} + "north": { + "uv": [ + 5, + 10.5, + 4, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10.5, + 5, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 10.5, + 5, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 10.75, + 5, + 10.5 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 0.75, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 0.75, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 0.75, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 0.75, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 2, 8.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 2, + 8.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_lefthand": { - "rotation": [90, -2.75, -180], - "translation": [1, 2, -5.5], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + -180 + ], + "translation": [ + 1, + 2, + -5.5 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [-2.25, 3.5, 18.5], - "scale": [1.96, 1.96, 1.96] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -2.25, + 3.5, + 18.5 + ], + "scale": [ + 1.96, + 1.96, + 1.96 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 9 + ] }, "head": { - "rotation": [90, -2.75, 1.75], - "translation": [1, 8.25, 12.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + 1, + 8.25, + 12.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "namazu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/nanyouhagi.json b/pack/assets/minecraft/models/fish/nanyouhagi.json index 69f5a59d..548e7829 100644 --- a/pack/assets/minecraft/models/fish/nanyouhagi.json +++ b/pack/assets/minecraft/models/fish/nanyouhagi.json @@ -2,16061 +2,88791 @@ "__name": "ナンヨウハギ", "credit": "Made with Blockbench", "textures": { - "0": "fish/nanyouhagi", - "particle": "fish/nanyouhagi" + "0": "item/fish/nanyouhagi", + "particle": "item/fish/nanyouhagi" }, "elements": [ { "name": "nanyouhagi_0", - "from": [5.25, 0, 3.5], - "to": [5.5, 0.25, 3.75], - "faces": { - "north": {"uv": [5.5, 3.5, 5.25, 3.75], "texture": "#0"}, - "east": {"uv": [5.25, 3.5, 5.5, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 3.5, 5.5, 3.75], "texture": "#0"}, - "west": {"uv": [5.25, 3.5, 5.5, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 3.5, 5.5, 3.75], "texture": "#0"}, - "down": {"uv": [5.25, 3.75, 5.5, 3.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 3.5 + ], + "to": [ + 5.5, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3.5, + 5.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.5, + 5.5, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 3.5, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3.5, + 5.5, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 3.5, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 3.75, + 5.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1", - "from": [5.5, 0, 3.5], - "to": [5.75, 0.25, 3.75], - "faces": { - "north": {"uv": [5.75, 3.5, 5.5, 3.75], "texture": "#0"}, - "east": {"uv": [5.5, 3.5, 5.75, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 3.5, 5.75, 3.75], "texture": "#0"}, - "west": {"uv": [5.5, 3.5, 5.75, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3.5, 5.75, 3.75], "texture": "#0"}, - "down": {"uv": [5.5, 3.75, 5.75, 3.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 3.5 + ], + "to": [ + 5.75, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 3.5, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 3.5, + 5.75, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 3.5, + 5.75, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.5, + 5.75, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.5, + 5.75, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 3.75, + 5.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_2", - "from": [5.75, 0, 3.5], - "to": [6, 0.25, 3.75], - "faces": { - "north": {"uv": [6, 3.5, 5.75, 3.75], "texture": "#0"}, - "east": {"uv": [5.75, 3.5, 6, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 3.5, 6, 3.75], "texture": "#0"}, - "west": {"uv": [5.75, 3.5, 6, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 3.5, 6, 3.75], "texture": "#0"}, - "down": {"uv": [5.75, 3.75, 6, 3.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 3.5 + ], + "to": [ + 6, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 3.5, + 5.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 3.75, + 6, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_3", - "from": [6, 0, 3.5], - "to": [6.25, 0.25, 3.75], - "faces": { - "north": {"uv": [6.25, 3.5, 6, 3.75], "texture": "#0"}, - "east": {"uv": [6, 3.5, 6.25, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 3.5, 6.25, 3.75], "texture": "#0"}, - "west": {"uv": [6, 3.5, 6.25, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 3.5, 6.25, 3.75], "texture": "#0"}, - "down": {"uv": [6, 3.75, 6.25, 3.5], "texture": "#0"} + "from": [ + 6, + 0, + 3.5 + ], + "to": [ + 6.25, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3.5, + 6.25, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3.5, + 6.25, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3.5, + 6.25, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 3.5, + 6.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 3.75, + 6.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_4", - "from": [6.25, 0, 3.5], - "to": [6.5, 0.25, 3.75], - "faces": { - "north": {"uv": [6.5, 3.5, 6.25, 3.75], "texture": "#0"}, - "east": {"uv": [6.25, 3.5, 6.5, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 3.5, 6.5, 3.75], "texture": "#0"}, - "west": {"uv": [6.25, 3.5, 6.5, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 3.5, 6.5, 3.75], "texture": "#0"}, - "down": {"uv": [6.25, 3.75, 6.5, 3.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 3.5 + ], + "to": [ + 6.5, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 3.5, + 6.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.5, + 6.5, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 3.5, + 6.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.5, + 6.5, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 3.5, + 6.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 3.75, + 6.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_5", - "from": [6.5, 0, 3.5], - "to": [6.75, 0.25, 3.75], - "faces": { - "north": {"uv": [6.75, 3.5, 6.5, 3.75], "texture": "#0"}, - "east": {"uv": [6.5, 3.5, 6.75, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 3.5, 6.75, 3.75], "texture": "#0"}, - "west": {"uv": [6.5, 3.5, 6.75, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 3.5, 6.75, 3.75], "texture": "#0"}, - "down": {"uv": [6.5, 3.75, 6.75, 3.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 3.5 + ], + "to": [ + 6.75, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 3.5, + 6.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3.5, + 6.75, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 3.5, + 6.75, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 3.5, + 6.75, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 3.5, + 6.75, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 3.75, + 6.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_6", - "from": [6.75, 0, 3.5], - "to": [7, 0.25, 3.75], - "faces": { - "north": {"uv": [7, 3.5, 6.75, 3.75], "texture": "#0"}, - "east": {"uv": [6.75, 3.5, 7, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 3.5, 7, 3.75], "texture": "#0"}, - "west": {"uv": [6.75, 3.5, 7, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.5, 7, 3.75], "texture": "#0"}, - "down": {"uv": [6.75, 3.75, 7, 3.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 3.5 + ], + "to": [ + 7, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 3.5, + 6.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 3.75, + 7, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_7", - "from": [7, 0, 3.5], - "to": [7.25, 0.25, 3.75], - "faces": { - "north": {"uv": [7.25, 3.5, 7, 3.75], "texture": "#0"}, - "east": {"uv": [7, 3.5, 7.25, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 3.5, 7.25, 3.75], "texture": "#0"}, - "west": {"uv": [7, 3.5, 7.25, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 3.5, 7.25, 3.75], "texture": "#0"}, - "down": {"uv": [7, 3.75, 7.25, 3.5], "texture": "#0"} + "from": [ + 7, + 0, + 3.5 + ], + "to": [ + 7.25, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 3.5, + 7, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.5, + 7.25, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 3.5, + 7.25, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.5, + 7.25, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 3.5, + 7.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 3.75, + 7.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_8", - "from": [7.25, 0, 3.5], - "to": [7.5, 0.25, 3.75], - "faces": { - "north": {"uv": [7.5, 3.5, 7.25, 3.75], "texture": "#0"}, - "east": {"uv": [7.25, 3.5, 7.5, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 3.5, 7.5, 3.75], "texture": "#0"}, - "west": {"uv": [7.25, 3.5, 7.5, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 3.5, 7.5, 3.75], "texture": "#0"}, - "down": {"uv": [7.25, 3.75, 7.5, 3.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 3.5 + ], + "to": [ + 7.5, + 0.25, + 3.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 3.5, + 7.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 3.75, + 7.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_9", - "from": [5, 0, 3.75], - "to": [5.25, 0.25, 4], - "faces": { - "north": {"uv": [5.25, 3.75, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 3.75, 5.25, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 3.75, 5.25, 4], "texture": "#0"}, - "west": {"uv": [5, 3.75, 5.25, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 3.75, 5.25, 4], "texture": "#0"}, - "down": {"uv": [5, 4, 5.25, 3.75], "texture": "#0"} + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.25, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 3.75, + 5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 3.75, + 5.25, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 3.75, + 5.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4, + 5.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_10", - "from": [5.25, 0, 3.75], - "to": [5.5, 0.25, 4], - "faces": { - "north": {"uv": [5.5, 3.75, 5.25, 4], "texture": "#0"}, - "east": {"uv": [5.25, 3.75, 5.5, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 3.75, 5.5, 4], "texture": "#0"}, - "west": {"uv": [5.25, 3.75, 5.5, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 3.75, 5.5, 4], "texture": "#0"}, - "down": {"uv": [5.25, 4, 5.5, 3.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 3.75 + ], + "to": [ + 5.5, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3.75, + 5.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.75, + 5.5, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 3.75, + 5.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3.75, + 5.5, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 3.75, + 5.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 4, + 5.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_11", - "from": [5.5, 0, 3.75], - "to": [5.75, 0.25, 4], - "faces": { - "north": {"uv": [5.75, 3.75, 5.5, 4], "texture": "#0"}, - "east": {"uv": [5.5, 3.75, 5.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 3.75, 5.75, 4], "texture": "#0"}, - "west": {"uv": [5.5, 3.75, 5.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3.75, 5.75, 4], "texture": "#0"}, - "down": {"uv": [5.5, 4, 5.75, 3.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 3.75 + ], + "to": [ + 5.75, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 3.75, + 5.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 3.75, + 5.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 3.75, + 5.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.75, + 5.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.75, + 5.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 4, + 5.75, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_12", - "from": [5.75, 0, 3.75], - "to": [6, 0.25, 4], - "faces": { - "north": {"uv": [6, 3.75, 5.75, 4], "texture": "#0"}, - "east": {"uv": [5.75, 3.75, 6, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 3.75, 6, 4], "texture": "#0"}, - "west": {"uv": [5.75, 3.75, 6, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 3.75, 6, 4], "texture": "#0"}, - "down": {"uv": [5.75, 4, 6, 3.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 3.75 + ], + "to": [ + 6, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 6, + 3.75, + 5.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 4, + 6, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_13", - "from": [6, 0, 3.75], - "to": [6.25, 0.25, 4], - "faces": { - "north": {"uv": [6.25, 3.75, 6, 4], "texture": "#0"}, - "east": {"uv": [6, 3.75, 6.25, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 3.75, 6.25, 4], "texture": "#0"}, - "west": {"uv": [6, 3.75, 6.25, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 3.75, 6.25, 4], "texture": "#0"}, - "down": {"uv": [6, 4, 6.25, 3.75], "texture": "#0"} + "from": [ + 6, + 0, + 3.75 + ], + "to": [ + 6.25, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 3.75, + 6, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3.75, + 6.25, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3.75, + 6.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3.75, + 6.25, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 3.75, + 6.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 4, + 6.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_14", - "from": [6.25, 0, 3.75], - "to": [6.5, 0.25, 4], - "faces": { - "north": {"uv": [6.5, 3.75, 6.25, 4], "texture": "#0"}, - "east": {"uv": [6.25, 3.75, 6.5, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 3.75, 6.5, 4], "texture": "#0"}, - "west": {"uv": [6.25, 3.75, 6.5, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 3.75, 6.5, 4], "texture": "#0"}, - "down": {"uv": [6.25, 4, 6.5, 3.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 3.75 + ], + "to": [ + 6.5, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 3.75, + 6.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.75, + 6.5, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 3.75, + 6.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.75, + 6.5, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 3.75, + 6.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4, + 6.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_15", - "from": [6.5, 0, 3.75], - "to": [6.75, 0.25, 4], - "faces": { - "north": {"uv": [6.75, 3.75, 6.5, 4], "texture": "#0"}, - "east": {"uv": [6.5, 3.75, 6.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 3.75, 6.75, 4], "texture": "#0"}, - "west": {"uv": [6.5, 3.75, 6.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 3.75, 6.75, 4], "texture": "#0"}, - "down": {"uv": [6.5, 4, 6.75, 3.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 3.75 + ], + "to": [ + 6.75, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 3.75, + 6.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3.75, + 6.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 3.75, + 6.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 4, + 6.75, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_16", - "from": [6.75, 0, 3.75], - "to": [7, 0.25, 4], - "faces": { - "north": {"uv": [7, 3.75, 6.75, 4], "texture": "#0"}, - "east": {"uv": [6.75, 3.75, 7, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 3.75, 7, 4], "texture": "#0"}, - "west": {"uv": [6.75, 3.75, 7, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3.75, 7, 4], "texture": "#0"}, - "down": {"uv": [6.75, 4, 7, 3.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 3.75 + ], + "to": [ + 7, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 7, + 3.75, + 6.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4, + 7, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_17", - "from": [7, 0, 3.75], - "to": [7.25, 0.25, 4], - "faces": { - "north": {"uv": [7.25, 3.75, 7, 4], "texture": "#0"}, - "east": {"uv": [7, 3.75, 7.25, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 3.75, 7.25, 4], "texture": "#0"}, - "west": {"uv": [7, 3.75, 7.25, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 3.75, 7.25, 4], "texture": "#0"}, - "down": {"uv": [7, 4, 7.25, 3.75], "texture": "#0"} + "from": [ + 7, + 0, + 3.75 + ], + "to": [ + 7.25, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 3.75, + 7, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 3.75, + 7.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4, + 7.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_18", - "from": [7.25, 0, 3.75], - "to": [7.5, 0.25, 4], - "faces": { - "north": {"uv": [7.5, 3.75, 7.25, 4], "texture": "#0"}, - "east": {"uv": [7.25, 3.75, 7.5, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 3.75, 7.5, 4], "texture": "#0"}, - "west": {"uv": [7.25, 3.75, 7.5, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 3.75, 7.5, 4], "texture": "#0"}, - "down": {"uv": [7.25, 4, 7.5, 3.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 3.75 + ], + "to": [ + 7.5, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 3.75, + 7.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3.75, + 7.5, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 3.75, + 7.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.75, + 7.5, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 3.75, + 7.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4, + 7.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_19", - "from": [7.5, 0, 3.75], - "to": [7.75, 0.25, 4], - "faces": { - "north": {"uv": [7.75, 3.75, 7.5, 4], "texture": "#0"}, - "east": {"uv": [7.5, 3.75, 7.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 3.75, 7.75, 4], "texture": "#0"}, - "west": {"uv": [7.5, 3.75, 7.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 3.75, 7.75, 4], "texture": "#0"}, - "down": {"uv": [7.5, 4, 7.75, 3.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 3.75 + ], + "to": [ + 7.75, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 3.75, + 7.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 3.75, + 7.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.75, + 7.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 4, + 7.75, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_20", - "from": [7.75, 0, 3.75], - "to": [8, 0.25, 4], - "faces": { - "north": {"uv": [8, 3.75, 7.75, 4], "texture": "#0"}, - "east": {"uv": [7.75, 3.75, 8, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 3.75, 8, 4], "texture": "#0"}, - "west": {"uv": [7.75, 3.75, 8, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 3.75, 8, 4], "texture": "#0"}, - "down": {"uv": [7.75, 4, 8, 3.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 3.75 + ], + "to": [ + 8, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 8, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 4, + 8, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_21", - "from": [8, 0, 3.75], - "to": [8.25, 0.25, 4], - "faces": { - "north": {"uv": [8.25, 3.75, 8, 4], "texture": "#0"}, - "east": {"uv": [8, 3.75, 8.25, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 3.75, 8.25, 4], "texture": "#0"}, - "west": {"uv": [8, 3.75, 8.25, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 3.75, 8.25, 4], "texture": "#0"}, - "down": {"uv": [8, 4, 8.25, 3.75], "texture": "#0"} + "from": [ + 8, + 0, + 3.75 + ], + "to": [ + 8.25, + 0.25, + 4 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3.75, + 8.25, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 3.75, + 8.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3.75, + 8.25, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 3.75, + 8.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4, + 8.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_22", - "from": [4.75, 0, 4], - "to": [5, 0.25, 4.25], - "faces": { - "north": {"uv": [5, 4, 4.75, 4.25], "texture": "#0"}, - "east": {"uv": [4.75, 4, 5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 4, 5, 4.25], "texture": "#0"}, - "west": {"uv": [4.75, 4, 5, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4, 5, 4.25], "texture": "#0"}, - "down": {"uv": [4.75, 4.25, 5, 4], "texture": "#0"} + "from": [ + 4.75, + 0, + 4 + ], + "to": [ + 5, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 4, + 4.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4, + 5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 4, + 5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4, + 5, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4, + 5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 4.25, + 5, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_23", - "from": [5, 0, 4], - "to": [5.25, 0.25, 4.25], - "faces": { - "north": {"uv": [5.25, 4, 5, 4.25], "texture": "#0"}, - "east": {"uv": [5, 4, 5.25, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 4, 5.25, 4.25], "texture": "#0"}, - "west": {"uv": [5, 4, 5.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4, 5.25, 4.25], "texture": "#0"}, - "down": {"uv": [5, 4.25, 5.25, 4], "texture": "#0"} + "from": [ + 5, + 0, + 4 + ], + "to": [ + 5.25, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 4, + 5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4, + 5.25, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4, + 5.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4, + 5.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4, + 5.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4.25, + 5.25, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_24", - "from": [5.25, 0, 4], - "to": [5.5, 0.25, 4.25], - "faces": { - "north": {"uv": [5.5, 4, 5.25, 4.25], "texture": "#0"}, - "east": {"uv": [5.25, 4, 5.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 4, 5.5, 4.25], "texture": "#0"}, - "west": {"uv": [5.25, 4, 5.5, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4, 5.5, 4.25], "texture": "#0"}, - "down": {"uv": [5.25, 4.25, 5.5, 4], "texture": "#0"} + "from": [ + 5.25, + 0, + 4 + ], + "to": [ + 5.5, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 4, + 5.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_25", - "from": [5.5, 0, 4], - "to": [5.75, 0.25, 4.25], - "faces": { - "north": {"uv": [5.75, 4, 5.5, 4.25], "texture": "#0"}, - "east": {"uv": [5.5, 4, 5.75, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 4, 5.75, 4.25], "texture": "#0"}, - "west": {"uv": [5.5, 4, 5.75, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4, 5.75, 4.25], "texture": "#0"}, - "down": {"uv": [5.5, 4.25, 5.75, 4], "texture": "#0"} + "from": [ + 5.5, + 0, + 4 + ], + "to": [ + 5.75, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 4, + 5.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 5.75, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 4, + 5.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4, + 5.75, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4, + 5.75, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 4.25, + 5.75, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_26", - "from": [5.75, 0, 4], - "to": [6, 0.25, 4.25], - "faces": { - "north": {"uv": [6, 4, 5.75, 4.25], "texture": "#0"}, - "east": {"uv": [5.75, 4, 6, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 4, 6, 4.25], "texture": "#0"}, - "west": {"uv": [5.75, 4, 6, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4, 6, 4.25], "texture": "#0"}, - "down": {"uv": [5.75, 4.25, 6, 4], "texture": "#0"} + "from": [ + 5.75, + 0, + 4 + ], + "to": [ + 6, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 4, + 5.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4, + 6, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 4, + 6, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4, + 6, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4, + 6, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 4.25, + 6, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_27", - "from": [6, 0, 4], - "to": [6.25, 0.25, 4.25], - "faces": { - "north": {"uv": [6.25, 4, 6, 4.25], "texture": "#0"}, - "east": {"uv": [6, 4, 6.25, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 4, 6.25, 4.25], "texture": "#0"}, - "west": {"uv": [6, 4, 6.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4, 6.25, 4.25], "texture": "#0"}, - "down": {"uv": [6, 4.25, 6.25, 4], "texture": "#0"} + "from": [ + 6, + 0, + 4 + ], + "to": [ + 6.25, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 4, + 6, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4, + 6.25, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 4, + 6.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4, + 6.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4, + 6.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 4.25, + 6.25, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_28", - "from": [6.25, 0, 4], - "to": [6.5, 0.25, 4.25], - "faces": { - "north": {"uv": [6.5, 4, 6.25, 4.25], "texture": "#0"}, - "east": {"uv": [6.25, 4, 6.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 4, 6.5, 4.25], "texture": "#0"}, - "west": {"uv": [6.25, 4, 6.5, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4, 6.5, 4.25], "texture": "#0"}, - "down": {"uv": [6.25, 4.25, 6.5, 4], "texture": "#0"} + "from": [ + 6.25, + 0, + 4 + ], + "to": [ + 6.5, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 4, + 6.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4, + 6.5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4, + 6.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4, + 6.5, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4, + 6.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_29", - "from": [6.5, 0, 4], - "to": [6.75, 0.25, 4.25], - "faces": { - "north": {"uv": [6.75, 4, 6.5, 4.25], "texture": "#0"}, - "east": {"uv": [6.5, 4, 6.75, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 4, 6.75, 4.25], "texture": "#0"}, - "west": {"uv": [6.5, 4, 6.75, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4, 6.75, 4.25], "texture": "#0"}, - "down": {"uv": [6.5, 4.25, 6.75, 4], "texture": "#0"} + "from": [ + 6.5, + 0, + 4 + ], + "to": [ + 6.75, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 4, + 6.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4, + 6.75, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4, + 6.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4, + 6.75, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4, + 6.75, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 4.25, + 6.75, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_30", - "from": [6.75, 0, 4], - "to": [7, 0.25, 4.25], - "faces": { - "north": {"uv": [7, 4, 6.75, 4.25], "texture": "#0"}, - "east": {"uv": [6.75, 4, 7, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 4, 7, 4.25], "texture": "#0"}, - "west": {"uv": [6.75, 4, 7, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4, 7, 4.25], "texture": "#0"}, - "down": {"uv": [6.75, 4.25, 7, 4], "texture": "#0"} + "from": [ + 6.75, + 0, + 4 + ], + "to": [ + 7, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 4, + 6.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4.25, + 7, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_31", - "from": [7, 0, 4], - "to": [7.25, 0.25, 4.25], - "faces": { - "north": {"uv": [7.25, 4, 7, 4.25], "texture": "#0"}, - "east": {"uv": [7, 4, 7.25, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 4, 7.25, 4.25], "texture": "#0"}, - "west": {"uv": [7, 4, 7.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4, 7.25, 4.25], "texture": "#0"}, - "down": {"uv": [7, 4.25, 7.25, 4], "texture": "#0"} + "from": [ + 7, + 0, + 4 + ], + "to": [ + 7.25, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 4, + 7, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4.25, + 7.25, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_32", - "from": [7.25, 0, 4], - "to": [7.5, 0.25, 4.25], - "faces": { - "north": {"uv": [7.5, 4, 7.25, 4.25], "texture": "#0"}, - "east": {"uv": [7.25, 4, 7.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 4, 7.5, 4.25], "texture": "#0"}, - "west": {"uv": [7.25, 4, 7.5, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4, 7.5, 4.25], "texture": "#0"}, - "down": {"uv": [7.25, 4.25, 7.5, 4], "texture": "#0"} + "from": [ + 7.25, + 0, + 4 + ], + "to": [ + 7.5, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4, + 7.5, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4.25, + 7.5, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_33", - "from": [7.5, 0, 4], - "to": [7.75, 0.25, 4.25], - "faces": { - "north": {"uv": [7.75, 4, 7.5, 4.25], "texture": "#0"}, - "east": {"uv": [7.5, 4, 7.75, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 4, 7.75, 4.25], "texture": "#0"}, - "west": {"uv": [7.5, 4, 7.75, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4, 7.75, 4.25], "texture": "#0"}, - "down": {"uv": [7.5, 4.25, 7.75, 4], "texture": "#0"} + "from": [ + 7.5, + 0, + 4 + ], + "to": [ + 7.75, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 4, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4, + 7.75, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4, + 7.75, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_34", - "from": [7.75, 0, 4], - "to": [8, 0.25, 4.25], - "faces": { - "north": {"uv": [8, 4, 7.75, 4.25], "texture": "#0"}, - "east": {"uv": [7.75, 4, 8, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 4, 8, 4.25], "texture": "#0"}, - "west": {"uv": [7.75, 4, 8, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4, 8, 4.25], "texture": "#0"}, - "down": {"uv": [7.75, 4.25, 8, 4], "texture": "#0"} + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4, + 8, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 4.25, + 8, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_35", - "from": [8, 0, 4], - "to": [8.25, 0.25, 4.25], - "faces": { - "north": {"uv": [8.25, 4, 8, 4.25], "texture": "#0"}, - "east": {"uv": [8, 4, 8.25, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 4, 8.25, 4.25], "texture": "#0"}, - "west": {"uv": [8, 4, 8.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4, 8.25, 4.25], "texture": "#0"}, - "down": {"uv": [8, 4.25, 8.25, 4], "texture": "#0"} + "from": [ + 8, + 0, + 4 + ], + "to": [ + 8.25, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 8.25, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4, + 8.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4.25, + 8.25, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_36", - "from": [8.25, 0, 4], - "to": [8.5, 0.25, 4.25], - "faces": { - "north": {"uv": [8.5, 4, 8.25, 4.25], "texture": "#0"}, - "east": {"uv": [8.25, 4, 8.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 4, 8.5, 4.25], "texture": "#0"}, - "west": {"uv": [8.25, 4, 8.5, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4, 8.5, 4.25], "texture": "#0"}, - "down": {"uv": [8.25, 4.25, 8.5, 4], "texture": "#0"} + "from": [ + 8.25, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_37", - "from": [8.5, 0, 4], - "to": [8.75, 0.25, 4.25], - "faces": { - "north": {"uv": [8.75, 4, 8.5, 4.25], "texture": "#0"}, - "east": {"uv": [8.5, 4, 8.75, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 4, 8.75, 4.25], "texture": "#0"}, - "west": {"uv": [8.5, 4, 8.75, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4, 8.75, 4.25], "texture": "#0"}, - "down": {"uv": [8.5, 4.25, 8.75, 4], "texture": "#0"} + "from": [ + 8.5, + 0, + 4 + ], + "to": [ + 8.75, + 0.25, + 4.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4, + 8.75, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4, + 8.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 8.75, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4, + 8.75, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 4.25, + 8.75, + 4 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_38", - "from": [4.25, 0, 4.25], - "to": [4.5, 0.25, 4.5], - "faces": { - "north": {"uv": [4.5, 4.25, 4.25, 4.5], "texture": "#0"}, - "east": {"uv": [4.25, 4.25, 4.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 4.25, 4.5, 4.5], "texture": "#0"}, - "west": {"uv": [4.25, 4.25, 4.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.25, 4.5, 4.5], "texture": "#0"}, - "down": {"uv": [4.25, 4.5, 4.5, 4.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 4.25 + ], + "to": [ + 4.5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 4.25, + 4.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.25, + 4.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 4.25, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.25, + 4.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.25, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 4.5, + 4.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_39", - "from": [4.5, 0, 4.25], - "to": [4.75, 0.25, 4.5], - "faces": { - "north": {"uv": [4.75, 4.25, 4.5, 4.5], "texture": "#0"}, - "east": {"uv": [4.5, 4.25, 4.75, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 4.25, 4.75, 4.5], "texture": "#0"}, - "west": {"uv": [4.5, 4.25, 4.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.25, 4.75, 4.5], "texture": "#0"}, - "down": {"uv": [4.5, 4.5, 4.75, 4.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 4.25 + ], + "to": [ + 4.75, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 4.25, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.25, + 4.75, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4.25, + 4.75, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 4.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.25, + 4.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4.5, + 4.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_40", - "from": [4.75, 0, 4.25], - "to": [5, 0.25, 4.5], - "faces": { - "north": {"uv": [5, 4.25, 4.75, 4.5], "texture": "#0"}, - "east": {"uv": [4.75, 4.25, 5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 4.25, 5, 4.5], "texture": "#0"}, - "west": {"uv": [4.75, 4.25, 5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.25, 5, 4.5], "texture": "#0"}, - "down": {"uv": [4.75, 4.5, 5, 4.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 4.25 + ], + "to": [ + 5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 4.25, + 4.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 4.5, + 5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_41", - "from": [5, 0, 4.25], - "to": [5.25, 0.25, 4.5], - "faces": { - "north": {"uv": [5.25, 4.25, 5, 4.5], "texture": "#0"}, - "east": {"uv": [5, 4.25, 5.25, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 4.25, 5.25, 4.5], "texture": "#0"}, - "west": {"uv": [5, 4.25, 5.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.25, 5.25, 4.5], "texture": "#0"}, - "down": {"uv": [5, 4.5, 5.25, 4.25], "texture": "#0"} + "from": [ + 5, + 0, + 4.25 + ], + "to": [ + 5.25, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 4.25, + 5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.25, + 5.25, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4.25, + 5.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.25, + 5.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.25, + 5.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4.5, + 5.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_42", - "from": [5.25, 0, 4.25], - "to": [5.5, 0.25, 4.5], - "faces": { - "north": {"uv": [5.5, 4.25, 5.25, 4.5], "texture": "#0"}, - "east": {"uv": [5.25, 4.25, 5.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 4.25, 5.5, 4.5], "texture": "#0"}, - "west": {"uv": [5.25, 4.25, 5.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4.25, 5.5, 4.5], "texture": "#0"}, - "down": {"uv": [5.25, 4.5, 5.5, 4.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 4.25 + ], + "to": [ + 5.5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 4.25, + 5.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_43", - "from": [5.5, 0, 4.25], - "to": [5.75, 0.25, 4.5], - "faces": { - "north": {"uv": [5.75, 4.25, 5.5, 4.5], "texture": "#0"}, - "east": {"uv": [5.5, 4.25, 5.75, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 4.25, 5.75, 4.5], "texture": "#0"}, - "west": {"uv": [5.5, 4.25, 5.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4.25, 5.75, 4.5], "texture": "#0"}, - "down": {"uv": [5.5, 4.5, 5.75, 4.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 4.25 + ], + "to": [ + 5.75, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 4.25, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.25, + 5.75, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 4.25, + 5.75, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.25, + 5.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4.25, + 5.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 4.5, + 5.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_44", - "from": [5.75, 0, 4.25], - "to": [6, 0.25, 4.5], - "faces": { - "north": {"uv": [6, 4.25, 5.75, 4.5], "texture": "#0"}, - "east": {"uv": [5.75, 4.25, 6, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 4.25, 6, 4.5], "texture": "#0"}, - "west": {"uv": [5.75, 4.25, 6, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.25, 6, 4.5], "texture": "#0"}, - "down": {"uv": [5.75, 4.5, 6, 4.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 4.25 + ], + "to": [ + 6, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 4.25, + 5.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.25, + 6, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 4.25, + 6, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.25, + 6, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.25, + 6, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 4.5, + 6, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_45", - "from": [6, 0, 4.25], - "to": [6.25, 0.25, 4.5], - "faces": { - "north": {"uv": [6.25, 4.25, 6, 4.5], "texture": "#0"}, - "east": {"uv": [6, 4.25, 6.25, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 4.25, 6.25, 4.5], "texture": "#0"}, - "west": {"uv": [6, 4.25, 6.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.25, 6.25, 4.5], "texture": "#0"}, - "down": {"uv": [6, 4.5, 6.25, 4.25], "texture": "#0"} + "from": [ + 6, + 0, + 4.25 + ], + "to": [ + 6.25, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 4.25, + 6, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.25, + 6.25, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 4.25, + 6.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.25, + 6.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.25, + 6.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 4.5, + 6.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_46", - "from": [6.25, 0, 4.25], - "to": [6.5, 0.25, 4.5], - "faces": { - "north": {"uv": [6.5, 4.25, 6.25, 4.5], "texture": "#0"}, - "east": {"uv": [6.25, 4.25, 6.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 4.25, 6.5, 4.5], "texture": "#0"}, - "west": {"uv": [6.25, 4.25, 6.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4.25, 6.5, 4.5], "texture": "#0"}, - "down": {"uv": [6.25, 4.5, 6.5, 4.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 4.25 + ], + "to": [ + 6.5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 4.25, + 6.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4.5, + 6.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_47", - "from": [6.5, 0, 4.25], - "to": [6.75, 0.25, 4.5], - "faces": { - "north": {"uv": [6.75, 4.25, 6.5, 4.5], "texture": "#0"}, - "east": {"uv": [6.5, 4.25, 6.75, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 4.25, 6.75, 4.5], "texture": "#0"}, - "west": {"uv": [6.5, 4.25, 6.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4.25, 6.75, 4.5], "texture": "#0"}, - "down": {"uv": [6.5, 4.5, 6.75, 4.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 4.25 + ], + "to": [ + 6.75, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 4.25, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4.25, + 6.75, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4.25, + 6.75, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.25, + 6.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4.25, + 6.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 4.5, + 6.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_48", - "from": [6.75, 0, 4.25], - "to": [7, 0.25, 4.5], - "faces": { - "north": {"uv": [7, 4.25, 6.75, 4.5], "texture": "#0"}, - "east": {"uv": [6.75, 4.25, 7, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 4.25, 7, 4.5], "texture": "#0"}, - "west": {"uv": [6.75, 4.25, 7, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.25, 7, 4.5], "texture": "#0"}, - "down": {"uv": [6.75, 4.5, 7, 4.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 4.25 + ], + "to": [ + 7, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 4.25, + 6.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4.25, + 7, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4.25, + 7, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.25, + 7, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.25, + 7, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4.5, + 7, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_49", - "from": [7, 0, 4.25], - "to": [7.25, 0.25, 4.5], - "faces": { - "north": {"uv": [7.25, 4.25, 7, 4.5], "texture": "#0"}, - "east": {"uv": [7, 4.25, 7.25, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 4.25, 7.25, 4.5], "texture": "#0"}, - "west": {"uv": [7, 4.25, 7.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4.25, 7.25, 4.5], "texture": "#0"}, - "down": {"uv": [7, 4.5, 7.25, 4.25], "texture": "#0"} + "from": [ + 7, + 0, + 4.25 + ], + "to": [ + 7.25, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 4.25, + 7, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4.25, + 7.25, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4.25, + 7.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.25, + 7.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4.25, + 7.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4.5, + 7.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_50", - "from": [7.25, 0, 4.25], - "to": [7.5, 0.25, 4.5], - "faces": { - "north": {"uv": [7.5, 4.25, 7.25, 4.5], "texture": "#0"}, - "east": {"uv": [7.25, 4.25, 7.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 4.25, 7.5, 4.5], "texture": "#0"}, - "west": {"uv": [7.25, 4.25, 7.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.25, 7.5, 4.5], "texture": "#0"}, - "down": {"uv": [7.25, 4.5, 7.5, 4.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 4.25 + ], + "to": [ + 7.5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 4.25, + 7.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.25, + 7.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.25, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.25, + 7.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.25, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_51", - "from": [7.5, 0, 4.25], - "to": [7.75, 0.25, 4.5], - "faces": { - "north": {"uv": [7.75, 4.25, 7.5, 4.5], "texture": "#0"}, - "east": {"uv": [7.5, 4.25, 7.75, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 4.25, 7.75, 4.5], "texture": "#0"}, - "west": {"uv": [7.5, 4.25, 7.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.25, 7.75, 4.5], "texture": "#0"}, - "down": {"uv": [7.5, 4.5, 7.75, 4.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 4.25 + ], + "to": [ + 7.75, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 4.25, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 4.5, + 7.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_52", - "from": [7.75, 0, 4.25], - "to": [8, 0.25, 4.5], - "faces": { - "north": {"uv": [8, 4.25, 7.75, 4.5], "texture": "#0"}, - "east": {"uv": [7.75, 4.25, 8, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 4.25, 8, 4.5], "texture": "#0"}, - "west": {"uv": [7.75, 4.25, 8, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4.25, 8, 4.5], "texture": "#0"}, - "down": {"uv": [7.75, 4.5, 8, 4.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 4.25 + ], + "to": [ + 8, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 4.25, + 7.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.25, + 8, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 4.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4.25, + 8, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 4.5, + 8, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_53", - "from": [8, 0, 4.25], - "to": [8.25, 0.25, 4.5], - "faces": { - "north": {"uv": [8.25, 4.25, 8, 4.5], "texture": "#0"}, - "east": {"uv": [8, 4.25, 8.25, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 4.25, 8.25, 4.5], "texture": "#0"}, - "west": {"uv": [8, 4.25, 8.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4.25, 8.25, 4.5], "texture": "#0"}, - "down": {"uv": [8, 4.5, 8.25, 4.25], "texture": "#0"} + "from": [ + 8, + 0, + 4.25 + ], + "to": [ + 8.25, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 4.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4.25, + 8.25, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4.25, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.25, + 8.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.25, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4.5, + 8.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_54", - "from": [8.25, 0, 4.25], - "to": [8.5, 0.25, 4.5], - "faces": { - "north": {"uv": [8.5, 4.25, 8.25, 4.5], "texture": "#0"}, - "east": {"uv": [8.25, 4.25, 8.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 4.25, 8.5, 4.5], "texture": "#0"}, - "west": {"uv": [8.25, 4.25, 8.5, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4.25, 8.5, 4.5], "texture": "#0"}, - "down": {"uv": [8.25, 4.5, 8.5, 4.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 4.25 + ], + "to": [ + 8.5, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 4.25, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 4.5, + 8.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_55", - "from": [8.5, 0, 4.25], - "to": [8.75, 0.25, 4.5], - "faces": { - "north": {"uv": [8.75, 4.25, 8.5, 4.5], "texture": "#0"}, - "east": {"uv": [8.5, 4.25, 8.75, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 4.25, 8.75, 4.5], "texture": "#0"}, - "west": {"uv": [8.5, 4.25, 8.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.25, 8.75, 4.5], "texture": "#0"}, - "down": {"uv": [8.5, 4.5, 8.75, 4.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 4.25 + ], + "to": [ + 8.75, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.25, + 8.75, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.25, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.25, + 8.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.25, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 4.5, + 8.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_56", - "from": [8.75, 0, 4.25], - "to": [9, 0.25, 4.5], - "faces": { - "north": {"uv": [9, 4.25, 8.75, 4.5], "texture": "#0"}, - "east": {"uv": [8.75, 4.25, 9, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 4.25, 9, 4.5], "texture": "#0"}, - "west": {"uv": [8.75, 4.25, 9, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.25, 9, 4.5], "texture": "#0"}, - "down": {"uv": [8.75, 4.5, 9, 4.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 4.25 + ], + "to": [ + 9, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 4.25, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.25, + 9, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 4.25, + 9, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.25, + 9, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.25, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4.5, + 9, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_57", - "from": [9, 0, 4.25], - "to": [9.25, 0.25, 4.5], - "faces": { - "north": {"uv": [9.25, 4.25, 9, 4.5], "texture": "#0"}, - "east": {"uv": [9, 4.25, 9.25, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 4.25, 9.25, 4.5], "texture": "#0"}, - "west": {"uv": [9, 4.25, 9.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4.25, 9.25, 4.5], "texture": "#0"}, - "down": {"uv": [9, 4.5, 9.25, 4.25], "texture": "#0"} + "from": [ + 9, + 0, + 4.25 + ], + "to": [ + 9.25, + 0.25, + 4.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 4.25, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.25, + 9.25, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.25, + 9.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.25, + 9.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4.25, + 9.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 4.5, + 9.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_58", - "from": [3.75, 0, 4.5], - "to": [4, 0.25, 4.75], - "faces": { - "north": {"uv": [4, 4.5, 3.75, 4.75], "texture": "#0"}, - "east": {"uv": [3.75, 4.5, 4, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 4.5, 4, 4.75], "texture": "#0"}, - "west": {"uv": [3.75, 4.5, 4, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 4.5, 4, 4.75], "texture": "#0"}, - "down": {"uv": [3.75, 4.75, 4, 4.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 4.5 + ], + "to": [ + 4, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 4.5, + 3.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4.5, + 4, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 4.5, + 4, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4.5, + 4, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 4.5, + 4, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 4.75, + 4, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_59", - "from": [4, 0, 4.5], - "to": [4.25, 0.25, 4.75], - "faces": { - "north": {"uv": [4.25, 4.5, 4, 4.75], "texture": "#0"}, - "east": {"uv": [4, 4.5, 4.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 4.5, 4.25, 4.75], "texture": "#0"}, - "west": {"uv": [4, 4.5, 4.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4.5, 4.25, 4.75], "texture": "#0"}, - "down": {"uv": [4, 4.75, 4.25, 4.5], "texture": "#0"} + "from": [ + 4, + 0, + 4.5 + ], + "to": [ + 4.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 4.5, + 4, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4.5, + 4.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 4.5, + 4.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.5, + 4.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4.5, + 4.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4.75, + 4.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_60", - "from": [4.25, 0, 4.5], - "to": [4.5, 0.25, 4.75], - "faces": { - "north": {"uv": [4.5, 4.5, 4.25, 4.75], "texture": "#0"}, - "east": {"uv": [4.25, 4.5, 4.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 4.5, 4.5, 4.75], "texture": "#0"}, - "west": {"uv": [4.25, 4.5, 4.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.5, 4.5, 4.75], "texture": "#0"}, - "down": {"uv": [4.25, 4.75, 4.5, 4.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 4.5 + ], + "to": [ + 4.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 4.5, + 4.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.5, + 4.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 4.5, + 4.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.5, + 4.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.5, + 4.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 4.75, + 4.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_61", - "from": [4.5, 0, 4.5], - "to": [4.75, 0.25, 4.75], - "faces": { - "north": {"uv": [4.75, 4.5, 4.5, 4.75], "texture": "#0"}, - "east": {"uv": [4.5, 4.5, 4.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 4.5, 4.75, 4.75], "texture": "#0"}, - "west": {"uv": [4.5, 4.5, 4.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.5, 4.75, 4.75], "texture": "#0"}, - "down": {"uv": [4.5, 4.75, 4.75, 4.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 4.5, + 4.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.5, + 4.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4.75, + 4.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_62", - "from": [4.75, 0, 4.5], - "to": [5, 0.25, 4.75], - "faces": { - "north": {"uv": [5, 4.5, 4.75, 4.75], "texture": "#0"}, - "east": {"uv": [4.75, 4.5, 5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 4.5, 5, 4.75], "texture": "#0"}, - "west": {"uv": [4.75, 4.5, 5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.5, 5, 4.75], "texture": "#0"}, - "down": {"uv": [4.75, 4.75, 5, 4.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 4.5 + ], + "to": [ + 5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.5, + 5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 4.5, + 5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.5, + 5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.5, + 5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 4.75, + 5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_63", - "from": [5, 0, 4.5], - "to": [5.25, 0.25, 4.75], - "faces": { - "north": {"uv": [5.25, 4.5, 5, 4.75], "texture": "#0"}, - "east": {"uv": [5, 4.5, 5.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 4.5, 5.25, 4.75], "texture": "#0"}, - "west": {"uv": [5, 4.5, 5.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.5, 5.25, 4.75], "texture": "#0"}, - "down": {"uv": [5, 4.75, 5.25, 4.5], "texture": "#0"} + "from": [ + 5, + 0, + 4.5 + ], + "to": [ + 5.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 4.5, + 5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.5, + 5.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4.5, + 5.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.5, + 5.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.5, + 5.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4.75, + 5.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_64", - "from": [5.25, 0, 4.5], - "to": [5.5, 0.25, 4.75], - "faces": { - "north": {"uv": [5.5, 4.5, 5.25, 4.75], "texture": "#0"}, - "east": {"uv": [5.25, 4.5, 5.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 4.5, 5.5, 4.75], "texture": "#0"}, - "west": {"uv": [5.25, 4.5, 5.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4.5, 5.5, 4.75], "texture": "#0"}, - "down": {"uv": [5.25, 4.75, 5.5, 4.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 4.5 + ], + "to": [ + 5.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 4.5, + 5.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.5, + 5.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 4.75, + 5.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_65", - "from": [5.5, 0, 4.5], - "to": [5.75, 0.25, 4.75], - "faces": { - "north": {"uv": [5.75, 4.5, 5.5, 4.75], "texture": "#0"}, - "east": {"uv": [5.5, 4.5, 5.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 4.5, 5.75, 4.75], "texture": "#0"}, - "west": {"uv": [5.5, 4.5, 5.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4.5, 5.75, 4.75], "texture": "#0"}, - "down": {"uv": [5.5, 4.75, 5.75, 4.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 4.5 + ], + "to": [ + 5.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 4.5, + 5.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.5, + 5.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 4.5, + 5.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.5, + 5.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4.5, + 5.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 4.75, + 5.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_66", - "from": [5.75, 0, 4.5], - "to": [6, 0.25, 4.75], - "faces": { - "north": {"uv": [6, 4.5, 5.75, 4.75], "texture": "#0"}, - "east": {"uv": [5.75, 4.5, 6, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 4.5, 6, 4.75], "texture": "#0"}, - "west": {"uv": [5.75, 4.5, 6, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.5, 6, 4.75], "texture": "#0"}, - "down": {"uv": [5.75, 4.75, 6, 4.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 4.5 + ], + "to": [ + 6, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 4.5, + 5.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.5, + 6, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 4.5, + 6, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.5, + 6, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.5, + 6, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 4.75, + 6, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_67", - "from": [6, 0, 4.5], - "to": [6.25, 0.25, 4.75], - "faces": { - "north": {"uv": [6.25, 4.5, 6, 4.75], "texture": "#0"}, - "east": {"uv": [6, 4.5, 6.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 4.5, 6.25, 4.75], "texture": "#0"}, - "west": {"uv": [6, 4.5, 6.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.5, 6.25, 4.75], "texture": "#0"}, - "down": {"uv": [6, 4.75, 6.25, 4.5], "texture": "#0"} + "from": [ + 6, + 0, + 4.5 + ], + "to": [ + 6.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 4.5, + 6, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 6.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 4.5, + 6.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.5, + 6.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.5, + 6.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 4.75, + 6.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_68", - "from": [6.25, 0, 4.5], - "to": [6.5, 0.25, 4.75], - "faces": { - "north": {"uv": [6.5, 4.5, 6.25, 4.75], "texture": "#0"}, - "east": {"uv": [6.25, 4.5, 6.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 4.5, 6.5, 4.75], "texture": "#0"}, - "west": {"uv": [6.25, 4.5, 6.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4.5, 6.5, 4.75], "texture": "#0"}, - "down": {"uv": [6.25, 4.75, 6.5, 4.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 4.5 + ], + "to": [ + 6.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 4.5, + 6.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.5, + 6.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.5, + 6.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4.5, + 6.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.5, + 6.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4.75, + 6.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_69", - "from": [6.5, 0, 4.5], - "to": [6.75, 0.25, 4.75], - "faces": { - "north": {"uv": [6.75, 4.5, 6.5, 4.75], "texture": "#0"}, - "east": {"uv": [6.5, 4.5, 6.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 4.5, 6.75, 4.75], "texture": "#0"}, - "west": {"uv": [6.5, 4.5, 6.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4.5, 6.75, 4.75], "texture": "#0"}, - "down": {"uv": [6.5, 4.75, 6.75, 4.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 4.5 + ], + "to": [ + 6.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 4.5, + 6.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4.5, + 6.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4.5, + 6.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.5, + 6.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4.5, + 6.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 4.75, + 6.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_70", - "from": [6.75, 0, 4.5], - "to": [7, 0.25, 4.75], - "faces": { - "north": {"uv": [7, 4.5, 6.75, 4.75], "texture": "#0"}, - "east": {"uv": [6.75, 4.5, 7, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 4.5, 7, 4.75], "texture": "#0"}, - "west": {"uv": [6.75, 4.5, 7, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.5, 7, 4.75], "texture": "#0"}, - "down": {"uv": [6.75, 4.75, 7, 4.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 4.5 + ], + "to": [ + 7, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 6.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4.5, + 7, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4.5, + 7, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.5, + 7, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.5, + 7, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4.75, + 7, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_71", - "from": [7, 0, 4.5], - "to": [7.25, 0.25, 4.75], - "faces": { - "north": {"uv": [7.25, 4.5, 7, 4.75], "texture": "#0"}, - "east": {"uv": [7, 4.5, 7.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 4.5, 7.25, 4.75], "texture": "#0"}, - "west": {"uv": [7, 4.5, 7.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4.5, 7.25, 4.75], "texture": "#0"}, - "down": {"uv": [7, 4.75, 7.25, 4.5], "texture": "#0"} + "from": [ + 7, + 0, + 4.5 + ], + "to": [ + 7.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 4.5, + 7, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4.5, + 7.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.5, + 7.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4.75, + 7.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_72", - "from": [7.25, 0, 4.5], - "to": [7.5, 0.25, 4.75], - "faces": { - "north": {"uv": [7.5, 4.5, 7.25, 4.75], "texture": "#0"}, - "east": {"uv": [7.25, 4.5, 7.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 4.5, 7.5, 4.75], "texture": "#0"}, - "west": {"uv": [7.25, 4.5, 7.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.5, 7.5, 4.75], "texture": "#0"}, - "down": {"uv": [7.25, 4.75, 7.5, 4.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 4.5 + ], + "to": [ + 7.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4.75, + 7.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_73", - "from": [7.5, 0, 4.5], - "to": [7.75, 0.25, 4.75], - "faces": { - "north": {"uv": [7.75, 4.5, 7.5, 4.75], "texture": "#0"}, - "east": {"uv": [7.5, 4.5, 7.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 4.5, 7.75, 4.75], "texture": "#0"}, - "west": {"uv": [7.5, 4.5, 7.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.5, 7.75, 4.75], "texture": "#0"}, - "down": {"uv": [7.5, 4.75, 7.75, 4.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 4.5 + ], + "to": [ + 7.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.5, + 7.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4.5, + 7.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.5, + 7.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 7.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 4.75, + 7.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_74", - "from": [7.75, 0, 4.5], - "to": [8, 0.25, 4.75], - "faces": { - "north": {"uv": [8, 4.5, 7.75, 4.75], "texture": "#0"}, - "east": {"uv": [7.75, 4.5, 8, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 4.5, 8, 4.75], "texture": "#0"}, - "west": {"uv": [7.75, 4.5, 8, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4.5, 8, 4.75], "texture": "#0"}, - "down": {"uv": [7.75, 4.75, 8, 4.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 4.5 + ], + "to": [ + 8, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 7.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.5, + 8, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4.5, + 8, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 4.75, + 8, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_75", - "from": [8, 0, 4.5], - "to": [8.25, 0.25, 4.75], - "faces": { - "north": {"uv": [8.25, 4.5, 8, 4.75], "texture": "#0"}, - "east": {"uv": [8, 4.5, 8.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 4.5, 8.25, 4.75], "texture": "#0"}, - "west": {"uv": [8, 4.5, 8.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4.5, 8.25, 4.75], "texture": "#0"}, - "down": {"uv": [8, 4.75, 8.25, 4.5], "texture": "#0"} + "from": [ + 8, + 0, + 4.5 + ], + "to": [ + 8.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4.5, + 8.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4.5, + 8.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.5, + 8.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.5, + 8.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4.75, + 8.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_76", - "from": [8.25, 0, 4.5], - "to": [8.5, 0.25, 4.75], - "faces": { - "north": {"uv": [8.5, 4.5, 8.25, 4.75], "texture": "#0"}, - "east": {"uv": [8.25, 4.5, 8.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 4.5, 8.5, 4.75], "texture": "#0"}, - "west": {"uv": [8.25, 4.5, 8.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4.5, 8.5, 4.75], "texture": "#0"}, - "down": {"uv": [8.25, 4.75, 8.5, 4.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 4.5 + ], + "to": [ + 8.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 4.5, + 8.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4.5, + 8.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 4.5, + 8.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4.5, + 8.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4.5, + 8.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 4.75, + 8.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_77", - "from": [8.5, 0, 4.5], - "to": [8.75, 0.25, 4.75], - "faces": { - "north": {"uv": [8.75, 4.5, 8.5, 4.75], "texture": "#0"}, - "east": {"uv": [8.5, 4.5, 8.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 4.5, 8.75, 4.75], "texture": "#0"}, - "west": {"uv": [8.5, 4.5, 8.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.5, 8.75, 4.75], "texture": "#0"}, - "down": {"uv": [8.5, 4.75, 8.75, 4.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 4.5 + ], + "to": [ + 8.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 4.5, + 8.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.5, + 8.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.5, + 8.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.5, + 8.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 4.75, + 8.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_78", - "from": [8.75, 0, 4.5], - "to": [9, 0.25, 4.75], - "faces": { - "north": {"uv": [9, 4.5, 8.75, 4.75], "texture": "#0"}, - "east": {"uv": [8.75, 4.5, 9, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 4.5, 9, 4.75], "texture": "#0"}, - "west": {"uv": [8.75, 4.5, 9, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.5, 9, 4.75], "texture": "#0"}, - "down": {"uv": [8.75, 4.75, 9, 4.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 4.5 + ], + "to": [ + 9, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 4.5, + 8.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.5, + 9, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 4.5, + 9, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.5, + 9, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 9, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4.75, + 9, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_79", - "from": [9, 0, 4.5], - "to": [9.25, 0.25, 4.75], - "faces": { - "north": {"uv": [9.25, 4.5, 9, 4.75], "texture": "#0"}, - "east": {"uv": [9, 4.5, 9.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 4.5, 9.25, 4.75], "texture": "#0"}, - "west": {"uv": [9, 4.5, 9.25, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4.5, 9.25, 4.75], "texture": "#0"}, - "down": {"uv": [9, 4.75, 9.25, 4.5], "texture": "#0"} + "from": [ + 9, + 0, + 4.5 + ], + "to": [ + 9.25, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 4.5, + 9, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.5, + 9.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.5, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.5, + 9.25, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4.5, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 4.75, + 9.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_80", - "from": [9.25, 0, 4.5], - "to": [9.5, 0.25, 4.75], - "faces": { - "north": {"uv": [9.5, 4.5, 9.25, 4.75], "texture": "#0"}, - "east": {"uv": [9.25, 4.5, 9.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 4.5, 9.5, 4.75], "texture": "#0"}, - "west": {"uv": [9.25, 4.5, 9.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 4.5, 9.5, 4.75], "texture": "#0"}, - "down": {"uv": [9.25, 4.75, 9.5, 4.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 4.5 + ], + "to": [ + 9.5, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 4.5, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4.5, + 9.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 4.5, + 9.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.75, + 9.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_81", - "from": [9.5, 0, 4.5], - "to": [9.75, 0.25, 4.75], - "faces": { - "north": {"uv": [9.75, 4.5, 9.5, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.5, 9.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 4.5, 9.75, 4.75], "texture": "#0"}, - "west": {"uv": [9.5, 4.5, 9.75, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 4.5, 9.75, 4.75], "texture": "#0"}, - "down": {"uv": [9.5, 4.75, 9.75, 4.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 4.5 + ], + "to": [ + 9.75, + 0.25, + 4.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 4.5, + 9.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4.5, + 9.75, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.5, + 9.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 4.75, + 9.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_82", - "from": [3.25, 0, 4.75], - "to": [3.5, 0.25, 5], - "faces": { - "north": {"uv": [3.5, 4.75, 3.25, 5], "texture": "#0"}, - "east": {"uv": [3.25, 4.75, 3.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 4.75, 3.5, 5], "texture": "#0"}, - "west": {"uv": [3.25, 4.75, 3.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 4.75, 3.5, 5], "texture": "#0"}, - "down": {"uv": [3.25, 5, 3.5, 4.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 4.75 + ], + "to": [ + 3.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 4.75, + 3.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 4.75, + 3.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 4.75, + 3.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 4.75, + 3.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4.75, + 3.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5, + 3.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_83", - "from": [3.5, 0, 4.75], - "to": [3.75, 0.25, 5], - "faces": { - "north": {"uv": [3.75, 4.75, 3.5, 5], "texture": "#0"}, - "east": {"uv": [3.5, 4.75, 3.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 4.75, 3.75, 5], "texture": "#0"}, - "west": {"uv": [3.5, 4.75, 3.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 4.75, 3.75, 5], "texture": "#0"}, - "down": {"uv": [3.5, 5, 3.75, 4.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 4.75 + ], + "to": [ + 3.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 4.75, + 3.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 4.75, + 3.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 4.75, + 3.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 4.75, + 3.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 4.75, + 3.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5, + 3.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_84", - "from": [3.75, 0, 4.75], - "to": [4, 0.25, 5], - "faces": { - "north": {"uv": [4, 4.75, 3.75, 5], "texture": "#0"}, - "east": {"uv": [3.75, 4.75, 4, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 4.75, 4, 5], "texture": "#0"}, - "west": {"uv": [3.75, 4.75, 4, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 4.75, 4, 5], "texture": "#0"}, - "down": {"uv": [3.75, 5, 4, 4.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 4.75 + ], + "to": [ + 4, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 4, + 4.75, + 3.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4.75, + 4, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 4.75, + 4, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4.75, + 4, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 4.75, + 4, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 5, + 4, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_85", - "from": [4, 0, 4.75], - "to": [4.25, 0.25, 5], - "faces": { - "north": {"uv": [4.25, 4.75, 4, 5], "texture": "#0"}, - "east": {"uv": [4, 4.75, 4.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 4.75, 4.25, 5], "texture": "#0"}, - "west": {"uv": [4, 4.75, 4.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4.75, 4.25, 5], "texture": "#0"}, - "down": {"uv": [4, 5, 4.25, 4.75], "texture": "#0"} + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 4.75, + 4, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4.75, + 4.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 4.75, + 4.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5, + 4.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_86", - "from": [4.25, 0, 4.75], - "to": [4.5, 0.25, 5], - "faces": { - "north": {"uv": [4.5, 4.75, 4.25, 5], "texture": "#0"}, - "east": {"uv": [4.25, 4.75, 4.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 4.75, 4.5, 5], "texture": "#0"}, - "west": {"uv": [4.25, 4.75, 4.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.75, 4.5, 5], "texture": "#0"}, - "down": {"uv": [4.25, 5, 4.5, 4.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 4.75 + ], + "to": [ + 4.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 4.75, + 4.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5, + 4.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_87", - "from": [4.5, 0, 4.75], - "to": [4.75, 0.25, 5], - "faces": { - "north": {"uv": [4.75, 4.75, 4.5, 5], "texture": "#0"}, - "east": {"uv": [4.5, 4.75, 4.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 4.75, 4.75, 5], "texture": "#0"}, - "west": {"uv": [4.5, 4.75, 4.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4.75, 4.75, 5], "texture": "#0"}, - "down": {"uv": [4.5, 5, 4.75, 4.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 4.75 + ], + "to": [ + 4.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 4.75, + 4.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.75, + 4.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4.75, + 4.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4.75, + 4.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4.75, + 4.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5, + 4.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_88", - "from": [4.75, 0, 4.75], - "to": [5, 0.25, 5], - "faces": { - "north": {"uv": [5, 4.75, 4.75, 5], "texture": "#0"}, - "east": {"uv": [4.75, 4.75, 5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 4.75, 5, 5], "texture": "#0"}, - "west": {"uv": [4.75, 4.75, 5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.75, 5, 5], "texture": "#0"}, - "down": {"uv": [4.75, 5, 5, 4.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 4.75 + ], + "to": [ + 5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 5, + 4.75, + 4.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.75, + 5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 4.75, + 5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.75, + 5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.75, + 5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5, + 5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_89", - "from": [5, 0, 4.75], - "to": [5.25, 0.25, 5], - "faces": { - "north": {"uv": [5.25, 4.75, 5, 5], "texture": "#0"}, - "east": {"uv": [5, 4.75, 5.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 4.75, 5.25, 5], "texture": "#0"}, - "west": {"uv": [5, 4.75, 5.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.75, 5.25, 5], "texture": "#0"}, - "down": {"uv": [5, 5, 5.25, 4.75], "texture": "#0"} + "from": [ + 5, + 0, + 4.75 + ], + "to": [ + 5.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 4.75, + 5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4.75, + 5.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.75, + 5.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.75, + 5.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5, + 5.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_90", - "from": [5.25, 0, 4.75], - "to": [5.5, 0.25, 5], - "faces": { - "north": {"uv": [5.5, 4.75, 5.25, 5], "texture": "#0"}, - "east": {"uv": [5.25, 4.75, 5.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 4.75, 5.5, 5], "texture": "#0"}, - "west": {"uv": [5.25, 4.75, 5.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4.75, 5.5, 5], "texture": "#0"}, - "down": {"uv": [5.25, 5, 5.5, 4.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 4.75 + ], + "to": [ + 5.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 4.75, + 5.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.75, + 5.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 4.75, + 5.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4.75, + 5.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.75, + 5.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5, + 5.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_91", - "from": [5.5, 0, 4.75], - "to": [5.75, 0.25, 5], - "faces": { - "north": {"uv": [5.75, 4.75, 5.5, 5], "texture": "#0"}, - "east": {"uv": [5.5, 4.75, 5.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 4.75, 5.75, 5], "texture": "#0"}, - "west": {"uv": [5.5, 4.75, 5.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4.75, 5.75, 5], "texture": "#0"}, - "down": {"uv": [5.5, 5, 5.75, 4.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 4.75 + ], + "to": [ + 5.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 4.75, + 5.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.75, + 5.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 4.75, + 5.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.75, + 5.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4.75, + 5.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5, + 5.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_92", - "from": [5.75, 0, 4.75], - "to": [6, 0.25, 5], - "faces": { - "north": {"uv": [6, 4.75, 5.75, 5], "texture": "#0"}, - "east": {"uv": [5.75, 4.75, 6, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 4.75, 6, 5], "texture": "#0"}, - "west": {"uv": [5.75, 4.75, 6, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.75, 6, 5], "texture": "#0"}, - "down": {"uv": [5.75, 5, 6, 4.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 4.75 + ], + "to": [ + 6, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 6, + 4.75, + 5.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.75, + 6, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 4.75, + 6, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.75, + 6, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.75, + 6, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5, + 6, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_93", - "from": [6, 0, 4.75], - "to": [6.25, 0.25, 5], - "faces": { - "north": {"uv": [6.25, 4.75, 6, 5], "texture": "#0"}, - "east": {"uv": [6, 4.75, 6.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 4.75, 6.25, 5], "texture": "#0"}, - "west": {"uv": [6, 4.75, 6.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.75, 6.25, 5], "texture": "#0"}, - "down": {"uv": [6, 5, 6.25, 4.75], "texture": "#0"} + "from": [ + 6, + 0, + 4.75 + ], + "to": [ + 6.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 4.75, + 6, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.75, + 6.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 4.75, + 6.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.75, + 6.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.75, + 6.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5, + 6.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_94", - "from": [6.25, 0, 4.75], - "to": [6.5, 0.25, 5], - "faces": { - "north": {"uv": [6.5, 4.75, 6.25, 5], "texture": "#0"}, - "east": {"uv": [6.25, 4.75, 6.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 4.75, 6.5, 5], "texture": "#0"}, - "west": {"uv": [6.25, 4.75, 6.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4.75, 6.5, 5], "texture": "#0"}, - "down": {"uv": [6.25, 5, 6.5, 4.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 4.75 + ], + "to": [ + 6.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 4.75, + 6.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5, + 6.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_95", - "from": [6.5, 0, 4.75], - "to": [6.75, 0.25, 5], - "faces": { - "north": {"uv": [6.75, 4.75, 6.5, 5], "texture": "#0"}, - "east": {"uv": [6.5, 4.75, 6.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 4.75, 6.75, 5], "texture": "#0"}, - "west": {"uv": [6.5, 4.75, 6.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 4.75, 6.75, 5], "texture": "#0"}, - "down": {"uv": [6.5, 5, 6.75, 4.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 4.75 + ], + "to": [ + 6.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 4.75, + 6.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4.75, + 6.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.75, + 6.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_96", - "from": [6.75, 0, 4.75], - "to": [7, 0.25, 5], - "faces": { - "north": {"uv": [7, 4.75, 6.75, 5], "texture": "#0"}, - "east": {"uv": [6.75, 4.75, 7, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 4.75, 7, 5], "texture": "#0"}, - "west": {"uv": [6.75, 4.75, 7, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.75, 7, 5], "texture": "#0"}, - "down": {"uv": [6.75, 5, 7, 4.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 7, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4.75, + 7, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4.75, + 7, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5, + 7, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_97", - "from": [7, 0, 4.75], - "to": [7.25, 0.25, 5], - "faces": { - "north": {"uv": [7.25, 4.75, 7, 5], "texture": "#0"}, - "east": {"uv": [7, 4.75, 7.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 4.75, 7.25, 5], "texture": "#0"}, - "west": {"uv": [7, 4.75, 7.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4.75, 7.25, 5], "texture": "#0"}, - "down": {"uv": [7, 5, 7.25, 4.75], "texture": "#0"} + "from": [ + 7, + 0, + 4.75 + ], + "to": [ + 7.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 4.75, + 7, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4.75, + 7.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4.75, + 7.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.75, + 7.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4.75, + 7.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5, + 7.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_98", - "from": [7.25, 0, 4.75], - "to": [7.5, 0.25, 5], - "faces": { - "north": {"uv": [7.5, 4.75, 7.25, 5], "texture": "#0"}, - "east": {"uv": [7.25, 4.75, 7.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 4.75, 7.5, 5], "texture": "#0"}, - "west": {"uv": [7.25, 4.75, 7.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.75, 7.5, 5], "texture": "#0"}, - "down": {"uv": [7.25, 5, 7.5, 4.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 4.75 + ], + "to": [ + 7.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 4.75, + 7.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.75, + 7.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.75, + 7.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.75, + 7.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.75, + 7.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5, + 7.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_99", - "from": [7.5, 0, 4.75], - "to": [7.75, 0.25, 5], - "faces": { - "north": {"uv": [7.75, 4.75, 7.5, 5], "texture": "#0"}, - "east": {"uv": [7.5, 4.75, 7.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 4.75, 7.75, 5], "texture": "#0"}, - "west": {"uv": [7.5, 4.75, 7.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.75, 7.75, 5], "texture": "#0"}, - "down": {"uv": [7.5, 5, 7.75, 4.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 4.75 + ], + "to": [ + 7.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 4.75, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5, + 7.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_100", - "from": [7.75, 0, 4.75], - "to": [8, 0.25, 5], - "faces": { - "north": {"uv": [8, 4.75, 7.75, 5], "texture": "#0"}, - "east": {"uv": [7.75, 4.75, 8, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 4.75, 8, 5], "texture": "#0"}, - "west": {"uv": [7.75, 4.75, 8, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4.75, 8, 5], "texture": "#0"}, - "down": {"uv": [7.75, 5, 8, 4.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 4.75 + ], + "to": [ + 8, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 8, + 4.75, + 7.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.75, + 8, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4.75, + 8, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5, + 8, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_101", - "from": [8, 0, 4.75], - "to": [8.25, 0.25, 5], - "faces": { - "north": {"uv": [8.25, 4.75, 8, 5], "texture": "#0"}, - "east": {"uv": [8, 4.75, 8.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 4.75, 8.25, 5], "texture": "#0"}, - "west": {"uv": [8, 4.75, 8.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4.75, 8.25, 5], "texture": "#0"}, - "down": {"uv": [8, 5, 8.25, 4.75], "texture": "#0"} + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 8.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4.75, + 8.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4.75, + 8.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.75, + 8.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 5, + 8.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_102", - "from": [8.25, 0, 4.75], - "to": [8.5, 0.25, 5], - "faces": { - "north": {"uv": [8.5, 4.75, 8.25, 5], "texture": "#0"}, - "east": {"uv": [8.25, 4.75, 8.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 4.75, 8.5, 5], "texture": "#0"}, - "west": {"uv": [8.25, 4.75, 8.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4.75, 8.5, 5], "texture": "#0"}, - "down": {"uv": [8.25, 5, 8.5, 4.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 4.75 + ], + "to": [ + 8.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 4.75, + 8.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4.75, + 8.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 4.75, + 8.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4.75, + 8.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4.75, + 8.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 5, + 8.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_103", - "from": [8.5, 0, 4.75], - "to": [8.75, 0.25, 5], - "faces": { - "north": {"uv": [8.75, 4.75, 8.5, 5], "texture": "#0"}, - "east": {"uv": [8.5, 4.75, 8.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 4.75, 8.75, 5], "texture": "#0"}, - "west": {"uv": [8.5, 4.75, 8.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.75, 8.75, 5], "texture": "#0"}, - "down": {"uv": [8.5, 5, 8.75, 4.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 4.75 + ], + "to": [ + 8.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 4.75, + 8.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.75, + 8.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5, + 8.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_104", - "from": [8.75, 0, 4.75], - "to": [9, 0.25, 5], - "faces": { - "north": {"uv": [9, 4.75, 8.75, 5], "texture": "#0"}, - "east": {"uv": [8.75, 4.75, 9, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 4.75, 9, 5], "texture": "#0"}, - "west": {"uv": [8.75, 4.75, 9, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 4.75, 9, 5], "texture": "#0"}, - "down": {"uv": [8.75, 5, 9, 4.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 9, + 4.75, + 8.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 4.75, + 9, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 4.75, + 9, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.75, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5, + 9, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_105", - "from": [9, 0, 4.75], - "to": [9.25, 0.25, 5], - "faces": { - "north": {"uv": [9.25, 4.75, 9, 5], "texture": "#0"}, - "east": {"uv": [9, 4.75, 9.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 4.75, 9.25, 5], "texture": "#0"}, - "west": {"uv": [9, 4.75, 9.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 4.75, 9.25, 5], "texture": "#0"}, - "down": {"uv": [9, 5, 9.25, 4.75], "texture": "#0"} + "from": [ + 9, + 0, + 4.75 + ], + "to": [ + 9.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 4.75, + 9, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.75, + 9.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.75, + 9.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.75, + 9.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 4.75, + 9.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 5, + 9.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_106", - "from": [9.25, 0, 4.75], - "to": [9.5, 0.25, 5], - "faces": { - "north": {"uv": [9.5, 4.75, 9.25, 5], "texture": "#0"}, - "east": {"uv": [9.25, 4.75, 9.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 4.75, 9.5, 5], "texture": "#0"}, - "west": {"uv": [9.25, 4.75, 9.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 4.75, 9.5, 5], "texture": "#0"}, - "down": {"uv": [9.25, 5, 9.5, 4.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 4.75 + ], + "to": [ + 9.5, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 4.75, + 9.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4.75, + 9.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 4.75, + 9.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 4.75, + 9.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.75, + 9.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5, + 9.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_107", - "from": [9.5, 0, 4.75], - "to": [9.75, 0.25, 5], - "faces": { - "north": {"uv": [9.75, 4.75, 9.5, 5], "texture": "#0"}, - "east": {"uv": [9.5, 4.75, 9.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 4.75, 9.75, 5], "texture": "#0"}, - "west": {"uv": [9.5, 4.75, 9.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 4.75, 9.75, 5], "texture": "#0"}, - "down": {"uv": [9.5, 5, 9.75, 4.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 4.75 + ], + "to": [ + 9.75, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 4.75, + 9.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.75, + 9.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 4.75, + 9.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4.75, + 9.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.75, + 9.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5, + 9.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_108", - "from": [9.75, 0, 4.75], - "to": [10, 0.25, 5], - "faces": { - "north": {"uv": [10, 4.75, 9.75, 5], "texture": "#0"}, - "east": {"uv": [9.75, 4.75, 10, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 4.75, 10, 5], "texture": "#0"}, - "west": {"uv": [9.75, 4.75, 10, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 4.75, 10, 5], "texture": "#0"}, - "down": {"uv": [9.75, 5, 10, 4.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 4.75 + ], + "to": [ + 10, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 10, + 4.75, + 9.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4.75, + 10, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 4.75, + 10, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 4.75, + 10, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 4.75, + 10, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 5, + 10, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_109", - "from": [10, 0, 4.75], - "to": [10.25, 0.25, 5], - "faces": { - "north": {"uv": [10.25, 4.75, 10, 5], "texture": "#0"}, - "east": {"uv": [10, 4.75, 10.25, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 4.75, 10.25, 5], "texture": "#0"}, - "west": {"uv": [10, 4.75, 10.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 4.75, 10.25, 5], "texture": "#0"}, - "down": {"uv": [10, 5, 10.25, 4.75], "texture": "#0"} + "from": [ + 10, + 0, + 4.75 + ], + "to": [ + 10.25, + 0.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 4.75, + 10, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 4.75, + 10.25, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 4.75, + 10.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 4.75, + 10.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 4.75, + 10.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 5, + 10.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_110", - "from": [2.75, 0, 5], - "to": [3, 0.25, 5.25], - "faces": { - "north": {"uv": [3, 5, 2.75, 5.25], "texture": "#0"}, - "east": {"uv": [2.75, 5, 3, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5, 3, 5.25], "texture": "#0"}, - "west": {"uv": [2.75, 5, 3, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5, 3, 5.25], "texture": "#0"}, - "down": {"uv": [2.75, 5.25, 3, 5], "texture": "#0"} + "from": [ + 2.75, + 0, + 5 + ], + "to": [ + 3, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 5, + 2.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 5.25, + 3, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_111", - "from": [3, 0, 5], - "to": [3.25, 0.25, 5.25], - "faces": { - "north": {"uv": [3.25, 5, 3, 5.25], "texture": "#0"}, - "east": {"uv": [3, 5, 3.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 5, 3.25, 5.25], "texture": "#0"}, - "west": {"uv": [3, 5, 3.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5, 3.25, 5.25], "texture": "#0"}, - "down": {"uv": [3, 5.25, 3.25, 5], "texture": "#0"} + "from": [ + 3, + 0, + 5 + ], + "to": [ + 3.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 5, + 3, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5, + 3.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5, + 3.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5, + 3.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5, + 3.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5.25, + 3.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_112", - "from": [3.25, 0, 5], - "to": [3.5, 0.25, 5.25], - "faces": { - "north": {"uv": [3.5, 5, 3.25, 5.25], "texture": "#0"}, - "east": {"uv": [3.25, 5, 3.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 5, 3.5, 5.25], "texture": "#0"}, - "west": {"uv": [3.25, 5, 3.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5, 3.5, 5.25], "texture": "#0"}, - "down": {"uv": [3.25, 5.25, 3.5, 5], "texture": "#0"} + "from": [ + 3.25, + 0, + 5 + ], + "to": [ + 3.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 5, + 3.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5, + 3.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 5, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5, + 3.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_113", - "from": [3.5, 0, 5], - "to": [3.75, 0.25, 5.25], - "faces": { - "north": {"uv": [3.75, 5, 3.5, 5.25], "texture": "#0"}, - "east": {"uv": [3.5, 5, 3.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5, 3.75, 5.25], "texture": "#0"}, - "west": {"uv": [3.5, 5, 3.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5, 3.75, 5.25], "texture": "#0"}, - "down": {"uv": [3.5, 5.25, 3.75, 5], "texture": "#0"} + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 3.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 5, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5, + 3.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5, + 3.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5, + 3.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5.25, + 3.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_114", - "from": [3.75, 0, 5], - "to": [4, 0.25, 5.25], - "faces": { - "north": {"uv": [4, 5, 3.75, 5.25], "texture": "#0"}, - "east": {"uv": [3.75, 5, 4, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 5, 4, 5.25], "texture": "#0"}, - "west": {"uv": [3.75, 5, 4, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5, 4, 5.25], "texture": "#0"}, - "down": {"uv": [3.75, 5.25, 4, 5], "texture": "#0"} + "from": [ + 3.75, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 5, + 3.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 5.25, + 4, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_115", - "from": [4, 0, 5], - "to": [4.25, 0.25, 5.25], - "faces": { - "north": {"uv": [4.25, 5, 4, 5.25], "texture": "#0"}, - "east": {"uv": [4, 5, 4.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 5, 4.25, 5.25], "texture": "#0"}, - "west": {"uv": [4, 5, 4.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5, 4.25, 5.25], "texture": "#0"}, - "down": {"uv": [4, 5.25, 4.25, 5], "texture": "#0"} + "from": [ + 4, + 0, + 5 + ], + "to": [ + 4.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 5, + 4, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5.25, + 4.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_116", - "from": [4.25, 0, 5], - "to": [4.5, 0.25, 5.25], - "faces": { - "north": {"uv": [4.5, 5, 4.25, 5.25], "texture": "#0"}, - "east": {"uv": [4.25, 5, 4.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 5, 4.5, 5.25], "texture": "#0"}, - "west": {"uv": [4.25, 5, 4.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5, 4.5, 5.25], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 4.5, 5], "texture": "#0"} + "from": [ + 4.25, + 0, + 5 + ], + "to": [ + 4.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 5, + 4.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 5, + 4.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5, + 4.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5, + 4.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_117", - "from": [4.5, 0, 5], - "to": [4.75, 0.25, 5.25], - "faces": { - "north": {"uv": [4.75, 5, 4.5, 5.25], "texture": "#0"}, - "east": {"uv": [4.5, 5, 4.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 5, 4.75, 5.25], "texture": "#0"}, - "west": {"uv": [4.5, 5, 4.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5, 4.75, 5.25], "texture": "#0"}, - "down": {"uv": [4.5, 5.25, 4.75, 5], "texture": "#0"} + "from": [ + 4.5, + 0, + 5 + ], + "to": [ + 4.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 5, + 4.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5, + 4.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5, + 4.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5, + 4.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5, + 4.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.25, + 4.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_118", - "from": [4.75, 0, 5], - "to": [5, 0.25, 5.25], - "faces": { - "north": {"uv": [5, 5, 4.75, 5.25], "texture": "#0"}, - "east": {"uv": [4.75, 5, 5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 5, 5, 5.25], "texture": "#0"}, - "west": {"uv": [4.75, 5, 5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5, 5, 5.25], "texture": "#0"}, - "down": {"uv": [4.75, 5.25, 5, 5], "texture": "#0"} + "from": [ + 4.75, + 0, + 5 + ], + "to": [ + 5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 5, + 4.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5, + 5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 5, + 5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5, + 5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5, + 5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5.25, + 5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_119", - "from": [5, 0, 5], - "to": [5.25, 0.25, 5.25], - "faces": { - "north": {"uv": [5.25, 5, 5, 5.25], "texture": "#0"}, - "east": {"uv": [5, 5, 5.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5, 5.25, 5.25], "texture": "#0"}, - "west": {"uv": [5, 5, 5.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5, 5.25, 5.25], "texture": "#0"}, - "down": {"uv": [5, 5.25, 5.25, 5], "texture": "#0"} + "from": [ + 5, + 0, + 5 + ], + "to": [ + 5.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 5, + 5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5, + 5.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5, + 5.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5, + 5.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5, + 5.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5.25, + 5.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_120", - "from": [5.25, 0, 5], - "to": [5.5, 0.25, 5.25], - "faces": { - "north": {"uv": [5.5, 5, 5.25, 5.25], "texture": "#0"}, - "east": {"uv": [5.25, 5, 5.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5, 5.5, 5.25], "texture": "#0"}, - "west": {"uv": [5.25, 5, 5.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5, 5.5, 5.25], "texture": "#0"}, - "down": {"uv": [5.25, 5.25, 5.5, 5], "texture": "#0"} + "from": [ + 5.25, + 0, + 5 + ], + "to": [ + 5.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5, + 5.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5, + 5.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5, + 5.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5, + 5.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_121", - "from": [5.5, 0, 5], - "to": [5.75, 0.25, 5.25], - "faces": { - "north": {"uv": [5.75, 5, 5.5, 5.25], "texture": "#0"}, - "east": {"uv": [5.5, 5, 5.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5, 5.75, 5.25], "texture": "#0"}, - "west": {"uv": [5.5, 5, 5.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5, 5.75, 5.25], "texture": "#0"}, - "down": {"uv": [5.5, 5.25, 5.75, 5], "texture": "#0"} + "from": [ + 5.5, + 0, + 5 + ], + "to": [ + 5.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 5, + 5.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_122", - "from": [5.75, 0, 5], - "to": [6, 0.25, 5.25], - "faces": { - "north": {"uv": [6, 5, 5.75, 5.25], "texture": "#0"}, - "east": {"uv": [5.75, 5, 6, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5, 6, 5.25], "texture": "#0"}, - "west": {"uv": [5.75, 5, 6, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5, 6, 5.25], "texture": "#0"}, - "down": {"uv": [5.75, 5.25, 6, 5], "texture": "#0"} + "from": [ + 5.75, + 0, + 5 + ], + "to": [ + 6, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.25, + 6, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_123", - "from": [6, 0, 5], - "to": [6.25, 0.25, 5.25], - "faces": { - "north": {"uv": [6.25, 5, 6, 5.25], "texture": "#0"}, - "east": {"uv": [6, 5, 6.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 5, 6.25, 5.25], "texture": "#0"}, - "west": {"uv": [6, 5, 6.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5, 6.25, 5.25], "texture": "#0"}, - "down": {"uv": [6, 5.25, 6.25, 5], "texture": "#0"} + "from": [ + 6, + 0, + 5 + ], + "to": [ + 6.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5, + 6.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5, + 6.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5, + 6.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5, + 6.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.25, + 6.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_124", - "from": [6.25, 0, 5], - "to": [6.5, 0.25, 5.25], - "faces": { - "north": {"uv": [6.5, 5, 6.25, 5.25], "texture": "#0"}, - "east": {"uv": [6.25, 5, 6.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 5, 6.5, 5.25], "texture": "#0"}, - "west": {"uv": [6.25, 5, 6.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5, 6.5, 5.25], "texture": "#0"}, - "down": {"uv": [6.25, 5.25, 6.5, 5], "texture": "#0"} + "from": [ + 6.25, + 0, + 5 + ], + "to": [ + 6.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 5, + 6.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5, + 6.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5, + 6.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5.25, + 6.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_125", - "from": [6.5, 0, 5], - "to": [6.75, 0.25, 5.25], - "faces": { - "north": {"uv": [6.75, 5, 6.5, 5.25], "texture": "#0"}, - "east": {"uv": [6.5, 5, 6.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 5, 6.75, 5.25], "texture": "#0"}, - "west": {"uv": [6.5, 5, 6.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5, 6.75, 5.25], "texture": "#0"}, - "down": {"uv": [6.5, 5.25, 6.75, 5], "texture": "#0"} + "from": [ + 6.5, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 5, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5, + 6.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5, + 6.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5, + 6.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_126", - "from": [6.75, 0, 5], - "to": [7, 0.25, 5.25], - "faces": { - "north": {"uv": [7, 5, 6.75, 5.25], "texture": "#0"}, - "east": {"uv": [6.75, 5, 7, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 5, 7, 5.25], "texture": "#0"}, - "west": {"uv": [6.75, 5, 7, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5, 7, 5.25], "texture": "#0"}, - "down": {"uv": [6.75, 5.25, 7, 5], "texture": "#0"} + "from": [ + 6.75, + 0, + 5 + ], + "to": [ + 7, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 5, + 6.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5, + 7, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 5, + 7, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5, + 7, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5, + 7, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5.25, + 7, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_127", - "from": [7, 0, 5], - "to": [7.25, 0.25, 5.25], - "faces": { - "north": {"uv": [7.25, 5, 7, 5.25], "texture": "#0"}, - "east": {"uv": [7, 5, 7.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 5, 7.25, 5.25], "texture": "#0"}, - "west": {"uv": [7, 5, 7.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5, 7.25, 5.25], "texture": "#0"}, - "down": {"uv": [7, 5.25, 7.25, 5], "texture": "#0"} + "from": [ + 7, + 0, + 5 + ], + "to": [ + 7.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 5, + 7, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5, + 7.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5, + 7.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.25, + 7.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_128", - "from": [7.25, 0, 5], - "to": [7.5, 0.25, 5.25], - "faces": { - "north": {"uv": [7.5, 5, 7.25, 5.25], "texture": "#0"}, - "east": {"uv": [7.25, 5, 7.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 5, 7.5, 5.25], "texture": "#0"}, - "west": {"uv": [7.25, 5, 7.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5, 7.5, 5.25], "texture": "#0"}, - "down": {"uv": [7.25, 5.25, 7.5, 5], "texture": "#0"} + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5.25, + 7.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_129", - "from": [7.5, 0, 5], - "to": [7.75, 0.25, 5.25], - "faces": { - "north": {"uv": [7.75, 5, 7.5, 5.25], "texture": "#0"}, - "east": {"uv": [7.5, 5, 7.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 5, 7.75, 5.25], "texture": "#0"}, - "west": {"uv": [7.5, 5, 7.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5, 7.75, 5.25], "texture": "#0"}, - "down": {"uv": [7.5, 5.25, 7.75, 5], "texture": "#0"} + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 7.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5, + 7.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_130", - "from": [7.75, 0, 5], - "to": [8, 0.25, 5.25], - "faces": { - "north": {"uv": [8, 5, 7.75, 5.25], "texture": "#0"}, - "east": {"uv": [7.75, 5, 8, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 5, 8, 5.25], "texture": "#0"}, - "west": {"uv": [7.75, 5, 8, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5, 8, 5.25], "texture": "#0"}, - "down": {"uv": [7.75, 5.25, 8, 5], "texture": "#0"} + "from": [ + 7.75, + 0, + 5 + ], + "to": [ + 8, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5, + 8, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5, + 8, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5, + 8, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5, + 8, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5.25, + 8, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_131", - "from": [8, 0, 5], - "to": [8.25, 0.25, 5.25], - "faces": { - "north": {"uv": [8.25, 5, 8, 5.25], "texture": "#0"}, - "east": {"uv": [8, 5, 8.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 5, 8.25, 5.25], "texture": "#0"}, - "west": {"uv": [8, 5, 8.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5, 8.25, 5.25], "texture": "#0"}, - "down": {"uv": [8, 5.25, 8.25, 5], "texture": "#0"} + "from": [ + 8, + 0, + 5 + ], + "to": [ + 8.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 5, + 8, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5, + 8.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5, + 8.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5, + 8.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5, + 8.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 5.25, + 8.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_132", - "from": [8.25, 0, 5], - "to": [8.5, 0.25, 5.25], - "faces": { - "north": {"uv": [8.5, 5, 8.25, 5.25], "texture": "#0"}, - "east": {"uv": [8.25, 5, 8.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 5, 8.5, 5.25], "texture": "#0"}, - "west": {"uv": [8.25, 5, 8.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 5, 8.5, 5.25], "texture": "#0"}, - "down": {"uv": [8.25, 5.25, 8.5, 5], "texture": "#0"} + "from": [ + 8.25, + 0, + 5 + ], + "to": [ + 8.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 5, + 8.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5, + 8.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 5, + 8.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 5, + 8.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 5, + 8.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 5.25, + 8.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_133", - "from": [8.5, 0, 5], - "to": [8.75, 0.25, 5.25], - "faces": { - "north": {"uv": [8.75, 5, 8.5, 5.25], "texture": "#0"}, - "east": {"uv": [8.5, 5, 8.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5, 8.75, 5.25], "texture": "#0"}, - "west": {"uv": [8.5, 5, 8.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5, 8.75, 5.25], "texture": "#0"}, - "down": {"uv": [8.5, 5.25, 8.75, 5], "texture": "#0"} + "from": [ + 8.5, + 0, + 5 + ], + "to": [ + 8.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 5, + 8.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5, + 8.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5, + 8.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 8.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5, + 8.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_134", - "from": [8.75, 0, 5], - "to": [9, 0.25, 5.25], - "faces": { - "north": {"uv": [9, 5, 8.75, 5.25], "texture": "#0"}, - "east": {"uv": [8.75, 5, 9, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 5, 9, 5.25], "texture": "#0"}, - "west": {"uv": [8.75, 5, 9, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5, 9, 5.25], "texture": "#0"}, - "down": {"uv": [8.75, 5.25, 9, 5], "texture": "#0"} + "from": [ + 8.75, + 0, + 5 + ], + "to": [ + 9, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 5, + 8.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5, + 9, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5, + 9, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5.25, + 9, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_135", - "from": [9, 0, 5], - "to": [9.25, 0.25, 5.25], - "faces": { - "north": {"uv": [9.25, 5, 9, 5.25], "texture": "#0"}, - "east": {"uv": [9, 5, 9.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 5, 9.25, 5.25], "texture": "#0"}, - "west": {"uv": [9, 5, 9.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5, 9.25, 5.25], "texture": "#0"}, - "down": {"uv": [9, 5.25, 9.25, 5], "texture": "#0"} + "from": [ + 9, + 0, + 5 + ], + "to": [ + 9.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5, + 9.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5, + 9.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 5.25, + 9.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_136", - "from": [9.25, 0, 5], - "to": [9.5, 0.25, 5.25], - "faces": { - "north": {"uv": [9.5, 5, 9.25, 5.25], "texture": "#0"}, - "east": {"uv": [9.25, 5, 9.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5, 9.5, 5.25], "texture": "#0"}, - "west": {"uv": [9.25, 5, 9.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5, 9.5, 5.25], "texture": "#0"}, - "down": {"uv": [9.25, 5.25, 9.5, 5], "texture": "#0"} + "from": [ + 9.25, + 0, + 5 + ], + "to": [ + 9.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 5, + 9.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5.25, + 9.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_137", - "from": [9.5, 0, 5], - "to": [9.75, 0.25, 5.25], - "faces": { - "north": {"uv": [9.75, 5, 9.5, 5.25], "texture": "#0"}, - "east": {"uv": [9.5, 5, 9.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 5, 9.75, 5.25], "texture": "#0"}, - "west": {"uv": [9.5, 5, 9.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5, 9.75, 5.25], "texture": "#0"}, - "down": {"uv": [9.5, 5.25, 9.75, 5], "texture": "#0"} + "from": [ + 9.5, + 0, + 5 + ], + "to": [ + 9.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5, + 9.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5, + 9.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_138", - "from": [9.75, 0, 5], - "to": [10, 0.25, 5.25], - "faces": { - "north": {"uv": [10, 5, 9.75, 5.25], "texture": "#0"}, - "east": {"uv": [9.75, 5, 10, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 5, 10, 5.25], "texture": "#0"}, - "west": {"uv": [9.75, 5, 10, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5, 10, 5.25], "texture": "#0"}, - "down": {"uv": [9.75, 5.25, 10, 5], "texture": "#0"} + "from": [ + 9.75, + 0, + 5 + ], + "to": [ + 10, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 5, + 9.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5, + 10, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5, + 10, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 5.25, + 10, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_139", - "from": [10, 0, 5], - "to": [10.25, 0.25, 5.25], - "faces": { - "north": {"uv": [10.25, 5, 10, 5.25], "texture": "#0"}, - "east": {"uv": [10, 5, 10.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 5, 10.25, 5.25], "texture": "#0"}, - "west": {"uv": [10, 5, 10.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5, 10.25, 5.25], "texture": "#0"}, - "down": {"uv": [10, 5.25, 10.25, 5], "texture": "#0"} + "from": [ + 10, + 0, + 5 + ], + "to": [ + 10.25, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5, + 10.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5, + 10.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5, + 10.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5, + 10.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 5.25, + 10.25, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_140", - "from": [10.25, 0, 5], - "to": [10.5, 0.25, 5.25], - "faces": { - "north": {"uv": [10.5, 5, 10.25, 5.25], "texture": "#0"}, - "east": {"uv": [10.25, 5, 10.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 5, 10.5, 5.25], "texture": "#0"}, - "west": {"uv": [10.25, 5, 10.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5, 10.5, 5.25], "texture": "#0"}, - "down": {"uv": [10.25, 5.25, 10.5, 5], "texture": "#0"} + "from": [ + 10.25, + 0, + 5 + ], + "to": [ + 10.5, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5, + 10.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 5, + 10.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5, + 10.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5, + 10.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5.25, + 10.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_141", - "from": [10.5, 0, 5], - "to": [10.75, 0.25, 5.25], - "faces": { - "north": {"uv": [10.75, 5, 10.5, 5.25], "texture": "#0"}, - "east": {"uv": [10.5, 5, 10.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5, 10.75, 5.25], "texture": "#0"}, - "west": {"uv": [10.5, 5, 10.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5, 10.75, 5.25], "texture": "#0"}, - "down": {"uv": [10.5, 5.25, 10.75, 5], "texture": "#0"} + "from": [ + 10.5, + 0, + 5 + ], + "to": [ + 10.75, + 0.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 5, + 10.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5, + 10.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5, + 10.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5, + 10.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_142", - "from": [2.5, 0, 5.25], - "to": [2.75, 0.25, 5.5], - "faces": { - "north": {"uv": [2.75, 5.25, 2.5, 5.5], "texture": "#0"}, - "east": {"uv": [2.5, 5.25, 2.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 5.25, 2.75, 5.5], "texture": "#0"}, - "west": {"uv": [2.5, 5.25, 2.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.25, 2.75, 5.5], "texture": "#0"}, - "down": {"uv": [2.5, 5.5, 2.75, 5.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 2.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 5.25, + 2.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.25, + 2.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 5.25, + 2.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 2.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 5.5, + 2.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_143", - "from": [2.75, 0, 5.25], - "to": [3, 0.25, 5.5], - "faces": { - "north": {"uv": [3, 5.25, 2.75, 5.5], "texture": "#0"}, - "east": {"uv": [2.75, 5.25, 3, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5.25, 3, 5.5], "texture": "#0"}, - "west": {"uv": [2.75, 5.25, 3, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.25, 3, 5.5], "texture": "#0"}, - "down": {"uv": [2.75, 5.5, 3, 5.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 5.25 + ], + "to": [ + 3, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 5.25, + 2.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5.25, + 3, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.25, + 3, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 5.5, + 3, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_144", - "from": [3, 0, 5.25], - "to": [3.25, 0.25, 5.5], - "faces": { - "north": {"uv": [3.25, 5.25, 3, 5.5], "texture": "#0"}, - "east": {"uv": [3, 5.25, 3.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 5.25, 3.25, 5.5], "texture": "#0"}, - "west": {"uv": [3, 5.25, 3.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5.25, 3.25, 5.5], "texture": "#0"}, - "down": {"uv": [3, 5.5, 3.25, 5.25], "texture": "#0"} + "from": [ + 3, + 0, + 5.25 + ], + "to": [ + 3.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 5.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.25, + 3.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5.25, + 3.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.25, + 3.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5.5, + 3.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_145", - "from": [3.25, 0, 5.25], - "to": [3.5, 0.25, 5.5], - "faces": { - "north": {"uv": [3.5, 5.25, 3.25, 5.5], "texture": "#0"}, - "east": {"uv": [3.25, 5.25, 3.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 5.25, 3.5, 5.5], "texture": "#0"}, - "west": {"uv": [3.25, 5.25, 3.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.25, 3.5, 5.5], "texture": "#0"}, - "down": {"uv": [3.25, 5.5, 3.5, 5.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 5.25, + 3.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.25, + 3.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5.5, + 3.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_146", - "from": [3.5, 0, 5.25], - "to": [3.75, 0.25, 5.5], - "faces": { - "north": {"uv": [3.75, 5.25, 3.5, 5.5], "texture": "#0"}, - "east": {"uv": [3.5, 5.25, 3.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5.25, 3.75, 5.5], "texture": "#0"}, - "west": {"uv": [3.5, 5.25, 3.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.25, 3.75, 5.5], "texture": "#0"}, - "down": {"uv": [3.5, 5.5, 3.75, 5.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 5.25 + ], + "to": [ + 3.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 5.25, + 3.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5.25, + 3.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5.25, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.25, + 3.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.25, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_147", - "from": [3.75, 0, 5.25], - "to": [4, 0.25, 5.5], - "faces": { - "north": {"uv": [4, 5.25, 3.75, 5.5], "texture": "#0"}, - "east": {"uv": [3.75, 5.25, 4, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 5.25, 4, 5.5], "texture": "#0"}, - "west": {"uv": [3.75, 5.25, 4, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.25, 4, 5.5], "texture": "#0"}, - "down": {"uv": [3.75, 5.5, 4, 5.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 5.25 + ], + "to": [ + 4, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 5.25, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.25, + 4, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 5.25, + 4, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.25, + 4, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.25, + 4, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 5.5, + 4, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_148", - "from": [4, 0, 5.25], - "to": [4.25, 0.25, 5.5], - "faces": { - "north": {"uv": [4.25, 5.25, 4, 5.5], "texture": "#0"}, - "east": {"uv": [4, 5.25, 4.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 5.25, 4.25, 5.5], "texture": "#0"}, - "west": {"uv": [4, 5.25, 4.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5.25, 4.25, 5.5], "texture": "#0"}, - "down": {"uv": [4, 5.5, 4.25, 5.25], "texture": "#0"} + "from": [ + 4, + 0, + 5.25 + ], + "to": [ + 4.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 5.25, + 4, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.25, + 4.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5.25, + 4.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5.25, + 4.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5.25, + 4.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5.5, + 4.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_149", - "from": [4.25, 0, 5.25], - "to": [4.5, 0.25, 5.5], - "faces": { - "north": {"uv": [4.5, 5.25, 4.25, 5.5], "texture": "#0"}, - "east": {"uv": [4.25, 5.25, 4.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 5.25, 4.5, 5.5], "texture": "#0"}, - "west": {"uv": [4.25, 5.25, 4.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5.25, 4.5, 5.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.5, 4.5, 5.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 5.25 + ], + "to": [ + 4.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 5.25, + 4.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_150", - "from": [4.5, 0, 5.25], - "to": [4.75, 0.25, 5.5], - "faces": { - "north": {"uv": [4.75, 5.25, 4.5, 5.5], "texture": "#0"}, - "east": {"uv": [4.5, 5.25, 4.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 5.25, 4.75, 5.5], "texture": "#0"}, - "west": {"uv": [4.5, 5.25, 4.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.25, 4.75, 5.5], "texture": "#0"}, - "down": {"uv": [4.5, 5.5, 4.75, 5.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 5.25 + ], + "to": [ + 4.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 5.25, + 4.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.25, + 4.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5.25, + 4.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.25, + 4.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.25, + 4.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_151", - "from": [4.75, 0, 5.25], - "to": [5, 0.25, 5.5], - "faces": { - "north": {"uv": [5, 5.25, 4.75, 5.5], "texture": "#0"}, - "east": {"uv": [4.75, 5.25, 5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 5.25, 5, 5.5], "texture": "#0"}, - "west": {"uv": [4.75, 5.25, 5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5.25, 5, 5.5], "texture": "#0"}, - "down": {"uv": [4.75, 5.5, 5, 5.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 5.25 + ], + "to": [ + 5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 5.25, + 4.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.25, + 5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5.25, + 5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5.5, + 5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_152", - "from": [5, 0, 5.25], - "to": [5.25, 0.25, 5.5], - "faces": { - "north": {"uv": [5.25, 5.25, 5, 5.5], "texture": "#0"}, - "east": {"uv": [5, 5.25, 5.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5.25, 5.25, 5.5], "texture": "#0"}, - "west": {"uv": [5, 5.25, 5.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.25, 5.25, 5.5], "texture": "#0"}, - "down": {"uv": [5, 5.5, 5.25, 5.25], "texture": "#0"} + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.25, + 5.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5.5, + 5.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_153", - "from": [5.25, 0, 5.25], - "to": [5.5, 0.25, 5.5], - "faces": { - "north": {"uv": [5.5, 5.25, 5.25, 5.5], "texture": "#0"}, - "east": {"uv": [5.25, 5.25, 5.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5.25, 5.5, 5.5], "texture": "#0"}, - "west": {"uv": [5.25, 5.25, 5.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5.25, 5.5, 5.5], "texture": "#0"}, - "down": {"uv": [5.25, 5.5, 5.5, 5.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 5.25 + ], + "to": [ + 5.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.5, + 5.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_154", - "from": [5.5, 0, 5.25], - "to": [5.75, 0.25, 5.5], - "faces": { - "north": {"uv": [5.75, 5.25, 5.5, 5.5], "texture": "#0"}, - "east": {"uv": [5.5, 5.25, 5.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5.25, 5.75, 5.5], "texture": "#0"}, - "west": {"uv": [5.5, 5.25, 5.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.25, 5.75, 5.5], "texture": "#0"}, - "down": {"uv": [5.5, 5.5, 5.75, 5.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 5.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_155", - "from": [5.75, 0, 5.25], - "to": [6, 0.25, 5.5], - "faces": { - "north": {"uv": [6, 5.25, 5.75, 5.5], "texture": "#0"}, - "east": {"uv": [5.75, 5.25, 6, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5.25, 6, 5.5], "texture": "#0"}, - "west": {"uv": [5.75, 5.25, 6, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.25, 6, 5.5], "texture": "#0"}, - "down": {"uv": [5.75, 5.5, 6, 5.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 5.25 + ], + "to": [ + 6, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.25, + 6, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5.25, + 6, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.25, + 6, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.25, + 6, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.5, + 6, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_156", - "from": [6, 0, 5.25], - "to": [6.25, 0.25, 5.5], - "faces": { - "north": {"uv": [6.25, 5.25, 6, 5.5], "texture": "#0"}, - "east": {"uv": [6, 5.25, 6.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 5.25, 6.25, 5.5], "texture": "#0"}, - "west": {"uv": [6, 5.25, 6.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.25, 6.25, 5.5], "texture": "#0"}, - "down": {"uv": [6, 5.5, 6.25, 5.25], "texture": "#0"} + "from": [ + 6, + 0, + 5.25 + ], + "to": [ + 6.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 5.25, + 6, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.25, + 6.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5.25, + 6.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.25, + 6.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.25, + 6.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.5, + 6.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_157", - "from": [6.25, 0, 5.25], - "to": [6.5, 0.25, 5.5], - "faces": { - "north": {"uv": [6.5, 5.25, 6.25, 5.5], "texture": "#0"}, - "east": {"uv": [6.25, 5.25, 6.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 5.25, 6.5, 5.5], "texture": "#0"}, - "west": {"uv": [6.25, 5.25, 6.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5.25, 6.5, 5.5], "texture": "#0"}, - "down": {"uv": [6.25, 5.5, 6.5, 5.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 5.25 + ], + "to": [ + 6.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 5.25, + 6.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 6.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5.25, + 6.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.25, + 6.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.25, + 6.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_158", - "from": [6.5, 0, 5.25], - "to": [6.75, 0.25, 5.5], - "faces": { - "north": {"uv": [6.75, 5.25, 6.5, 5.5], "texture": "#0"}, - "east": {"uv": [6.5, 5.25, 6.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 5.25, 6.75, 5.5], "texture": "#0"}, - "west": {"uv": [6.5, 5.25, 6.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.25, 6.75, 5.5], "texture": "#0"}, - "down": {"uv": [6.5, 5.5, 6.75, 5.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 5.25 + ], + "to": [ + 6.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 5.25, + 6.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5.5, + 6.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_159", - "from": [6.75, 0, 5.25], - "to": [7, 0.25, 5.5], - "faces": { - "north": {"uv": [7, 5.25, 6.75, 5.5], "texture": "#0"}, - "east": {"uv": [6.75, 5.25, 7, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 5.25, 7, 5.5], "texture": "#0"}, - "west": {"uv": [6.75, 5.25, 7, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.25, 7, 5.5], "texture": "#0"}, - "down": {"uv": [6.75, 5.5, 7, 5.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 5.25 + ], + "to": [ + 7, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 5.25, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.25, + 7, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.25, + 7, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5.5, + 7, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_160", - "from": [7, 0, 5.25], - "to": [7.25, 0.25, 5.5], - "faces": { - "north": {"uv": [7.25, 5.25, 7, 5.5], "texture": "#0"}, - "east": {"uv": [7, 5.25, 7.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 5.25, 7.25, 5.5], "texture": "#0"}, - "west": {"uv": [7, 5.25, 7.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.25, 7.25, 5.5], "texture": "#0"}, - "down": {"uv": [7, 5.5, 7.25, 5.25], "texture": "#0"} + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.25, + 7.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5.25, + 7.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.5, + 7.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_161", - "from": [7.25, 0, 5.25], - "to": [7.5, 0.25, 5.5], - "faces": { - "north": {"uv": [7.5, 5.25, 7.25, 5.5], "texture": "#0"}, - "east": {"uv": [7.25, 5.25, 7.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 5.25, 7.5, 5.5], "texture": "#0"}, - "west": {"uv": [7.25, 5.25, 7.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5.25, 7.5, 5.5], "texture": "#0"}, - "down": {"uv": [7.25, 5.5, 7.5, 5.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 5.25 + ], + "to": [ + 7.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 5.25, + 7.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5.25, + 7.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5.25, + 7.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5.5, + 7.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_162", - "from": [7.5, 0, 5.25], - "to": [7.75, 0.25, 5.5], - "faces": { - "north": {"uv": [7.75, 5.25, 7.5, 5.5], "texture": "#0"}, - "east": {"uv": [7.5, 5.25, 7.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 5.25, 7.75, 5.5], "texture": "#0"}, - "west": {"uv": [7.5, 5.25, 7.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.25, 7.75, 5.5], "texture": "#0"}, - "down": {"uv": [7.5, 5.5, 7.75, 5.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 7.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5.5, + 7.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_163", - "from": [7.75, 0, 5.25], - "to": [8, 0.25, 5.5], - "faces": { - "north": {"uv": [8, 5.25, 7.75, 5.5], "texture": "#0"}, - "east": {"uv": [7.75, 5.25, 8, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 5.25, 8, 5.5], "texture": "#0"}, - "west": {"uv": [7.75, 5.25, 8, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5.25, 8, 5.5], "texture": "#0"}, - "down": {"uv": [7.75, 5.5, 8, 5.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 5.25 + ], + "to": [ + 8, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 5.25, + 7.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.25, + 8, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.25, + 8, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.25, + 8, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.25, + 8, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5.5, + 8, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_164", - "from": [8, 0, 5.25], - "to": [8.25, 0.25, 5.5], - "faces": { - "north": {"uv": [8.25, 5.25, 8, 5.5], "texture": "#0"}, - "east": {"uv": [8, 5.25, 8.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 5.25, 8.25, 5.5], "texture": "#0"}, - "west": {"uv": [8, 5.25, 8.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.25, 8.25, 5.5], "texture": "#0"}, - "down": {"uv": [8, 5.5, 8.25, 5.25], "texture": "#0"} + "from": [ + 8, + 0, + 5.25 + ], + "to": [ + 8.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 5.25, + 8, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5.25, + 8.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5.25, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.25, + 8.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.25, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 5.5, + 8.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_165", - "from": [8.25, 0, 5.25], - "to": [8.5, 0.25, 5.5], - "faces": { - "north": {"uv": [8.5, 5.25, 8.25, 5.5], "texture": "#0"}, - "east": {"uv": [8.25, 5.25, 8.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 5.25, 8.5, 5.5], "texture": "#0"}, - "west": {"uv": [8.25, 5.25, 8.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 5.25, 8.5, 5.5], "texture": "#0"}, - "down": {"uv": [8.25, 5.5, 8.5, 5.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 5.25 + ], + "to": [ + 8.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 5.25, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5.25, + 8.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 5.25, + 8.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 5.5, + 8.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_166", - "from": [8.5, 0, 5.25], - "to": [8.75, 0.25, 5.5], - "faces": { - "north": {"uv": [8.75, 5.25, 8.5, 5.5], "texture": "#0"}, - "east": {"uv": [8.5, 5.25, 8.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.25, 8.75, 5.5], "texture": "#0"}, - "west": {"uv": [8.5, 5.25, 8.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.25, 8.75, 5.5], "texture": "#0"}, - "down": {"uv": [8.5, 5.5, 8.75, 5.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 8.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_167", - "from": [8.75, 0, 5.25], - "to": [9, 0.25, 5.5], - "faces": { - "north": {"uv": [9, 5.25, 8.75, 5.5], "texture": "#0"}, - "east": {"uv": [8.75, 5.25, 9, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 5.25, 9, 5.5], "texture": "#0"}, - "west": {"uv": [8.75, 5.25, 9, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.25, 9, 5.5], "texture": "#0"}, - "down": {"uv": [8.75, 5.5, 9, 5.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 5.25 + ], + "to": [ + 9, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 5.25, + 8.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 9, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 5.25, + 9, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.25, + 9, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.25, + 9, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5.5, + 9, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_168", - "from": [9, 0, 5.25], - "to": [9.25, 0.25, 5.5], - "faces": { - "north": {"uv": [9.25, 5.25, 9, 5.5], "texture": "#0"}, - "east": {"uv": [9, 5.25, 9.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 5.25, 9.25, 5.5], "texture": "#0"}, - "west": {"uv": [9, 5.25, 9.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.25, 9.25, 5.5], "texture": "#0"}, - "down": {"uv": [9, 5.5, 9.25, 5.25], "texture": "#0"} + "from": [ + 9, + 0, + 5.25 + ], + "to": [ + 9.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 5.25, + 9, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.25, + 9.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.25, + 9.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 5.5, + 9.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_169", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 5.5], - "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "east": {"uv": [9.25, 5.25, 9.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [9.25, 5.25, 9.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.25, 9.5, 5.5], "texture": "#0"}, - "down": {"uv": [9.25, 5.5, 9.5, 5.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.25, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5.5, + 9.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_170", - "from": [9.5, 0, 5.25], - "to": [9.75, 0.25, 5.5], - "faces": { - "north": {"uv": [9.75, 5.25, 9.5, 5.5], "texture": "#0"}, - "east": {"uv": [9.5, 5.25, 9.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 5.25, 9.75, 5.5], "texture": "#0"}, - "west": {"uv": [9.5, 5.25, 9.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5.25, 9.75, 5.5], "texture": "#0"}, - "down": {"uv": [9.5, 5.5, 9.75, 5.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 5.25 + ], + "to": [ + 9.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 5.25, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5.5, + 9.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_171", - "from": [9.75, 0, 5.25], - "to": [10, 0.25, 5.5], - "faces": { - "north": {"uv": [10, 5.25, 9.75, 5.5], "texture": "#0"}, - "east": {"uv": [9.75, 5.25, 10, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 5.25, 10, 5.5], "texture": "#0"}, - "west": {"uv": [9.75, 5.25, 10, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.25, 10, 5.5], "texture": "#0"}, - "down": {"uv": [9.75, 5.5, 10, 5.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 5.25 + ], + "to": [ + 10, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 5.25, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5.25, + 10, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 5.25, + 10, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.25, + 10, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.25, + 10, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 5.5, + 10, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_172", - "from": [10, 0, 5.25], - "to": [10.25, 0.25, 5.5], - "faces": { - "north": {"uv": [10.25, 5.25, 10, 5.5], "texture": "#0"}, - "east": {"uv": [10, 5.25, 10.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 5.25, 10.25, 5.5], "texture": "#0"}, - "west": {"uv": [10, 5.25, 10.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5.25, 10.25, 5.5], "texture": "#0"}, - "down": {"uv": [10, 5.5, 10.25, 5.25], "texture": "#0"} + "from": [ + 10, + 0, + 5.25 + ], + "to": [ + 10.25, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 5.25, + 10, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.25, + 10.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.25, + 10.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.25, + 10.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 5.5, + 10.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_173", - "from": [10.25, 0, 5.25], - "to": [10.5, 0.25, 5.5], - "faces": { - "north": {"uv": [10.5, 5.25, 10.25, 5.5], "texture": "#0"}, - "east": {"uv": [10.25, 5.25, 10.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 5.25, 10.5, 5.5], "texture": "#0"}, - "west": {"uv": [10.25, 5.25, 10.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5.25, 10.5, 5.5], "texture": "#0"}, - "down": {"uv": [10.25, 5.5, 10.5, 5.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 5.25 + ], + "to": [ + 10.5, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 5.25, + 10.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5.25, + 10.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.25, + 10.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5.5, + 10.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_174", - "from": [10.5, 0, 5.25], - "to": [10.75, 0.25, 5.5], - "faces": { - "north": {"uv": [10.75, 5.25, 10.5, 5.5], "texture": "#0"}, - "east": {"uv": [10.5, 5.25, 10.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5.25, 10.75, 5.5], "texture": "#0"}, - "west": {"uv": [10.5, 5.25, 10.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.25, 10.75, 5.5], "texture": "#0"}, - "down": {"uv": [10.5, 5.5, 10.75, 5.25], "texture": "#0"} + "from": [ + 10.5, + 0, + 5.25 + ], + "to": [ + 10.75, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_175", - "from": [10.75, 0, 5.25], - "to": [11, 0.25, 5.5], - "faces": { - "north": {"uv": [11, 5.25, 10.75, 5.5], "texture": "#0"}, - "east": {"uv": [10.75, 5.25, 11, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 5.25, 11, 5.5], "texture": "#0"}, - "west": {"uv": [10.75, 5.25, 11, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.25, 11, 5.5], "texture": "#0"}, - "down": {"uv": [10.75, 5.5, 11, 5.25], "texture": "#0"} + "from": [ + 10.75, + 0, + 5.25 + ], + "to": [ + 11, + 0.25, + 5.5 + ], + "faces": { + "north": { + "uv": [ + 11, + 5.25, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 5.25, + 11, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5.25, + 11, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.25, + 11, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.25, + 11, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 5.5, + 11, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_176", - "from": [2.25, 0, 5.5], - "to": [2.5, 0.25, 5.75], - "faces": { - "north": {"uv": [2.5, 5.5, 2.25, 5.75], "texture": "#0"}, - "east": {"uv": [2.25, 5.5, 2.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 5.5, 2.5, 5.75], "texture": "#0"}, - "west": {"uv": [2.25, 5.5, 2.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 5.5, 2.5, 5.75], "texture": "#0"}, - "down": {"uv": [2.25, 5.75, 2.5, 5.5], "texture": "#0"} + "from": [ + 2.25, + 0, + 5.5 + ], + "to": [ + 2.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 5.5, + 2.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 5.5, + 2.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 5.5, + 2.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 5.5, + 2.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 2.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 5.75, + 2.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_177", - "from": [2.5, 0, 5.5], - "to": [2.75, 0.25, 5.75], - "faces": { - "north": {"uv": [2.75, 5.5, 2.5, 5.75], "texture": "#0"}, - "east": {"uv": [2.5, 5.5, 2.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 5.5, 2.75, 5.75], "texture": "#0"}, - "west": {"uv": [2.5, 5.5, 2.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.5, 2.75, 5.75], "texture": "#0"}, - "down": {"uv": [2.5, 5.75, 2.75, 5.5], "texture": "#0"} + "from": [ + 2.5, + 0, + 5.5 + ], + "to": [ + 2.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 5.5, + 2.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.5, + 2.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 5.5, + 2.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.5, + 2.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.5, + 2.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 5.75, + 2.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_178", - "from": [2.75, 0, 5.5], - "to": [3, 0.25, 5.75], - "faces": { - "north": {"uv": [3, 5.5, 2.75, 5.75], "texture": "#0"}, - "east": {"uv": [2.75, 5.5, 3, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5.5, 3, 5.75], "texture": "#0"}, - "west": {"uv": [2.75, 5.5, 3, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.5, 3, 5.75], "texture": "#0"}, - "down": {"uv": [2.75, 5.75, 3, 5.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 5.5 + ], + "to": [ + 3, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 5.5, + 2.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5.5, + 3, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5.5, + 3, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.5, + 3, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.5, + 3, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 5.75, + 3, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_179", - "from": [3, 0, 5.5], - "to": [3.25, 0.25, 5.75], - "faces": { - "north": {"uv": [3.25, 5.5, 3, 5.75], "texture": "#0"}, - "east": {"uv": [3, 5.5, 3.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 5.5, 3.25, 5.75], "texture": "#0"}, - "west": {"uv": [3, 5.5, 3.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5.5, 3.25, 5.75], "texture": "#0"}, - "down": {"uv": [3, 5.75, 3.25, 5.5], "texture": "#0"} + "from": [ + 3, + 0, + 5.5 + ], + "to": [ + 3.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 5.5, + 3, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.5, + 3.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5.5, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.5, + 3.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.5, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5.75, + 3.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_180", - "from": [3.25, 0, 5.5], - "to": [3.5, 0.25, 5.75], - "faces": { - "north": {"uv": [3.5, 5.5, 3.25, 5.75], "texture": "#0"}, - "east": {"uv": [3.25, 5.5, 3.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 5.5, 3.5, 5.75], "texture": "#0"}, - "west": {"uv": [3.25, 5.5, 3.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.5, 3.5, 5.75], "texture": "#0"}, - "down": {"uv": [3.25, 5.75, 3.5, 5.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 5.5 + ], + "to": [ + 3.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 5.5, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.5, + 3.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 5.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 5.75, + 3.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_181", - "from": [3.5, 0, 5.5], - "to": [3.75, 0.25, 5.75], - "faces": { - "north": {"uv": [3.75, 5.5, 3.5, 5.75], "texture": "#0"}, - "east": {"uv": [3.5, 5.5, 3.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5.5, 3.75, 5.75], "texture": "#0"}, - "west": {"uv": [3.5, 5.5, 3.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.5, 3.75, 5.75], "texture": "#0"}, - "down": {"uv": [3.5, 5.75, 3.75, 5.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 5.5 + ], + "to": [ + 3.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 5.5, + 3.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.5, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 5.75, + 3.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_182", - "from": [3.75, 0, 5.5], - "to": [4, 0.25, 5.75], - "faces": { - "north": {"uv": [4, 5.5, 3.75, 5.75], "texture": "#0"}, - "east": {"uv": [3.75, 5.5, 4, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 5.5, 4, 5.75], "texture": "#0"}, - "west": {"uv": [3.75, 5.5, 4, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.5, 4, 5.75], "texture": "#0"}, - "down": {"uv": [3.75, 5.75, 4, 5.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 5.5 + ], + "to": [ + 4, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 5.5, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.5, + 4, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 5.5, + 4, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.5, + 4, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.5, + 4, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 5.75, + 4, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_183", - "from": [4, 0, 5.5], - "to": [4.25, 0.25, 5.75], - "faces": { - "north": {"uv": [4.25, 5.5, 4, 5.75], "texture": "#0"}, - "east": {"uv": [4, 5.5, 4.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 5.5, 4.25, 5.75], "texture": "#0"}, - "west": {"uv": [4, 5.5, 4.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5.5, 4.25, 5.75], "texture": "#0"}, - "down": {"uv": [4, 5.75, 4.25, 5.5], "texture": "#0"} + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 4.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 5.5, + 4, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.5, + 4.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5.5, + 4.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5.5, + 4.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5.75, + 4.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_184", - "from": [4.25, 0, 5.5], - "to": [4.5, 0.25, 5.75], - "faces": { - "north": {"uv": [4.5, 5.5, 4.25, 5.75], "texture": "#0"}, - "east": {"uv": [4.25, 5.5, 4.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 5.5, 4.5, 5.75], "texture": "#0"}, - "west": {"uv": [4.25, 5.5, 4.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5.5, 4.5, 5.75], "texture": "#0"}, - "down": {"uv": [4.25, 5.75, 4.5, 5.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 5.5 + ], + "to": [ + 4.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 5.5, + 4.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.75, + 4.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_185", - "from": [4.5, 0, 5.5], - "to": [4.75, 0.25, 5.75], - "faces": { - "north": {"uv": [4.75, 5.5, 4.5, 5.75], "texture": "#0"}, - "east": {"uv": [4.5, 5.5, 4.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 5.5, 4.75, 5.75], "texture": "#0"}, - "west": {"uv": [4.5, 5.5, 4.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.5, 4.75, 5.75], "texture": "#0"}, - "down": {"uv": [4.5, 5.75, 4.75, 5.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 5.5 + ], + "to": [ + 4.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 5.5, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.75, + 4.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_186", - "from": [4.75, 0, 5.5], - "to": [5, 0.25, 5.75], - "faces": { - "north": {"uv": [5, 5.5, 4.75, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 5.5, 5, 5.75], "texture": "#0"}, - "west": {"uv": [4.75, 5.5, 5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5.5, 5, 5.75], "texture": "#0"}, - "down": {"uv": [4.75, 5.75, 5, 5.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5.75, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_187", - "from": [5, 0, 5.5], - "to": [5.25, 0.25, 5.75], - "faces": { - "north": {"uv": [5.25, 5.5, 5, 5.75], "texture": "#0"}, - "east": {"uv": [5, 5.5, 5.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5.5, 5.25, 5.75], "texture": "#0"}, - "west": {"uv": [5, 5.5, 5.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.5, 5.25, 5.75], "texture": "#0"}, - "down": {"uv": [5, 5.75, 5.25, 5.5], "texture": "#0"} + "from": [ + 5, + 0, + 5.5 + ], + "to": [ + 5.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 5.5, + 5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.5, + 5.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.5, + 5.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5.75, + 5.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_188", - "from": [5.25, 0, 5.5], - "to": [5.5, 0.25, 5.75], - "faces": { - "north": {"uv": [5.5, 5.5, 5.25, 5.75], "texture": "#0"}, - "east": {"uv": [5.25, 5.5, 5.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5.5, 5.5, 5.75], "texture": "#0"}, - "west": {"uv": [5.25, 5.5, 5.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5.5, 5.5, 5.75], "texture": "#0"}, - "down": {"uv": [5.25, 5.75, 5.5, 5.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 5.5 + ], + "to": [ + 5.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.5, + 5.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5.5, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5.5, + 5.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5.5, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.75, + 5.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_189", - "from": [5.5, 0, 5.5], - "to": [5.75, 0.25, 5.75], - "faces": { - "north": {"uv": [5.75, 5.5, 5.5, 5.75], "texture": "#0"}, - "east": {"uv": [5.5, 5.5, 5.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5.5, 5.75, 5.75], "texture": "#0"}, - "west": {"uv": [5.5, 5.5, 5.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.5, 5.75, 5.75], "texture": "#0"}, - "down": {"uv": [5.5, 5.75, 5.75, 5.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 5.5 + ], + "to": [ + 5.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 5.5, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.75, + 5.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_190", - "from": [5.75, 0, 5.5], - "to": [6, 0.25, 5.75], - "faces": { - "north": {"uv": [6, 5.5, 5.75, 5.75], "texture": "#0"}, - "east": {"uv": [5.75, 5.5, 6, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5.5, 6, 5.75], "texture": "#0"}, - "west": {"uv": [5.75, 5.5, 6, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.5, 6, 5.75], "texture": "#0"}, - "down": {"uv": [5.75, 5.75, 6, 5.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.75, + 6, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_191", - "from": [6, 0, 5.5], - "to": [6.25, 0.25, 5.75], - "faces": { - "north": {"uv": [6.25, 5.5, 6, 5.75], "texture": "#0"}, - "east": {"uv": [6, 5.5, 6.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 5.5, 6.25, 5.75], "texture": "#0"}, - "west": {"uv": [6, 5.5, 6.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.5, 6.25, 5.75], "texture": "#0"}, - "down": {"uv": [6, 5.75, 6.25, 5.5], "texture": "#0"} + "from": [ + 6, + 0, + 5.5 + ], + "to": [ + 6.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.5, + 6.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5.5, + 6.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 6.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.5, + 6.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.75, + 6.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_192", - "from": [6.25, 0, 5.5], - "to": [6.5, 0.25, 5.75], - "faces": { - "north": {"uv": [6.5, 5.5, 6.25, 5.75], "texture": "#0"}, - "east": {"uv": [6.25, 5.5, 6.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 5.5, 6.5, 5.75], "texture": "#0"}, - "west": {"uv": [6.25, 5.5, 6.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5.5, 6.5, 5.75], "texture": "#0"}, - "down": {"uv": [6.25, 5.75, 6.5, 5.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 5.5 + ], + "to": [ + 6.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 5.5, + 6.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5.75, + 6.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_193", - "from": [6.5, 0, 5.5], - "to": [6.75, 0.25, 5.75], - "faces": { - "north": {"uv": [6.75, 5.5, 6.5, 5.75], "texture": "#0"}, - "east": {"uv": [6.5, 5.5, 6.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 5.5, 6.75, 5.75], "texture": "#0"}, - "west": {"uv": [6.5, 5.5, 6.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.5, 6.75, 5.75], "texture": "#0"}, - "down": {"uv": [6.5, 5.75, 6.75, 5.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 5.5 + ], + "to": [ + 6.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 5.5, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.5, + 6.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 6.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5.75, + 6.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_194", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 5.75], - "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 5.5, 7, 5.75], "texture": "#0"}, - "west": {"uv": [6.75, 5.5, 7, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.5, 7, 5.75], "texture": "#0"}, - "down": {"uv": [6.75, 5.75, 7, 5.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 5.5, + 7, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5.75, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_195", - "from": [7, 0, 5.5], - "to": [7.25, 0.25, 5.75], - "faces": { - "north": {"uv": [7.25, 5.5, 7, 5.75], "texture": "#0"}, - "east": {"uv": [7, 5.5, 7.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 5.5, 7.25, 5.75], "texture": "#0"}, - "west": {"uv": [7, 5.5, 7.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.5, 7.25, 5.75], "texture": "#0"}, - "down": {"uv": [7, 5.75, 7.25, 5.5], "texture": "#0"} + "from": [ + 7, + 0, + 5.5 + ], + "to": [ + 7.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 5.5, + 7, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.5, + 7.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5.5, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.5, + 7.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.5, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.75, + 7.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_196", - "from": [7.25, 0, 5.5], - "to": [7.5, 0.25, 5.75], - "faces": { - "north": {"uv": [7.5, 5.5, 7.25, 5.75], "texture": "#0"}, - "east": {"uv": [7.25, 5.5, 7.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 5.5, 7.5, 5.75], "texture": "#0"}, - "west": {"uv": [7.25, 5.5, 7.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5.5, 7.5, 5.75], "texture": "#0"}, - "down": {"uv": [7.25, 5.75, 7.5, 5.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 5.5 + ], + "to": [ + 7.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 5.5, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5.5, + 7.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.5, + 7.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5.5, + 7.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.5, + 7.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5.75, + 7.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_197", - "from": [7.5, 0, 5.5], - "to": [7.75, 0.25, 5.75], - "faces": { - "north": {"uv": [7.75, 5.5, 7.5, 5.75], "texture": "#0"}, - "east": {"uv": [7.5, 5.5, 7.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 5.5, 7.75, 5.75], "texture": "#0"}, - "west": {"uv": [7.5, 5.5, 7.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.5, 7.75, 5.75], "texture": "#0"}, - "down": {"uv": [7.5, 5.75, 7.75, 5.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 5.5 + ], + "to": [ + 7.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 5.5, + 7.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.5, + 7.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5.5, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.5, + 7.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.5, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5.75, + 7.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_198", - "from": [7.75, 0, 5.5], - "to": [8, 0.25, 5.75], - "faces": { - "north": {"uv": [8, 5.5, 7.75, 5.75], "texture": "#0"}, - "east": {"uv": [7.75, 5.5, 8, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 5.5, 8, 5.75], "texture": "#0"}, - "west": {"uv": [7.75, 5.5, 8, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5.5, 8, 5.75], "texture": "#0"}, - "down": {"uv": [7.75, 5.75, 8, 5.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 5.5, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.5, + 8, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5.75, + 8, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_199", - "from": [8, 0, 5.5], - "to": [8.25, 0.25, 5.75], - "faces": { - "north": {"uv": [8.25, 5.5, 8, 5.75], "texture": "#0"}, - "east": {"uv": [8, 5.5, 8.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 5.5, 8.25, 5.75], "texture": "#0"}, - "west": {"uv": [8, 5.5, 8.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.5, 8.25, 5.75], "texture": "#0"}, - "down": {"uv": [8, 5.75, 8.25, 5.5], "texture": "#0"} + "from": [ + 8, + 0, + 5.5 + ], + "to": [ + 8.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5.5, + 8.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 5.75, + 8.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_200", - "from": [8.25, 0, 5.5], - "to": [8.5, 0.25, 5.75], - "faces": { - "north": {"uv": [8.5, 5.5, 8.25, 5.75], "texture": "#0"}, - "east": {"uv": [8.25, 5.5, 8.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 5.5, 8.5, 5.75], "texture": "#0"}, - "west": {"uv": [8.25, 5.5, 8.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 5.5, 8.5, 5.75], "texture": "#0"}, - "down": {"uv": [8.25, 5.75, 8.5, 5.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 5.5, + 8.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 5.5, + 8.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 5.75, + 8.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_201", - "from": [8.5, 0, 5.5], - "to": [8.75, 0.25, 5.75], - "faces": { - "north": {"uv": [8.75, 5.5, 8.5, 5.75], "texture": "#0"}, - "east": {"uv": [8.5, 5.5, 8.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.5, 8.75, 5.75], "texture": "#0"}, - "west": {"uv": [8.5, 5.5, 8.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.5, 8.75, 5.75], "texture": "#0"}, - "down": {"uv": [8.5, 5.75, 8.75, 5.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 8.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.75, + 8.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_202", - "from": [8.75, 0, 5.5], - "to": [9, 0.25, 5.75], - "faces": { - "north": {"uv": [9, 5.5, 8.75, 5.75], "texture": "#0"}, - "east": {"uv": [8.75, 5.5, 9, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 5.5, 9, 5.75], "texture": "#0"}, - "west": {"uv": [8.75, 5.5, 9, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.5, 9, 5.75], "texture": "#0"}, - "down": {"uv": [8.75, 5.75, 9, 5.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5.75, + 9, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_203", - "from": [9, 0, 5.5], - "to": [9.25, 0.25, 5.75], - "faces": { - "north": {"uv": [9.25, 5.5, 9, 5.75], "texture": "#0"}, - "east": {"uv": [9, 5.5, 9.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 5.5, 9.25, 5.75], "texture": "#0"}, - "west": {"uv": [9, 5.5, 9.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.5, 9.25, 5.75], "texture": "#0"}, - "down": {"uv": [9, 5.75, 9.25, 5.5], "texture": "#0"} + "from": [ + 9, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5.5, + 9.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.5, + 9.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 5.75, + 9.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_204", - "from": [9.25, 0, 5.5], - "to": [9.5, 0.25, 5.75], - "faces": { - "north": {"uv": [9.5, 5.5, 9.25, 5.75], "texture": "#0"}, - "east": {"uv": [9.25, 5.5, 9.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5.5, 9.5, 5.75], "texture": "#0"}, - "west": {"uv": [9.25, 5.5, 9.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.5, 9.5, 5.75], "texture": "#0"}, - "down": {"uv": [9.25, 5.75, 9.5, 5.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 5.5 + ], + "to": [ + 9.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 5.5, + 9.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.5, + 9.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.5, + 9.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5.75, + 9.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_205", - "from": [9.5, 0, 5.5], - "to": [9.75, 0.25, 5.75], - "faces": { - "north": {"uv": [9.75, 5.5, 9.5, 5.75], "texture": "#0"}, - "east": {"uv": [9.5, 5.5, 9.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 5.5, 9.75, 5.75], "texture": "#0"}, - "west": {"uv": [9.5, 5.5, 9.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5.5, 9.75, 5.75], "texture": "#0"}, - "down": {"uv": [9.5, 5.75, 9.75, 5.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.5, + 9.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5.5, + 9.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.5, + 9.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5.75, + 9.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_206", - "from": [9.75, 0, 5.5], - "to": [10, 0.25, 5.75], - "faces": { - "north": {"uv": [10, 5.5, 9.75, 5.75], "texture": "#0"}, - "east": {"uv": [9.75, 5.5, 10, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 5.5, 10, 5.75], "texture": "#0"}, - "west": {"uv": [9.75, 5.5, 10, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.5, 10, 5.75], "texture": "#0"}, - "down": {"uv": [9.75, 5.75, 10, 5.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 5.5, + 9.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5.5, + 10, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 5.75, + 10, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_207", - "from": [10, 0, 5.5], - "to": [10.25, 0.25, 5.75], - "faces": { - "north": {"uv": [10.25, 5.5, 10, 5.75], "texture": "#0"}, - "east": {"uv": [10, 5.5, 10.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 5.5, 10.25, 5.75], "texture": "#0"}, - "west": {"uv": [10, 5.5, 10.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5.5, 10.25, 5.75], "texture": "#0"}, - "down": {"uv": [10, 5.75, 10.25, 5.5], "texture": "#0"} + "from": [ + 10, + 0, + 5.5 + ], + "to": [ + 10.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.5, + 10.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.5, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 5.75, + 10.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_208", - "from": [10.25, 0, 5.5], - "to": [10.5, 0.25, 5.75], - "faces": { - "north": {"uv": [10.5, 5.5, 10.25, 5.75], "texture": "#0"}, - "east": {"uv": [10.25, 5.5, 10.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 5.5, 10.5, 5.75], "texture": "#0"}, - "west": {"uv": [10.25, 5.5, 10.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5.5, 10.5, 5.75], "texture": "#0"}, - "down": {"uv": [10.25, 5.75, 10.5, 5.5], "texture": "#0"} + "from": [ + 10.25, + 0, + 5.5 + ], + "to": [ + 10.5, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5.5, + 10.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.5, + 10.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5.75, + 10.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_209", - "from": [10.5, 0, 5.5], - "to": [10.75, 0.25, 5.75], - "faces": { - "north": {"uv": [10.75, 5.5, 10.5, 5.75], "texture": "#0"}, - "east": {"uv": [10.5, 5.5, 10.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5.5, 10.75, 5.75], "texture": "#0"}, - "west": {"uv": [10.5, 5.5, 10.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.5, 10.75, 5.75], "texture": "#0"}, - "down": {"uv": [10.5, 5.75, 10.75, 5.5], "texture": "#0"} + "from": [ + 10.5, + 0, + 5.5 + ], + "to": [ + 10.75, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.75, + 10.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_210", - "from": [10.75, 0, 5.5], - "to": [11, 0.25, 5.75], - "faces": { - "north": {"uv": [11, 5.5, 10.75, 5.75], "texture": "#0"}, - "east": {"uv": [10.75, 5.5, 11, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 5.5, 11, 5.75], "texture": "#0"}, - "west": {"uv": [10.75, 5.5, 11, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.5, 11, 5.75], "texture": "#0"}, - "down": {"uv": [10.75, 5.75, 11, 5.5], "texture": "#0"} + "from": [ + 10.75, + 0, + 5.5 + ], + "to": [ + 11, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 11, + 5.5, + 10.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 5.5, + 11, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5.5, + 11, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.5, + 11, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.5, + 11, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 5.75, + 11, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_211", - "from": [11, 0, 5.5], - "to": [11.25, 0.25, 5.75], - "faces": { - "north": {"uv": [11.25, 5.5, 11, 5.75], "texture": "#0"}, - "east": {"uv": [11, 5.5, 11.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 5.5, 11.25, 5.75], "texture": "#0"}, - "west": {"uv": [11, 5.5, 11.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 5.5, 11.25, 5.75], "texture": "#0"}, - "down": {"uv": [11, 5.75, 11.25, 5.5], "texture": "#0"} + "from": [ + 11, + 0, + 5.5 + ], + "to": [ + 11.25, + 0.25, + 5.75 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 5.5, + 11, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 5.5, + 11.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5.5, + 11.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.5, + 11.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 5.75, + 11.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_212", - "from": [2, 0, 5.75], - "to": [2.25, 0.25, 6], - "faces": { - "north": {"uv": [2.25, 5.75, 2, 6], "texture": "#0"}, - "east": {"uv": [2, 5.75, 2.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 5.75, 2.25, 6], "texture": "#0"}, - "west": {"uv": [2, 5.75, 2.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 5.75, 2.25, 6], "texture": "#0"}, - "down": {"uv": [2, 6, 2.25, 5.75], "texture": "#0"} + "from": [ + 2, + 0, + 5.75 + ], + "to": [ + 2.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 5.75, + 2, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 5.75, + 2.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5.75, + 2.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.75, + 2.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6, + 2.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_213", - "from": [2.25, 0, 5.75], - "to": [2.5, 0.25, 6], - "faces": { - "north": {"uv": [2.5, 5.75, 2.25, 6], "texture": "#0"}, - "east": {"uv": [2.25, 5.75, 2.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 5.75, 2.5, 6], "texture": "#0"}, - "west": {"uv": [2.25, 5.75, 2.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 5.75, 2.5, 6], "texture": "#0"}, - "down": {"uv": [2.25, 6, 2.5, 5.75], "texture": "#0"} + "from": [ + 2.25, + 0, + 5.75 + ], + "to": [ + 2.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 5.75, + 2.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 5.75, + 2.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 5.75, + 2.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 5.75, + 2.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 5.75, + 2.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6, + 2.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_214", - "from": [2.5, 0, 5.75], - "to": [2.75, 0.25, 6], - "faces": { - "north": {"uv": [2.75, 5.75, 2.5, 6], "texture": "#0"}, - "east": {"uv": [2.5, 5.75, 2.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 5.75, 2.75, 6], "texture": "#0"}, - "west": {"uv": [2.5, 5.75, 2.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.75, 2.75, 6], "texture": "#0"}, - "down": {"uv": [2.5, 6, 2.75, 5.75], "texture": "#0"} + "from": [ + 2.5, + 0, + 5.75 + ], + "to": [ + 2.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 5.75, + 2.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 5.75, + 2.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.75, + 2.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.75, + 2.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6, + 2.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_215", - "from": [2.75, 0, 5.75], - "to": [3, 0.25, 6], - "faces": { - "north": {"uv": [3, 5.75, 2.75, 6], "texture": "#0"}, - "east": {"uv": [2.75, 5.75, 3, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5.75, 3, 6], "texture": "#0"}, - "west": {"uv": [2.75, 5.75, 3, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5.75, 3, 6], "texture": "#0"}, - "down": {"uv": [2.75, 6, 3, 5.75], "texture": "#0"} + "from": [ + 2.75, + 0, + 5.75 + ], + "to": [ + 3, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 3, + 5.75, + 2.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5.75, + 3, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5.75, + 3, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5.75, + 3, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5.75, + 3, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6, + 3, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_216", - "from": [3, 0, 5.75], - "to": [3.25, 0.25, 6], - "faces": { - "north": {"uv": [3.25, 5.75, 3, 6], "texture": "#0"}, - "east": {"uv": [3, 5.75, 3.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 5.75, 3.25, 6], "texture": "#0"}, - "west": {"uv": [3, 5.75, 3.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5.75, 3.25, 6], "texture": "#0"}, - "down": {"uv": [3, 6, 3.25, 5.75], "texture": "#0"} + "from": [ + 3, + 0, + 5.75 + ], + "to": [ + 3.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 5.75, + 3, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.75, + 3.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5.75, + 3.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.75, + 3.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.75, + 3.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6, + 3.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_217", - "from": [3.25, 0, 5.75], - "to": [3.5, 0.25, 6], - "faces": { - "north": {"uv": [3.5, 5.75, 3.25, 6], "texture": "#0"}, - "east": {"uv": [3.25, 5.75, 3.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 5.75, 3.5, 6], "texture": "#0"}, - "west": {"uv": [3.25, 5.75, 3.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.75, 3.5, 6], "texture": "#0"}, - "down": {"uv": [3.25, 6, 3.5, 5.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 3.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 5.75, + 3.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.75, + 3.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6, + 3.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_218", - "from": [3.5, 0, 5.75], - "to": [3.75, 0.25, 6], - "faces": { - "north": {"uv": [3.75, 5.75, 3.5, 6], "texture": "#0"}, - "east": {"uv": [3.5, 5.75, 3.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 5.75, 3.75, 6], "texture": "#0"}, - "west": {"uv": [3.5, 5.75, 3.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.75, 3.75, 6], "texture": "#0"}, - "down": {"uv": [3.5, 6, 3.75, 5.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 3.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5.75, + 3.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 5.75, + 3.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 3.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6, + 3.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_219", - "from": [3.75, 0, 5.75], - "to": [4, 0.25, 6], - "faces": { - "north": {"uv": [4, 5.75, 3.75, 6], "texture": "#0"}, - "east": {"uv": [3.75, 5.75, 4, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 5.75, 4, 6], "texture": "#0"}, - "west": {"uv": [3.75, 5.75, 4, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.75, 4, 6], "texture": "#0"}, - "down": {"uv": [3.75, 6, 4, 5.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 4, + 5.75, + 3.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 5.75, + 4, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.75, + 4, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.75, + 4, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6, + 4, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_220", - "from": [4, 0, 5.75], - "to": [4.25, 0.25, 6], - "faces": { - "north": {"uv": [4.25, 5.75, 4, 6], "texture": "#0"}, - "east": {"uv": [4, 5.75, 4.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 5.75, 4.25, 6], "texture": "#0"}, - "west": {"uv": [4, 5.75, 4.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5.75, 4.25, 6], "texture": "#0"}, - "down": {"uv": [4, 6, 4.25, 5.75], "texture": "#0"} + "from": [ + 4, + 0, + 5.75 + ], + "to": [ + 4.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 5.75, + 4, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.75, + 4.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5.75, + 4.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5.75, + 4.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5.75, + 4.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6, + 4.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_221", - "from": [4.25, 0, 5.75], - "to": [4.5, 0.25, 6], - "faces": { - "north": {"uv": [4.5, 5.75, 4.25, 6], "texture": "#0"}, - "east": {"uv": [4.25, 5.75, 4.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 5.75, 4.5, 6], "texture": "#0"}, - "west": {"uv": [4.25, 5.75, 4.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5.75, 4.5, 6], "texture": "#0"}, - "down": {"uv": [4.25, 6, 4.5, 5.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 5.75 + ], + "to": [ + 4.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 5.75, + 4.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 5.75, + 4.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5.75, + 4.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 6, + 4.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_222", - "from": [4.5, 0, 5.75], - "to": [4.75, 0.25, 6], - "faces": { - "north": {"uv": [4.75, 5.75, 4.5, 6], "texture": "#0"}, - "east": {"uv": [4.5, 5.75, 4.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 5.75, 4.75, 6], "texture": "#0"}, - "west": {"uv": [4.5, 5.75, 4.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.75, 4.75, 6], "texture": "#0"}, - "down": {"uv": [4.5, 6, 4.75, 5.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 5.75 + ], + "to": [ + 4.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.75, + 4.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5.75, + 4.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.75, + 4.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.75, + 4.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6, + 4.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_223", - "from": [4.75, 0, 5.75], - "to": [5, 0.25, 6], - "faces": { - "north": {"uv": [5, 5.75, 4.75, 6], "texture": "#0"}, - "east": {"uv": [4.75, 5.75, 5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 5.75, 5, 6], "texture": "#0"}, - "west": {"uv": [4.75, 5.75, 5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 5.75, 5, 6], "texture": "#0"}, - "down": {"uv": [4.75, 6, 5, 5.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 5.75 + ], + "to": [ + 5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 5, + 5.75, + 4.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.75, + 5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 5.75, + 5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 5.75, + 5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 5.75, + 5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 6, + 5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_224", - "from": [5, 0, 5.75], - "to": [5.25, 0.25, 6], - "faces": { - "north": {"uv": [5.25, 5.75, 5, 6], "texture": "#0"}, - "east": {"uv": [5, 5.75, 5.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5.75, 5.25, 6], "texture": "#0"}, - "west": {"uv": [5, 5.75, 5.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.75, 5.25, 6], "texture": "#0"}, - "down": {"uv": [5, 6, 5.25, 5.75], "texture": "#0"} + "from": [ + 5, + 0, + 5.75 + ], + "to": [ + 5.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 5.75, + 5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.75, + 5.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.75, + 5.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.75, + 5.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.75, + 5.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6, + 5.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_225", - "from": [5.25, 0, 5.75], - "to": [5.5, 0.25, 6], - "faces": { - "north": {"uv": [5.5, 5.75, 5.25, 6], "texture": "#0"}, - "east": {"uv": [5.25, 5.75, 5.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5.75, 5.5, 6], "texture": "#0"}, - "west": {"uv": [5.25, 5.75, 5.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5.75, 5.5, 6], "texture": "#0"}, - "down": {"uv": [5.25, 6, 5.5, 5.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 5.75 + ], + "to": [ + 5.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 5.75, + 5.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.75, + 5.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5.75, + 5.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 6, + 5.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_226", - "from": [5.5, 0, 5.75], - "to": [5.75, 0.25, 6], - "faces": { - "north": {"uv": [5.75, 5.75, 5.5, 6], "texture": "#0"}, - "east": {"uv": [5.5, 5.75, 5.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5.75, 5.75, 6], "texture": "#0"}, - "west": {"uv": [5.5, 5.75, 5.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5.75, 5.75, 6], "texture": "#0"}, - "down": {"uv": [5.5, 6, 5.75, 5.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 5.75 + ], + "to": [ + 5.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.75, + 5.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.75, + 5.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6, + 5.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_227", - "from": [5.75, 0, 5.75], - "to": [6, 0.25, 6], - "faces": { - "north": {"uv": [6, 5.75, 5.75, 6], "texture": "#0"}, - "east": {"uv": [5.75, 5.75, 6, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5.75, 6, 6], "texture": "#0"}, - "west": {"uv": [5.75, 5.75, 6, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.75, 6, 6], "texture": "#0"}, - "down": {"uv": [5.75, 6, 6, 5.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 5.75 + ], + "to": [ + 6, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 6, + 5.75, + 5.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6, + 6, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_228", - "from": [6, 0, 5.75], - "to": [6.25, 0.25, 6], - "faces": { - "north": {"uv": [6.25, 5.75, 6, 6], "texture": "#0"}, - "east": {"uv": [6, 5.75, 6.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 5.75, 6.25, 6], "texture": "#0"}, - "west": {"uv": [6, 5.75, 6.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5.75, 6.25, 6], "texture": "#0"}, - "down": {"uv": [6, 6, 6.25, 5.75], "texture": "#0"} + "from": [ + 6, + 0, + 5.75 + ], + "to": [ + 6.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.75, + 6.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5.75, + 6.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.75, + 6.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.75, + 6.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6, + 6.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_229", - "from": [6.25, 0, 5.75], - "to": [6.5, 0.25, 6], - "faces": { - "north": {"uv": [6.5, 5.75, 6.25, 6], "texture": "#0"}, - "east": {"uv": [6.25, 5.75, 6.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 5.75, 6.5, 6], "texture": "#0"}, - "west": {"uv": [6.25, 5.75, 6.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 5.75, 6.5, 6], "texture": "#0"}, - "down": {"uv": [6.25, 6, 6.5, 5.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 5.75 + ], + "to": [ + 6.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 5.75, + 6.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.75, + 6.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 6, + 6.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_230", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 6], - "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#0"}, - "east": {"uv": [6.5, 5.75, 6.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 5.75, 6.75, 6], "texture": "#0"}, - "west": {"uv": [6.5, 5.75, 6.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.75, 6.75, 6], "texture": "#0"}, - "down": {"uv": [6.5, 6, 6.75, 5.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.75, + 6.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 6, + 6.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_231", - "from": [6.75, 0, 5.75], - "to": [7, 0.25, 6], - "faces": { - "north": {"uv": [7, 5.75, 6.75, 6], "texture": "#0"}, - "east": {"uv": [6.75, 5.75, 7, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 5.75, 7, 6], "texture": "#0"}, - "west": {"uv": [6.75, 5.75, 7, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.75, 7, 6], "texture": "#0"}, - "down": {"uv": [6.75, 6, 7, 5.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 5.75 + ], + "to": [ + 7, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 7, + 5.75, + 6.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.75, + 7, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 5.75, + 7, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.75, + 7, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.75, + 7, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6, + 7, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_232", - "from": [7, 0, 5.75], - "to": [7.25, 0.25, 6], - "faces": { - "north": {"uv": [7.25, 5.75, 7, 6], "texture": "#0"}, - "east": {"uv": [7, 5.75, 7.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 5.75, 7.25, 6], "texture": "#0"}, - "west": {"uv": [7, 5.75, 7.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.75, 7.25, 6], "texture": "#0"}, - "down": {"uv": [7, 6, 7.25, 5.75], "texture": "#0"} + "from": [ + 7, + 0, + 5.75 + ], + "to": [ + 7.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 5.75, + 7, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.75, + 7.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5.75, + 7.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.75, + 7.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.75, + 7.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6, + 7.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_233", - "from": [7.25, 0, 5.75], - "to": [7.5, 0.25, 6], - "faces": { - "north": {"uv": [7.5, 5.75, 7.25, 6], "texture": "#0"}, - "east": {"uv": [7.25, 5.75, 7.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 5.75, 7.5, 6], "texture": "#0"}, - "west": {"uv": [7.25, 5.75, 7.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5.75, 7.5, 6], "texture": "#0"}, - "down": {"uv": [7.25, 6, 7.5, 5.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 5.75 + ], + "to": [ + 7.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 5.75, + 7.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6, + 7.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_234", - "from": [7.5, 0, 5.75], - "to": [7.75, 0.25, 6], - "faces": { - "north": {"uv": [7.75, 5.75, 7.5, 6], "texture": "#0"}, - "east": {"uv": [7.5, 5.75, 7.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 5.75, 7.75, 6], "texture": "#0"}, - "west": {"uv": [7.5, 5.75, 7.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.75, 7.75, 6], "texture": "#0"}, - "down": {"uv": [7.5, 6, 7.75, 5.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 7.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.75, + 7.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5.75, + 7.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 7.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 6, + 7.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_235", - "from": [7.75, 0, 5.75], - "to": [8, 0.25, 6], - "faces": { - "north": {"uv": [8, 5.75, 7.75, 6], "texture": "#0"}, - "east": {"uv": [7.75, 5.75, 8, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 5.75, 8, 6], "texture": "#0"}, - "west": {"uv": [7.75, 5.75, 8, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5.75, 8, 6], "texture": "#0"}, - "down": {"uv": [7.75, 6, 8, 5.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 5.75 + ], + "to": [ + 8, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 8, + 5.75, + 7.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.75, + 8, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.75, + 8, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6, + 8, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_236", - "from": [8, 0, 5.75], - "to": [8.25, 0.25, 6], - "faces": { - "north": {"uv": [8.25, 5.75, 8, 6], "texture": "#0"}, - "east": {"uv": [8, 5.75, 8.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 5.75, 8.25, 6], "texture": "#0"}, - "west": {"uv": [8, 5.75, 8.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.75, 8.25, 6], "texture": "#0"}, - "down": {"uv": [8, 6, 8.25, 5.75], "texture": "#0"} + "from": [ + 8, + 0, + 5.75 + ], + "to": [ + 8.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5.75, + 8.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5.75, + 8.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.75, + 8.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.75, + 8.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6, + 8.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_237", - "from": [8.25, 0, 5.75], - "to": [8.5, 0.25, 6], - "faces": { - "north": {"uv": [8.5, 5.75, 8.25, 6], "texture": "#0"}, - "east": {"uv": [8.25, 5.75, 8.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 5.75, 8.5, 6], "texture": "#0"}, - "west": {"uv": [8.25, 5.75, 8.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 5.75, 8.5, 6], "texture": "#0"}, - "down": {"uv": [8.25, 6, 8.5, 5.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 5.75 + ], + "to": [ + 8.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 5.75, + 8.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5.75, + 8.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 5.75, + 8.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 6, + 8.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_238", - "from": [8.5, 0, 5.75], - "to": [8.75, 0.25, 6], - "faces": { - "north": {"uv": [8.75, 5.75, 8.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5.75, 8.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.75, 8.75, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5.75, 8.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.75, 8.75, 6], "texture": "#0"}, - "down": {"uv": [8.5, 6, 8.75, 5.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 5.75 + ], + "to": [ + 8.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.75, + 8.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.75, + 8.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.75, + 8.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6, + 8.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_239", - "from": [8.75, 0, 5.75], - "to": [9, 0.25, 6], - "faces": { - "north": {"uv": [9, 5.75, 8.75, 6], "texture": "#0"}, - "east": {"uv": [8.75, 5.75, 9, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 5.75, 9, 6], "texture": "#0"}, - "west": {"uv": [8.75, 5.75, 9, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.75, 9, 6], "texture": "#0"}, - "down": {"uv": [8.75, 6, 9, 5.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 5.75 + ], + "to": [ + 9, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 9, + 5.75, + 8.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.75, + 9, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 5.75, + 9, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.75, + 9, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.75, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 6, + 9, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_240", - "from": [9, 0, 5.75], - "to": [9.25, 0.25, 6], - "faces": { - "north": {"uv": [9.25, 5.75, 9, 6], "texture": "#0"}, - "east": {"uv": [9, 5.75, 9.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 5.75, 9.25, 6], "texture": "#0"}, - "west": {"uv": [9, 5.75, 9.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5.75, 9.25, 6], "texture": "#0"}, - "down": {"uv": [9, 6, 9.25, 5.75], "texture": "#0"} + "from": [ + 9, + 0, + 5.75 + ], + "to": [ + 9.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 5.75, + 9, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.75, + 9.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6, + 9.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_241", - "from": [9.25, 0, 5.75], - "to": [9.5, 0.25, 6], - "faces": { - "north": {"uv": [9.5, 5.75, 9.25, 6], "texture": "#0"}, - "east": {"uv": [9.25, 5.75, 9.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5.75, 9.5, 6], "texture": "#0"}, - "west": {"uv": [9.25, 5.75, 9.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.75, 9.5, 6], "texture": "#0"}, - "down": {"uv": [9.25, 6, 9.5, 5.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 6, + 9.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_242", - "from": [9.5, 0, 5.75], - "to": [9.75, 0.25, 6], - "faces": { - "north": {"uv": [9.75, 5.75, 9.5, 6], "texture": "#0"}, - "east": {"uv": [9.5, 5.75, 9.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 5.75, 9.75, 6], "texture": "#0"}, - "west": {"uv": [9.5, 5.75, 9.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 5.75, 9.75, 6], "texture": "#0"}, - "down": {"uv": [9.5, 6, 9.75, 5.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 5.75 + ], + "to": [ + 9.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 5.75, + 9.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.75, + 9.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5.75, + 9.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6, + 9.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_243", - "from": [9.75, 0, 5.75], - "to": [10, 0.25, 6], - "faces": { - "north": {"uv": [10, 5.75, 9.75, 6], "texture": "#0"}, - "east": {"uv": [9.75, 5.75, 10, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 5.75, 10, 6], "texture": "#0"}, - "west": {"uv": [9.75, 5.75, 10, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.75, 10, 6], "texture": "#0"}, - "down": {"uv": [9.75, 6, 10, 5.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 10, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 5.75, + 10, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 5.75, + 10, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 6, + 10, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_244", - "from": [10, 0, 5.75], - "to": [10.25, 0.25, 6], - "faces": { - "north": {"uv": [10.25, 5.75, 10, 6], "texture": "#0"}, - "east": {"uv": [10, 5.75, 10.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 5.75, 10.25, 6], "texture": "#0"}, - "west": {"uv": [10, 5.75, 10.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 5.75, 10.25, 6], "texture": "#0"}, - "down": {"uv": [10, 6, 10.25, 5.75], "texture": "#0"} + "from": [ + 10, + 0, + 5.75 + ], + "to": [ + 10.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 5.75, + 10, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.75, + 10.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.75, + 10.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.75, + 10.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.75, + 10.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6, + 10.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_245", - "from": [10.25, 0, 5.75], - "to": [10.5, 0.25, 6], - "faces": { - "north": {"uv": [10.5, 5.75, 10.25, 6], "texture": "#0"}, - "east": {"uv": [10.25, 5.75, 10.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 5.75, 10.5, 6], "texture": "#0"}, - "west": {"uv": [10.25, 5.75, 10.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 5.75, 10.5, 6], "texture": "#0"}, - "down": {"uv": [10.25, 6, 10.5, 5.75], "texture": "#0"} + "from": [ + 10.25, + 0, + 5.75 + ], + "to": [ + 10.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 5.75, + 10.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5.75, + 10.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 5.75, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.75, + 10.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.75, + 10.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 6, + 10.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_246", - "from": [10.5, 0, 5.75], - "to": [10.75, 0.25, 6], - "faces": { - "north": {"uv": [10.75, 5.75, 10.5, 6], "texture": "#0"}, - "east": {"uv": [10.5, 5.75, 10.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5.75, 10.75, 6], "texture": "#0"}, - "west": {"uv": [10.5, 5.75, 10.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.75, 10.75, 6], "texture": "#0"}, - "down": {"uv": [10.5, 6, 10.75, 5.75], "texture": "#0"} + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 10.75, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 5.75, + 10.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5.75, + 10.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6, + 10.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_247", - "from": [10.75, 0, 5.75], - "to": [11, 0.25, 6], - "faces": { - "north": {"uv": [11, 5.75, 10.75, 6], "texture": "#0"}, - "east": {"uv": [10.75, 5.75, 11, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 5.75, 11, 6], "texture": "#0"}, - "west": {"uv": [10.75, 5.75, 11, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 5.75, 11, 6], "texture": "#0"}, - "down": {"uv": [10.75, 6, 11, 5.75], "texture": "#0"} + "from": [ + 10.75, + 0, + 5.75 + ], + "to": [ + 11, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 11, + 5.75, + 10.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 5.75, + 11, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5.75, + 11, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 5.75, + 11, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 5.75, + 11, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6, + 11, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_248", - "from": [11, 0, 5.75], - "to": [11.25, 0.25, 6], - "faces": { - "north": {"uv": [11.25, 5.75, 11, 6], "texture": "#0"}, - "east": {"uv": [11, 5.75, 11.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 5.75, 11.25, 6], "texture": "#0"}, - "west": {"uv": [11, 5.75, 11.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 5.75, 11.25, 6], "texture": "#0"}, - "down": {"uv": [11, 6, 11.25, 5.75], "texture": "#0"} + "from": [ + 11, + 0, + 5.75 + ], + "to": [ + 11.25, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 5.75, + 11, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 5.75, + 11.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.75, + 11.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5.75, + 11.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.75, + 11.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6, + 11.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_249", - "from": [11.25, 0, 5.75], - "to": [11.5, 0.25, 6], - "faces": { - "north": {"uv": [11.5, 5.75, 11.25, 6], "texture": "#0"}, - "east": {"uv": [11.25, 5.75, 11.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 5.75, 11.5, 6], "texture": "#0"}, - "west": {"uv": [11.25, 5.75, 11.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 5.75, 11.5, 6], "texture": "#0"}, - "down": {"uv": [11.25, 6, 11.5, 5.75], "texture": "#0"} + "from": [ + 11.25, + 0, + 5.75 + ], + "to": [ + 11.5, + 0.25, + 6 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 5.75, + 11.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 5.75, + 11.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6, + 11.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_250", - "from": [1.75, 0, 6], - "to": [2, 0.25, 6.25], - "faces": { - "north": {"uv": [2, 6, 1.75, 6.25], "texture": "#0"}, - "east": {"uv": [1.75, 6, 2, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 6, 2, 6.25], "texture": "#0"}, - "west": {"uv": [1.75, 6, 2, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6, 2, 6.25], "texture": "#0"}, - "down": {"uv": [1.75, 6.25, 2, 6], "texture": "#0"} + "from": [ + 1.75, + 0, + 6 + ], + "to": [ + 2, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 2, + 6, + 1.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6, + 2, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 6, + 2, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6, + 2, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6, + 2, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 6.25, + 2, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_251", - "from": [2, 0, 6], - "to": [2.25, 0.25, 6.25], - "faces": { - "north": {"uv": [2.25, 6, 2, 6.25], "texture": "#0"}, - "east": {"uv": [2, 6, 2.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 6, 2.25, 6.25], "texture": "#0"}, - "west": {"uv": [2, 6, 2.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6, 2.25, 6.25], "texture": "#0"}, - "down": {"uv": [2, 6.25, 2.25, 6], "texture": "#0"} + "from": [ + 2, + 0, + 6 + ], + "to": [ + 2.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 6, + 2, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 2.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6, + 2.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6, + 2.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6, + 2.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.25, + 2.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_252", - "from": [2.25, 0, 6], - "to": [2.5, 0.25, 6.25], - "faces": { - "north": {"uv": [2.5, 6, 2.25, 6.25], "texture": "#0"}, - "east": {"uv": [2.25, 6, 2.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 6, 2.5, 6.25], "texture": "#0"}, - "west": {"uv": [2.25, 6, 2.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6, 2.5, 6.25], "texture": "#0"}, - "down": {"uv": [2.25, 6.25, 2.5, 6], "texture": "#0"} + "from": [ + 2.25, + 0, + 6 + ], + "to": [ + 2.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 6, + 2.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6, + 2.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 6, + 2.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6, + 2.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6, + 2.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_253", - "from": [2.5, 0, 6], - "to": [2.75, 0.25, 6.25], - "faces": { - "north": {"uv": [2.75, 6, 2.5, 6.25], "texture": "#0"}, - "east": {"uv": [2.5, 6, 2.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 6, 2.75, 6.25], "texture": "#0"}, - "west": {"uv": [2.5, 6, 2.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6, 2.75, 6.25], "texture": "#0"}, - "down": {"uv": [2.5, 6.25, 2.75, 6], "texture": "#0"} + "from": [ + 2.5, + 0, + 6 + ], + "to": [ + 2.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 6, + 2.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6, + 2.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6, + 2.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.25, + 2.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_254", - "from": [2.75, 0, 6], - "to": [3, 0.25, 6.25], - "faces": { - "north": {"uv": [3, 6, 2.75, 6.25], "texture": "#0"}, - "east": {"uv": [2.75, 6, 3, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 6, 3, 6.25], "texture": "#0"}, - "west": {"uv": [2.75, 6, 3, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6, 3, 6.25], "texture": "#0"}, - "down": {"uv": [2.75, 6.25, 3, 6], "texture": "#0"} + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6.25, + 3, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_255", - "from": [3, 0, 6], - "to": [3.25, 0.25, 6.25], - "faces": { - "north": {"uv": [3.25, 6, 3, 6.25], "texture": "#0"}, - "east": {"uv": [3, 6, 3.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6, 3.25, 6.25], "texture": "#0"}, - "west": {"uv": [3, 6, 3.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6, 3.25, 6.25], "texture": "#0"}, - "down": {"uv": [3, 6.25, 3.25, 6], "texture": "#0"} + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.25, + 3.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_256", - "from": [3.25, 0, 6], - "to": [3.5, 0.25, 6.25], - "faces": { - "north": {"uv": [3.5, 6, 3.25, 6.25], "texture": "#0"}, - "east": {"uv": [3.25, 6, 3.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6, 3.5, 6.25], "texture": "#0"}, - "west": {"uv": [3.25, 6, 3.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6, 3.5, 6.25], "texture": "#0"}, - "down": {"uv": [3.25, 6.25, 3.5, 6], "texture": "#0"} + "from": [ + 3.25, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 6, + 3.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6, + 3.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_257", - "from": [3.5, 0, 6], - "to": [3.75, 0.25, 6.25], - "faces": { - "north": {"uv": [3.75, 6, 3.5, 6.25], "texture": "#0"}, - "east": {"uv": [3.5, 6, 3.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6, 3.75, 6.25], "texture": "#0"}, - "west": {"uv": [3.5, 6, 3.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6, 3.75, 6.25], "texture": "#0"}, - "down": {"uv": [3.5, 6.25, 3.75, 6], "texture": "#0"} + "from": [ + 3.5, + 0, + 6 + ], + "to": [ + 3.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 6, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6, + 3.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6, + 3.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6, + 3.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6.25, + 3.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_258", - "from": [3.75, 0, 6], - "to": [4, 0.25, 6.25], - "faces": { - "north": {"uv": [4, 6, 3.75, 6.25], "texture": "#0"}, - "east": {"uv": [3.75, 6, 4, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6, 4, 6.25], "texture": "#0"}, - "west": {"uv": [3.75, 6, 4, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6, 4, 6.25], "texture": "#0"}, - "down": {"uv": [3.75, 6.25, 4, 6], "texture": "#0"} + "from": [ + 3.75, + 0, + 6 + ], + "to": [ + 4, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 6, + 3.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6, + 4, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6, + 4, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6, + 4, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6, + 4, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6.25, + 4, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_259", - "from": [4, 0, 6], - "to": [4.25, 0.25, 6.25], - "faces": { - "north": {"uv": [4.25, 6, 4, 6.25], "texture": "#0"}, - "east": {"uv": [4, 6, 4.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 6, 4.25, 6.25], "texture": "#0"}, - "west": {"uv": [4, 6, 4.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6, 4.25, 6.25], "texture": "#0"}, - "down": {"uv": [4, 6.25, 4.25, 6], "texture": "#0"} + "from": [ + 4, + 0, + 6 + ], + "to": [ + 4.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 6, + 4, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6, + 4.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6, + 4.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6, + 4.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6, + 4.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6.25, + 4.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_260", - "from": [4.25, 0, 6], - "to": [4.5, 0.25, 6.25], - "faces": { - "north": {"uv": [4.5, 6, 4.25, 6.25], "texture": "#0"}, - "east": {"uv": [4.25, 6, 4.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 6, 4.5, 6.25], "texture": "#0"}, - "west": {"uv": [4.25, 6, 4.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6, 4.5, 6.25], "texture": "#0"}, - "down": {"uv": [4.25, 6.25, 4.5, 6], "texture": "#0"} + "from": [ + 4.25, + 0, + 6 + ], + "to": [ + 4.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 6, + 4.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6, + 4.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 6, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6, + 4.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 6.25, + 4.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_261", - "from": [4.5, 0, 6], - "to": [4.75, 0.25, 6.25], - "faces": { - "north": {"uv": [4.75, 6, 4.5, 6.25], "texture": "#0"}, - "east": {"uv": [4.5, 6, 4.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 6, 4.75, 6.25], "texture": "#0"}, - "west": {"uv": [4.5, 6, 4.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6, 4.75, 6.25], "texture": "#0"}, - "down": {"uv": [4.5, 6.25, 4.75, 6], "texture": "#0"} + "from": [ + 4.5, + 0, + 6 + ], + "to": [ + 4.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 6, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6, + 4.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6, + 4.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6, + 4.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6, + 4.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6.25, + 4.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_262", - "from": [4.75, 0, 6], - "to": [5, 0.25, 6.25], - "faces": { - "north": {"uv": [5, 6, 4.75, 6.25], "texture": "#0"}, - "east": {"uv": [4.75, 6, 5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 6, 5, 6.25], "texture": "#0"}, - "west": {"uv": [4.75, 6, 5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6, 5, 6.25], "texture": "#0"}, - "down": {"uv": [4.75, 6.25, 5, 6], "texture": "#0"} + "from": [ + 4.75, + 0, + 6 + ], + "to": [ + 5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 6, + 4.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6, + 5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6, + 5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6, + 5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6, + 5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 6.25, + 5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_263", - "from": [5, 0, 6], - "to": [5.25, 0.25, 6.25], - "faces": { - "north": {"uv": [5.25, 6, 5, 6.25], "texture": "#0"}, - "east": {"uv": [5, 6, 5.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6, 5.25, 6.25], "texture": "#0"}, - "west": {"uv": [5, 6, 5.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6, 5.25, 6.25], "texture": "#0"}, - "down": {"uv": [5, 6.25, 5.25, 6], "texture": "#0"} + "from": [ + 5, + 0, + 6 + ], + "to": [ + 5.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 6, + 5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6, + 5.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6, + 5.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6, + 5.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6, + 5.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.25, + 5.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_264", - "from": [5.25, 0, 6], - "to": [5.5, 0.25, 6.25], - "faces": { - "north": {"uv": [5.5, 6, 5.25, 6.25], "texture": "#0"}, - "east": {"uv": [5.25, 6, 5.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 6, 5.5, 6.25], "texture": "#0"}, - "west": {"uv": [5.25, 6, 5.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 6, 5.5, 6.25], "texture": "#0"}, - "down": {"uv": [5.25, 6.25, 5.5, 6], "texture": "#0"} + "from": [ + 5.25, + 0, + 6 + ], + "to": [ + 5.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 6, + 5.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6, + 5.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 6, + 5.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_265", - "from": [5.5, 0, 6], - "to": [5.75, 0.25, 6.25], - "faces": { - "north": {"uv": [5.75, 6, 5.5, 6.25], "texture": "#0"}, - "east": {"uv": [5.5, 6, 5.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 6, 5.75, 6.25], "texture": "#0"}, - "west": {"uv": [5.5, 6, 5.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6, 5.75, 6.25], "texture": "#0"}, - "down": {"uv": [5.5, 6.25, 5.75, 6], "texture": "#0"} + "from": [ + 5.5, + 0, + 6 + ], + "to": [ + 5.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 6, + 5.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6, + 5.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6, + 5.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_266", - "from": [5.75, 0, 6], - "to": [6, 0.25, 6.25], - "faces": { - "north": {"uv": [6, 6, 5.75, 6.25], "texture": "#0"}, - "east": {"uv": [5.75, 6, 6, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 6, 6, 6.25], "texture": "#0"}, - "west": {"uv": [5.75, 6, 6, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 6, 6, 6.25], "texture": "#0"}, - "down": {"uv": [5.75, 6.25, 6, 6], "texture": "#0"} + "from": [ + 5.75, + 0, + 6 + ], + "to": [ + 6, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 6, + 5.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6, + 6, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 6, + 6, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 6, + 6, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6, + 6, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6.25, + 6, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_267", - "from": [6, 0, 6], - "to": [6.25, 0.25, 6.25], - "faces": { - "north": {"uv": [6.25, 6, 6, 6.25], "texture": "#0"}, - "east": {"uv": [6, 6, 6.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 6, 6.25, 6.25], "texture": "#0"}, - "west": {"uv": [6, 6, 6.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6, 6.25, 6.25], "texture": "#0"}, - "down": {"uv": [6, 6.25, 6.25, 6], "texture": "#0"} + "from": [ + 6, + 0, + 6 + ], + "to": [ + 6.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 6, + 6, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6, + 6.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6, + 6.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6, + 6.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6, + 6.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6.25, + 6.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_268", - "from": [6.25, 0, 6], - "to": [6.5, 0.25, 6.25], - "faces": { - "north": {"uv": [6.5, 6, 6.25, 6.25], "texture": "#0"}, - "east": {"uv": [6.25, 6, 6.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 6, 6.5, 6.25], "texture": "#0"}, - "west": {"uv": [6.25, 6, 6.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6, 6.5, 6.25], "texture": "#0"}, - "down": {"uv": [6.25, 6.25, 6.5, 6], "texture": "#0"} + "from": [ + 6.25, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 6, + 6.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 6, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6, + 6.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_269", - "from": [6.5, 0, 6], - "to": [6.75, 0.25, 6.25], - "faces": { - "north": {"uv": [6.75, 6, 6.5, 6.25], "texture": "#0"}, - "east": {"uv": [6.5, 6, 6.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 6, 6.75, 6.25], "texture": "#0"}, - "west": {"uv": [6.5, 6, 6.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 6, 6.75, 6.25], "texture": "#0"}, - "down": {"uv": [6.5, 6.25, 6.75, 6], "texture": "#0"} + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 6, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6, + 6.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6, + 6.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 6.25, + 6.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_270", - "from": [6.75, 0, 6], - "to": [7, 0.25, 6.25], - "faces": { - "north": {"uv": [7, 6, 6.75, 6.25], "texture": "#0"}, - "east": {"uv": [6.75, 6, 7, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 6, 7, 6.25], "texture": "#0"}, - "west": {"uv": [6.75, 6, 7, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 6, 7, 6.25], "texture": "#0"}, - "down": {"uv": [6.75, 6.25, 7, 6], "texture": "#0"} + "from": [ + 6.75, + 0, + 6 + ], + "to": [ + 7, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 6, + 6.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6, + 7, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6, + 7, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6, + 7, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 6, + 7, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6.25, + 7, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_271", - "from": [7, 0, 6], - "to": [7.25, 0.25, 6.25], - "faces": { - "north": {"uv": [7.25, 6, 7, 6.25], "texture": "#0"}, - "east": {"uv": [7, 6, 7.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 6, 7.25, 6.25], "texture": "#0"}, - "west": {"uv": [7, 6, 7.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 6, 7.25, 6.25], "texture": "#0"}, - "down": {"uv": [7, 6.25, 7.25, 6], "texture": "#0"} + "from": [ + 7, + 0, + 6 + ], + "to": [ + 7.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 6, + 7, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6, + 7.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6, + 7.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.25, + 7.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_272", - "from": [7.25, 0, 6], - "to": [7.5, 0.25, 6.25], - "faces": { - "north": {"uv": [7.5, 6, 7.25, 6.25], "texture": "#0"}, - "east": {"uv": [7.25, 6, 7.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 6, 7.5, 6.25], "texture": "#0"}, - "west": {"uv": [7.25, 6, 7.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 6, 7.5, 6.25], "texture": "#0"}, - "down": {"uv": [7.25, 6.25, 7.5, 6], "texture": "#0"} + "from": [ + 7.25, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 6, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 6, + 7.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 6, + 7.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 6, + 7.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6.25, + 7.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_273", - "from": [7.5, 0, 6], - "to": [7.75, 0.25, 6.25], - "faces": { - "north": {"uv": [7.75, 6, 7.5, 6.25], "texture": "#0"}, - "east": {"uv": [7.5, 6, 7.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 6, 7.75, 6.25], "texture": "#0"}, - "west": {"uv": [7.5, 6, 7.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 6, 7.75, 6.25], "texture": "#0"}, - "down": {"uv": [7.5, 6.25, 7.75, 6], "texture": "#0"} + "from": [ + 7.5, + 0, + 6 + ], + "to": [ + 7.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 6, + 7.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6, + 7.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6, + 7.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 6.25, + 7.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_274", - "from": [7.75, 0, 6], - "to": [8, 0.25, 6.25], - "faces": { - "north": {"uv": [8, 6, 7.75, 6.25], "texture": "#0"}, - "east": {"uv": [7.75, 6, 8, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 6, 8, 6.25], "texture": "#0"}, - "west": {"uv": [7.75, 6, 8, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6, 8, 6.25], "texture": "#0"}, - "down": {"uv": [7.75, 6.25, 8, 6], "texture": "#0"} + "from": [ + 7.75, + 0, + 6 + ], + "to": [ + 8, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 6, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6.25, + 8, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_275", - "from": [8, 0, 6], - "to": [8.25, 0.25, 6.25], - "faces": { - "north": {"uv": [8.25, 6, 8, 6.25], "texture": "#0"}, - "east": {"uv": [8, 6, 8.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 6, 8.25, 6.25], "texture": "#0"}, - "west": {"uv": [8, 6, 8.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 6, 8.25, 6.25], "texture": "#0"}, - "down": {"uv": [8, 6.25, 8.25, 6], "texture": "#0"} + "from": [ + 8, + 0, + 6 + ], + "to": [ + 8.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 6, + 8, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6, + 8.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 8.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 6, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6.25, + 8.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_276", - "from": [8.25, 0, 6], - "to": [8.5, 0.25, 6.25], - "faces": { - "north": {"uv": [8.5, 6, 8.25, 6.25], "texture": "#0"}, - "east": {"uv": [8.25, 6, 8.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 6, 8.5, 6.25], "texture": "#0"}, - "west": {"uv": [8.25, 6, 8.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6, 8.5, 6.25], "texture": "#0"}, - "down": {"uv": [8.25, 6.25, 8.5, 6], "texture": "#0"} + "from": [ + 8.25, + 0, + 6 + ], + "to": [ + 8.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 6, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 6, + 8.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6, + 8.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 6.25, + 8.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_277", - "from": [8.5, 0, 6], - "to": [8.75, 0.25, 6.25], - "faces": { - "north": {"uv": [8.75, 6, 8.5, 6.25], "texture": "#0"}, - "east": {"uv": [8.5, 6, 8.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 6, 8.75, 6.25], "texture": "#0"}, - "west": {"uv": [8.5, 6, 8.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 6, 8.75, 6.25], "texture": "#0"}, - "down": {"uv": [8.5, 6.25, 8.75, 6], "texture": "#0"} + "from": [ + 8.5, + 0, + 6 + ], + "to": [ + 8.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 6, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6, + 8.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6, + 8.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6, + 8.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6, + 8.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6.25, + 8.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_278", - "from": [8.75, 0, 6], - "to": [9, 0.25, 6.25], - "faces": { - "north": {"uv": [9, 6, 8.75, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 6, 9, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 6, 9, 6.25], "texture": "#0"}, - "west": {"uv": [8.75, 6, 9, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 6, 9, 6.25], "texture": "#0"}, - "down": {"uv": [8.75, 6.25, 9, 6], "texture": "#0"} + "from": [ + 8.75, + 0, + 6 + ], + "to": [ + 9, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 6, + 8.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6, + 9, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 6, + 9, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 6, + 9, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 6, + 9, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 6.25, + 9, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_279", - "from": [9, 0, 6], - "to": [9.25, 0.25, 6.25], - "faces": { - "north": {"uv": [9.25, 6, 9, 6.25], "texture": "#0"}, - "east": {"uv": [9, 6, 9.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6, 9.25, 6.25], "texture": "#0"}, - "west": {"uv": [9, 6, 9.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6, 9.25, 6.25], "texture": "#0"}, - "down": {"uv": [9, 6.25, 9.25, 6], "texture": "#0"} + "from": [ + 9, + 0, + 6 + ], + "to": [ + 9.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 6, + 9, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6, + 9.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6.25, + 9.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_280", - "from": [9.25, 0, 6], - "to": [9.5, 0.25, 6.25], - "faces": { - "north": {"uv": [9.5, 6, 9.25, 6.25], "texture": "#0"}, - "east": {"uv": [9.25, 6, 9.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 6, 9.5, 6.25], "texture": "#0"}, - "west": {"uv": [9.25, 6, 9.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6, 9.5, 6.25], "texture": "#0"}, - "down": {"uv": [9.25, 6.25, 9.5, 6], "texture": "#0"} + "from": [ + 9.25, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 6, + 9.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6, + 9.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 6.25, + 9.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_281", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 6.25], - "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#0"}, - "east": {"uv": [9.5, 6, 9.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6, 9.75, 6.25], "texture": "#0"}, - "west": {"uv": [9.5, 6, 9.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6, 9.75, 6.25], "texture": "#0"}, - "down": {"uv": [9.5, 6.25, 9.75, 6], "texture": "#0"} + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_282", - "from": [9.75, 0, 6], - "to": [10, 0.25, 6.25], - "faces": { - "north": {"uv": [10, 6, 9.75, 6.25], "texture": "#0"}, - "east": {"uv": [9.75, 6, 10, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 6, 10, 6.25], "texture": "#0"}, - "west": {"uv": [9.75, 6, 10, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6, 10, 6.25], "texture": "#0"}, - "down": {"uv": [9.75, 6.25, 10, 6], "texture": "#0"} + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 6, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6, + 10, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 6.25, + 10, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_283", - "from": [10, 0, 6], - "to": [10.25, 0.25, 6.25], - "faces": { - "north": {"uv": [10.25, 6, 10, 6.25], "texture": "#0"}, - "east": {"uv": [10, 6, 10.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 6, 10.25, 6.25], "texture": "#0"}, - "west": {"uv": [10, 6, 10.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6, 10.25, 6.25], "texture": "#0"}, - "down": {"uv": [10, 6.25, 10.25, 6], "texture": "#0"} + "from": [ + 10, + 0, + 6 + ], + "to": [ + 10.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6.25, + 10.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_284", - "from": [10.25, 0, 6], - "to": [10.5, 0.25, 6.25], - "faces": { - "north": {"uv": [10.5, 6, 10.25, 6.25], "texture": "#0"}, - "east": {"uv": [10.25, 6, 10.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 6, 10.5, 6.25], "texture": "#0"}, - "west": {"uv": [10.25, 6, 10.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6, 10.5, 6.25], "texture": "#0"}, - "down": {"uv": [10.25, 6.25, 10.5, 6], "texture": "#0"} + "from": [ + 10.25, + 0, + 6 + ], + "to": [ + 10.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6, + 10.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6, + 10.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6, + 10.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6, + 10.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 6.25, + 10.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_285", - "from": [10.5, 0, 6], - "to": [10.75, 0.25, 6.25], - "faces": { - "north": {"uv": [10.75, 6, 10.5, 6.25], "texture": "#0"}, - "east": {"uv": [10.5, 6, 10.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 6, 10.75, 6.25], "texture": "#0"}, - "west": {"uv": [10.5, 6, 10.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6, 10.75, 6.25], "texture": "#0"}, - "down": {"uv": [10.5, 6.25, 10.75, 6], "texture": "#0"} + "from": [ + 10.5, + 0, + 6 + ], + "to": [ + 10.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 6, + 10.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 10.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 6, + 10.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6, + 10.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6, + 10.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_286", - "from": [10.75, 0, 6], - "to": [11, 0.25, 6.25], - "faces": { - "north": {"uv": [11, 6, 10.75, 6.25], "texture": "#0"}, - "east": {"uv": [10.75, 6, 11, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6, 11, 6.25], "texture": "#0"}, - "west": {"uv": [10.75, 6, 11, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6, 11, 6.25], "texture": "#0"}, - "down": {"uv": [10.75, 6.25, 11, 6], "texture": "#0"} + "from": [ + 10.75, + 0, + 6 + ], + "to": [ + 11, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 11, + 6, + 10.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6, + 11, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6, + 11, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6, + 11, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6, + 11, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6.25, + 11, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_287", - "from": [11, 0, 6], - "to": [11.25, 0.25, 6.25], - "faces": { - "north": {"uv": [11.25, 6, 11, 6.25], "texture": "#0"}, - "east": {"uv": [11, 6, 11.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6, 11.25, 6.25], "texture": "#0"}, - "west": {"uv": [11, 6, 11.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6, 11.25, 6.25], "texture": "#0"}, - "down": {"uv": [11, 6.25, 11.25, 6], "texture": "#0"} + "from": [ + 11, + 0, + 6 + ], + "to": [ + 11.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 6, + 11, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.25, + 11.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_288", - "from": [11.25, 0, 6], - "to": [11.5, 0.25, 6.25], - "faces": { - "north": {"uv": [11.5, 6, 11.25, 6.25], "texture": "#0"}, - "east": {"uv": [11.25, 6, 11.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 6, 11.5, 6.25], "texture": "#0"}, - "west": {"uv": [11.25, 6, 11.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6, 11.5, 6.25], "texture": "#0"}, - "down": {"uv": [11.25, 6.25, 11.5, 6], "texture": "#0"} + "from": [ + 11.25, + 0, + 6 + ], + "to": [ + 11.5, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 6, + 11.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6, + 11.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6, + 11.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6.25, + 11.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_289", - "from": [11.5, 0, 6], - "to": [11.75, 0.25, 6.25], - "faces": { - "north": {"uv": [11.75, 6, 11.5, 6.25], "texture": "#0"}, - "east": {"uv": [11.5, 6, 11.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6, 11.75, 6.25], "texture": "#0"}, - "west": {"uv": [11.5, 6, 11.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6, 11.75, 6.25], "texture": "#0"}, - "down": {"uv": [11.5, 6.25, 11.75, 6], "texture": "#0"} + "from": [ + 11.5, + 0, + 6 + ], + "to": [ + 11.75, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_290", - "from": [14.75, 0, 6], - "to": [15, 0.25, 6.25], - "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#0"}, - "east": {"uv": [14.75, 6, 15, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 6, 15, 6.25], "texture": "#0"}, - "west": {"uv": [14.75, 6, 15, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6, 15, 6.25], "texture": "#0"}, - "down": {"uv": [14.75, 6.25, 15, 6], "texture": "#0"} + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 6, + 15, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 6.25, + 15, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_291", - "from": [15, 0, 6], - "to": [15.25, 0.25, 6.25], - "faces": { - "north": {"uv": [15.25, 6, 15, 6.25], "texture": "#0"}, - "east": {"uv": [15, 6, 15.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6, 15.25, 6.25], "texture": "#0"}, - "west": {"uv": [15, 6, 15.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6, 15.25, 6.25], "texture": "#0"}, - "down": {"uv": [15, 6.25, 15.25, 6], "texture": "#0"} + "from": [ + 15, + 0, + 6 + ], + "to": [ + 15.25, + 0.25, + 6.25 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 6, + 15, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6, + 15.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6, + 15.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6, + 15.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6, + 15.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.25, + 15.25, + 6 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_292", - "from": [1.5, 0, 6.25], - "to": [1.75, 0.25, 6.5], - "faces": { - "north": {"uv": [1.75, 6.25, 1.5, 6.5], "texture": "#0"}, - "east": {"uv": [1.5, 6.25, 1.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6.25, 1.75, 6.5], "texture": "#0"}, - "west": {"uv": [1.5, 6.25, 1.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.25, 1.75, 6.5], "texture": "#0"}, - "down": {"uv": [1.5, 6.5, 1.75, 6.25], "texture": "#0"} + "from": [ + 1.5, + 0, + 6.25 + ], + "to": [ + 1.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 6.25, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.25, + 1.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.25, + 1.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.25, + 1.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.5, + 1.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_293", - "from": [1.75, 0, 6.25], - "to": [2, 0.25, 6.5], - "faces": { - "north": {"uv": [2, 6.25, 1.75, 6.5], "texture": "#0"}, - "east": {"uv": [1.75, 6.25, 2, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 6.25, 2, 6.5], "texture": "#0"}, - "west": {"uv": [1.75, 6.25, 2, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.25, 2, 6.5], "texture": "#0"}, - "down": {"uv": [1.75, 6.5, 2, 6.25], "texture": "#0"} + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 2, + 6.25, + 1.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 6.5, + 2, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_294", - "from": [2, 0, 6.25], - "to": [2.25, 0.25, 6.5], - "faces": { - "north": {"uv": [2.25, 6.25, 2, 6.5], "texture": "#0"}, - "east": {"uv": [2, 6.25, 2.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 6.25, 2.25, 6.5], "texture": "#0"}, - "west": {"uv": [2, 6.25, 2.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.25, 2.25, 6.5], "texture": "#0"}, - "down": {"uv": [2, 6.5, 2.25, 6.25], "texture": "#0"} + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.25, + 2.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6.25, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 2.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_295", - "from": [2.25, 0, 6.25], - "to": [2.5, 0.25, 6.5], - "faces": { - "north": {"uv": [2.5, 6.25, 2.25, 6.5], "texture": "#0"}, - "east": {"uv": [2.25, 6.25, 2.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 6.25, 2.5, 6.5], "texture": "#0"}, - "west": {"uv": [2.25, 6.25, 2.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.25, 2.5, 6.5], "texture": "#0"}, - "down": {"uv": [2.25, 6.5, 2.5, 6.25], "texture": "#0"} + "from": [ + 2.25, + 0, + 6.25 + ], + "to": [ + 2.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 6.25, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6.5, + 2.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_296", - "from": [2.5, 0, 6.25], - "to": [2.75, 0.25, 6.5], - "faces": { - "north": {"uv": [2.75, 6.25, 2.5, 6.5], "texture": "#0"}, - "east": {"uv": [2.5, 6.25, 2.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 6.25, 2.75, 6.5], "texture": "#0"}, - "west": {"uv": [2.5, 6.25, 2.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.25, 2.75, 6.5], "texture": "#0"}, - "down": {"uv": [2.5, 6.5, 2.75, 6.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 6.25, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 6.25, + 2.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 2.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.5, + 2.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_297", - "from": [2.75, 0, 6.25], - "to": [3, 0.25, 6.5], - "faces": { - "north": {"uv": [3, 6.25, 2.75, 6.5], "texture": "#0"}, - "east": {"uv": [2.75, 6.25, 3, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 6.25, 3, 6.5], "texture": "#0"}, - "west": {"uv": [2.75, 6.25, 3, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6.25, 3, 6.5], "texture": "#0"}, - "down": {"uv": [2.75, 6.5, 3, 6.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 6.25, + 2.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6.25, + 3, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6.5, + 3, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_298", - "from": [3, 0, 6.25], - "to": [3.25, 0.25, 6.5], - "faces": { - "north": {"uv": [3.25, 6.25, 3, 6.5], "texture": "#0"}, - "east": {"uv": [3, 6.25, 3.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6.25, 3.25, 6.5], "texture": "#0"}, - "west": {"uv": [3, 6.25, 3.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.25, 3.25, 6.5], "texture": "#0"}, - "down": {"uv": [3, 6.5, 3.25, 6.25], "texture": "#0"} + "from": [ + 3, + 0, + 6.25 + ], + "to": [ + 3.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.25, + 3.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.25, + 3.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.25, + 3.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.25, + 3.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.5, + 3.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_299", - "from": [3.25, 0, 6.25], - "to": [3.5, 0.25, 6.5], - "faces": { - "north": {"uv": [3.5, 6.25, 3.25, 6.5], "texture": "#0"}, - "east": {"uv": [3.25, 6.25, 3.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6.25, 3.5, 6.5], "texture": "#0"}, - "west": {"uv": [3.25, 6.25, 3.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.25, 3.5, 6.5], "texture": "#0"}, - "down": {"uv": [3.25, 6.5, 3.5, 6.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 6.25 + ], + "to": [ + 3.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 6.25, + 3.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.25, + 3.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_300", - "from": [3.5, 0, 6.25], - "to": [3.75, 0.25, 6.5], - "faces": { - "north": {"uv": [3.75, 6.25, 3.5, 6.5], "texture": "#0"}, - "east": {"uv": [3.5, 6.25, 3.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6.25, 3.75, 6.5], "texture": "#0"}, - "west": {"uv": [3.5, 6.25, 3.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.25, 3.75, 6.5], "texture": "#0"}, - "down": {"uv": [3.5, 6.5, 3.75, 6.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 6.25 + ], + "to": [ + 3.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 6.25, + 3.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.25, + 3.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.25, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.25, + 3.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.25, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_301", - "from": [3.75, 0, 6.25], - "to": [4, 0.25, 6.5], - "faces": { - "north": {"uv": [4, 6.25, 3.75, 6.5], "texture": "#0"}, - "east": {"uv": [3.75, 6.25, 4, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6.25, 4, 6.5], "texture": "#0"}, - "west": {"uv": [3.75, 6.25, 4, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.25, 4, 6.5], "texture": "#0"}, - "down": {"uv": [3.75, 6.5, 4, 6.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 6.25 + ], + "to": [ + 4, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 6.25, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6.25, + 4, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.25, + 4, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.25, + 4, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.25, + 4, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6.5, + 4, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_302", - "from": [4, 0, 6.25], - "to": [4.25, 0.25, 6.5], - "faces": { - "north": {"uv": [4.25, 6.25, 4, 6.5], "texture": "#0"}, - "east": {"uv": [4, 6.25, 4.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 6.25, 4.25, 6.5], "texture": "#0"}, - "west": {"uv": [4, 6.25, 4.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6.25, 4.25, 6.5], "texture": "#0"}, - "down": {"uv": [4, 6.5, 4.25, 6.25], "texture": "#0"} + "from": [ + 4, + 0, + 6.25 + ], + "to": [ + 4.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 6.25, + 4, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.25, + 4.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6.25, + 4.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6.25, + 4.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.25, + 4.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6.5, + 4.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_303", - "from": [4.25, 0, 6.25], - "to": [4.5, 0.25, 6.5], - "faces": { - "north": {"uv": [4.5, 6.25, 4.25, 6.5], "texture": "#0"}, - "east": {"uv": [4.25, 6.25, 4.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 6.25, 4.5, 6.5], "texture": "#0"}, - "west": {"uv": [4.25, 6.25, 4.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6.25, 4.5, 6.5], "texture": "#0"}, - "down": {"uv": [4.25, 6.5, 4.5, 6.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 6.25 + ], + "to": [ + 4.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 6.25, + 4.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6.25, + 4.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 6.25, + 4.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.25, + 4.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6.25, + 4.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 6.5, + 4.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_304", - "from": [4.5, 0, 6.25], - "to": [4.75, 0.25, 6.5], - "faces": { - "north": {"uv": [4.75, 6.25, 4.5, 6.5], "texture": "#0"}, - "east": {"uv": [4.5, 6.25, 4.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 6.25, 4.75, 6.5], "texture": "#0"}, - "west": {"uv": [4.5, 6.25, 4.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6.25, 4.75, 6.5], "texture": "#0"}, - "down": {"uv": [4.5, 6.5, 4.75, 6.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 6.25 + ], + "to": [ + 4.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 6.25, + 4.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.25, + 4.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6.25, + 4.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6.25, + 4.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6.25, + 4.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6.5, + 4.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_305", - "from": [4.75, 0, 6.25], - "to": [5, 0.25, 6.5], - "faces": { - "north": {"uv": [5, 6.25, 4.75, 6.5], "texture": "#0"}, - "east": {"uv": [4.75, 6.25, 5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 6.25, 5, 6.5], "texture": "#0"}, - "west": {"uv": [4.75, 6.25, 5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.25, 5, 6.5], "texture": "#0"}, - "down": {"uv": [4.75, 6.5, 5, 6.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 6.25 + ], + "to": [ + 5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 6.25, + 4.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.25, + 5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.25, + 5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 6.5, + 5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_306", - "from": [5, 0, 6.25], - "to": [5.25, 0.25, 6.5], - "faces": { - "north": {"uv": [5.25, 6.25, 5, 6.5], "texture": "#0"}, - "east": {"uv": [5, 6.25, 5.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6.25, 5.25, 6.5], "texture": "#0"}, - "west": {"uv": [5, 6.25, 5.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.25, 5.25, 6.5], "texture": "#0"}, - "down": {"uv": [5, 6.5, 5.25, 6.25], "texture": "#0"} + "from": [ + 5, + 0, + 6.25 + ], + "to": [ + 5.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.25, + 5.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.5, + 5.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_307", - "from": [5.25, 0, 6.25], - "to": [5.5, 0.25, 6.5], - "faces": { - "north": {"uv": [5.5, 6.25, 5.25, 6.5], "texture": "#0"}, - "east": {"uv": [5.25, 6.25, 5.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 6.25, 5.5, 6.5], "texture": "#0"}, - "west": {"uv": [5.25, 6.25, 5.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 6.25, 5.5, 6.5], "texture": "#0"}, - "down": {"uv": [5.25, 6.5, 5.5, 6.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 6.25 + ], + "to": [ + 5.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_308", - "from": [5.5, 0, 6.25], - "to": [5.75, 0.25, 6.5], - "faces": { - "north": {"uv": [5.75, 6.25, 5.5, 6.5], "texture": "#0"}, - "east": {"uv": [5.5, 6.25, 5.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 6.25, 5.75, 6.5], "texture": "#0"}, - "west": {"uv": [5.5, 6.25, 5.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6.25, 5.75, 6.5], "texture": "#0"}, - "down": {"uv": [5.5, 6.5, 5.75, 6.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 6.25 + ], + "to": [ + 5.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6.5, + 5.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_309", - "from": [5.75, 0, 6.25], - "to": [6, 0.25, 6.5], - "faces": { - "north": {"uv": [6, 6.25, 5.75, 6.5], "texture": "#0"}, - "east": {"uv": [5.75, 6.25, 6, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 6.25, 6, 6.5], "texture": "#0"}, - "west": {"uv": [5.75, 6.25, 6, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 6.25, 6, 6.5], "texture": "#0"}, - "down": {"uv": [5.75, 6.5, 6, 6.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 6.25 + ], + "to": [ + 6, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 6.25, + 5.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6.25, + 6, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 6.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 6.25, + 6, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6.5, + 6, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_310", - "from": [6, 0, 6.25], - "to": [6.25, 0.25, 6.5], - "faces": { - "north": {"uv": [6.25, 6.25, 6, 6.5], "texture": "#0"}, - "east": {"uv": [6, 6.25, 6.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 6.25, 6.25, 6.5], "texture": "#0"}, - "west": {"uv": [6, 6.25, 6.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6.25, 6.25, 6.5], "texture": "#0"}, - "down": {"uv": [6, 6.5, 6.25, 6.25], "texture": "#0"} + "from": [ + 6, + 0, + 6.25 + ], + "to": [ + 6.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 6.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.25, + 6.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6.25, + 6.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.25, + 6.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.25, + 6.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6.5, + 6.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_311", - "from": [6.25, 0, 6.25], - "to": [6.5, 0.25, 6.5], - "faces": { - "north": {"uv": [6.5, 6.25, 6.25, 6.5], "texture": "#0"}, - "east": {"uv": [6.25, 6.25, 6.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 6.25, 6.5, 6.5], "texture": "#0"}, - "west": {"uv": [6.25, 6.25, 6.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6.25, 6.5, 6.5], "texture": "#0"}, - "down": {"uv": [6.25, 6.5, 6.5, 6.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 6.25, + 6.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 6.5, + 6.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_312", - "from": [6.5, 0, 6.25], - "to": [6.75, 0.25, 6.5], - "faces": { - "north": {"uv": [6.75, 6.25, 6.5, 6.5], "texture": "#0"}, - "east": {"uv": [6.5, 6.25, 6.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 6.25, 6.75, 6.5], "texture": "#0"}, - "west": {"uv": [6.5, 6.25, 6.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 6.25, 6.75, 6.5], "texture": "#0"}, - "down": {"uv": [6.5, 6.5, 6.75, 6.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 6.25 + ], + "to": [ + 6.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 6.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.25, + 6.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.25, + 6.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6.25, + 6.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6.25, + 6.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_313", - "from": [6.75, 0, 6.25], - "to": [7, 0.25, 6.5], - "faces": { - "north": {"uv": [7, 6.25, 6.75, 6.5], "texture": "#0"}, - "east": {"uv": [6.75, 6.25, 7, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 6.25, 7, 6.5], "texture": "#0"}, - "west": {"uv": [6.75, 6.25, 7, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 6.25, 7, 6.5], "texture": "#0"}, - "down": {"uv": [6.75, 6.5, 7, 6.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 6.25 + ], + "to": [ + 7, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 6.25, + 6.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6.25, + 7, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6.25, + 7, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6.25, + 7, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 6.25, + 7, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6.5, + 7, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_314", - "from": [7, 0, 6.25], - "to": [7.25, 0.25, 6.5], - "faces": { - "north": {"uv": [7.25, 6.25, 7, 6.5], "texture": "#0"}, - "east": {"uv": [7, 6.25, 7.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 6.25, 7.25, 6.5], "texture": "#0"}, - "west": {"uv": [7, 6.25, 7.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 6.25, 7.25, 6.5], "texture": "#0"}, - "down": {"uv": [7, 6.5, 7.25, 6.25], "texture": "#0"} + "from": [ + 7, + 0, + 6.25 + ], + "to": [ + 7.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 6.25, + 7, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.25, + 7.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6.25, + 7.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.25, + 7.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6.25, + 7.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.5, + 7.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_315", - "from": [7.25, 0, 6.25], - "to": [7.5, 0.25, 6.5], - "faces": { - "north": {"uv": [7.5, 6.25, 7.25, 6.5], "texture": "#0"}, - "east": {"uv": [7.25, 6.25, 7.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 6.25, 7.5, 6.5], "texture": "#0"}, - "west": {"uv": [7.25, 6.25, 7.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 6.25, 7.5, 6.5], "texture": "#0"}, - "down": {"uv": [7.25, 6.5, 7.5, 6.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 6.25 + ], + "to": [ + 7.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 6.25, + 7.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.25, + 7.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 6.25, + 7.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 6.25, + 7.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 6.25, + 7.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6.5, + 7.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_316", - "from": [7.5, 0, 6.25], - "to": [7.75, 0.25, 6.5], - "faces": { - "north": {"uv": [7.75, 6.25, 7.5, 6.5], "texture": "#0"}, - "east": {"uv": [7.5, 6.25, 7.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 6.25, 7.75, 6.5], "texture": "#0"}, - "west": {"uv": [7.5, 6.25, 7.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 6.25, 7.75, 6.5], "texture": "#0"}, - "down": {"uv": [7.5, 6.5, 7.75, 6.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 6.25 + ], + "to": [ + 7.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 6.25, + 7.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.25, + 7.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6.25, + 7.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.25, + 7.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6.25, + 7.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_317", - "from": [7.75, 0, 6.25], - "to": [8, 0.25, 6.5], - "faces": { - "north": {"uv": [8, 6.25, 7.75, 6.5], "texture": "#0"}, - "east": {"uv": [7.75, 6.25, 8, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 6.25, 8, 6.5], "texture": "#0"}, - "west": {"uv": [7.75, 6.25, 8, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.25, 8, 6.5], "texture": "#0"}, - "down": {"uv": [7.75, 6.5, 8, 6.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 6.25 + ], + "to": [ + 8, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 6.25, + 7.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6.5, + 8, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_318", - "from": [8, 0, 6.25], - "to": [8.25, 0.25, 6.5], - "faces": { - "north": {"uv": [8.25, 6.25, 8, 6.5], "texture": "#0"}, - "east": {"uv": [8, 6.25, 8.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 6.25, 8.25, 6.5], "texture": "#0"}, - "west": {"uv": [8, 6.25, 8.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 6.25, 8.25, 6.5], "texture": "#0"}, - "down": {"uv": [8, 6.5, 8.25, 6.25], "texture": "#0"} + "from": [ + 8, + 0, + 6.25 + ], + "to": [ + 8.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.25, + 8.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.25, + 8.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 6.25, + 8.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6.5, + 8.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_319", - "from": [8.25, 0, 6.25], - "to": [8.5, 0.25, 6.5], - "faces": { - "north": {"uv": [8.5, 6.25, 8.25, 6.5], "texture": "#0"}, - "east": {"uv": [8.25, 6.25, 8.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 6.25, 8.5, 6.5], "texture": "#0"}, - "west": {"uv": [8.25, 6.25, 8.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6.25, 8.5, 6.5], "texture": "#0"}, - "down": {"uv": [8.25, 6.5, 8.5, 6.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 6.25 + ], + "to": [ + 8.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 6.25, + 8.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 6.25, + 8.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6.25, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6.25, + 8.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6.25, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 6.5, + 8.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_320", - "from": [8.5, 0, 6.25], - "to": [8.75, 0.25, 6.5], - "faces": { - "north": {"uv": [8.75, 6.25, 8.5, 6.5], "texture": "#0"}, - "east": {"uv": [8.5, 6.25, 8.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 6.25, 8.75, 6.5], "texture": "#0"}, - "west": {"uv": [8.5, 6.25, 8.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 6.25, 8.75, 6.5], "texture": "#0"}, - "down": {"uv": [8.5, 6.5, 8.75, 6.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 6.25 + ], + "to": [ + 8.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 6.25, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.25, + 8.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.25, + 8.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.25, + 8.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6.25, + 8.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6.5, + 8.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_321", - "from": [8.75, 0, 6.25], - "to": [9, 0.25, 6.5], - "faces": { - "north": {"uv": [9, 6.25, 8.75, 6.5], "texture": "#0"}, - "east": {"uv": [8.75, 6.25, 9, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 6.25, 9, 6.5], "texture": "#0"}, - "west": {"uv": [8.75, 6.25, 9, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 6.25, 9, 6.5], "texture": "#0"}, - "down": {"uv": [8.75, 6.5, 9, 6.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 6.25 + ], + "to": [ + 9, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 6.25, + 8.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6.25, + 9, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 6.25, + 9, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 6.25, + 9, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 6.25, + 9, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 6.5, + 9, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_322", - "from": [9, 0, 6.25], - "to": [9.25, 0.25, 6.5], - "faces": { - "north": {"uv": [9.25, 6.25, 9, 6.5], "texture": "#0"}, - "east": {"uv": [9, 6.25, 9.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6.25, 9.25, 6.5], "texture": "#0"}, - "west": {"uv": [9, 6.25, 9.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6.25, 9.25, 6.5], "texture": "#0"}, - "down": {"uv": [9, 6.5, 9.25, 6.25], "texture": "#0"} + "from": [ + 9, + 0, + 6.25 + ], + "to": [ + 9.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 6.25, + 9, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.25, + 9.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6.5, + 9.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_323", - "from": [9.25, 0, 6.25], - "to": [9.5, 0.25, 6.5], - "faces": { - "north": {"uv": [9.5, 6.25, 9.25, 6.5], "texture": "#0"}, - "east": {"uv": [9.25, 6.25, 9.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 6.25, 9.5, 6.5], "texture": "#0"}, - "west": {"uv": [9.25, 6.25, 9.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.25, 9.5, 6.5], "texture": "#0"}, - "down": {"uv": [9.25, 6.5, 9.5, 6.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 6.25 + ], + "to": [ + 9.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 6.25, + 9.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.25, + 9.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 6.25, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.25, + 9.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.25, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 6.5, + 9.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_324", - "from": [9.5, 0, 6.25], - "to": [9.75, 0.25, 6.5], - "faces": { - "north": {"uv": [9.75, 6.25, 9.5, 6.5], "texture": "#0"}, - "east": {"uv": [9.5, 6.25, 9.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6.25, 9.75, 6.5], "texture": "#0"}, - "west": {"uv": [9.5, 6.25, 9.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.25, 9.75, 6.5], "texture": "#0"}, - "down": {"uv": [9.5, 6.5, 9.75, 6.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 6.25 + ], + "to": [ + 9.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 6.25, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_325", - "from": [9.75, 0, 6.25], - "to": [10, 0.25, 6.5], - "faces": { - "north": {"uv": [10, 6.25, 9.75, 6.5], "texture": "#0"}, - "east": {"uv": [9.75, 6.25, 10, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 6.25, 10, 6.5], "texture": "#0"}, - "west": {"uv": [9.75, 6.25, 10, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.25, 10, 6.5], "texture": "#0"}, - "down": {"uv": [9.75, 6.5, 10, 6.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 6.25 + ], + "to": [ + 10, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.25, + 10, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 6.25, + 10, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.25, + 10, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.25, + 10, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 6.5, + 10, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_326", - "from": [10, 0, 6.25], - "to": [10.25, 0.25, 6.5], - "faces": { - "north": {"uv": [10.25, 6.25, 10, 6.5], "texture": "#0"}, - "east": {"uv": [10, 6.25, 10.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 6.25, 10.25, 6.5], "texture": "#0"}, - "west": {"uv": [10, 6.25, 10.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.25, 10.25, 6.5], "texture": "#0"}, - "down": {"uv": [10, 6.5, 10.25, 6.25], "texture": "#0"} + "from": [ + 10, + 0, + 6.25 + ], + "to": [ + 10.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 6.25, + 10, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.25, + 10.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6.25, + 10.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.25, + 10.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.25, + 10.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6.5, + 10.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_327", - "from": [10.25, 0, 6.25], - "to": [10.5, 0.25, 6.5], - "faces": { - "north": {"uv": [10.5, 6.25, 10.25, 6.5], "texture": "#0"}, - "east": {"uv": [10.25, 6.25, 10.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 6.25, 10.5, 6.5], "texture": "#0"}, - "west": {"uv": [10.25, 6.25, 10.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6.25, 10.5, 6.5], "texture": "#0"}, - "down": {"uv": [10.25, 6.5, 10.5, 6.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 6.25 + ], + "to": [ + 10.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 6.25, + 10.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.25, + 10.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.25, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6.25, + 10.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6.25, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 6.5, + 10.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_328", - "from": [10.5, 0, 6.25], - "to": [10.75, 0.25, 6.5], - "faces": { - "north": {"uv": [10.75, 6.25, 10.5, 6.5], "texture": "#0"}, - "east": {"uv": [10.5, 6.25, 10.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 6.25, 10.75, 6.5], "texture": "#0"}, - "west": {"uv": [10.5, 6.25, 10.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.25, 10.75, 6.5], "texture": "#0"}, - "down": {"uv": [10.5, 6.5, 10.75, 6.25], "texture": "#0"} + "from": [ + 10.5, + 0, + 6.25 + ], + "to": [ + 10.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 6.25, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6.5, + 10.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_329", - "from": [10.75, 0, 6.25], - "to": [11, 0.25, 6.5], - "faces": { - "north": {"uv": [11, 6.25, 10.75, 6.5], "texture": "#0"}, - "east": {"uv": [10.75, 6.25, 11, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.25, 11, 6.5], "texture": "#0"}, - "west": {"uv": [10.75, 6.25, 11, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.25, 11, 6.5], "texture": "#0"}, - "down": {"uv": [10.75, 6.5, 11, 6.25], "texture": "#0"} + "from": [ + 10.75, + 0, + 6.25 + ], + "to": [ + 11, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 11, + 6.25, + 10.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6.5, + 11, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_330", - "from": [11, 0, 6.25], - "to": [11.25, 0.25, 6.5], - "faces": { - "north": {"uv": [11.25, 6.25, 11, 6.5], "texture": "#0"}, - "east": {"uv": [11, 6.25, 11.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6.25, 11.25, 6.5], "texture": "#0"}, - "west": {"uv": [11, 6.25, 11.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.25, 11.25, 6.5], "texture": "#0"}, - "down": {"uv": [11, 6.5, 11.25, 6.25], "texture": "#0"} + "from": [ + 11, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.5, + 11.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_331", - "from": [11.25, 0, 6.25], - "to": [11.5, 0.25, 6.5], - "faces": { - "north": {"uv": [11.5, 6.25, 11.25, 6.5], "texture": "#0"}, - "east": {"uv": [11.25, 6.25, 11.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 6.25, 11.5, 6.5], "texture": "#0"}, - "west": {"uv": [11.25, 6.25, 11.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.25, 11.5, 6.5], "texture": "#0"}, - "down": {"uv": [11.25, 6.5, 11.5, 6.25], "texture": "#0"} + "from": [ + 11.25, + 0, + 6.25 + ], + "to": [ + 11.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 6.25, + 11.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.25, + 11.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 6.25, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.25, + 11.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.25, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_332", - "from": [11.5, 0, 6.25], - "to": [11.75, 0.25, 6.5], - "faces": { - "north": {"uv": [11.75, 6.25, 11.5, 6.5], "texture": "#0"}, - "east": {"uv": [11.5, 6.25, 11.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6.25, 11.75, 6.5], "texture": "#0"}, - "west": {"uv": [11.5, 6.25, 11.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.25, 11.75, 6.5], "texture": "#0"}, - "down": {"uv": [11.5, 6.5, 11.75, 6.25], "texture": "#0"} + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 11.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 6.25, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 11.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6.5, + 11.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_333", - "from": [11.75, 0, 6.25], - "to": [12, 0.25, 6.5], - "faces": { - "north": {"uv": [12, 6.25, 11.75, 6.5], "texture": "#0"}, - "east": {"uv": [11.75, 6.25, 12, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#0"}, - "west": {"uv": [11.75, 6.25, 12, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 6.25, 12, 6.5], "texture": "#0"}, - "down": {"uv": [11.75, 6.5, 12, 6.25], "texture": "#0"} + "from": [ + 11.75, + 0, + 6.25 + ], + "to": [ + 12, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 12, + 6.25, + 11.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.25, + 12, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 6.25, + 12, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 6.25, + 12, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 6.25, + 12, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 6.5, + 12, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_334", - "from": [14.25, 0, 6.25], - "to": [14.5, 0.25, 6.5], - "faces": { - "north": {"uv": [14.5, 6.25, 14.25, 6.5], "texture": "#0"}, - "east": {"uv": [14.25, 6.25, 14.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.25, 14.5, 6.5], "texture": "#0"}, - "west": {"uv": [14.25, 6.25, 14.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.25, 14.5, 6.5], "texture": "#0"}, - "down": {"uv": [14.25, 6.5, 14.5, 6.25], "texture": "#0"} + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 6.25, + 14.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_335", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 6.5], - "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#0"}, - "east": {"uv": [14.5, 6.25, 14.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 6.25, 14.75, 6.5], "texture": "#0"}, - "west": {"uv": [14.5, 6.25, 14.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.25, 14.75, 6.5], "texture": "#0"}, - "down": {"uv": [14.5, 6.5, 14.75, 6.25], "texture": "#0"} + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_336", - "from": [14.75, 0, 6.25], - "to": [15, 0.25, 6.5], - "faces": { - "north": {"uv": [15, 6.25, 14.75, 6.5], "texture": "#0"}, - "east": {"uv": [14.75, 6.25, 15, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 6.25, 15, 6.5], "texture": "#0"}, - "west": {"uv": [14.75, 6.25, 15, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6.25, 15, 6.5], "texture": "#0"}, - "down": {"uv": [14.75, 6.5, 15, 6.25], "texture": "#0"} + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 15, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 6.25, + 15, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 6.5, + 15, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_337", - "from": [15, 0, 6.25], - "to": [15.25, 0.25, 6.5], - "faces": { - "north": {"uv": [15.25, 6.25, 15, 6.5], "texture": "#0"}, - "east": {"uv": [15, 6.25, 15.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.25, 15.25, 6.5], "texture": "#0"}, - "west": {"uv": [15, 6.25, 15.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.25, 15.25, 6.5], "texture": "#0"}, - "down": {"uv": [15, 6.5, 15.25, 6.25], "texture": "#0"} + "from": [ + 15, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 6.25, + 15, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.5, + 15.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_338", - "from": [15.25, 0, 6.25], - "to": [15.5, 0.25, 6.5], - "faces": { - "north": {"uv": [15.5, 6.25, 15.25, 6.5], "texture": "#0"}, - "east": {"uv": [15.25, 6.25, 15.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 6.25, 15.5, 6.5], "texture": "#0"}, - "west": {"uv": [15.25, 6.25, 15.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.25, 15.5, 6.5], "texture": "#0"}, - "down": {"uv": [15.25, 6.5, 15.5, 6.25], "texture": "#0"} + "from": [ + 15.25, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 6.5 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_339", - "from": [1.25, 0, 6.5], - "to": [1.5, 0.25, 6.75], - "faces": { - "north": {"uv": [1.5, 6.5, 1.25, 6.75], "texture": "#0"}, - "east": {"uv": [1.25, 6.5, 1.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 6.5, 1.5, 6.75], "texture": "#0"}, - "west": {"uv": [1.25, 6.5, 1.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.5, 1.5, 6.75], "texture": "#0"}, - "down": {"uv": [1.25, 6.75, 1.5, 6.5], "texture": "#0"} + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 6.5, + 1.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 6.75, + 1.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_340", - "from": [1.5, 0, 6.5], - "to": [1.75, 0.25, 6.75], - "faces": { - "north": {"uv": [1.75, 6.5, 1.5, 6.75], "texture": "#0"}, - "east": {"uv": [1.5, 6.5, 1.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6.5, 1.75, 6.75], "texture": "#0"}, - "west": {"uv": [1.5, 6.5, 1.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.5, 1.75, 6.75], "texture": "#0"}, - "down": {"uv": [1.5, 6.75, 1.75, 6.5], "texture": "#0"} + "from": [ + 1.5, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 1.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.75, + 1.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_341", - "from": [1.75, 0, 6.5], - "to": [2, 0.25, 6.75], - "faces": { - "north": {"uv": [2, 6.5, 1.75, 6.75], "texture": "#0"}, - "east": {"uv": [1.75, 6.5, 2, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 6.5, 2, 6.75], "texture": "#0"}, - "west": {"uv": [1.75, 6.5, 2, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.5, 2, 6.75], "texture": "#0"}, - "down": {"uv": [1.75, 6.75, 2, 6.5], "texture": "#0"} + "from": [ + 1.75, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 2, + 6.5, + 1.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 6.75, + 2, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_342", - "from": [2, 0, 6.5], - "to": [2.25, 0.25, 6.75], - "faces": { - "north": {"uv": [2.25, 6.5, 2, 6.75], "texture": "#0"}, - "east": {"uv": [2, 6.5, 2.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 6.5, 2.25, 6.75], "texture": "#0"}, - "west": {"uv": [2, 6.5, 2.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.5, 2.25, 6.75], "texture": "#0"}, - "down": {"uv": [2, 6.75, 2.25, 6.5], "texture": "#0"} + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 2.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.5, + 2.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6.5, + 2.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.75, + 2.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_343", - "from": [2.25, 0, 6.5], - "to": [2.5, 0.25, 6.75], - "faces": { - "north": {"uv": [2.5, 6.5, 2.25, 6.75], "texture": "#0"}, - "east": {"uv": [2.25, 6.5, 2.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 6.5, 2.5, 6.75], "texture": "#0"}, - "west": {"uv": [2.25, 6.5, 2.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.5, 2.5, 6.75], "texture": "#0"}, - "down": {"uv": [2.25, 6.75, 2.5, 6.5], "texture": "#0"} + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 6.5, + 2.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6.75, + 2.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_344", - "from": [2.5, 0, 6.5], - "to": [2.75, 0.25, 6.75], - "faces": { - "north": {"uv": [2.75, 6.5, 2.5, 6.75], "texture": "#0"}, - "east": {"uv": [2.5, 6.5, 2.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 6.5, 2.75, 6.75], "texture": "#0"}, - "west": {"uv": [2.5, 6.5, 2.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.5, 2.75, 6.75], "texture": "#0"}, - "down": {"uv": [2.5, 6.75, 2.75, 6.5], "texture": "#0"} + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 2.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.5, + 2.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 6.5, + 2.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 2.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.75, + 2.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_345", - "from": [2.75, 0, 6.5], - "to": [3, 0.25, 6.75], - "faces": { - "north": {"uv": [3, 6.5, 2.75, 6.75], "texture": "#0"}, - "east": {"uv": [2.75, 6.5, 3, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 6.5, 3, 6.75], "texture": "#0"}, - "west": {"uv": [2.75, 6.5, 3, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6.5, 3, 6.75], "texture": "#0"}, - "down": {"uv": [2.75, 6.75, 3, 6.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 6.5 + ], + "to": [ + 3, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 6.5, + 2.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.5, + 3, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 6.5, + 3, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6.5, + 3, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6.5, + 3, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6.75, + 3, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_346", - "from": [3, 0, 6.5], - "to": [3.25, 0.25, 6.75], - "faces": { - "north": {"uv": [3.25, 6.5, 3, 6.75], "texture": "#0"}, - "east": {"uv": [3, 6.5, 3.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6.5, 3.25, 6.75], "texture": "#0"}, - "west": {"uv": [3, 6.5, 3.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.5, 3.25, 6.75], "texture": "#0"}, - "down": {"uv": [3, 6.75, 3.25, 6.5], "texture": "#0"} + "from": [ + 3, + 0, + 6.5 + ], + "to": [ + 3.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 6.5, + 3, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.5, + 3.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.75, + 3.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_347", - "from": [3.25, 0, 6.5], - "to": [3.5, 0.25, 6.75], - "faces": { - "north": {"uv": [3.5, 6.5, 3.25, 6.75], "texture": "#0"}, - "east": {"uv": [3.25, 6.5, 3.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6.5, 3.5, 6.75], "texture": "#0"}, - "west": {"uv": [3.25, 6.5, 3.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.5, 3.5, 6.75], "texture": "#0"}, - "down": {"uv": [3.25, 6.75, 3.5, 6.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 3.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6.75, + 3.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_348", - "from": [3.5, 0, 6.5], - "to": [3.75, 0.25, 6.75], - "faces": { - "north": {"uv": [3.75, 6.5, 3.5, 6.75], "texture": "#0"}, - "east": {"uv": [3.5, 6.5, 3.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6.5, 3.75, 6.75], "texture": "#0"}, - "west": {"uv": [3.5, 6.5, 3.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.5, 3.75, 6.75], "texture": "#0"}, - "down": {"uv": [3.5, 6.75, 3.75, 6.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 6.5 + ], + "to": [ + 3.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6.75, + 3.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_349", - "from": [3.75, 0, 6.5], - "to": [4, 0.25, 6.75], - "faces": { - "north": {"uv": [4, 6.5, 3.75, 6.75], "texture": "#0"}, - "east": {"uv": [3.75, 6.5, 4, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6.5, 4, 6.75], "texture": "#0"}, - "west": {"uv": [3.75, 6.5, 4, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.5, 4, 6.75], "texture": "#0"}, - "down": {"uv": [3.75, 6.75, 4, 6.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 6.5 + ], + "to": [ + 4, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 6.5, + 3.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6.5, + 4, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.5, + 4, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 4, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 4, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6.75, + 4, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_350", - "from": [4, 0, 6.5], - "to": [4.25, 0.25, 6.75], - "faces": { - "north": {"uv": [4.25, 6.5, 4, 6.75], "texture": "#0"}, - "east": {"uv": [4, 6.5, 4.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 6.5, 4.25, 6.75], "texture": "#0"}, - "west": {"uv": [4, 6.5, 4.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6.5, 4.25, 6.75], "texture": "#0"}, - "down": {"uv": [4, 6.75, 4.25, 6.5], "texture": "#0"} + "from": [ + 4, + 0, + 6.5 + ], + "to": [ + 4.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 6.5, + 4, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.5, + 4.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6.5, + 4.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6.5, + 4.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.5, + 4.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6.75, + 4.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_351", - "from": [4.25, 0, 6.5], - "to": [4.5, 0.25, 6.75], - "faces": { - "north": {"uv": [4.5, 6.5, 4.25, 6.75], "texture": "#0"}, - "east": {"uv": [4.25, 6.5, 4.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 6.5, 4.5, 6.75], "texture": "#0"}, - "west": {"uv": [4.25, 6.5, 4.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6.5, 4.5, 6.75], "texture": "#0"}, - "down": {"uv": [4.25, 6.75, 4.5, 6.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 6.5 + ], + "to": [ + 4.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 6.5, + 4.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6.5, + 4.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 6.5, + 4.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.5, + 4.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6.5, + 4.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 6.75, + 4.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_352", - "from": [4.5, 0, 6.5], - "to": [4.75, 0.25, 6.75], - "faces": { - "north": {"uv": [4.75, 6.5, 4.5, 6.75], "texture": "#0"}, - "east": {"uv": [4.5, 6.5, 4.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 6.5, 4.75, 6.75], "texture": "#0"}, - "west": {"uv": [4.5, 6.5, 4.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6.5, 4.75, 6.75], "texture": "#0"}, - "down": {"uv": [4.5, 6.75, 4.75, 6.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 6.5 + ], + "to": [ + 4.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 6.5, + 4.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 4.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6.5, + 4.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6.5, + 4.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6.5, + 4.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6.75, + 4.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_353", - "from": [4.75, 0, 6.5], - "to": [5, 0.25, 6.75], - "faces": { - "north": {"uv": [5, 6.5, 4.75, 6.75], "texture": "#0"}, - "east": {"uv": [4.75, 6.5, 5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 6.5, 5, 6.75], "texture": "#0"}, - "west": {"uv": [4.75, 6.5, 5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.5, 5, 6.75], "texture": "#0"}, - "down": {"uv": [4.75, 6.75, 5, 6.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 6.5, + 4.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.5, + 5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 6.75, + 5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_354", - "from": [5, 0, 6.5], - "to": [5.25, 0.25, 6.75], - "faces": { - "north": {"uv": [5.25, 6.5, 5, 6.75], "texture": "#0"}, - "east": {"uv": [5, 6.5, 5.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6.5, 5.25, 6.75], "texture": "#0"}, - "west": {"uv": [5, 6.5, 5.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.5, 5.25, 6.75], "texture": "#0"}, - "down": {"uv": [5, 6.75, 5.25, 6.5], "texture": "#0"} + "from": [ + 5, + 0, + 6.5 + ], + "to": [ + 5.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6.5, + 5.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.5, + 5.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.5, + 5.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.75, + 5.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_355", - "from": [5.25, 0, 6.5], - "to": [5.5, 0.25, 6.75], - "faces": { - "north": {"uv": [5.5, 6.5, 5.25, 6.75], "texture": "#0"}, - "east": {"uv": [5.25, 6.5, 5.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 6.5, 5.5, 6.75], "texture": "#0"}, - "west": {"uv": [5.25, 6.5, 5.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 6.5, 5.5, 6.75], "texture": "#0"}, - "down": {"uv": [5.25, 6.75, 5.5, 6.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 6.5 + ], + "to": [ + 5.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 6.5, + 5.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 6.75, + 5.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_356", - "from": [5.5, 0, 6.5], - "to": [5.75, 0.25, 6.75], - "faces": { - "north": {"uv": [5.75, 6.5, 5.5, 6.75], "texture": "#0"}, - "east": {"uv": [5.5, 6.5, 5.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 6.5, 5.75, 6.75], "texture": "#0"}, - "west": {"uv": [5.5, 6.5, 5.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6.5, 5.75, 6.75], "texture": "#0"}, - "down": {"uv": [5.5, 6.75, 5.75, 6.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 6.5 + ], + "to": [ + 5.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6.5, + 5.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 6.5, + 5.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6.5, + 5.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6.5, + 5.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6.75, + 5.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_357", - "from": [5.75, 0, 6.5], - "to": [6, 0.25, 6.75], - "faces": { - "north": {"uv": [6, 6.5, 5.75, 6.75], "texture": "#0"}, - "east": {"uv": [5.75, 6.5, 6, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 6.5, 6, 6.75], "texture": "#0"}, - "west": {"uv": [5.75, 6.5, 6, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 6.5, 6, 6.75], "texture": "#0"}, - "down": {"uv": [5.75, 6.75, 6, 6.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 6.5 + ], + "to": [ + 6, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 6.5, + 5.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6.5, + 6, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 6.5, + 6, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 6.5, + 6, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.5, + 6, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6.75, + 6, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_358", - "from": [6, 0, 6.5], - "to": [6.25, 0.25, 6.75], - "faces": { - "north": {"uv": [6.25, 6.5, 6, 6.75], "texture": "#0"}, - "east": {"uv": [6, 6.5, 6.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 6.5, 6.25, 6.75], "texture": "#0"}, - "west": {"uv": [6, 6.5, 6.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6.5, 6.25, 6.75], "texture": "#0"}, - "down": {"uv": [6, 6.75, 6.25, 6.5], "texture": "#0"} + "from": [ + 6, + 0, + 6.5 + ], + "to": [ + 6.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 6.5, + 6, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.5, + 6.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6.5, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.5, + 6.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.5, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6.75, + 6.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_359", - "from": [6.25, 0, 6.5], - "to": [6.5, 0.25, 6.75], - "faces": { - "north": {"uv": [6.5, 6.5, 6.25, 6.75], "texture": "#0"}, - "east": {"uv": [6.25, 6.5, 6.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 6.5, 6.5, 6.75], "texture": "#0"}, - "west": {"uv": [6.25, 6.5, 6.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6.5, 6.5, 6.75], "texture": "#0"}, - "down": {"uv": [6.25, 6.75, 6.5, 6.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 6.5 + ], + "to": [ + 6.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 6.5, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.5, + 6.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 6.5, + 6.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.5, + 6.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6.5, + 6.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 6.75, + 6.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_360", - "from": [6.5, 0, 6.5], - "to": [6.75, 0.25, 6.75], - "faces": { - "north": {"uv": [6.75, 6.5, 6.5, 6.75], "texture": "#0"}, - "east": {"uv": [6.5, 6.5, 6.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 6.5, 6.75, 6.75], "texture": "#0"}, - "west": {"uv": [6.5, 6.5, 6.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 6.5, 6.75, 6.75], "texture": "#0"}, - "down": {"uv": [6.5, 6.75, 6.75, 6.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 6.5 + ], + "to": [ + 6.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 6.5, + 6.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 6.75, + 6.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_361", - "from": [6.75, 0, 6.5], - "to": [7, 0.25, 6.75], - "faces": { - "north": {"uv": [7, 6.5, 6.75, 6.75], "texture": "#0"}, - "east": {"uv": [6.75, 6.5, 7, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 6.5, 7, 6.75], "texture": "#0"}, - "west": {"uv": [6.75, 6.5, 7, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 6.5, 7, 6.75], "texture": "#0"}, - "down": {"uv": [6.75, 6.75, 7, 6.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 6.5 + ], + "to": [ + 7, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 6.5, + 6.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6.5, + 7, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6.5, + 7, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6.5, + 7, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 6.5, + 7, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6.75, + 7, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_362", - "from": [7, 0, 6.5], - "to": [7.25, 0.25, 6.75], - "faces": { - "north": {"uv": [7.25, 6.5, 7, 6.75], "texture": "#0"}, - "east": {"uv": [7, 6.5, 7.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 6.5, 7.25, 6.75], "texture": "#0"}, - "west": {"uv": [7, 6.5, 7.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 6.5, 7.25, 6.75], "texture": "#0"}, - "down": {"uv": [7, 6.75, 7.25, 6.5], "texture": "#0"} + "from": [ + 7, + 0, + 6.5 + ], + "to": [ + 7.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 6.5, + 7, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.5, + 7.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6.5, + 7.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.5, + 7.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6.5, + 7.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.75, + 7.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_363", - "from": [7.25, 0, 6.5], - "to": [7.5, 0.25, 6.75], - "faces": { - "north": {"uv": [7.5, 6.5, 7.25, 6.75], "texture": "#0"}, - "east": {"uv": [7.25, 6.5, 7.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 6.5, 7.5, 6.75], "texture": "#0"}, - "west": {"uv": [7.25, 6.5, 7.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 6.5, 7.5, 6.75], "texture": "#0"}, - "down": {"uv": [7.25, 6.75, 7.5, 6.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 6.5 + ], + "to": [ + 7.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 6.5, + 7.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.5, + 7.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 6.5, + 7.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 6.5, + 7.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 6.5, + 7.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6.75, + 7.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_364", - "from": [7.5, 0, 6.5], - "to": [7.75, 0.25, 6.75], - "faces": { - "north": {"uv": [7.75, 6.5, 7.5, 6.75], "texture": "#0"}, - "east": {"uv": [7.5, 6.5, 7.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 6.5, 7.75, 6.75], "texture": "#0"}, - "west": {"uv": [7.5, 6.5, 7.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 6.5, 7.75, 6.75], "texture": "#0"}, - "down": {"uv": [7.5, 6.75, 7.75, 6.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 6.5 + ], + "to": [ + 7.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 6.5, + 7.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 6.75, + 7.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_365", - "from": [7.75, 0, 6.5], - "to": [8, 0.25, 6.75], - "faces": { - "north": {"uv": [8, 6.5, 7.75, 6.75], "texture": "#0"}, - "east": {"uv": [7.75, 6.5, 8, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 6.5, 8, 6.75], "texture": "#0"}, - "west": {"uv": [7.75, 6.5, 8, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.5, 8, 6.75], "texture": "#0"}, - "down": {"uv": [7.75, 6.75, 8, 6.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 6.5 + ], + "to": [ + 8, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6.5, + 8, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 6.5, + 8, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.5, + 8, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.5, + 8, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6.75, + 8, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_366", - "from": [8, 0, 6.5], - "to": [8.25, 0.25, 6.75], - "faces": { - "north": {"uv": [8.25, 6.5, 8, 6.75], "texture": "#0"}, - "east": {"uv": [8, 6.5, 8.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 6.5, 8.25, 6.75], "texture": "#0"}, - "west": {"uv": [8, 6.5, 8.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 6.5, 8.25, 6.75], "texture": "#0"}, - "down": {"uv": [8, 6.75, 8.25, 6.5], "texture": "#0"} + "from": [ + 8, + 0, + 6.5 + ], + "to": [ + 8.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 6.5, + 8, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.5, + 8.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.5, + 8.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 8.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 6.5, + 8.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6.75, + 8.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_367", - "from": [8.25, 0, 6.5], - "to": [8.5, 0.25, 6.75], - "faces": { - "north": {"uv": [8.5, 6.5, 8.25, 6.75], "texture": "#0"}, - "east": {"uv": [8.25, 6.5, 8.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 6.5, 8.5, 6.75], "texture": "#0"}, - "west": {"uv": [8.25, 6.5, 8.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6.5, 8.5, 6.75], "texture": "#0"}, - "down": {"uv": [8.25, 6.75, 8.5, 6.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 8.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 6.5, + 8.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 6.5, + 8.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6.5, + 8.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 8.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 6.75, + 8.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_368", - "from": [8.5, 0, 6.5], - "to": [8.75, 0.25, 6.75], - "faces": { - "north": {"uv": [8.75, 6.5, 8.5, 6.75], "texture": "#0"}, - "east": {"uv": [8.5, 6.5, 8.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 6.5, 8.75, 6.75], "texture": "#0"}, - "west": {"uv": [8.5, 6.5, 8.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 6.5, 8.75, 6.75], "texture": "#0"}, - "down": {"uv": [8.5, 6.75, 8.75, 6.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 6.5 + ], + "to": [ + 8.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 6.5, + 8.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.5, + 8.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 8.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6.5, + 8.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6.75, + 8.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_369", - "from": [8.75, 0, 6.5], - "to": [9, 0.25, 6.75], - "faces": { - "north": {"uv": [9, 6.5, 8.75, 6.75], "texture": "#0"}, - "east": {"uv": [8.75, 6.5, 9, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 6.5, 9, 6.75], "texture": "#0"}, - "west": {"uv": [8.75, 6.5, 9, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 6.5, 9, 6.75], "texture": "#0"}, - "down": {"uv": [8.75, 6.75, 9, 6.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 6.5 + ], + "to": [ + 9, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 6.5, + 8.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6.5, + 9, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 6.5, + 9, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 6.75, + 9, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_370", - "from": [9, 0, 6.5], - "to": [9.25, 0.25, 6.75], - "faces": { - "north": {"uv": [9.25, 6.5, 9, 6.75], "texture": "#0"}, - "east": {"uv": [9, 6.5, 9.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6.5, 9.25, 6.75], "texture": "#0"}, - "west": {"uv": [9, 6.5, 9.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6.5, 9.25, 6.75], "texture": "#0"}, - "down": {"uv": [9, 6.75, 9.25, 6.5], "texture": "#0"} + "from": [ + 9, + 0, + 6.5 + ], + "to": [ + 9.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6.5, + 9.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.5, + 9.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6.75, + 9.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_371", - "from": [9.25, 0, 6.5], - "to": [9.5, 0.25, 6.75], - "faces": { - "north": {"uv": [9.5, 6.5, 9.25, 6.75], "texture": "#0"}, - "east": {"uv": [9.25, 6.5, 9.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 6.5, 9.5, 6.75], "texture": "#0"}, - "west": {"uv": [9.25, 6.5, 9.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.5, 9.5, 6.75], "texture": "#0"}, - "down": {"uv": [9.25, 6.75, 9.5, 6.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 6.5 + ], + "to": [ + 9.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 6.5, + 9.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.5, + 9.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 6.5, + 9.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.5, + 9.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.5, + 9.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 6.75, + 9.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_372", - "from": [9.5, 0, 6.5], - "to": [9.75, 0.25, 6.75], - "faces": { - "north": {"uv": [9.75, 6.5, 9.5, 6.75], "texture": "#0"}, - "east": {"uv": [9.5, 6.5, 9.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6.5, 9.75, 6.75], "texture": "#0"}, - "west": {"uv": [9.5, 6.5, 9.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.5, 9.75, 6.75], "texture": "#0"}, - "down": {"uv": [9.5, 6.75, 9.75, 6.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 6.5 + ], + "to": [ + 9.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 6.5, + 9.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.75, + 9.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_373", - "from": [9.75, 0, 6.5], - "to": [10, 0.25, 6.75], - "faces": { - "north": {"uv": [10, 6.5, 9.75, 6.75], "texture": "#0"}, - "east": {"uv": [9.75, 6.5, 10, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 6.5, 10, 6.75], "texture": "#0"}, - "west": {"uv": [9.75, 6.5, 10, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.5, 10, 6.75], "texture": "#0"}, - "down": {"uv": [9.75, 6.75, 10, 6.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 6.5 + ], + "to": [ + 10, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.5, + 10, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.5, + 10, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 6.75, + 10, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_374", - "from": [10, 0, 6.5], - "to": [10.25, 0.25, 6.75], - "faces": { - "north": {"uv": [10.25, 6.5, 10, 6.75], "texture": "#0"}, - "east": {"uv": [10, 6.5, 10.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 6.5, 10.25, 6.75], "texture": "#0"}, - "west": {"uv": [10, 6.5, 10.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.5, 10.25, 6.75], "texture": "#0"}, - "down": {"uv": [10, 6.75, 10.25, 6.5], "texture": "#0"} + "from": [ + 10, + 0, + 6.5 + ], + "to": [ + 10.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6.75, + 10.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_375", - "from": [10.25, 0, 6.5], - "to": [10.5, 0.25, 6.75], - "faces": { - "north": {"uv": [10.5, 6.5, 10.25, 6.75], "texture": "#0"}, - "east": {"uv": [10.25, 6.5, 10.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 6.5, 10.5, 6.75], "texture": "#0"}, - "west": {"uv": [10.25, 6.5, 10.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6.5, 10.5, 6.75], "texture": "#0"}, - "down": {"uv": [10.25, 6.75, 10.5, 6.5], "texture": "#0"} + "from": [ + 10.25, + 0, + 6.5 + ], + "to": [ + 10.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.5, + 10.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.5, + 10.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6.5, + 10.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6.5, + 10.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 6.75, + 10.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_376", - "from": [10.5, 0, 6.5], - "to": [10.75, 0.25, 6.75], - "faces": { - "north": {"uv": [10.75, 6.5, 10.5, 6.75], "texture": "#0"}, - "east": {"uv": [10.5, 6.5, 10.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 6.5, 10.75, 6.75], "texture": "#0"}, - "west": {"uv": [10.5, 6.5, 10.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.5, 10.75, 6.75], "texture": "#0"}, - "down": {"uv": [10.5, 6.75, 10.75, 6.5], "texture": "#0"} + "from": [ + 10.5, + 0, + 6.5 + ], + "to": [ + 10.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 6.5, + 10.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.5, + 10.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 6.5, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.5, + 10.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.5, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6.75, + 10.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_377", - "from": [10.75, 0, 6.5], - "to": [11, 0.25, 6.75], - "faces": { - "north": {"uv": [11, 6.5, 10.75, 6.75], "texture": "#0"}, - "east": {"uv": [10.75, 6.5, 11, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#0"}, - "west": {"uv": [10.75, 6.5, 11, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.5, 11, 6.75], "texture": "#0"}, - "down": {"uv": [10.75, 6.75, 11, 6.5], "texture": "#0"} + "from": [ + 10.75, + 0, + 6.5 + ], + "to": [ + 11, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 11, + 6.5, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 6.75, + 11, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_378", - "from": [11, 0, 6.5], - "to": [11.25, 0.25, 6.75], - "faces": { - "north": {"uv": [11.25, 6.5, 11, 6.75], "texture": "#0"}, - "east": {"uv": [11, 6.5, 11.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6.5, 11.25, 6.75], "texture": "#0"}, - "west": {"uv": [11, 6.5, 11.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.5, 11.25, 6.75], "texture": "#0"}, - "down": {"uv": [11, 6.75, 11.25, 6.5], "texture": "#0"} + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.75, + 11.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_379", - "from": [11.25, 0, 6.5], - "to": [11.5, 0.25, 6.75], - "faces": { - "north": {"uv": [11.5, 6.5, 11.25, 6.75], "texture": "#0"}, - "east": {"uv": [11.25, 6.5, 11.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 6.5, 11.5, 6.75], "texture": "#0"}, - "west": {"uv": [11.25, 6.5, 11.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.5, 11.5, 6.75], "texture": "#0"}, - "down": {"uv": [11.25, 6.75, 11.5, 6.5], "texture": "#0"} + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 11.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 6.5, + 11.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 6.75, + 11.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_380", - "from": [11.5, 0, 6.5], - "to": [11.75, 0.25, 6.75], - "faces": { - "north": {"uv": [11.75, 6.5, 11.5, 6.75], "texture": "#0"}, - "east": {"uv": [11.5, 6.5, 11.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6.5, 11.75, 6.75], "texture": "#0"}, - "west": {"uv": [11.5, 6.5, 11.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.5, 11.75, 6.75], "texture": "#0"}, - "down": {"uv": [11.5, 6.75, 11.75, 6.5], "texture": "#0"} + "from": [ + 11.5, + 0, + 6.5 + ], + "to": [ + 11.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.5, + 11.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6.5, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.5, + 11.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.5, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6.75, + 11.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_381", - "from": [11.75, 0, 6.5], - "to": [12, 0.25, 6.75], - "faces": { - "north": {"uv": [12, 6.5, 11.75, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 6.5, 12, 6.75], "texture": "#0"}, - "west": {"uv": [11.75, 6.5, 12, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 6.5, 12, 6.75], "texture": "#0"}, - "down": {"uv": [11.75, 6.75, 12, 6.5], "texture": "#0"} + "from": [ + 11.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 12, + 6.5, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 6.5, + 12, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 6.75, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_382", - "from": [12, 0, 6.5], - "to": [12.25, 0.25, 6.75], - "faces": { - "north": {"uv": [12.25, 6.5, 12, 6.75], "texture": "#0"}, - "east": {"uv": [12, 6.5, 12.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 6.5, 12.25, 6.75], "texture": "#0"}, - "west": {"uv": [12, 6.5, 12.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.5, 12.25, 6.75], "texture": "#0"}, - "down": {"uv": [12, 6.75, 12.25, 6.5], "texture": "#0"} + "from": [ + 12, + 0, + 6.5 + ], + "to": [ + 12.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.5, + 12.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 6.5, + 12.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.5, + 12.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.5, + 12.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 6.75, + 12.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_383", - "from": [13.75, 0, 6.5], - "to": [14, 0.25, 6.75], - "faces": { - "north": {"uv": [14, 6.5, 13.75, 6.75], "texture": "#0"}, - "east": {"uv": [13.75, 6.5, 14, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 6.5, 14, 6.75], "texture": "#0"}, - "west": {"uv": [13.75, 6.5, 14, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.5, 14, 6.75], "texture": "#0"}, - "down": {"uv": [13.75, 6.75, 14, 6.5], "texture": "#0"} + "from": [ + 13.75, + 0, + 6.5 + ], + "to": [ + 14, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 14, + 6.5, + 13.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.5, + 14, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.5, + 14, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 6.75, + 14, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_384", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 6.75], - "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#0"}, - "east": {"uv": [14, 6.5, 14.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 6.5, 14.25, 6.75], "texture": "#0"}, - "west": {"uv": [14, 6.5, 14.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.5, 14.25, 6.75], "texture": "#0"}, - "down": {"uv": [14, 6.75, 14.25, 6.5], "texture": "#0"} + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 6.75, + 14.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_385", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 6.75], - "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#0"}, - "east": {"uv": [14.25, 6.5, 14.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.5, 14.5, 6.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.5, 14.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.5, 14.5, 6.75], "texture": "#0"}, - "down": {"uv": [14.25, 6.75, 14.5, 6.5], "texture": "#0"} + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.75, + 14.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_386", - "from": [14.5, 0, 6.5], - "to": [14.75, 0.25, 6.75], - "faces": { - "north": {"uv": [14.75, 6.5, 14.5, 6.75], "texture": "#0"}, - "east": {"uv": [14.5, 6.5, 14.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 6.5, 14.75, 6.75], "texture": "#0"}, - "west": {"uv": [14.5, 6.5, 14.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.5, 14.75, 6.75], "texture": "#0"}, - "down": {"uv": [14.5, 6.75, 14.75, 6.5], "texture": "#0"} + "from": [ + 14.5, + 0, + 6.5 + ], + "to": [ + 14.75, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 6.75, + 14.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_387", - "from": [14.75, 0, 6.5], - "to": [15, 0.25, 6.75], - "faces": { - "north": {"uv": [15, 6.5, 14.75, 6.75], "texture": "#0"}, - "east": {"uv": [14.75, 6.5, 15, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 6.5, 15, 6.75], "texture": "#0"}, - "west": {"uv": [14.75, 6.5, 15, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6.5, 15, 6.75], "texture": "#0"}, - "down": {"uv": [14.75, 6.75, 15, 6.5], "texture": "#0"} + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 15, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 6.75, + 15, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_388", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 6.75], - "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#0"}, - "east": {"uv": [15, 6.5, 15.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#0"}, - "west": {"uv": [15, 6.5, 15.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#0"}, - "down": {"uv": [15, 6.75, 15.25, 6.5], "texture": "#0"} + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.75, + 15.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_389", - "from": [15.25, 0, 6.5], - "to": [15.5, 0.25, 6.75], - "faces": { - "north": {"uv": [15.5, 6.5, 15.25, 6.75], "texture": "#0"}, - "east": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#0"}, - "west": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#0"}, - "down": {"uv": [15.25, 6.75, 15.5, 6.5], "texture": "#0"} + "from": [ + 15.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 6.75 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 6.75, + 15.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_390", - "from": [1, 0, 6.75], - "to": [1.25, 0.25, 7], - "faces": { - "north": {"uv": [1.25, 6.75, 1, 7], "texture": "#0"}, - "east": {"uv": [1, 6.75, 1.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 6.75, 1.25, 7], "texture": "#0"}, - "west": {"uv": [1, 6.75, 1.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 6.75, 1.25, 7], "texture": "#0"}, - "down": {"uv": [1, 7, 1.25, 6.75], "texture": "#0"} + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 6.75, + 1, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 6.75, + 1.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7, + 1.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_391", - "from": [1.25, 0, 6.75], - "to": [1.5, 0.25, 7], - "faces": { - "north": {"uv": [1.5, 6.75, 1.25, 7], "texture": "#0"}, - "east": {"uv": [1.25, 6.75, 1.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 6.75, 1.5, 7], "texture": "#0"}, - "west": {"uv": [1.25, 6.75, 1.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.75, 1.5, 7], "texture": "#0"}, - "down": {"uv": [1.25, 7, 1.5, 6.75], "texture": "#0"} + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 1.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 6.75, + 1.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.75, + 1.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7, + 1.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_392", - "from": [1.5, 0, 6.75], - "to": [1.75, 0.25, 7], - "faces": { - "north": {"uv": [1.75, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.5, 6.75, 1.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6.75, 1.75, 7], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 1.75, 7], "texture": "#0"}, - "down": {"uv": [1.5, 7, 1.75, 6.75], "texture": "#0"} + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 1.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7, + 1.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_393", - "from": [1.75, 0, 6.75], - "to": [2, 0.25, 7], - "faces": { - "north": {"uv": [2, 6.75, 1.75, 7], "texture": "#0"}, - "east": {"uv": [1.75, 6.75, 2, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 6.75, 2, 7], "texture": "#0"}, - "west": {"uv": [1.75, 6.75, 2, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6.75, 2, 7], "texture": "#0"}, - "down": {"uv": [1.75, 7, 2, 6.75], "texture": "#0"} + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 2, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 6.75, + 2, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7, + 2, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_394", - "from": [2, 0, 6.75], - "to": [2.25, 0.25, 7], - "faces": { - "north": {"uv": [2.25, 6.75, 2, 7], "texture": "#0"}, - "east": {"uv": [2, 6.75, 2.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 6.75, 2.25, 7], "texture": "#0"}, - "west": {"uv": [2, 6.75, 2.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.75, 2.25, 7], "texture": "#0"}, - "down": {"uv": [2, 7, 2.25, 6.75], "texture": "#0"} + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 2.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 6.75, + 2, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.75, + 2.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 6.75, + 2.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.75, + 2.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 7, + 2.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_395", - "from": [2.25, 0, 6.75], - "to": [2.5, 0.25, 7], - "faces": { - "north": {"uv": [2.5, 6.75, 2.25, 7], "texture": "#0"}, - "east": {"uv": [2.25, 6.75, 2.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 6.75, 2.5, 7], "texture": "#0"}, - "west": {"uv": [2.25, 6.75, 2.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.75, 2.5, 7], "texture": "#0"}, - "down": {"uv": [2.25, 7, 2.5, 6.75], "texture": "#0"} + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 6.75, + 2.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7, + 2.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_396", - "from": [2.5, 0, 6.75], - "to": [2.75, 0.25, 7], - "faces": { - "north": {"uv": [2.75, 6.75, 2.5, 7], "texture": "#0"}, - "east": {"uv": [2.5, 6.75, 2.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 6.75, 2.75, 7], "texture": "#0"}, - "west": {"uv": [2.5, 6.75, 2.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.75, 2.75, 7], "texture": "#0"}, - "down": {"uv": [2.5, 7, 2.75, 6.75], "texture": "#0"} + "from": [ + 2.5, + 0, + 6.75 + ], + "to": [ + 2.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 6.75, + 2.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.75, + 2.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 6.75, + 2.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.75, + 2.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.75, + 2.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 7, + 2.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_397", - "from": [2.75, 0, 6.75], - "to": [3, 0.25, 7], - "faces": { - "north": {"uv": [3, 6.75, 2.75, 7], "texture": "#0"}, - "east": {"uv": [2.75, 6.75, 3, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 6.75, 3, 7], "texture": "#0"}, - "west": {"uv": [2.75, 6.75, 3, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6.75, 3, 7], "texture": "#0"}, - "down": {"uv": [2.75, 7, 3, 6.75], "texture": "#0"} + "from": [ + 2.75, + 0, + 6.75 + ], + "to": [ + 3, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 3, + 6.75, + 2.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.75, + 3, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 6.75, + 3, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6.75, + 3, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6.75, + 3, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 7, + 3, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_398", - "from": [3, 0, 6.75], - "to": [3.25, 0.25, 7], - "faces": { - "north": {"uv": [3.25, 6.75, 3, 7], "texture": "#0"}, - "east": {"uv": [3, 6.75, 3.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6.75, 3.25, 7], "texture": "#0"}, - "west": {"uv": [3, 6.75, 3.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.75, 3.25, 7], "texture": "#0"}, - "down": {"uv": [3, 7, 3.25, 6.75], "texture": "#0"} + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 3.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 6.75, + 3, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.75, + 3.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.75, + 3.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.75, + 3.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7, + 3.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_399", - "from": [3.25, 0, 6.75], - "to": [3.5, 0.25, 7], - "faces": { - "north": {"uv": [3.5, 6.75, 3.25, 7], "texture": "#0"}, - "east": {"uv": [3.25, 6.75, 3.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6.75, 3.5, 7], "texture": "#0"}, - "west": {"uv": [3.25, 6.75, 3.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.75, 3.5, 7], "texture": "#0"}, - "down": {"uv": [3.25, 7, 3.5, 6.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 6.75 + ], + "to": [ + 3.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 6.75, + 3.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.75, + 3.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.75, + 3.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.75, + 3.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.75, + 3.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 7, + 3.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_400", - "from": [3.5, 0, 6.75], - "to": [3.75, 0.25, 7], - "faces": { - "north": {"uv": [3.75, 6.75, 3.5, 7], "texture": "#0"}, - "east": {"uv": [3.5, 6.75, 3.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 6.75, 3.75, 7], "texture": "#0"}, - "west": {"uv": [3.5, 6.75, 3.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.75, 3.75, 7], "texture": "#0"}, - "down": {"uv": [3.5, 7, 3.75, 6.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 6.75 + ], + "to": [ + 3.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 6.75, + 3.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7, + 3.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_401", - "from": [3.75, 0, 6.75], - "to": [4, 0.25, 7], - "faces": { - "north": {"uv": [4, 6.75, 3.75, 7], "texture": "#0"}, - "east": {"uv": [3.75, 6.75, 4, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 6.75, 4, 7], "texture": "#0"}, - "west": {"uv": [3.75, 6.75, 4, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.75, 4, 7], "texture": "#0"}, - "down": {"uv": [3.75, 7, 4, 6.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 6.75 + ], + "to": [ + 4, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 4, + 6.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7, + 4, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_402", - "from": [4, 0, 6.75], - "to": [4.25, 0.25, 7], - "faces": { - "north": {"uv": [4.25, 6.75, 4, 7], "texture": "#0"}, - "east": {"uv": [4, 6.75, 4.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 6.75, 4.25, 7], "texture": "#0"}, - "west": {"uv": [4, 6.75, 4.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6.75, 4.25, 7], "texture": "#0"}, - "down": {"uv": [4, 7, 4.25, 6.75], "texture": "#0"} + "from": [ + 4, + 0, + 6.75 + ], + "to": [ + 4.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 6.75, + 4, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.75, + 4.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6.75, + 4.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6.75, + 4.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.75, + 4.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7, + 4.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_403", - "from": [4.25, 0, 6.75], - "to": [4.5, 0.25, 7], - "faces": { - "north": {"uv": [4.5, 6.75, 4.25, 7], "texture": "#0"}, - "east": {"uv": [4.25, 6.75, 4.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 6.75, 4.5, 7], "texture": "#0"}, - "west": {"uv": [4.25, 6.75, 4.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 6.75, 4.5, 7], "texture": "#0"}, - "down": {"uv": [4.25, 7, 4.5, 6.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 6.75 + ], + "to": [ + 4.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 6.75, + 4.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6.75, + 4.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 6.75, + 4.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.75, + 4.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 6.75, + 4.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7, + 4.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_404", - "from": [4.5, 0, 6.75], - "to": [4.75, 0.25, 7], - "faces": { - "north": {"uv": [4.75, 6.75, 4.5, 7], "texture": "#0"}, - "east": {"uv": [4.5, 6.75, 4.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 6.75, 4.75, 7], "texture": "#0"}, - "west": {"uv": [4.5, 6.75, 4.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6.75, 4.75, 7], "texture": "#0"}, - "down": {"uv": [4.5, 7, 4.75, 6.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 6.75 + ], + "to": [ + 4.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 6.75, + 4.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.75, + 4.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6.75, + 4.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6.75, + 4.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6.75, + 4.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7, + 4.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_405", - "from": [4.75, 0, 6.75], - "to": [5, 0.25, 7], - "faces": { - "north": {"uv": [5, 6.75, 4.75, 7], "texture": "#0"}, - "east": {"uv": [4.75, 6.75, 5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 6.75, 5, 7], "texture": "#0"}, - "west": {"uv": [4.75, 6.75, 5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.75, 5, 7], "texture": "#0"}, - "down": {"uv": [4.75, 7, 5, 6.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 6.75 + ], + "to": [ + 5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 5, + 6.75, + 4.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.75, + 5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6.75, + 5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.75, + 5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.75, + 5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7, + 5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_406", - "from": [5, 0, 6.75], - "to": [5.25, 0.25, 7], - "faces": { - "north": {"uv": [5.25, 6.75, 5, 7], "texture": "#0"}, - "east": {"uv": [5, 6.75, 5.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6.75, 5.25, 7], "texture": "#0"}, - "west": {"uv": [5, 6.75, 5.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.75, 5.25, 7], "texture": "#0"}, - "down": {"uv": [5, 7, 5.25, 6.75], "texture": "#0"} + "from": [ + 5, + 0, + 6.75 + ], + "to": [ + 5.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 6.75, + 5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.75, + 5.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6.75, + 5.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.75, + 5.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.75, + 5.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7, + 5.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_407", - "from": [5.25, 0, 6.75], - "to": [5.5, 0.25, 7], - "faces": { - "north": {"uv": [5.5, 6.75, 5.25, 7], "texture": "#0"}, - "east": {"uv": [5.25, 6.75, 5.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 6.75, 5.5, 7], "texture": "#0"}, - "west": {"uv": [5.25, 6.75, 5.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 6.75, 5.5, 7], "texture": "#0"}, - "down": {"uv": [5.25, 7, 5.5, 6.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 6.75 + ], + "to": [ + 5.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 6.75, + 5.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.75, + 5.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 6.75, + 5.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 6.75, + 5.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6.75, + 5.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 7, + 5.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_408", - "from": [5.5, 0, 6.75], - "to": [5.75, 0.25, 7], - "faces": { - "north": {"uv": [5.75, 6.75, 5.5, 7], "texture": "#0"}, - "east": {"uv": [5.5, 6.75, 5.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 6.75, 5.75, 7], "texture": "#0"}, - "west": {"uv": [5.5, 6.75, 5.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6.75, 5.75, 7], "texture": "#0"}, - "down": {"uv": [5.5, 7, 5.75, 6.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 6.75 + ], + "to": [ + 5.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 6.75, + 5.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6.75, + 5.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7, + 5.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_409", - "from": [5.75, 0, 6.75], - "to": [6, 0.25, 7], - "faces": { - "north": {"uv": [6, 6.75, 5.75, 7], "texture": "#0"}, - "east": {"uv": [5.75, 6.75, 6, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 6.75, 6, 7], "texture": "#0"}, - "west": {"uv": [5.75, 6.75, 6, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 6.75, 6, 7], "texture": "#0"}, - "down": {"uv": [5.75, 7, 6, 6.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 6.75 + ], + "to": [ + 6, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 6, + 6.75, + 5.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6.75, + 6, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 6.75, + 6, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 6.75, + 6, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.75, + 6, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 7, + 6, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_410", - "from": [6, 0, 6.75], - "to": [6.25, 0.25, 7], - "faces": { - "north": {"uv": [6.25, 6.75, 6, 7], "texture": "#0"}, - "east": {"uv": [6, 6.75, 6.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 6.75, 6.25, 7], "texture": "#0"}, - "west": {"uv": [6, 6.75, 6.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6.75, 6.25, 7], "texture": "#0"}, - "down": {"uv": [6, 7, 6.25, 6.75], "texture": "#0"} + "from": [ + 6, + 0, + 6.75 + ], + "to": [ + 6.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 6.75, + 6, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.75, + 6.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6.75, + 6.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.75, + 6.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.75, + 6.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7, + 6.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_411", - "from": [6.25, 0, 6.75], - "to": [6.5, 0.25, 7], - "faces": { - "north": {"uv": [6.5, 6.75, 6.25, 7], "texture": "#0"}, - "east": {"uv": [6.25, 6.75, 6.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 6.75, 6.5, 7], "texture": "#0"}, - "west": {"uv": [6.25, 6.75, 6.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6.75, 6.5, 7], "texture": "#0"}, - "down": {"uv": [6.25, 7, 6.5, 6.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 6.75 + ], + "to": [ + 6.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 6.75, + 6.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.75, + 6.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 6.75, + 6.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.75, + 6.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6.75, + 6.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 7, + 6.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_412", - "from": [6.5, 0, 6.75], - "to": [6.75, 0.25, 7], - "faces": { - "north": {"uv": [6.75, 6.75, 6.5, 7], "texture": "#0"}, - "east": {"uv": [6.5, 6.75, 6.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 6.75, 6.75, 7], "texture": "#0"}, - "west": {"uv": [6.5, 6.75, 6.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 6.75, 6.75, 7], "texture": "#0"}, - "down": {"uv": [6.5, 7, 6.75, 6.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 6.75 + ], + "to": [ + 6.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 6.75, + 6.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.75, + 6.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.75, + 6.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6.75, + 6.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6.75, + 6.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7, + 6.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_413", - "from": [6.75, 0, 6.75], - "to": [7, 0.25, 7], - "faces": { - "north": {"uv": [7, 6.75, 6.75, 7], "texture": "#0"}, - "east": {"uv": [6.75, 6.75, 7, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 6.75, 7, 7], "texture": "#0"}, - "west": {"uv": [6.75, 6.75, 7, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 6.75, 7, 7], "texture": "#0"}, - "down": {"uv": [6.75, 7, 7, 6.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 6.75 + ], + "to": [ + 7, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 7, + 6.75, + 6.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6.75, + 7, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6.75, + 7, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6.75, + 7, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 6.75, + 7, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 7, + 7, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_414", - "from": [7, 0, 6.75], - "to": [7.25, 0.25, 7], - "faces": { - "north": {"uv": [7.25, 6.75, 7, 7], "texture": "#0"}, - "east": {"uv": [7, 6.75, 7.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 6.75, 7.25, 7], "texture": "#0"}, - "west": {"uv": [7, 6.75, 7.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 6.75, 7.25, 7], "texture": "#0"}, - "down": {"uv": [7, 7, 7.25, 6.75], "texture": "#0"} + "from": [ + 7, + 0, + 6.75 + ], + "to": [ + 7.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 6.75, + 7, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.75, + 7.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6.75, + 7.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.75, + 7.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6.75, + 7.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7, + 7.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_415", - "from": [7.25, 0, 6.75], - "to": [7.5, 0.25, 7], - "faces": { - "north": {"uv": [7.5, 6.75, 7.25, 7], "texture": "#0"}, - "east": {"uv": [7.25, 6.75, 7.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 6.75, 7.5, 7], "texture": "#0"}, - "west": {"uv": [7.25, 6.75, 7.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 6.75, 7.5, 7], "texture": "#0"}, - "down": {"uv": [7.25, 7, 7.5, 6.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 6.75 + ], + "to": [ + 7.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 6.75, + 7.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.75, + 7.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 6.75, + 7.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 6.75, + 7.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 6.75, + 7.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 7, + 7.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_416", - "from": [7.5, 0, 6.75], - "to": [7.75, 0.25, 7], - "faces": { - "north": {"uv": [7.75, 6.75, 7.5, 7], "texture": "#0"}, - "east": {"uv": [7.5, 6.75, 7.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 6.75, 7.75, 7], "texture": "#0"}, - "west": {"uv": [7.5, 6.75, 7.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 6.75, 7.75, 7], "texture": "#0"}, - "down": {"uv": [7.5, 7, 7.75, 6.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 6.75 + ], + "to": [ + 7.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 6.75, + 7.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.75, + 7.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.75, + 7.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7, + 7.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_417", - "from": [7.75, 0, 6.75], - "to": [8, 0.25, 7], - "faces": { - "north": {"uv": [8, 6.75, 7.75, 7], "texture": "#0"}, - "east": {"uv": [7.75, 6.75, 8, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 6.75, 8, 7], "texture": "#0"}, - "west": {"uv": [7.75, 6.75, 8, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 6.75, 8, 7], "texture": "#0"}, - "down": {"uv": [7.75, 7, 8, 6.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 6.75 + ], + "to": [ + 8, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 8, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6.75, + 8, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 6.75, + 8, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 6.75, + 8, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 6.75, + 8, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7, + 8, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_418", - "from": [8, 0, 6.75], - "to": [8.25, 0.25, 7], - "faces": { - "north": {"uv": [8.25, 6.75, 8, 7], "texture": "#0"}, - "east": {"uv": [8, 6.75, 8.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 6.75, 8.25, 7], "texture": "#0"}, - "west": {"uv": [8, 6.75, 8.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 6.75, 8.25, 7], "texture": "#0"}, - "down": {"uv": [8, 7, 8.25, 6.75], "texture": "#0"} + "from": [ + 8, + 0, + 6.75 + ], + "to": [ + 8.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 6.75, + 8, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.75, + 8.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.75, + 8.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.75, + 8.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 6.75, + 8.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7, + 8.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_419", - "from": [8.25, 0, 6.75], - "to": [8.5, 0.25, 7], - "faces": { - "north": {"uv": [8.5, 6.75, 8.25, 7], "texture": "#0"}, - "east": {"uv": [8.25, 6.75, 8.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 6.75, 8.5, 7], "texture": "#0"}, - "west": {"uv": [8.25, 6.75, 8.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 6.75, 8.5, 7], "texture": "#0"}, - "down": {"uv": [8.25, 7, 8.5, 6.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 6.75 + ], + "to": [ + 8.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 6.75, + 8.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 6.75, + 8.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6.75, + 8.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 6.75, + 8.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 6.75, + 8.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7, + 8.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_420", - "from": [8.5, 0, 6.75], - "to": [8.75, 0.25, 7], - "faces": { - "north": {"uv": [8.75, 6.75, 8.5, 7], "texture": "#0"}, - "east": {"uv": [8.5, 6.75, 8.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 6.75, 8.75, 7], "texture": "#0"}, - "west": {"uv": [8.5, 6.75, 8.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 6.75, 8.75, 7], "texture": "#0"}, - "down": {"uv": [8.5, 7, 8.75, 6.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 6.75 + ], + "to": [ + 8.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 6.75, + 8.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.75, + 8.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.75, + 8.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.75, + 8.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6.75, + 8.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 7, + 8.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_421", - "from": [8.75, 0, 6.75], - "to": [9, 0.25, 7], - "faces": { - "north": {"uv": [9, 6.75, 8.75, 7], "texture": "#0"}, - "east": {"uv": [8.75, 6.75, 9, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 6.75, 9, 7], "texture": "#0"}, - "west": {"uv": [8.75, 6.75, 9, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 6.75, 9, 7], "texture": "#0"}, - "down": {"uv": [8.75, 7, 9, 6.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 6.75 + ], + "to": [ + 9, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 9, + 6.75, + 8.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6.75, + 9, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 6.75, + 9, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 9, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 6.75, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 7, + 9, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_422", - "from": [9, 0, 6.75], - "to": [9.25, 0.25, 7], - "faces": { - "north": {"uv": [9.25, 6.75, 9, 7], "texture": "#0"}, - "east": {"uv": [9, 6.75, 9.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6.75, 9.25, 7], "texture": "#0"}, - "west": {"uv": [9, 6.75, 9.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6.75, 9.25, 7], "texture": "#0"}, - "down": {"uv": [9, 7, 9.25, 6.75], "texture": "#0"} + "from": [ + 9, + 0, + 6.75 + ], + "to": [ + 9.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 6.75, + 9, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.75, + 9.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7, + 9.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_423", - "from": [9.25, 0, 6.75], - "to": [9.5, 0.25, 7], - "faces": { - "north": {"uv": [9.5, 6.75, 9.25, 7], "texture": "#0"}, - "east": {"uv": [9.25, 6.75, 9.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 6.75, 9.5, 7], "texture": "#0"}, - "west": {"uv": [9.25, 6.75, 9.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.75, 9.5, 7], "texture": "#0"}, - "down": {"uv": [9.25, 7, 9.5, 6.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 6.75 + ], + "to": [ + 9.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 6.75, + 9.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.75, + 9.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.75, + 9.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7, + 9.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_424", - "from": [9.5, 0, 6.75], - "to": [9.75, 0.25, 7], - "faces": { - "north": {"uv": [9.75, 6.75, 9.5, 7], "texture": "#0"}, - "east": {"uv": [9.5, 6.75, 9.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6.75, 9.75, 7], "texture": "#0"}, - "west": {"uv": [9.5, 6.75, 9.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.75, 9.75, 7], "texture": "#0"}, - "down": {"uv": [9.5, 7, 9.75, 6.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 6.75 + ], + "to": [ + 9.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.75, + 9.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.75, + 9.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.75, + 9.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.75, + 9.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7, + 9.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_425", - "from": [9.75, 0, 6.75], - "to": [10, 0.25, 7], - "faces": { - "north": {"uv": [10, 6.75, 9.75, 7], "texture": "#0"}, - "east": {"uv": [9.75, 6.75, 10, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 6.75, 10, 7], "texture": "#0"}, - "west": {"uv": [9.75, 6.75, 10, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.75, 10, 7], "texture": "#0"}, - "down": {"uv": [9.75, 7, 10, 6.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 6.75 + ], + "to": [ + 10, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 10, + 6.75, + 9.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.75, + 10, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 6.75, + 10, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.75, + 10, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.75, + 10, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 7, + 10, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_426", - "from": [10, 0, 6.75], - "to": [10.25, 0.25, 7], - "faces": { - "north": {"uv": [10.25, 6.75, 10, 7], "texture": "#0"}, - "east": {"uv": [10, 6.75, 10.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 6.75, 10.25, 7], "texture": "#0"}, - "west": {"uv": [10, 6.75, 10.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.75, 10.25, 7], "texture": "#0"}, - "down": {"uv": [10, 7, 10.25, 6.75], "texture": "#0"} + "from": [ + 10, + 0, + 6.75 + ], + "to": [ + 10.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 6.75, + 10, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.75, + 10.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6.75, + 10.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.75, + 10.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.75, + 10.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7, + 10.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_427", - "from": [10.25, 0, 6.75], - "to": [10.5, 0.25, 7], - "faces": { - "north": {"uv": [10.5, 6.75, 10.25, 7], "texture": "#0"}, - "east": {"uv": [10.25, 6.75, 10.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 6.75, 10.5, 7], "texture": "#0"}, - "west": {"uv": [10.25, 6.75, 10.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6.75, 10.5, 7], "texture": "#0"}, - "down": {"uv": [10.25, 7, 10.5, 6.75], "texture": "#0"} + "from": [ + 10.25, + 0, + 6.75 + ], + "to": [ + 10.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 6.75, + 10.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.75, + 10.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6.75, + 10.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 7, + 10.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_428", - "from": [10.5, 0, 6.75], - "to": [10.75, 0.25, 7], - "faces": { - "north": {"uv": [10.75, 6.75, 10.5, 7], "texture": "#0"}, - "east": {"uv": [10.5, 6.75, 10.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 6.75, 10.75, 7], "texture": "#0"}, - "west": {"uv": [10.5, 6.75, 10.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 6.75, 10.75, 7], "texture": "#0"}, - "down": {"uv": [10.5, 7, 10.75, 6.75], "texture": "#0"} + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 10.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 6.75, + 10.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7, + 10.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_429", - "from": [10.75, 0, 6.75], - "to": [11, 0.25, 7], - "faces": { - "north": {"uv": [11, 6.75, 10.75, 7], "texture": "#0"}, - "east": {"uv": [10.75, 6.75, 11, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 6.75, 11, 7], "texture": "#0"}, - "west": {"uv": [10.75, 6.75, 11, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.75, 11, 7], "texture": "#0"}, - "down": {"uv": [10.75, 7, 11, 6.75], "texture": "#0"} + "from": [ + 10.75, + 0, + 6.75 + ], + "to": [ + 11, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 11, + 6.75, + 10.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7, + 11, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_430", - "from": [11, 0, 6.75], - "to": [11.25, 0.25, 7], - "faces": { - "north": {"uv": [11.25, 6.75, 11, 7], "texture": "#0"}, - "east": {"uv": [11, 6.75, 11.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6.75, 11.25, 7], "texture": "#0"}, - "west": {"uv": [11, 6.75, 11.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.75, 11.25, 7], "texture": "#0"}, - "down": {"uv": [11, 7, 11.25, 6.75], "texture": "#0"} + "from": [ + 11, + 0, + 6.75 + ], + "to": [ + 11.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.75, + 11.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.75, + 11.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 7, + 11.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_431", - "from": [11.25, 0, 6.75], - "to": [11.5, 0.25, 7], - "faces": { - "north": {"uv": [11.5, 6.75, 11.25, 7], "texture": "#0"}, - "east": {"uv": [11.25, 6.75, 11.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 6.75, 11.5, 7], "texture": "#0"}, - "west": {"uv": [11.25, 6.75, 11.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.75, 11.5, 7], "texture": "#0"}, - "down": {"uv": [11.25, 7, 11.5, 6.75], "texture": "#0"} + "from": [ + 11.25, + 0, + 6.75 + ], + "to": [ + 11.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.75, + 11.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 6.75, + 11.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.75, + 11.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.75, + 11.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 7, + 11.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_432", - "from": [11.5, 0, 6.75], - "to": [11.75, 0.25, 7], - "faces": { - "north": {"uv": [11.75, 6.75, 11.5, 7], "texture": "#0"}, - "east": {"uv": [11.5, 6.75, 11.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 6.75, 11.75, 7], "texture": "#0"}, - "west": {"uv": [11.5, 6.75, 11.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.75, 11.75, 7], "texture": "#0"}, - "down": {"uv": [11.5, 7, 11.75, 6.75], "texture": "#0"} + "from": [ + 11.5, + 0, + 6.75 + ], + "to": [ + 11.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 6.75, + 11.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.75, + 11.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 6.75, + 11.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.75, + 11.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.75, + 11.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 7, + 11.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_433", - "from": [11.75, 0, 6.75], - "to": [12, 0.25, 7], - "faces": { - "north": {"uv": [12, 6.75, 11.75, 7], "texture": "#0"}, - "east": {"uv": [11.75, 6.75, 12, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 6.75, 12, 7], "texture": "#0"}, - "west": {"uv": [11.75, 6.75, 12, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 6.75, 12, 7], "texture": "#0"}, - "down": {"uv": [11.75, 7, 12, 6.75], "texture": "#0"} + "from": [ + 11.75, + 0, + 6.75 + ], + "to": [ + 12, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 12, + 6.75, + 11.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.75, + 12, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 6.75, + 12, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 6.75, + 12, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 6.75, + 12, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7, + 12, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_434", - "from": [12, 0, 6.75], - "to": [12.25, 0.25, 7], - "faces": { - "north": {"uv": [12.25, 6.75, 12, 7], "texture": "#0"}, - "east": {"uv": [12, 6.75, 12.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 6.75, 12.25, 7], "texture": "#0"}, - "west": {"uv": [12, 6.75, 12.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.75, 12.25, 7], "texture": "#0"}, - "down": {"uv": [12, 7, 12.25, 6.75], "texture": "#0"} + "from": [ + 12, + 0, + 6.75 + ], + "to": [ + 12.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 6.75, + 12, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.75, + 12.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 6.75, + 12.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.75, + 12.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.75, + 12.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7, + 12.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_435", - "from": [12.25, 0, 6.75], - "to": [12.5, 0.25, 7], - "faces": { - "north": {"uv": [12.5, 6.75, 12.25, 7], "texture": "#0"}, - "east": {"uv": [12.25, 6.75, 12.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 6.75, 12.5, 7], "texture": "#0"}, - "west": {"uv": [12.25, 6.75, 12.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6.75, 12.5, 7], "texture": "#0"}, - "down": {"uv": [12.25, 7, 12.5, 6.75], "texture": "#0"} + "from": [ + 12.25, + 0, + 6.75 + ], + "to": [ + 12.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 6.75, + 12.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.75, + 12.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 6.75, + 12.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6.75, + 12.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6.75, + 12.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 7, + 12.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_436", - "from": [13, 0, 6.75], - "to": [13.25, 0.25, 7], - "faces": { - "north": {"uv": [13.25, 6.75, 13, 7], "texture": "#0"}, - "east": {"uv": [13, 6.75, 13.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 6.75, 13.25, 7], "texture": "#0"}, - "west": {"uv": [13, 6.75, 13.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.75, 13.25, 7], "texture": "#0"}, - "down": {"uv": [13, 7, 13.25, 6.75], "texture": "#0"} + "from": [ + 13, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 6.75, + 13, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 7, + 13.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_437", - "from": [13.25, 0, 6.75], - "to": [13.5, 0.25, 7], - "faces": { - "north": {"uv": [13.5, 6.75, 13.25, 7], "texture": "#0"}, - "east": {"uv": [13.25, 6.75, 13.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 6.75, 13.5, 7], "texture": "#0"}, - "west": {"uv": [13.25, 6.75, 13.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6.75, 13.5, 7], "texture": "#0"}, - "down": {"uv": [13.25, 7, 13.5, 6.75], "texture": "#0"} + "from": [ + 13.25, + 0, + 6.75 + ], + "to": [ + 13.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.75, + 13.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 6.75, + 13.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6.75, + 13.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6.75, + 13.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7, + 13.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_438", - "from": [13.5, 0, 6.75], - "to": [13.75, 0.25, 7], - "faces": { - "north": {"uv": [13.75, 6.75, 13.5, 7], "texture": "#0"}, - "east": {"uv": [13.5, 6.75, 13.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 6.75, 13.75, 7], "texture": "#0"}, - "west": {"uv": [13.5, 6.75, 13.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.75, 13.75, 7], "texture": "#0"}, - "down": {"uv": [13.5, 7, 13.75, 6.75], "texture": "#0"} + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 13.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 6.75, + 13.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7, + 13.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_439", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 7], - "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#0"}, - "east": {"uv": [13.75, 6.75, 14, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 6.75, 14, 7], "texture": "#0"}, - "west": {"uv": [13.75, 6.75, 14, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6.75, 14, 7], "texture": "#0"}, - "down": {"uv": [13.75, 7, 14, 6.75], "texture": "#0"} + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7, + 14, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_440", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 7], - "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 6.75, 14.25, 7], "texture": "#0"}, - "west": {"uv": [14, 6.75, 14.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.75, 14.25, 7], "texture": "#0"}, - "down": {"uv": [14, 7, 14.25, 6.75], "texture": "#0"} + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_441", - "from": [14.25, 0, 6.75], - "to": [14.5, 0.25, 7], - "faces": { - "north": {"uv": [14.5, 6.75, 14.25, 7], "texture": "#0"}, - "east": {"uv": [14.25, 6.75, 14.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.75, 14.5, 7], "texture": "#0"}, - "west": {"uv": [14.25, 6.75, 14.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.75, 14.5, 7], "texture": "#0"}, - "down": {"uv": [14.25, 7, 14.5, 6.75], "texture": "#0"} + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7, + 14.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_442", - "from": [14.5, 0, 6.75], - "to": [14.75, 0.25, 7], - "faces": { - "north": {"uv": [14.75, 6.75, 14.5, 7], "texture": "#0"}, - "east": {"uv": [14.5, 6.75, 14.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 6.75, 14.75, 7], "texture": "#0"}, - "west": {"uv": [14.5, 6.75, 14.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6.75, 14.75, 7], "texture": "#0"}, - "down": {"uv": [14.5, 7, 14.75, 6.75], "texture": "#0"} + "from": [ + 14.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6.75, + 14.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6.75, + 14.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6.75, + 14.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7, + 14.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_443", - "from": [14.75, 0, 6.75], - "to": [15, 0.25, 7], - "faces": { - "north": {"uv": [15, 6.75, 14.75, 7], "texture": "#0"}, - "east": {"uv": [14.75, 6.75, 15, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 6.75, 15, 7], "texture": "#0"}, - "west": {"uv": [14.75, 6.75, 15, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 6.75, 15, 7], "texture": "#0"}, - "down": {"uv": [14.75, 7, 15, 6.75], "texture": "#0"} + "from": [ + 14.75, + 0, + 6.75 + ], + "to": [ + 15, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 15, + 6.75, + 14.75, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.75, + 15, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 6.75, + 15, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7, + 15, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_444", - "from": [15, 0, 6.75], - "to": [15.25, 0.25, 7], - "faces": { - "north": {"uv": [15.25, 6.75, 15, 7], "texture": "#0"}, - "east": {"uv": [15, 6.75, 15.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.75, 15.25, 7], "texture": "#0"}, - "west": {"uv": [15, 6.75, 15.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.75, 15.25, 7], "texture": "#0"}, - "down": {"uv": [15, 7, 15.25, 6.75], "texture": "#0"} + "from": [ + 15, + 0, + 6.75 + ], + "to": [ + 15.25, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7, + 15.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_445", - "from": [15.25, 0, 6.75], - "to": [15.5, 0.25, 7], - "faces": { - "north": {"uv": [15.5, 6.75, 15.25, 7], "texture": "#0"}, - "east": {"uv": [15.25, 6.75, 15.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 6.75, 15.5, 7], "texture": "#0"}, - "west": {"uv": [15.25, 6.75, 15.5, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.75, 15.5, 7], "texture": "#0"}, - "down": {"uv": [15.25, 7, 15.5, 6.75], "texture": "#0"} + "from": [ + 15.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 7 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 6.75, + 15.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.75, + 15.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7, + 15.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_446", - "from": [1, 0, 7], - "to": [1.25, 0.25, 7.25], - "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#0"}, - "east": {"uv": [1, 7, 1.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7, 1.25, 7.25], "texture": "#0"}, - "west": {"uv": [1, 7, 1.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7, 1.25, 7.25], "texture": "#0"}, - "down": {"uv": [1, 7.25, 1.25, 7], "texture": "#0"} + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7.25, + 1.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_447", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 7.25], - "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7, 1.5, 7.25], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 7.25], "texture": "#0"}, - "down": {"uv": [1.25, 7.25, 1.5, 7], "texture": "#0"} + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7, + 1.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7.25, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_448", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 7.25], - "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#0"}, - "east": {"uv": [1.5, 7, 1.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7, 1.75, 7.25], "texture": "#0"}, - "west": {"uv": [1.5, 7, 1.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7, 1.75, 7.25], "texture": "#0"}, - "down": {"uv": [1.5, 7.25, 1.75, 7], "texture": "#0"} + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7.25, + 1.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_449", - "from": [1.75, 0, 7], - "to": [2, 0.25, 7.25], - "faces": { - "north": {"uv": [2, 7, 1.75, 7.25], "texture": "#0"}, - "east": {"uv": [1.75, 7, 2, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7, 2, 7.25], "texture": "#0"}, - "west": {"uv": [1.75, 7, 2, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7, 2, 7.25], "texture": "#0"}, - "down": {"uv": [1.75, 7.25, 2, 7], "texture": "#0"} + "from": [ + 1.75, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 2, + 7, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7, + 2, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7, + 2, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7, + 2, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7.25, + 2, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_450", - "from": [2, 0, 7], - "to": [2.25, 0.25, 7.25], - "faces": { - "north": {"uv": [2.25, 7, 2, 7.25], "texture": "#0"}, - "east": {"uv": [2, 7, 2.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 7, 2.25, 7.25], "texture": "#0"}, - "west": {"uv": [2, 7, 2.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7, 2.25, 7.25], "texture": "#0"}, - "down": {"uv": [2, 7.25, 2.25, 7], "texture": "#0"} + "from": [ + 2, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 7, + 2, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 7, + 2.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7, + 2.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7, + 2.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 7.25, + 2.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_451", - "from": [2.25, 0, 7], - "to": [2.5, 0.25, 7.25], - "faces": { - "north": {"uv": [2.5, 7, 2.25, 7.25], "texture": "#0"}, - "east": {"uv": [2.25, 7, 2.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7, 2.5, 7.25], "texture": "#0"}, - "west": {"uv": [2.25, 7, 2.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7, 2.5, 7.25], "texture": "#0"}, - "down": {"uv": [2.25, 7.25, 2.5, 7], "texture": "#0"} + "from": [ + 2.25, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 7, + 2.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7, + 2.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7, + 2.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7.25, + 2.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_452", - "from": [2.5, 0, 7], - "to": [2.75, 0.25, 7.25], - "faces": { - "north": {"uv": [2.75, 7, 2.5, 7.25], "texture": "#0"}, - "east": {"uv": [2.5, 7, 2.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 7, 2.75, 7.25], "texture": "#0"}, - "west": {"uv": [2.5, 7, 2.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7, 2.75, 7.25], "texture": "#0"}, - "down": {"uv": [2.5, 7.25, 2.75, 7], "texture": "#0"} + "from": [ + 2.5, + 0, + 7 + ], + "to": [ + 2.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 7, + 2.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7, + 2.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7, + 2.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_453", - "from": [2.75, 0, 7], - "to": [3, 0.25, 7.25], - "faces": { - "north": {"uv": [3, 7, 2.75, 7.25], "texture": "#0"}, - "east": {"uv": [2.75, 7, 3, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 7, 3, 7.25], "texture": "#0"}, - "west": {"uv": [2.75, 7, 3, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7, 3, 7.25], "texture": "#0"}, - "down": {"uv": [2.75, 7.25, 3, 7], "texture": "#0"} + "from": [ + 2.75, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 7, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 7, + 3, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7, + 3, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7, + 3, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 7.25, + 3, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_454", - "from": [3, 0, 7], - "to": [3.25, 0.25, 7.25], - "faces": { - "north": {"uv": [3.25, 7, 3, 7.25], "texture": "#0"}, - "east": {"uv": [3, 7, 3.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 7, 3.25, 7.25], "texture": "#0"}, - "west": {"uv": [3, 7, 3.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7, 3.25, 7.25], "texture": "#0"}, - "down": {"uv": [3, 7.25, 3.25, 7], "texture": "#0"} + "from": [ + 3, + 0, + 7 + ], + "to": [ + 3.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 7, + 3, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7, + 3.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7, + 3.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7, + 3.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7, + 3.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7.25, + 3.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_455", - "from": [3.25, 0, 7], - "to": [3.5, 0.25, 7.25], - "faces": { - "north": {"uv": [3.5, 7, 3.25, 7.25], "texture": "#0"}, - "east": {"uv": [3.25, 7, 3.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 7, 3.5, 7.25], "texture": "#0"}, - "west": {"uv": [3.25, 7, 3.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 7, 3.5, 7.25], "texture": "#0"}, - "down": {"uv": [3.25, 7.25, 3.5, 7], "texture": "#0"} + "from": [ + 3.25, + 0, + 7 + ], + "to": [ + 3.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 7, + 3.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7, + 3.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7, + 3.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7, + 3.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7, + 3.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_456", - "from": [3.5, 0, 7], - "to": [3.75, 0.25, 7.25], - "faces": { - "north": {"uv": [3.75, 7, 3.5, 7.25], "texture": "#0"}, - "east": {"uv": [3.5, 7, 3.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 7, 3.75, 7.25], "texture": "#0"}, - "west": {"uv": [3.5, 7, 3.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7, 3.75, 7.25], "texture": "#0"}, - "down": {"uv": [3.5, 7.25, 3.75, 7], "texture": "#0"} + "from": [ + 3.5, + 0, + 7 + ], + "to": [ + 3.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 7, + 3.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7, + 3.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 7, + 3.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7, + 3.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7, + 3.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_457", - "from": [3.75, 0, 7], - "to": [4, 0.25, 7.25], - "faces": { - "north": {"uv": [4, 7, 3.75, 7.25], "texture": "#0"}, - "east": {"uv": [3.75, 7, 4, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 7, 4, 7.25], "texture": "#0"}, - "west": {"uv": [3.75, 7, 4, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 7, 4, 7.25], "texture": "#0"}, - "down": {"uv": [3.75, 7.25, 4, 7], "texture": "#0"} + "from": [ + 3.75, + 0, + 7 + ], + "to": [ + 4, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 7, + 3.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7, + 4, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 7, + 4, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.25, + 4, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_458", - "from": [4, 0, 7], - "to": [4.25, 0.25, 7.25], - "faces": { - "north": {"uv": [4.25, 7, 4, 7.25], "texture": "#0"}, - "east": {"uv": [4, 7, 4.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7, 4.25, 7.25], "texture": "#0"}, - "west": {"uv": [4, 7, 4.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7, 4.25, 7.25], "texture": "#0"}, - "down": {"uv": [4, 7.25, 4.25, 7], "texture": "#0"} + "from": [ + 4, + 0, + 7 + ], + "to": [ + 4.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 7, + 4, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.25, + 4.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_459", - "from": [4.25, 0, 7], - "to": [4.5, 0.25, 7.25], - "faces": { - "north": {"uv": [4.5, 7, 4.25, 7.25], "texture": "#0"}, - "east": {"uv": [4.25, 7, 4.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7, 4.5, 7.25], "texture": "#0"}, - "west": {"uv": [4.25, 7, 4.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7, 4.5, 7.25], "texture": "#0"}, - "down": {"uv": [4.25, 7.25, 4.5, 7], "texture": "#0"} + "from": [ + 4.25, + 0, + 7 + ], + "to": [ + 4.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 7, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7, + 4.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7, + 4.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7, + 4.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7, + 4.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_460", - "from": [4.5, 0, 7], - "to": [4.75, 0.25, 7.25], - "faces": { - "north": {"uv": [4.75, 7, 4.5, 7.25], "texture": "#0"}, - "east": {"uv": [4.5, 7, 4.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7, 4.75, 7.25], "texture": "#0"}, - "west": {"uv": [4.5, 7, 4.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 7, 4.75, 7.25], "texture": "#0"}, - "down": {"uv": [4.5, 7.25, 4.75, 7], "texture": "#0"} + "from": [ + 4.5, + 0, + 7 + ], + "to": [ + 4.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 7, + 4.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7, + 4.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7, + 4.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7, + 4.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7, + 4.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_461", - "from": [4.75, 0, 7], - "to": [5, 0.25, 7.25], - "faces": { - "north": {"uv": [5, 7, 4.75, 7.25], "texture": "#0"}, - "east": {"uv": [4.75, 7, 5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7, 5, 7.25], "texture": "#0"}, - "west": {"uv": [4.75, 7, 5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 7, 5, 7.25], "texture": "#0"}, - "down": {"uv": [4.75, 7.25, 5, 7], "texture": "#0"} + "from": [ + 4.75, + 0, + 7 + ], + "to": [ + 5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 7, + 4.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7, + 5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7, + 5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7, + 5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 7, + 5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7.25, + 5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_462", - "from": [5, 0, 7], - "to": [5.25, 0.25, 7.25], - "faces": { - "north": {"uv": [5.25, 7, 5, 7.25], "texture": "#0"}, - "east": {"uv": [5, 7, 5.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 7, 5.25, 7.25], "texture": "#0"}, - "west": {"uv": [5, 7, 5.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 7, 5.25, 7.25], "texture": "#0"}, - "down": {"uv": [5, 7.25, 5.25, 7], "texture": "#0"} + "from": [ + 5, + 0, + 7 + ], + "to": [ + 5.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 7, + 5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7, + 5.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7, + 5.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7, + 5.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7, + 5.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.25, + 5.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_463", - "from": [5.25, 0, 7], - "to": [5.5, 0.25, 7.25], - "faces": { - "north": {"uv": [5.5, 7, 5.25, 7.25], "texture": "#0"}, - "east": {"uv": [5.25, 7, 5.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 7, 5.5, 7.25], "texture": "#0"}, - "west": {"uv": [5.25, 7, 5.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 7, 5.5, 7.25], "texture": "#0"}, - "down": {"uv": [5.25, 7.25, 5.5, 7], "texture": "#0"} + "from": [ + 5.25, + 0, + 7 + ], + "to": [ + 5.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 7, + 5.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7, + 5.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 7, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7, + 5.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_464", - "from": [5.5, 0, 7], - "to": [5.75, 0.25, 7.25], - "faces": { - "north": {"uv": [5.75, 7, 5.5, 7.25], "texture": "#0"}, - "east": {"uv": [5.5, 7, 5.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 7, 5.75, 7.25], "texture": "#0"}, - "west": {"uv": [5.5, 7, 5.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7, 5.75, 7.25], "texture": "#0"}, - "down": {"uv": [5.5, 7.25, 5.75, 7], "texture": "#0"} + "from": [ + 5.5, + 0, + 7 + ], + "to": [ + 5.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 7, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7, + 5.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7, + 5.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7, + 5.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7, + 5.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.25, + 5.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_465", - "from": [5.75, 0, 7], - "to": [6, 0.25, 7.25], - "faces": { - "north": {"uv": [6, 7, 5.75, 7.25], "texture": "#0"}, - "east": {"uv": [5.75, 7, 6, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 7, 6, 7.25], "texture": "#0"}, - "west": {"uv": [5.75, 7, 6, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7, 6, 7.25], "texture": "#0"}, - "down": {"uv": [5.75, 7.25, 6, 7], "texture": "#0"} + "from": [ + 5.75, + 0, + 7 + ], + "to": [ + 6, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 7, + 5.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7, + 6, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 7, + 6, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7, + 6, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7, + 6, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 7.25, + 6, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_466", - "from": [6, 0, 7], - "to": [6.25, 0.25, 7.25], - "faces": { - "north": {"uv": [6.25, 7, 6, 7.25], "texture": "#0"}, - "east": {"uv": [6, 7, 6.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 7, 6.25, 7.25], "texture": "#0"}, - "west": {"uv": [6, 7, 6.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 7, 6.25, 7.25], "texture": "#0"}, - "down": {"uv": [6, 7.25, 6.25, 7], "texture": "#0"} + "from": [ + 6, + 0, + 7 + ], + "to": [ + 6.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 7, + 6, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7, + 6.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 7, + 6.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7, + 6.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7, + 6.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.25, + 6.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_467", - "from": [6.25, 0, 7], - "to": [6.5, 0.25, 7.25], - "faces": { - "north": {"uv": [6.5, 7, 6.25, 7.25], "texture": "#0"}, - "east": {"uv": [6.25, 7, 6.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 7, 6.5, 7.25], "texture": "#0"}, - "west": {"uv": [6.25, 7, 6.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7, 6.5, 7.25], "texture": "#0"}, - "down": {"uv": [6.25, 7.25, 6.5, 7], "texture": "#0"} + "from": [ + 6.25, + 0, + 7 + ], + "to": [ + 6.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 7, + 6.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 7, + 6.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7, + 6.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7, + 6.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7, + 6.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 7.25, + 6.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_468", - "from": [6.5, 0, 7], - "to": [6.75, 0.25, 7.25], - "faces": { - "north": {"uv": [6.75, 7, 6.5, 7.25], "texture": "#0"}, - "east": {"uv": [6.5, 7, 6.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 7, 6.75, 7.25], "texture": "#0"}, - "west": {"uv": [6.5, 7, 6.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 7, 6.75, 7.25], "texture": "#0"}, - "down": {"uv": [6.5, 7.25, 6.75, 7], "texture": "#0"} + "from": [ + 6.5, + 0, + 7 + ], + "to": [ + 6.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 7, + 6.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7, + 6.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7, + 6.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7, + 6.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7, + 6.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7.25, + 6.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_469", - "from": [6.75, 0, 7], - "to": [7, 0.25, 7.25], - "faces": { - "north": {"uv": [7, 7, 6.75, 7.25], "texture": "#0"}, - "east": {"uv": [6.75, 7, 7, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 7, 7, 7.25], "texture": "#0"}, - "west": {"uv": [6.75, 7, 7, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 7, 7, 7.25], "texture": "#0"}, - "down": {"uv": [6.75, 7.25, 7, 7], "texture": "#0"} + "from": [ + 6.75, + 0, + 7 + ], + "to": [ + 7, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 7, + 6.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7, + 7, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7, + 7, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 7, + 7, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7, + 7, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 7.25, + 7, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_470", - "from": [7, 0, 7], - "to": [7.25, 0.25, 7.25], - "faces": { - "north": {"uv": [7.25, 7, 7, 7.25], "texture": "#0"}, - "east": {"uv": [7, 7, 7.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 7, 7.25, 7.25], "texture": "#0"}, - "west": {"uv": [7, 7, 7.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7, 7.25, 7.25], "texture": "#0"}, - "down": {"uv": [7, 7.25, 7.25, 7], "texture": "#0"} + "from": [ + 7, + 0, + 7 + ], + "to": [ + 7.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 7, + 7, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7, + 7.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7, + 7.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7, + 7.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7, + 7.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7.25, + 7.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_471", - "from": [7.25, 0, 7], - "to": [7.5, 0.25, 7.25], - "faces": { - "north": {"uv": [7.5, 7, 7.25, 7.25], "texture": "#0"}, - "east": {"uv": [7.25, 7, 7.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 7, 7.5, 7.25], "texture": "#0"}, - "west": {"uv": [7.25, 7, 7.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 7, 7.5, 7.25], "texture": "#0"}, - "down": {"uv": [7.25, 7.25, 7.5, 7], "texture": "#0"} + "from": [ + 7.25, + 0, + 7 + ], + "to": [ + 7.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 7, + 7.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 7, + 7.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7, + 7.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7, + 7.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7, + 7.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_472", - "from": [7.5, 0, 7], - "to": [7.75, 0.25, 7.25], - "faces": { - "north": {"uv": [7.75, 7, 7.5, 7.25], "texture": "#0"}, - "east": {"uv": [7.5, 7, 7.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 7, 7.75, 7.25], "texture": "#0"}, - "west": {"uv": [7.5, 7, 7.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 7, 7.75, 7.25], "texture": "#0"}, - "down": {"uv": [7.5, 7.25, 7.75, 7], "texture": "#0"} + "from": [ + 7.5, + 0, + 7 + ], + "to": [ + 7.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 7, + 7.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 7.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7, + 7.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7, + 7.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7, + 7.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_473", - "from": [7.75, 0, 7], - "to": [8, 0.25, 7.25], - "faces": { - "north": {"uv": [8, 7, 7.75, 7.25], "texture": "#0"}, - "east": {"uv": [7.75, 7, 8, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 7, 8, 7.25], "texture": "#0"}, - "west": {"uv": [7.75, 7, 8, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 7, 8, 7.25], "texture": "#0"}, - "down": {"uv": [7.75, 7.25, 8, 7], "texture": "#0"} + "from": [ + 7.75, + 0, + 7 + ], + "to": [ + 8, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 7, + 7.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7.25, + 8, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_474", - "from": [8, 0, 7], - "to": [8.25, 0.25, 7.25], - "faces": { - "north": {"uv": [8.25, 7, 8, 7.25], "texture": "#0"}, - "east": {"uv": [8, 7, 8.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 7, 8.25, 7.25], "texture": "#0"}, - "west": {"uv": [8, 7, 8.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7, 8.25, 7.25], "texture": "#0"}, - "down": {"uv": [8, 7.25, 8.25, 7], "texture": "#0"} + "from": [ + 8, + 0, + 7 + ], + "to": [ + 8.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 7, + 8, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7, + 8.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7, + 8.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7, + 8.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7, + 8.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7.25, + 8.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_475", - "from": [8.25, 0, 7], - "to": [8.5, 0.25, 7.25], - "faces": { - "north": {"uv": [8.5, 7, 8.25, 7.25], "texture": "#0"}, - "east": {"uv": [8.25, 7, 8.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7, 8.5, 7.25], "texture": "#0"}, - "west": {"uv": [8.25, 7, 8.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7, 8.5, 7.25], "texture": "#0"}, - "down": {"uv": [8.25, 7.25, 8.5, 7], "texture": "#0"} + "from": [ + 8.25, + 0, + 7 + ], + "to": [ + 8.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 7, + 8.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7, + 8.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7, + 8.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_476", - "from": [8.5, 0, 7], - "to": [8.75, 0.25, 7.25], - "faces": { - "north": {"uv": [8.75, 7, 8.5, 7.25], "texture": "#0"}, - "east": {"uv": [8.5, 7, 8.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 7, 8.75, 7.25], "texture": "#0"}, - "west": {"uv": [8.5, 7, 8.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 7, 8.75, 7.25], "texture": "#0"}, - "down": {"uv": [8.5, 7.25, 8.75, 7], "texture": "#0"} + "from": [ + 8.5, + 0, + 7 + ], + "to": [ + 8.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 7, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7, + 8.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7, + 8.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7, + 8.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7, + 8.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_477", - "from": [8.75, 0, 7], - "to": [9, 0.25, 7.25], - "faces": { - "north": {"uv": [9, 7, 8.75, 7.25], "texture": "#0"}, - "east": {"uv": [8.75, 7, 9, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 7, 9, 7.25], "texture": "#0"}, - "west": {"uv": [8.75, 7, 9, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7, 9, 7.25], "texture": "#0"}, - "down": {"uv": [8.75, 7.25, 9, 7], "texture": "#0"} + "from": [ + 8.75, + 0, + 7 + ], + "to": [ + 9, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 7, + 8.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 7, + 9, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7, + 9, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 7.25, + 9, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_478", - "from": [9, 0, 7], - "to": [9.25, 0.25, 7.25], - "faces": { - "north": {"uv": [9.25, 7, 9, 7.25], "texture": "#0"}, - "east": {"uv": [9, 7, 9.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7, 9.25, 7.25], "texture": "#0"}, - "west": {"uv": [9, 7, 9.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7, 9.25, 7.25], "texture": "#0"}, - "down": {"uv": [9, 7.25, 9.25, 7], "texture": "#0"} + "from": [ + 9, + 0, + 7 + ], + "to": [ + 9.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7, + 9.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7, + 9.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7, + 9.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7, + 9.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.25, + 9.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_479", - "from": [9.25, 0, 7], - "to": [9.5, 0.25, 7.25], - "faces": { - "north": {"uv": [9.5, 7, 9.25, 7.25], "texture": "#0"}, - "east": {"uv": [9.25, 7, 9.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7, 9.5, 7.25], "texture": "#0"}, - "west": {"uv": [9.25, 7, 9.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7, 9.5, 7.25], "texture": "#0"}, - "down": {"uv": [9.25, 7.25, 9.5, 7], "texture": "#0"} + "from": [ + 9.25, + 0, + 7 + ], + "to": [ + 9.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 7, + 9.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7, + 9.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7, + 9.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_480", - "from": [9.5, 0, 7], - "to": [9.75, 0.25, 7.25], - "faces": { - "north": {"uv": [9.75, 7, 9.5, 7.25], "texture": "#0"}, - "east": {"uv": [9.5, 7, 9.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7, 9.75, 7.25], "texture": "#0"}, - "west": {"uv": [9.5, 7, 9.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7, 9.75, 7.25], "texture": "#0"}, - "down": {"uv": [9.5, 7.25, 9.75, 7], "texture": "#0"} + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 9.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7, + 9.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7, + 9.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7, + 9.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7.25, + 9.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_481", - "from": [9.75, 0, 7], - "to": [10, 0.25, 7.25], - "faces": { - "north": {"uv": [10, 7, 9.75, 7.25], "texture": "#0"}, - "east": {"uv": [9.75, 7, 10, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 7, 10, 7.25], "texture": "#0"}, - "west": {"uv": [9.75, 7, 10, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7, 10, 7.25], "texture": "#0"}, - "down": {"uv": [9.75, 7.25, 10, 7], "texture": "#0"} + "from": [ + 9.75, + 0, + 7 + ], + "to": [ + 10, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 7, + 9.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 7, + 10, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 7, + 10, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7, + 10, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7, + 10, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 7.25, + 10, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_482", - "from": [10, 0, 7], - "to": [10.25, 0.25, 7.25], - "faces": { - "north": {"uv": [10.25, 7, 10, 7.25], "texture": "#0"}, - "east": {"uv": [10, 7, 10.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7, 10.25, 7.25], "texture": "#0"}, - "west": {"uv": [10, 7, 10.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7, 10.25, 7.25], "texture": "#0"}, - "down": {"uv": [10, 7.25, 10.25, 7], "texture": "#0"} + "from": [ + 10, + 0, + 7 + ], + "to": [ + 10.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 7, + 10, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.25, + 10.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_483", - "from": [10.25, 0, 7], - "to": [10.5, 0.25, 7.25], - "faces": { - "north": {"uv": [10.5, 7, 10.25, 7.25], "texture": "#0"}, - "east": {"uv": [10.25, 7, 10.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 7, 10.5, 7.25], "texture": "#0"}, - "west": {"uv": [10.25, 7, 10.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7, 10.5, 7.25], "texture": "#0"}, - "down": {"uv": [10.25, 7.25, 10.5, 7], "texture": "#0"} + "from": [ + 10.25, + 0, + 7 + ], + "to": [ + 10.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7, + 10.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7, + 10.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_484", - "from": [10.5, 0, 7], - "to": [10.75, 0.25, 7.25], - "faces": { - "north": {"uv": [10.75, 7, 10.5, 7.25], "texture": "#0"}, - "east": {"uv": [10.5, 7, 10.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7, 10.75, 7.25], "texture": "#0"}, - "west": {"uv": [10.5, 7, 10.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7, 10.75, 7.25], "texture": "#0"}, - "down": {"uv": [10.5, 7.25, 10.75, 7], "texture": "#0"} + "from": [ + 10.5, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7, + 10.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_485", - "from": [10.75, 0, 7], - "to": [11, 0.25, 7.25], - "faces": { - "north": {"uv": [11, 7, 10.75, 7.25], "texture": "#0"}, - "east": {"uv": [10.75, 7, 11, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 7, 11, 7.25], "texture": "#0"}, - "west": {"uv": [10.75, 7, 11, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7, 11, 7.25], "texture": "#0"}, - "down": {"uv": [10.75, 7.25, 11, 7], "texture": "#0"} + "from": [ + 10.75, + 0, + 7 + ], + "to": [ + 11, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 11, + 7, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 7, + 11, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7, + 11, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7, + 11, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7, + 11, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7.25, + 11, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_486", - "from": [11, 0, 7], - "to": [11.25, 0.25, 7.25], - "faces": { - "north": {"uv": [11.25, 7, 11, 7.25], "texture": "#0"}, - "east": {"uv": [11, 7, 11.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 7, 11.25, 7.25], "texture": "#0"}, - "west": {"uv": [11, 7, 11.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 7, 11.25, 7.25], "texture": "#0"}, - "down": {"uv": [11, 7.25, 11.25, 7], "texture": "#0"} + "from": [ + 11, + 0, + 7 + ], + "to": [ + 11.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 7, + 11, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7, + 11.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 7, + 11.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7, + 11.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7, + 11.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 7.25, + 11.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_487", - "from": [11.25, 0, 7], - "to": [11.5, 0.25, 7.25], - "faces": { - "north": {"uv": [11.5, 7, 11.25, 7.25], "texture": "#0"}, - "east": {"uv": [11.25, 7, 11.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 7, 11.5, 7.25], "texture": "#0"}, - "west": {"uv": [11.25, 7, 11.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7, 11.5, 7.25], "texture": "#0"}, - "down": {"uv": [11.25, 7.25, 11.5, 7], "texture": "#0"} + "from": [ + 11.25, + 0, + 7 + ], + "to": [ + 11.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 7, + 11.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 7, + 11.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 7, + 11.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7, + 11.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7, + 11.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 7.25, + 11.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_488", - "from": [11.5, 0, 7], - "to": [11.75, 0.25, 7.25], - "faces": { - "north": {"uv": [11.75, 7, 11.5, 7.25], "texture": "#0"}, - "east": {"uv": [11.5, 7, 11.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7, 11.75, 7.25], "texture": "#0"}, - "west": {"uv": [11.5, 7, 11.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7, 11.75, 7.25], "texture": "#0"}, - "down": {"uv": [11.5, 7.25, 11.75, 7], "texture": "#0"} + "from": [ + 11.5, + 0, + 7 + ], + "to": [ + 11.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 7, + 11.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7, + 11.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7, + 11.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7, + 11.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7, + 11.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_489", - "from": [11.75, 0, 7], - "to": [12, 0.25, 7.25], - "faces": { - "north": {"uv": [12, 7, 11.75, 7.25], "texture": "#0"}, - "east": {"uv": [11.75, 7, 12, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7, 12, 7.25], "texture": "#0"}, - "west": {"uv": [11.75, 7, 12, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7, 12, 7.25], "texture": "#0"}, - "down": {"uv": [11.75, 7.25, 12, 7], "texture": "#0"} + "from": [ + 11.75, + 0, + 7 + ], + "to": [ + 12, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 12, + 7, + 11.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7, + 12, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7, + 12, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7, + 12, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7, + 12, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7.25, + 12, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_490", - "from": [12, 0, 7], - "to": [12.25, 0.25, 7.25], - "faces": { - "north": {"uv": [12.25, 7, 12, 7.25], "texture": "#0"}, - "east": {"uv": [12, 7, 12.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7, 12.25, 7.25], "texture": "#0"}, - "west": {"uv": [12, 7, 12.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7, 12.25, 7.25], "texture": "#0"}, - "down": {"uv": [12, 7.25, 12.25, 7], "texture": "#0"} + "from": [ + 12, + 0, + 7 + ], + "to": [ + 12.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 7, + 12, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7, + 12.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7, + 12.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7, + 12.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.25, + 12.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_491", - "from": [12.25, 0, 7], - "to": [12.5, 0.25, 7.25], - "faces": { - "north": {"uv": [12.5, 7, 12.25, 7.25], "texture": "#0"}, - "east": {"uv": [12.25, 7, 12.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 7, 12.5, 7.25], "texture": "#0"}, - "west": {"uv": [12.25, 7, 12.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 7, 12.5, 7.25], "texture": "#0"}, - "down": {"uv": [12.25, 7.25, 12.5, 7], "texture": "#0"} + "from": [ + 12.25, + 0, + 7 + ], + "to": [ + 12.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 7, + 12.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 7, + 12.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 7, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 7, + 12.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 7, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 7.25, + 12.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_492", - "from": [12.5, 0, 7], - "to": [12.75, 0.25, 7.25], - "faces": { - "north": {"uv": [12.75, 7, 12.5, 7.25], "texture": "#0"}, - "east": {"uv": [12.5, 7, 12.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 7, 12.75, 7.25], "texture": "#0"}, - "west": {"uv": [12.5, 7, 12.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 7, 12.75, 7.25], "texture": "#0"}, - "down": {"uv": [12.5, 7.25, 12.75, 7], "texture": "#0"} + "from": [ + 12.5, + 0, + 7 + ], + "to": [ + 12.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 7, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7, + 12.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 7, + 12.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 7, + 12.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 7, + 12.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 7.25, + 12.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_493", - "from": [12.75, 0, 7], - "to": [13, 0.25, 7.25], - "faces": { - "north": {"uv": [13, 7, 12.75, 7.25], "texture": "#0"}, - "east": {"uv": [12.75, 7, 13, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 7, 13, 7.25], "texture": "#0"}, - "west": {"uv": [12.75, 7, 13, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 7, 13, 7.25], "texture": "#0"}, - "down": {"uv": [12.75, 7.25, 13, 7], "texture": "#0"} + "from": [ + 12.75, + 0, + 7 + ], + "to": [ + 13, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 13, + 7, + 12.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7, + 13, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 7, + 13, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 7, + 13, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 7, + 13, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 7.25, + 13, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_494", - "from": [13, 0, 7], - "to": [13.25, 0.25, 7.25], - "faces": { - "north": {"uv": [13.25, 7, 13, 7.25], "texture": "#0"}, - "east": {"uv": [13, 7, 13.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7, 13.25, 7.25], "texture": "#0"}, - "west": {"uv": [13, 7, 13.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7, 13.25, 7.25], "texture": "#0"}, - "down": {"uv": [13, 7.25, 13.25, 7], "texture": "#0"} + "from": [ + 13, + 0, + 7 + ], + "to": [ + 13.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 7, + 13, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7, + 13.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7, + 13.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7, + 13.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7, + 13.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 7.25, + 13.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_495", - "from": [13.25, 0, 7], - "to": [13.5, 0.25, 7.25], - "faces": { - "north": {"uv": [13.5, 7, 13.25, 7.25], "texture": "#0"}, - "east": {"uv": [13.25, 7, 13.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7, 13.5, 7.25], "texture": "#0"}, - "west": {"uv": [13.25, 7, 13.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7, 13.5, 7.25], "texture": "#0"}, - "down": {"uv": [13.25, 7.25, 13.5, 7], "texture": "#0"} + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 7, + 13.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7, + 13.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7, + 13.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_496", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 7.25], - "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#0"}, - "east": {"uv": [13.5, 7, 13.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7, 13.75, 7.25], "texture": "#0"}, - "west": {"uv": [13.5, 7, 13.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7, 13.75, 7.25], "texture": "#0"}, - "down": {"uv": [13.5, 7.25, 13.75, 7], "texture": "#0"} + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_497", - "from": [13.75, 0, 7], - "to": [14, 0.25, 7.25], - "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#0"}, - "east": {"uv": [13.75, 7, 14, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 7, 14, 7.25], "texture": "#0"}, - "west": {"uv": [13.75, 7, 14, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7, 14, 7.25], "texture": "#0"}, - "down": {"uv": [13.75, 7.25, 14, 7], "texture": "#0"} + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7.25, + 14, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_498", - "from": [14, 0, 7], - "to": [14.25, 0.25, 7.25], - "faces": { - "north": {"uv": [14.25, 7, 14, 7.25], "texture": "#0"}, - "east": {"uv": [14, 7, 14.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7, 14.25, 7.25], "texture": "#0"}, - "west": {"uv": [14, 7, 14.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7, 14.25, 7.25], "texture": "#0"}, - "down": {"uv": [14, 7.25, 14.25, 7], "texture": "#0"} + "from": [ + 14, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7, + 14.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.25, + 14.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_499", - "from": [14.25, 0, 7], - "to": [14.5, 0.25, 7.25], - "faces": { - "north": {"uv": [14.5, 7, 14.25, 7.25], "texture": "#0"}, - "east": {"uv": [14.25, 7, 14.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7, 14.5, 7.25], "texture": "#0"}, - "west": {"uv": [14.25, 7, 14.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7, 14.5, 7.25], "texture": "#0"}, - "down": {"uv": [14.25, 7.25, 14.5, 7], "texture": "#0"} + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 7, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_500", - "from": [14.5, 0, 7], - "to": [14.75, 0.25, 7.25], - "faces": { - "north": {"uv": [14.75, 7, 14.5, 7.25], "texture": "#0"}, - "east": {"uv": [14.5, 7, 14.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7, 14.75, 7.25], "texture": "#0"}, - "west": {"uv": [14.5, 7, 14.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7, 14.75, 7.25], "texture": "#0"}, - "down": {"uv": [14.5, 7.25, 14.75, 7], "texture": "#0"} + "from": [ + 14.5, + 0, + 7 + ], + "to": [ + 14.75, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_501", - "from": [14.75, 0, 7], - "to": [15, 0.25, 7.25], - "faces": { - "north": {"uv": [15, 7, 14.75, 7.25], "texture": "#0"}, - "east": {"uv": [14.75, 7, 15, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7, 15, 7.25], "texture": "#0"}, - "west": {"uv": [14.75, 7, 15, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7, 15, 7.25], "texture": "#0"}, - "down": {"uv": [14.75, 7.25, 15, 7], "texture": "#0"} + "from": [ + 14.75, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 15, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_502", - "from": [15, 0, 7], - "to": [15.25, 0.25, 7.25], - "faces": { - "north": {"uv": [15.25, 7, 15, 7.25], "texture": "#0"}, - "east": {"uv": [15, 7, 15.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7, 15.25, 7.25], "texture": "#0"}, - "west": {"uv": [15, 7, 15.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7, 15.25, 7.25], "texture": "#0"}, - "down": {"uv": [15, 7.25, 15.25, 7], "texture": "#0"} + "from": [ + 15, + 0, + 7 + ], + "to": [ + 15.25, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 7, + 15, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7.25, + 15.25, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_503", - "from": [15.25, 0, 7], - "to": [15.5, 0.25, 7.25], - "faces": { - "north": {"uv": [15.5, 7, 15.25, 7.25], "texture": "#0"}, - "east": {"uv": [15.25, 7, 15.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#0"}, - "west": {"uv": [15.25, 7, 15.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#0"}, - "down": {"uv": [15.25, 7.25, 15.5, 7], "texture": "#0"} + "from": [ + 15.25, + 0, + 7 + ], + "to": [ + 15.5, + 0.25, + 7.25 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 7, + 15.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_504", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 7.5], - "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#0"}, - "east": {"uv": [0.75, 7.25, 1, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.25, 1, 7.5], "texture": "#0"}, - "west": {"uv": [0.75, 7.25, 1, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.25, 1, 7.5], "texture": "#0"}, - "down": {"uv": [0.75, 7.5, 1, 7.25], "texture": "#0"} + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 7.5, + 1, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_505", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 7.5], - "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.25, 1.25, 7.5], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 1.25, 7.5], "texture": "#0"}, - "down": {"uv": [1, 7.5, 1.25, 7.25], "texture": "#0"} + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7.5, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_506", - "from": [1.25, 0, 7.25], - "to": [1.5, 0.25, 7.5], - "faces": { - "north": {"uv": [1.5, 7.25, 1.25, 7.5], "texture": "#0"}, - "east": {"uv": [1.25, 7.25, 1.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.25, 1.5, 7.5], "texture": "#0"}, - "west": {"uv": [1.25, 7.25, 1.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.25, 1.5, 7.5], "texture": "#0"}, - "down": {"uv": [1.25, 7.5, 1.5, 7.25], "texture": "#0"} + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 7.25, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_507", - "from": [1.5, 0, 7.25], - "to": [1.75, 0.25, 7.5], - "faces": { - "north": {"uv": [1.75, 7.25, 1.5, 7.5], "texture": "#0"}, - "east": {"uv": [1.5, 7.25, 1.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7.25, 1.75, 7.5], "texture": "#0"}, - "west": {"uv": [1.5, 7.25, 1.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.25, 1.75, 7.5], "texture": "#0"}, - "down": {"uv": [1.5, 7.5, 1.75, 7.25], "texture": "#0"} + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_508", - "from": [1.75, 0, 7.25], - "to": [2, 0.25, 7.5], - "faces": { - "north": {"uv": [2, 7.25, 1.75, 7.5], "texture": "#0"}, - "east": {"uv": [1.75, 7.25, 2, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.25, 2, 7.5], "texture": "#0"}, - "west": {"uv": [1.75, 7.25, 2, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.25, 2, 7.5], "texture": "#0"}, - "down": {"uv": [1.75, 7.5, 2, 7.25], "texture": "#0"} + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 2, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.25, + 2, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.25, + 2, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7.5, + 2, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_509", - "from": [2, 0, 7.25], - "to": [2.25, 0.25, 7.5], - "faces": { - "north": {"uv": [2.25, 7.25, 2, 7.5], "texture": "#0"}, - "east": {"uv": [2, 7.25, 2.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 7.25, 2.25, 7.5], "texture": "#0"}, - "west": {"uv": [2, 7.25, 2.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7.25, 2.25, 7.5], "texture": "#0"}, - "down": {"uv": [2, 7.5, 2.25, 7.25], "texture": "#0"} + "from": [ + 2, + 0, + 7.25 + ], + "to": [ + 2.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 7.25, + 2, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 7.25, + 2.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.25, + 2.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.25, + 2.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 7.5, + 2.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_510", - "from": [2.25, 0, 7.25], - "to": [2.5, 0.25, 7.5], - "faces": { - "north": {"uv": [2.5, 7.25, 2.25, 7.5], "texture": "#0"}, - "east": {"uv": [2.25, 7.25, 2.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7.25, 2.5, 7.5], "texture": "#0"}, - "west": {"uv": [2.25, 7.25, 2.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7.25, 2.5, 7.5], "texture": "#0"}, - "down": {"uv": [2.25, 7.5, 2.5, 7.25], "texture": "#0"} + "from": [ + 2.25, + 0, + 7.25 + ], + "to": [ + 2.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 7.25, + 2.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.25, + 2.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7.25, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7.25, + 2.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.25, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7.5, + 2.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_511", - "from": [2.5, 0, 7.25], - "to": [2.75, 0.25, 7.5], - "faces": { - "north": {"uv": [2.75, 7.25, 2.5, 7.5], "texture": "#0"}, - "east": {"uv": [2.5, 7.25, 2.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 7.25, 2.75, 7.5], "texture": "#0"}, - "west": {"uv": [2.5, 7.25, 2.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.25, 2.75, 7.5], "texture": "#0"}, - "down": {"uv": [2.5, 7.5, 2.75, 7.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 7.25, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_512", - "from": [2.75, 0, 7.25], - "to": [3, 0.25, 7.5], - "faces": { - "north": {"uv": [3, 7.25, 2.75, 7.5], "texture": "#0"}, - "east": {"uv": [2.75, 7.25, 3, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 7.25, 3, 7.5], "texture": "#0"}, - "west": {"uv": [2.75, 7.25, 3, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7.25, 3, 7.5], "texture": "#0"}, - "down": {"uv": [2.75, 7.5, 3, 7.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 7.25 + ], + "to": [ + 3, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 7.25, + 2.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.25, + 3, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 7.25, + 3, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7.25, + 3, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7.25, + 3, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 7.5, + 3, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_513", - "from": [3, 0, 7.25], - "to": [3.25, 0.25, 7.5], - "faces": { - "north": {"uv": [3.25, 7.25, 3, 7.5], "texture": "#0"}, - "east": {"uv": [3, 7.25, 3.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 7.25, 3.25, 7.5], "texture": "#0"}, - "west": {"uv": [3, 7.25, 3.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7.25, 3.25, 7.5], "texture": "#0"}, - "down": {"uv": [3, 7.5, 3.25, 7.25], "texture": "#0"} + "from": [ + 3, + 0, + 7.25 + ], + "to": [ + 3.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 7.25, + 3, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7.25, + 3.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7.25, + 3.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.25, + 3.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7.25, + 3.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7.5, + 3.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_514", - "from": [3.25, 0, 7.25], - "to": [3.5, 0.25, 7.5], - "faces": { - "north": {"uv": [3.5, 7.25, 3.25, 7.5], "texture": "#0"}, - "east": {"uv": [3.25, 7.25, 3.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 7.25, 3.5, 7.5], "texture": "#0"}, - "west": {"uv": [3.25, 7.25, 3.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 7.25, 3.5, 7.5], "texture": "#0"}, - "down": {"uv": [3.25, 7.5, 3.5, 7.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 7.25 + ], + "to": [ + 3.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 7.25, + 3.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_515", - "from": [3.5, 0, 7.25], - "to": [3.75, 0.25, 7.5], - "faces": { - "north": {"uv": [3.75, 7.25, 3.5, 7.5], "texture": "#0"}, - "east": {"uv": [3.5, 7.25, 3.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 7.25, 3.75, 7.5], "texture": "#0"}, - "west": {"uv": [3.5, 7.25, 3.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7.25, 3.75, 7.5], "texture": "#0"}, - "down": {"uv": [3.5, 7.5, 3.75, 7.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 7.25 + ], + "to": [ + 3.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 7.25, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7.5, + 3.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_516", - "from": [3.75, 0, 7.25], - "to": [4, 0.25, 7.5], - "faces": { - "north": {"uv": [4, 7.25, 3.75, 7.5], "texture": "#0"}, - "east": {"uv": [3.75, 7.25, 4, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 7.25, 4, 7.5], "texture": "#0"}, - "west": {"uv": [3.75, 7.25, 4, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 7.25, 4, 7.5], "texture": "#0"}, - "down": {"uv": [3.75, 7.5, 4, 7.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 7.25 + ], + "to": [ + 4, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 7.25, + 3.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7.25, + 4, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7.25, + 4, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 7.25, + 4, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7.25, + 4, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.5, + 4, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_517", - "from": [4, 0, 7.25], - "to": [4.25, 0.25, 7.5], - "faces": { - "north": {"uv": [4.25, 7.25, 4, 7.5], "texture": "#0"}, - "east": {"uv": [4, 7.25, 4.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7.25, 4.25, 7.5], "texture": "#0"}, - "west": {"uv": [4, 7.25, 4.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7.25, 4.25, 7.5], "texture": "#0"}, - "down": {"uv": [4, 7.5, 4.25, 7.25], "texture": "#0"} + "from": [ + 4, + 0, + 7.25 + ], + "to": [ + 4.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 7.25, + 4, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.25, + 4.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.25, + 4.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7.25, + 4.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7.25, + 4.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 4.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_518", - "from": [4.25, 0, 7.25], - "to": [4.5, 0.25, 7.5], - "faces": { - "north": {"uv": [4.5, 7.25, 4.25, 7.5], "texture": "#0"}, - "east": {"uv": [4.25, 7.25, 4.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.25, 4.5, 7.5], "texture": "#0"}, - "west": {"uv": [4.25, 7.25, 4.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.25, 4.5, 7.5], "texture": "#0"}, - "down": {"uv": [4.25, 7.5, 4.5, 7.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 7.25 + ], + "to": [ + 4.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 7.25, + 4.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7.5, + 4.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_519", - "from": [4.5, 0, 7.25], - "to": [4.75, 0.25, 7.5], - "faces": { - "north": {"uv": [4.75, 7.25, 4.5, 7.5], "texture": "#0"}, - "east": {"uv": [4.5, 7.25, 4.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7.25, 4.75, 7.5], "texture": "#0"}, - "west": {"uv": [4.5, 7.25, 4.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 7.25, 4.75, 7.5], "texture": "#0"}, - "down": {"uv": [4.5, 7.5, 4.75, 7.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 7.25 + ], + "to": [ + 4.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 7.25, + 4.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7.25, + 4.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_520", - "from": [4.75, 0, 7.25], - "to": [5, 0.25, 7.5], - "faces": { - "north": {"uv": [5, 7.25, 4.75, 7.5], "texture": "#0"}, - "east": {"uv": [4.75, 7.25, 5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7.25, 5, 7.5], "texture": "#0"}, - "west": {"uv": [4.75, 7.25, 5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 7.25, 5, 7.5], "texture": "#0"}, - "down": {"uv": [4.75, 7.5, 5, 7.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 7.25 + ], + "to": [ + 5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 7.25, + 4.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7.25, + 5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.25, + 5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7.25, + 5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 7.25, + 5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7.5, + 5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_521", - "from": [5, 0, 7.25], - "to": [5.25, 0.25, 7.5], - "faces": { - "north": {"uv": [5.25, 7.25, 5, 7.5], "texture": "#0"}, - "east": {"uv": [5, 7.25, 5.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 7.25, 5.25, 7.5], "texture": "#0"}, - "west": {"uv": [5, 7.25, 5.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 7.25, 5.25, 7.5], "texture": "#0"}, - "down": {"uv": [5, 7.5, 5.25, 7.25], "texture": "#0"} + "from": [ + 5, + 0, + 7.25 + ], + "to": [ + 5.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 7.25, + 5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.25, + 5.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7.25, + 5.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.25, + 5.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.25, + 5.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.5, + 5.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_522", - "from": [5.25, 0, 7.25], - "to": [5.5, 0.25, 7.5], - "faces": { - "north": {"uv": [5.5, 7.25, 5.25, 7.5], "texture": "#0"}, - "east": {"uv": [5.25, 7.25, 5.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 7.25, 5.5, 7.5], "texture": "#0"}, - "west": {"uv": [5.25, 7.25, 5.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 7.25, 5.5, 7.5], "texture": "#0"}, - "down": {"uv": [5.25, 7.5, 5.5, 7.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 7.25 + ], + "to": [ + 5.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 7.25, + 5.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 7.5, + 5.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_523", - "from": [5.5, 0, 7.25], - "to": [5.75, 0.25, 7.5], - "faces": { - "north": {"uv": [5.75, 7.25, 5.5, 7.5], "texture": "#0"}, - "east": {"uv": [5.5, 7.25, 5.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 7.25, 5.75, 7.5], "texture": "#0"}, - "west": {"uv": [5.5, 7.25, 5.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7.25, 5.75, 7.5], "texture": "#0"}, - "down": {"uv": [5.5, 7.5, 5.75, 7.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 7.25 + ], + "to": [ + 5.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 7.25, + 5.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.25, + 5.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.25, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.25, + 5.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.25, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_524", - "from": [5.75, 0, 7.25], - "to": [6, 0.25, 7.5], - "faces": { - "north": {"uv": [6, 7.25, 5.75, 7.5], "texture": "#0"}, - "east": {"uv": [5.75, 7.25, 6, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 7.25, 6, 7.5], "texture": "#0"}, - "west": {"uv": [5.75, 7.25, 6, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7.25, 6, 7.5], "texture": "#0"}, - "down": {"uv": [5.75, 7.5, 6, 7.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 7.25 + ], + "to": [ + 6, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 7.25, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.25, + 6, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 7.25, + 6, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.25, + 6, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.25, + 6, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 7.5, + 6, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_525", - "from": [6, 0, 7.25], - "to": [6.25, 0.25, 7.5], - "faces": { - "north": {"uv": [6.25, 7.25, 6, 7.5], "texture": "#0"}, - "east": {"uv": [6, 7.25, 6.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 7.25, 6.25, 7.5], "texture": "#0"}, - "west": {"uv": [6, 7.25, 6.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 7.25, 6.25, 7.5], "texture": "#0"}, - "down": {"uv": [6, 7.5, 6.25, 7.25], "texture": "#0"} + "from": [ + 6, + 0, + 7.25 + ], + "to": [ + 6.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 7.25, + 6, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.25, + 6.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 7.25, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7.25, + 6.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7.25, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.5, + 6.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_526", - "from": [6.25, 0, 7.25], - "to": [6.5, 0.25, 7.5], - "faces": { - "north": {"uv": [6.5, 7.25, 6.25, 7.5], "texture": "#0"}, - "east": {"uv": [6.25, 7.25, 6.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 7.25, 6.5, 7.5], "texture": "#0"}, - "west": {"uv": [6.25, 7.25, 6.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7.25, 6.5, 7.5], "texture": "#0"}, - "down": {"uv": [6.25, 7.5, 6.5, 7.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 7.25 + ], + "to": [ + 6.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 7.25, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 7.25, + 6.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.25, + 6.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7.25, + 6.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7.25, + 6.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_527", - "from": [6.5, 0, 7.25], - "to": [6.75, 0.25, 7.5], - "faces": { - "north": {"uv": [6.75, 7.25, 6.5, 7.5], "texture": "#0"}, - "east": {"uv": [6.5, 7.25, 6.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 7.25, 6.75, 7.5], "texture": "#0"}, - "west": {"uv": [6.5, 7.25, 6.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 7.25, 6.75, 7.5], "texture": "#0"}, - "down": {"uv": [6.5, 7.5, 6.75, 7.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 7.25 + ], + "to": [ + 6.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 7.25, + 6.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.25, + 6.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7.25, + 6.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.25, + 6.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7.25, + 6.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_528", - "from": [6.75, 0, 7.25], - "to": [7, 0.25, 7.5], - "faces": { - "north": {"uv": [7, 7.25, 6.75, 7.5], "texture": "#0"}, - "east": {"uv": [6.75, 7.25, 7, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 7.25, 7, 7.5], "texture": "#0"}, - "west": {"uv": [6.75, 7.25, 7, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 7.25, 7, 7.5], "texture": "#0"}, - "down": {"uv": [6.75, 7.5, 7, 7.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 7.25 + ], + "to": [ + 7, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 7.25, + 6.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7.25, + 7, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.25, + 7, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 7.25, + 7, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.25, + 7, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 7.5, + 7, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_529", - "from": [7, 0, 7.25], - "to": [7.25, 0.25, 7.5], - "faces": { - "north": {"uv": [7.25, 7.25, 7, 7.5], "texture": "#0"}, - "east": {"uv": [7, 7.25, 7.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 7.25, 7.25, 7.5], "texture": "#0"}, - "west": {"uv": [7, 7.25, 7.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7.25, 7.25, 7.5], "texture": "#0"}, - "down": {"uv": [7, 7.5, 7.25, 7.25], "texture": "#0"} + "from": [ + 7, + 0, + 7.25 + ], + "to": [ + 7.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 7.25, + 7, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7.25, + 7.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.25, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.25, + 7.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7.25, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7.5, + 7.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_530", - "from": [7.25, 0, 7.25], - "to": [7.5, 0.25, 7.5], - "faces": { - "north": {"uv": [7.5, 7.25, 7.25, 7.5], "texture": "#0"}, - "east": {"uv": [7.25, 7.25, 7.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 7.25, 7.5, 7.5], "texture": "#0"}, - "west": {"uv": [7.25, 7.25, 7.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 7.25, 7.5, 7.5], "texture": "#0"}, - "down": {"uv": [7.25, 7.5, 7.5, 7.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 7.25 + ], + "to": [ + 7.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 7.25, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 7.5, + 7.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_531", - "from": [7.5, 0, 7.25], - "to": [7.75, 0.25, 7.5], - "faces": { - "north": {"uv": [7.75, 7.25, 7.5, 7.5], "texture": "#0"}, - "east": {"uv": [7.5, 7.25, 7.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 7.25, 7.75, 7.5], "texture": "#0"}, - "west": {"uv": [7.5, 7.25, 7.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 7.25, 7.75, 7.5], "texture": "#0"}, - "down": {"uv": [7.5, 7.5, 7.75, 7.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 7.25 + ], + "to": [ + 7.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 7.25, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.25, + 7.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7.5, + 7.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_532", - "from": [7.75, 0, 7.25], - "to": [8, 0.25, 7.5], - "faces": { - "north": {"uv": [8, 7.25, 7.75, 7.5], "texture": "#0"}, - "east": {"uv": [7.75, 7.25, 8, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 7.25, 8, 7.5], "texture": "#0"}, - "west": {"uv": [7.75, 7.25, 8, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 7.25, 8, 7.5], "texture": "#0"}, - "down": {"uv": [7.75, 7.5, 8, 7.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 7.25 + ], + "to": [ + 8, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 7.25, + 7.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7.25, + 8, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7.25, + 8, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 7.25, + 8, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 7.25, + 8, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7.5, + 8, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_533", - "from": [8, 0, 7.25], - "to": [8.25, 0.25, 7.5], - "faces": { - "north": {"uv": [8.25, 7.25, 8, 7.5], "texture": "#0"}, - "east": {"uv": [8, 7.25, 8.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 7.25, 8.25, 7.5], "texture": "#0"}, - "west": {"uv": [8, 7.25, 8.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7.25, 8.25, 7.5], "texture": "#0"}, - "down": {"uv": [8, 7.5, 8.25, 7.25], "texture": "#0"} + "from": [ + 8, + 0, + 7.25 + ], + "to": [ + 8.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 7.25, + 8, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7.25, + 8.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.25, + 8.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.25, + 8.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.25, + 8.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7.5, + 8.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_534", - "from": [8.25, 0, 7.25], - "to": [8.5, 0.25, 7.5], - "faces": { - "north": {"uv": [8.5, 7.25, 8.25, 7.5], "texture": "#0"}, - "east": {"uv": [8.25, 7.25, 8.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7.25, 8.5, 7.5], "texture": "#0"}, - "west": {"uv": [8.25, 7.25, 8.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7.25, 8.5, 7.5], "texture": "#0"}, - "down": {"uv": [8.25, 7.5, 8.5, 7.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 7.25 + ], + "to": [ + 8.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 7.25, + 8.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_535", - "from": [8.5, 0, 7.25], - "to": [8.75, 0.25, 7.5], - "faces": { - "north": {"uv": [8.75, 7.25, 8.5, 7.5], "texture": "#0"}, - "east": {"uv": [8.5, 7.25, 8.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 7.25, 8.75, 7.5], "texture": "#0"}, - "west": {"uv": [8.5, 7.25, 8.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 7.25, 8.75, 7.5], "texture": "#0"}, - "down": {"uv": [8.5, 7.5, 8.75, 7.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 7.25 + ], + "to": [ + 8.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7.25, + 8.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 7.5, + 8.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_536", - "from": [8.75, 0, 7.25], - "to": [9, 0.25, 7.5], - "faces": { - "north": {"uv": [9, 7.25, 8.75, 7.5], "texture": "#0"}, - "east": {"uv": [8.75, 7.25, 9, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 7.25, 9, 7.5], "texture": "#0"}, - "west": {"uv": [8.75, 7.25, 9, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7.25, 9, 7.5], "texture": "#0"}, - "down": {"uv": [8.75, 7.5, 9, 7.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 7.25 + ], + "to": [ + 9, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 7.25, + 8.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 7.25, + 9, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7.25, + 9, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7.25, + 9, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7.25, + 9, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 7.5, + 9, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_537", - "from": [9, 0, 7.25], - "to": [9.25, 0.25, 7.5], - "faces": { - "north": {"uv": [9.25, 7.25, 9, 7.5], "texture": "#0"}, - "east": {"uv": [9, 7.25, 9.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.25, 9.25, 7.5], "texture": "#0"}, - "west": {"uv": [9, 7.25, 9.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.25, 9.25, 7.5], "texture": "#0"}, - "down": {"uv": [9, 7.5, 9.25, 7.25], "texture": "#0"} + "from": [ + 9, + 0, + 7.25 + ], + "to": [ + 9.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 7.25, + 9, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.5, + 9.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_538", - "from": [9.25, 0, 7.25], - "to": [9.5, 0.25, 7.5], - "faces": { - "north": {"uv": [9.5, 7.25, 9.25, 7.5], "texture": "#0"}, - "east": {"uv": [9.25, 7.25, 9.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7.25, 9.5, 7.5], "texture": "#0"}, - "west": {"uv": [9.25, 7.25, 9.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7.25, 9.5, 7.5], "texture": "#0"}, - "down": {"uv": [9.25, 7.5, 9.5, 7.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 7.25 + ], + "to": [ + 9.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 7.25, + 9.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.25, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.5, + 9.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_539", - "from": [9.5, 0, 7.25], - "to": [9.75, 0.25, 7.5], - "faces": { - "north": {"uv": [9.75, 7.25, 9.5, 7.5], "texture": "#0"}, - "east": {"uv": [9.5, 7.25, 9.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.25, 9.75, 7.5], "texture": "#0"}, - "west": {"uv": [9.5, 7.25, 9.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7.25, 9.75, 7.5], "texture": "#0"}, - "down": {"uv": [9.5, 7.5, 9.75, 7.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 7.25 + ], + "to": [ + 9.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 7.25, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7.25, + 9.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.25, + 9.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.25, + 9.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.25, + 9.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_540", - "from": [9.75, 0, 7.25], - "to": [10, 0.25, 7.5], - "faces": { - "north": {"uv": [10, 7.25, 9.75, 7.5], "texture": "#0"}, - "east": {"uv": [9.75, 7.25, 10, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 7.25, 10, 7.5], "texture": "#0"}, - "west": {"uv": [9.75, 7.25, 10, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7.25, 10, 7.5], "texture": "#0"}, - "down": {"uv": [9.75, 7.5, 10, 7.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 7.25 + ], + "to": [ + 10, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 7.25, + 9.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 7.25, + 10, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 7.25, + 10, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7.25, + 10, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7.25, + 10, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 7.5, + 10, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_541", - "from": [10, 0, 7.25], - "to": [10.25, 0.25, 7.5], - "faces": { - "north": {"uv": [10.25, 7.25, 10, 7.5], "texture": "#0"}, - "east": {"uv": [10, 7.25, 10.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.25, 10.25, 7.5], "texture": "#0"}, - "west": {"uv": [10, 7.25, 10.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7.25, 10.25, 7.5], "texture": "#0"}, - "down": {"uv": [10, 7.5, 10.25, 7.25], "texture": "#0"} + "from": [ + 10, + 0, + 7.25 + ], + "to": [ + 10.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 7.25, + 10, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.5, + 10.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_542", - "from": [10.25, 0, 7.25], - "to": [10.5, 0.25, 7.5], - "faces": { - "north": {"uv": [10.5, 7.25, 10.25, 7.5], "texture": "#0"}, - "east": {"uv": [10.25, 7.25, 10.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 7.25, 10.5, 7.5], "texture": "#0"}, - "west": {"uv": [10.25, 7.25, 10.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7.25, 10.5, 7.5], "texture": "#0"}, - "down": {"uv": [10.25, 7.5, 10.5, 7.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 7.25 + ], + "to": [ + 10.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 7.25, + 10.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 7.5, + 10.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_543", - "from": [10.5, 0, 7.25], - "to": [10.75, 0.25, 7.5], - "faces": { - "north": {"uv": [10.75, 7.25, 10.5, 7.5], "texture": "#0"}, - "east": {"uv": [10.5, 7.25, 10.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.25, 10.75, 7.5], "texture": "#0"}, - "west": {"uv": [10.5, 7.25, 10.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7.25, 10.75, 7.5], "texture": "#0"}, - "down": {"uv": [10.5, 7.5, 10.75, 7.25], "texture": "#0"} + "from": [ + 10.5, + 0, + 7.25 + ], + "to": [ + 10.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7.25, + 10.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_544", - "from": [10.75, 0, 7.25], - "to": [11, 0.25, 7.5], - "faces": { - "north": {"uv": [11, 7.25, 10.75, 7.5], "texture": "#0"}, - "east": {"uv": [10.75, 7.25, 11, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 7.25, 11, 7.5], "texture": "#0"}, - "west": {"uv": [10.75, 7.25, 11, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7.25, 11, 7.5], "texture": "#0"}, - "down": {"uv": [10.75, 7.5, 11, 7.25], "texture": "#0"} + "from": [ + 10.75, + 0, + 7.25 + ], + "to": [ + 11, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 11, + 7.25, + 10.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 7.25, + 11, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.25, + 11, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7.25, + 11, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7.25, + 11, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7.5, + 11, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_545", - "from": [11, 0, 7.25], - "to": [11.25, 0.25, 7.5], - "faces": { - "north": {"uv": [11.25, 7.25, 11, 7.5], "texture": "#0"}, - "east": {"uv": [11, 7.25, 11.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 7.25, 11.25, 7.5], "texture": "#0"}, - "west": {"uv": [11, 7.25, 11.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 7.25, 11.25, 7.5], "texture": "#0"}, - "down": {"uv": [11, 7.5, 11.25, 7.25], "texture": "#0"} + "from": [ + 11, + 0, + 7.25 + ], + "to": [ + 11.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 7.25, + 11, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7.25, + 11.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 7.25, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7.25, + 11.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7.25, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 7.5, + 11.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_546", - "from": [11.25, 0, 7.25], - "to": [11.5, 0.25, 7.5], - "faces": { - "north": {"uv": [11.5, 7.25, 11.25, 7.5], "texture": "#0"}, - "east": {"uv": [11.25, 7.25, 11.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 7.25, 11.5, 7.5], "texture": "#0"}, - "west": {"uv": [11.25, 7.25, 11.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7.25, 11.5, 7.5], "texture": "#0"}, - "down": {"uv": [11.25, 7.5, 11.5, 7.25], "texture": "#0"} + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 11.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 7.25, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 7.25, + 11.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 7.25, + 11.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 11.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_547", - "from": [11.5, 0, 7.25], - "to": [11.75, 0.25, 7.5], - "faces": { - "north": {"uv": [11.75, 7.25, 11.5, 7.5], "texture": "#0"}, - "east": {"uv": [11.5, 7.25, 11.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7.25, 11.75, 7.5], "texture": "#0"}, - "west": {"uv": [11.5, 7.25, 11.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7.25, 11.75, 7.5], "texture": "#0"}, - "down": {"uv": [11.5, 7.5, 11.75, 7.25], "texture": "#0"} + "from": [ + 11.5, + 0, + 7.25 + ], + "to": [ + 11.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 7.25, + 11.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7.25, + 11.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_548", - "from": [11.75, 0, 7.25], - "to": [12, 0.25, 7.5], - "faces": { - "north": {"uv": [12, 7.25, 11.75, 7.5], "texture": "#0"}, - "east": {"uv": [11.75, 7.25, 12, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7.25, 12, 7.5], "texture": "#0"}, - "west": {"uv": [11.75, 7.25, 12, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.25, 12, 7.5], "texture": "#0"}, - "down": {"uv": [11.75, 7.5, 12, 7.25], "texture": "#0"} + "from": [ + 11.75, + 0, + 7.25 + ], + "to": [ + 12, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 12, + 7.25, + 11.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.25, + 12, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7.5, + 12, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_549", - "from": [12, 0, 7.25], - "to": [12.25, 0.25, 7.5], - "faces": { - "north": {"uv": [12.25, 7.25, 12, 7.5], "texture": "#0"}, - "east": {"uv": [12, 7.25, 12.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7.25, 12.25, 7.5], "texture": "#0"}, - "west": {"uv": [12, 7.25, 12.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7.25, 12.25, 7.5], "texture": "#0"}, - "down": {"uv": [12, 7.5, 12.25, 7.25], "texture": "#0"} + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7.25, + 12.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.5, + 12.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_550", - "from": [12.25, 0, 7.25], - "to": [12.5, 0.25, 7.5], - "faces": { - "north": {"uv": [12.5, 7.25, 12.25, 7.5], "texture": "#0"}, - "east": {"uv": [12.25, 7.25, 12.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 7.25, 12.5, 7.5], "texture": "#0"}, - "west": {"uv": [12.25, 7.25, 12.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 7.25, 12.5, 7.5], "texture": "#0"}, - "down": {"uv": [12.25, 7.5, 12.5, 7.25], "texture": "#0"} + "from": [ + 12.25, + 0, + 7.25 + ], + "to": [ + 12.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 7.25, + 12.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 7.25, + 12.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 7.25, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 7.25, + 12.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 7.25, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 7.5, + 12.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_551", - "from": [12.5, 0, 7.25], - "to": [12.75, 0.25, 7.5], - "faces": { - "north": {"uv": [12.75, 7.25, 12.5, 7.5], "texture": "#0"}, - "east": {"uv": [12.5, 7.25, 12.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 7.25, 12.75, 7.5], "texture": "#0"}, - "west": {"uv": [12.5, 7.25, 12.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 7.25, 12.75, 7.5], "texture": "#0"}, - "down": {"uv": [12.5, 7.5, 12.75, 7.25], "texture": "#0"} + "from": [ + 12.5, + 0, + 7.25 + ], + "to": [ + 12.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 7.25, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7.25, + 12.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 7.25, + 12.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 7.25, + 12.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 7.25, + 12.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 7.5, + 12.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_552", - "from": [12.75, 0, 7.25], - "to": [13, 0.25, 7.5], - "faces": { - "north": {"uv": [13, 7.25, 12.75, 7.5], "texture": "#0"}, - "east": {"uv": [12.75, 7.25, 13, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 7.25, 13, 7.5], "texture": "#0"}, - "west": {"uv": [12.75, 7.25, 13, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 7.25, 13, 7.5], "texture": "#0"}, - "down": {"uv": [12.75, 7.5, 13, 7.25], "texture": "#0"} + "from": [ + 12.75, + 0, + 7.25 + ], + "to": [ + 13, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 13, + 7.25, + 12.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.25, + 13, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 7.25, + 13, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 7.25, + 13, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 7.25, + 13, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 7.5, + 13, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_553", - "from": [13, 0, 7.25], - "to": [13.25, 0.25, 7.5], - "faces": { - "north": {"uv": [13.25, 7.25, 13, 7.5], "texture": "#0"}, - "east": {"uv": [13, 7.25, 13.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7.25, 13.25, 7.5], "texture": "#0"}, - "west": {"uv": [13, 7.25, 13.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7.25, 13.25, 7.5], "texture": "#0"}, - "down": {"uv": [13, 7.5, 13.25, 7.25], "texture": "#0"} + "from": [ + 13, + 0, + 7.25 + ], + "to": [ + 13.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 7.25, + 13, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7.25, + 13.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7.25, + 13.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 7.5, + 13.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_554", - "from": [13.25, 0, 7.25], - "to": [13.5, 0.25, 7.5], - "faces": { - "north": {"uv": [13.5, 7.25, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#0"}, - "west": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [13.25, 7.5, 13.5, 7.25], "texture": "#0"} + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_555", - "from": [13.5, 0, 7.25], - "to": [13.75, 0.25, 7.5], - "faces": { - "north": {"uv": [13.75, 7.25, 13.5, 7.5], "texture": "#0"}, - "east": {"uv": [13.5, 7.25, 13.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.25, 13.75, 7.5], "texture": "#0"}, - "west": {"uv": [13.5, 7.25, 13.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.25, 13.75, 7.5], "texture": "#0"}, - "down": {"uv": [13.5, 7.5, 13.75, 7.25], "texture": "#0"} + "from": [ + 13.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_556", - "from": [13.75, 0, 7.25], - "to": [14, 0.25, 7.5], - "faces": { - "north": {"uv": [14, 7.25, 13.75, 7.5], "texture": "#0"}, - "east": {"uv": [13.75, 7.25, 14, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 7.25, 14, 7.5], "texture": "#0"}, - "west": {"uv": [13.75, 7.25, 14, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7.25, 14, 7.5], "texture": "#0"}, - "down": {"uv": [13.75, 7.5, 14, 7.25], "texture": "#0"} + "from": [ + 13.75, + 0, + 7.25 + ], + "to": [ + 14, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 14, + 7.25, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7.25, + 14, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 7.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7.25, + 14, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7.5, + 14, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_557", - "from": [14, 0, 7.25], - "to": [14.25, 0.25, 7.5], - "faces": { - "north": {"uv": [14.25, 7.25, 14, 7.5], "texture": "#0"}, - "east": {"uv": [14, 7.25, 14.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.25, 14.25, 7.5], "texture": "#0"}, - "west": {"uv": [14, 7.25, 14.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7.25, 14.25, 7.5], "texture": "#0"}, - "down": {"uv": [14, 7.5, 14.25, 7.25], "texture": "#0"} + "from": [ + 14, + 0, + 7.25 + ], + "to": [ + 14.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 7.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.5, + 14.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_558", - "from": [14.25, 0, 7.25], - "to": [14.5, 0.25, 7.5], - "faces": { - "north": {"uv": [14.5, 7.25, 14.25, 7.5], "texture": "#0"}, - "east": {"uv": [14.25, 7.25, 14.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.25, 14.5, 7.5], "texture": "#0"}, - "west": {"uv": [14.25, 7.25, 14.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.25, 14.5, 7.5], "texture": "#0"}, - "down": {"uv": [14.25, 7.5, 14.5, 7.25], "texture": "#0"} + "from": [ + 14.25, + 0, + 7.25 + ], + "to": [ + 14.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.25, + 14.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_559", - "from": [14.5, 0, 7.25], - "to": [14.75, 0.25, 7.5], - "faces": { - "north": {"uv": [14.75, 7.25, 14.5, 7.5], "texture": "#0"}, - "east": {"uv": [14.5, 7.25, 14.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.25, 14.75, 7.5], "texture": "#0"}, - "west": {"uv": [14.5, 7.25, 14.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.25, 14.75, 7.5], "texture": "#0"}, - "down": {"uv": [14.5, 7.5, 14.75, 7.25], "texture": "#0"} + "from": [ + 14.5, + 0, + 7.25 + ], + "to": [ + 14.75, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 7.25, + 14.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_560", - "from": [14.75, 0, 7.25], - "to": [15, 0.25, 7.5], - "faces": { - "north": {"uv": [15, 7.25, 14.75, 7.5], "texture": "#0"}, - "east": {"uv": [14.75, 7.25, 15, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#0"}, - "west": {"uv": [14.75, 7.25, 15, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#0"}, - "down": {"uv": [14.75, 7.5, 15, 7.25], "texture": "#0"} + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 15, + 7.25, + 14.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_561", - "from": [15, 0, 7.25], - "to": [15.25, 0.25, 7.5], - "faces": { - "north": {"uv": [15.25, 7.25, 15, 7.5], "texture": "#0"}, - "east": {"uv": [15, 7.25, 15.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.25, 15.25, 7.5], "texture": "#0"}, - "west": {"uv": [15, 7.25, 15.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.25, 15.25, 7.5], "texture": "#0"}, - "down": {"uv": [15, 7.5, 15.25, 7.25], "texture": "#0"} + "from": [ + 15, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 7.25, + 15, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7.5, + 15.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_562", - "from": [15.25, 0, 7.25], - "to": [15.5, 0.25, 7.5], - "faces": { - "north": {"uv": [15.5, 7.25, 15.25, 7.5], "texture": "#0"}, - "east": {"uv": [15.25, 7.25, 15.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#0"}, - "west": {"uv": [15.25, 7.25, 15.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#0"}, - "down": {"uv": [15.25, 7.5, 15.5, 7.25], "texture": "#0"} + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_563", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 7.75], - "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 7.75], "texture": "#0"}, - "down": {"uv": [0.75, 7.75, 1, 7.5], "texture": "#0"} + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 7.75, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_564", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 7.75], - "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#0"}, - "east": {"uv": [1, 7.5, 1.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.5, 1.25, 7.75], "texture": "#0"}, - "west": {"uv": [1, 7.5, 1.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.5, 1.25, 7.75], "texture": "#0"}, - "down": {"uv": [1, 7.75, 1.25, 7.5], "texture": "#0"} + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7.75, + 1.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_565", - "from": [1.25, 0, 7.5], - "to": [1.5, 0.25, 7.75], - "faces": { - "north": {"uv": [1.5, 7.5, 1.25, 7.75], "texture": "#0"}, - "east": {"uv": [1.25, 7.5, 1.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.5, 1.5, 7.75], "texture": "#0"}, - "west": {"uv": [1.25, 7.5, 1.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.5, 1.5, 7.75], "texture": "#0"}, - "down": {"uv": [1.25, 7.75, 1.5, 7.5], "texture": "#0"} + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 7.5, + 1.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7.75, + 1.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_566", - "from": [1.5, 0, 7.5], - "to": [1.75, 0.25, 7.75], - "faces": { - "north": {"uv": [1.75, 7.5, 1.5, 7.75], "texture": "#0"}, - "east": {"uv": [1.5, 7.5, 1.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7.5, 1.75, 7.75], "texture": "#0"}, - "west": {"uv": [1.5, 7.5, 1.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.5, 1.75, 7.75], "texture": "#0"}, - "down": {"uv": [1.5, 7.75, 1.75, 7.5], "texture": "#0"} + "from": [ + 1.5, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7.75, + 1.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_567", - "from": [1.75, 0, 7.5], - "to": [2, 0.25, 7.75], - "faces": { - "north": {"uv": [2, 7.5, 1.75, 7.75], "texture": "#0"}, - "east": {"uv": [1.75, 7.5, 2, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.5, 2, 7.75], "texture": "#0"}, - "west": {"uv": [1.75, 7.5, 2, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.5, 2, 7.75], "texture": "#0"}, - "down": {"uv": [1.75, 7.75, 2, 7.5], "texture": "#0"} + "from": [ + 1.75, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 2, + 7.5, + 1.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7.75, + 2, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_568", - "from": [2, 0, 7.5], - "to": [2.25, 0.25, 7.75], - "faces": { - "north": {"uv": [2.25, 7.5, 2, 7.75], "texture": "#0"}, - "east": {"uv": [2, 7.5, 2.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 7.5, 2.25, 7.75], "texture": "#0"}, - "west": {"uv": [2, 7.5, 2.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7.5, 2.25, 7.75], "texture": "#0"}, - "down": {"uv": [2, 7.75, 2.25, 7.5], "texture": "#0"} + "from": [ + 2, + 0, + 7.5 + ], + "to": [ + 2.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.5, + 2.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 7.5, + 2.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.5, + 2.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.5, + 2.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 7.75, + 2.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_569", - "from": [2.25, 0, 7.5], - "to": [2.5, 0.25, 7.75], - "faces": { - "north": {"uv": [2.5, 7.5, 2.25, 7.75], "texture": "#0"}, - "east": {"uv": [2.25, 7.5, 2.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7.5, 2.5, 7.75], "texture": "#0"}, - "west": {"uv": [2.25, 7.5, 2.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7.5, 2.5, 7.75], "texture": "#0"}, - "down": {"uv": [2.25, 7.75, 2.5, 7.5], "texture": "#0"} + "from": [ + 2.25, + 0, + 7.5 + ], + "to": [ + 2.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 7.5, + 2.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.5, + 2.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7.5, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.5, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7.75, + 2.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_570", - "from": [2.5, 0, 7.5], - "to": [2.75, 0.25, 7.75], - "faces": { - "north": {"uv": [2.75, 7.5, 2.5, 7.75], "texture": "#0"}, - "east": {"uv": [2.5, 7.5, 2.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 7.5, 2.75, 7.75], "texture": "#0"}, - "west": {"uv": [2.5, 7.5, 2.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.5, 2.75, 7.75], "texture": "#0"}, - "down": {"uv": [2.5, 7.75, 2.75, 7.5], "texture": "#0"} + "from": [ + 2.5, + 0, + 7.5 + ], + "to": [ + 2.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 7.5, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 7.75, + 2.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_571", - "from": [2.75, 0, 7.5], - "to": [3, 0.25, 7.75], - "faces": { - "north": {"uv": [3, 7.5, 2.75, 7.75], "texture": "#0"}, - "east": {"uv": [2.75, 7.5, 3, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 7.5, 3, 7.75], "texture": "#0"}, - "west": {"uv": [2.75, 7.5, 3, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7.5, 3, 7.75], "texture": "#0"}, - "down": {"uv": [2.75, 7.75, 3, 7.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 7.5 + ], + "to": [ + 3, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 7.5, + 2.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.5, + 3, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 7.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7.5, + 3, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 7.75, + 3, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_572", - "from": [3, 0, 7.5], - "to": [3.25, 0.25, 7.75], - "faces": { - "north": {"uv": [3.25, 7.5, 3, 7.75], "texture": "#0"}, - "east": {"uv": [3, 7.5, 3.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 7.5, 3.25, 7.75], "texture": "#0"}, - "west": {"uv": [3, 7.5, 3.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7.5, 3.25, 7.75], "texture": "#0"}, - "down": {"uv": [3, 7.75, 3.25, 7.5], "texture": "#0"} + "from": [ + 3, + 0, + 7.5 + ], + "to": [ + 3.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 7.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7.5, + 3.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7.5, + 3.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7.5, + 3.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7.75, + 3.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_573", - "from": [3.25, 0, 7.5], - "to": [3.5, 0.25, 7.75], - "faces": { - "north": {"uv": [3.5, 7.5, 3.25, 7.75], "texture": "#0"}, - "east": {"uv": [3.25, 7.5, 3.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 7.5, 3.5, 7.75], "texture": "#0"}, - "west": {"uv": [3.25, 7.5, 3.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 7.5, 3.5, 7.75], "texture": "#0"}, - "down": {"uv": [3.25, 7.75, 3.5, 7.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 7.5 + ], + "to": [ + 3.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 7.5, + 3.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 7.75, + 3.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_574", - "from": [3.5, 0, 7.5], - "to": [3.75, 0.25, 7.75], - "faces": { - "north": {"uv": [3.75, 7.5, 3.5, 7.75], "texture": "#0"}, - "east": {"uv": [3.5, 7.5, 3.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 7.5, 3.75, 7.75], "texture": "#0"}, - "west": {"uv": [3.5, 7.5, 3.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7.5, 3.75, 7.75], "texture": "#0"}, - "down": {"uv": [3.5, 7.75, 3.75, 7.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 7.5 + ], + "to": [ + 3.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 7.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7.5, + 3.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 7.5, + 3.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7.5, + 3.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7.5, + 3.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7.75, + 3.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_575", - "from": [3.75, 0, 7.5], - "to": [4, 0.25, 7.75], - "faces": { - "north": {"uv": [4, 7.5, 3.75, 7.75], "texture": "#0"}, - "east": {"uv": [3.75, 7.5, 4, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 7.5, 4, 7.75], "texture": "#0"}, - "west": {"uv": [3.75, 7.5, 4, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 7.5, 4, 7.75], "texture": "#0"}, - "down": {"uv": [3.75, 7.75, 4, 7.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 7.5 + ], + "to": [ + 4, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 7.5, + 3.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7.5, + 4, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7.5, + 4, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 7.5, + 4, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7.5, + 4, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.75, + 4, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_576", - "from": [4, 0, 7.5], - "to": [4.25, 0.25, 7.75], - "faces": { - "north": {"uv": [4.25, 7.5, 4, 7.75], "texture": "#0"}, - "east": {"uv": [4, 7.5, 4.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7.5, 4.25, 7.75], "texture": "#0"}, - "west": {"uv": [4, 7.5, 4.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7.5, 4.25, 7.75], "texture": "#0"}, - "down": {"uv": [4, 7.75, 4.25, 7.5], "texture": "#0"} + "from": [ + 4, + 0, + 7.5 + ], + "to": [ + 4.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 7.5, + 4, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7.5, + 4.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7.5, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.75, + 4.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_577", - "from": [4.25, 0, 7.5], - "to": [4.5, 0.25, 7.75], - "faces": { - "north": {"uv": [4.5, 7.5, 4.25, 7.75], "texture": "#0"}, - "east": {"uv": [4.25, 7.5, 4.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.5, 4.5, 7.75], "texture": "#0"}, - "west": {"uv": [4.25, 7.5, 4.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.5, 4.5, 7.75], "texture": "#0"}, - "down": {"uv": [4.25, 7.75, 4.5, 7.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 7.5 + ], + "to": [ + 4.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 7.5, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7.5, + 4.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.5, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.5, + 4.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.5, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7.75, + 4.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_578", - "from": [4.5, 0, 7.5], - "to": [4.75, 0.25, 7.75], - "faces": { - "north": {"uv": [4.75, 7.5, 4.5, 7.75], "texture": "#0"}, - "east": {"uv": [4.5, 7.5, 4.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7.5, 4.75, 7.75], "texture": "#0"}, - "west": {"uv": [4.5, 7.5, 4.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 7.5, 4.75, 7.75], "texture": "#0"}, - "down": {"uv": [4.5, 7.75, 4.75, 7.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 7.5 + ], + "to": [ + 4.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 7.5, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.75, + 4.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_579", - "from": [4.75, 0, 7.5], - "to": [5, 0.25, 7.75], - "faces": { - "north": {"uv": [5, 7.5, 4.75, 7.75], "texture": "#0"}, - "east": {"uv": [4.75, 7.5, 5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7.5, 5, 7.75], "texture": "#0"}, - "west": {"uv": [4.75, 7.5, 5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 7.5, 5, 7.75], "texture": "#0"}, - "down": {"uv": [4.75, 7.75, 5, 7.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 7.5 + ], + "to": [ + 5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 7.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7.75, + 5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_580", - "from": [5, 0, 7.5], - "to": [5.25, 0.25, 7.75], - "faces": { - "north": {"uv": [5.25, 7.5, 5, 7.75], "texture": "#0"}, - "east": {"uv": [5, 7.5, 5.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 7.5, 5.25, 7.75], "texture": "#0"}, - "west": {"uv": [5, 7.5, 5.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 7.5, 5.25, 7.75], "texture": "#0"}, - "down": {"uv": [5, 7.75, 5.25, 7.5], "texture": "#0"} + "from": [ + 5, + 0, + 7.5 + ], + "to": [ + 5.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 7.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.5, + 5.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7.5, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.5, + 5.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.5, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.75, + 5.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_581", - "from": [5.25, 0, 7.5], - "to": [5.5, 0.25, 7.75], - "faces": { - "north": {"uv": [5.5, 7.5, 5.25, 7.75], "texture": "#0"}, - "east": {"uv": [5.25, 7.5, 5.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 7.5, 5.5, 7.75], "texture": "#0"}, - "west": {"uv": [5.25, 7.5, 5.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 7.5, 5.5, 7.75], "texture": "#0"}, - "down": {"uv": [5.25, 7.75, 5.5, 7.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 7.5 + ], + "to": [ + 5.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 7.5, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.5, + 5.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 7.5, + 5.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7.5, + 5.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7.5, + 5.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 7.75, + 5.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_582", - "from": [5.5, 0, 7.5], - "to": [5.75, 0.25, 7.75], - "faces": { - "north": {"uv": [5.75, 7.5, 5.5, 7.75], "texture": "#0"}, - "east": {"uv": [5.5, 7.5, 5.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 7.5, 5.75, 7.75], "texture": "#0"}, - "west": {"uv": [5.5, 7.5, 5.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7.5, 5.75, 7.75], "texture": "#0"}, - "down": {"uv": [5.5, 7.75, 5.75, 7.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 7.5 + ], + "to": [ + 5.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 7.5, + 5.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.75, + 5.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_583", - "from": [5.75, 0, 7.5], - "to": [6, 0.25, 7.75], - "faces": { - "north": {"uv": [6, 7.5, 5.75, 7.75], "texture": "#0"}, - "east": {"uv": [5.75, 7.5, 6, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 7.5, 6, 7.75], "texture": "#0"}, - "west": {"uv": [5.75, 7.5, 6, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7.5, 6, 7.75], "texture": "#0"}, - "down": {"uv": [5.75, 7.75, 6, 7.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 7.5 + ], + "to": [ + 6, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.5, + 6, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 7.5, + 6, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.5, + 6, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.5, + 6, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 7.75, + 6, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_584", - "from": [6, 0, 7.5], - "to": [6.25, 0.25, 7.75], - "faces": { - "north": {"uv": [6.25, 7.5, 6, 7.75], "texture": "#0"}, - "east": {"uv": [6, 7.5, 6.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 7.5, 6.25, 7.75], "texture": "#0"}, - "west": {"uv": [6, 7.5, 6.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 7.5, 6.25, 7.75], "texture": "#0"}, - "down": {"uv": [6, 7.75, 6.25, 7.5], "texture": "#0"} + "from": [ + 6, + 0, + 7.5 + ], + "to": [ + 6.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 7.5, + 6, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.5, + 6.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 7.5, + 6.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7.5, + 6.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7.5, + 6.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.75, + 6.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_585", - "from": [6.25, 0, 7.5], - "to": [6.5, 0.25, 7.75], - "faces": { - "north": {"uv": [6.5, 7.5, 6.25, 7.75], "texture": "#0"}, - "east": {"uv": [6.25, 7.5, 6.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 7.5, 6.5, 7.75], "texture": "#0"}, - "west": {"uv": [6.25, 7.5, 6.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7.5, 6.5, 7.75], "texture": "#0"}, - "down": {"uv": [6.25, 7.75, 6.5, 7.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 7.5 + ], + "to": [ + 6.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 7.5, + 6.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 7.75, + 6.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_586", - "from": [6.5, 0, 7.5], - "to": [6.75, 0.25, 7.75], - "faces": { - "north": {"uv": [6.75, 7.5, 6.5, 7.75], "texture": "#0"}, - "east": {"uv": [6.5, 7.5, 6.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 7.5, 6.75, 7.75], "texture": "#0"}, - "west": {"uv": [6.5, 7.5, 6.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 7.5, 6.75, 7.75], "texture": "#0"}, - "down": {"uv": [6.5, 7.75, 6.75, 7.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 7.5 + ], + "to": [ + 6.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 7.5, + 6.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7.75, + 6.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_587", - "from": [6.75, 0, 7.5], - "to": [7, 0.25, 7.75], - "faces": { - "north": {"uv": [7, 7.5, 6.75, 7.75], "texture": "#0"}, - "east": {"uv": [6.75, 7.5, 7, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 7.5, 7, 7.75], "texture": "#0"}, - "west": {"uv": [6.75, 7.5, 7, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 7.5, 7, 7.75], "texture": "#0"}, - "down": {"uv": [6.75, 7.75, 7, 7.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 7.5 + ], + "to": [ + 7, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7.5, + 7, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.5, + 7, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 7.5, + 7, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.5, + 7, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 7.75, + 7, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_588", - "from": [7, 0, 7.5], - "to": [7.25, 0.25, 7.75], - "faces": { - "north": {"uv": [7.25, 7.5, 7, 7.75], "texture": "#0"}, - "east": {"uv": [7, 7.5, 7.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 7.5, 7.25, 7.75], "texture": "#0"}, - "west": {"uv": [7, 7.5, 7.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7.5, 7.25, 7.75], "texture": "#0"}, - "down": {"uv": [7, 7.75, 7.25, 7.5], "texture": "#0"} + "from": [ + 7, + 0, + 7.5 + ], + "to": [ + 7.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 7.5, + 7, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7.75, + 7.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_589", - "from": [7.25, 0, 7.5], - "to": [7.5, 0.25, 7.75], - "faces": { - "north": {"uv": [7.5, 7.5, 7.25, 7.75], "texture": "#0"}, - "east": {"uv": [7.25, 7.5, 7.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 7.5, 7.5, 7.75], "texture": "#0"}, - "west": {"uv": [7.25, 7.5, 7.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 7.5, 7.5, 7.75], "texture": "#0"}, - "down": {"uv": [7.25, 7.75, 7.5, 7.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 7.5 + ], + "to": [ + 7.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 7.5, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 7.5, + 7.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.5, + 7.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.5, + 7.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7.5, + 7.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 7.75, + 7.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_590", - "from": [7.5, 0, 7.5], - "to": [7.75, 0.25, 7.75], - "faces": { - "north": {"uv": [7.75, 7.5, 7.5, 7.75], "texture": "#0"}, - "east": {"uv": [7.5, 7.5, 7.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 7.5, 7.75, 7.75], "texture": "#0"}, - "west": {"uv": [7.5, 7.5, 7.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 7.5, 7.75, 7.75], "texture": "#0"}, - "down": {"uv": [7.5, 7.75, 7.75, 7.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 7.5 + ], + "to": [ + 7.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 7.5, + 7.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.5, + 7.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.5, + 7.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.5, + 7.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.5, + 7.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7.75, + 7.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_591", - "from": [7.75, 0, 7.5], - "to": [8, 0.25, 7.75], - "faces": { - "north": {"uv": [8, 7.5, 7.75, 7.75], "texture": "#0"}, - "east": {"uv": [7.75, 7.5, 8, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 7.5, 8, 7.75], "texture": "#0"}, - "west": {"uv": [7.75, 7.5, 8, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 7.5, 8, 7.75], "texture": "#0"}, - "down": {"uv": [7.75, 7.75, 8, 7.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 7.5 + ], + "to": [ + 8, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 7.5, + 7.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7.5, + 8, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7.5, + 8, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 7.5, + 8, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 7.5, + 8, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7.75, + 8, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_592", - "from": [8, 0, 7.5], - "to": [8.25, 0.25, 7.75], - "faces": { - "north": {"uv": [8.25, 7.5, 8, 7.75], "texture": "#0"}, - "east": {"uv": [8, 7.5, 8.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 7.5, 8.25, 7.75], "texture": "#0"}, - "west": {"uv": [8, 7.5, 8.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7.5, 8.25, 7.75], "texture": "#0"}, - "down": {"uv": [8, 7.75, 8.25, 7.5], "texture": "#0"} + "from": [ + 8, + 0, + 7.5 + ], + "to": [ + 8.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 7.5, + 8, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7.5, + 8.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.5, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.5, + 8.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.5, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7.75, + 8.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_593", - "from": [8.25, 0, 7.5], - "to": [8.5, 0.25, 7.75], - "faces": { - "north": {"uv": [8.5, 7.5, 8.25, 7.75], "texture": "#0"}, - "east": {"uv": [8.25, 7.5, 8.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7.5, 8.5, 7.75], "texture": "#0"}, - "west": {"uv": [8.25, 7.5, 8.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7.5, 8.5, 7.75], "texture": "#0"}, - "down": {"uv": [8.25, 7.75, 8.5, 7.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 7.5 + ], + "to": [ + 8.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 7.5, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7.5, + 8.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 7.75, + 8.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_594", - "from": [8.5, 0, 7.5], - "to": [8.75, 0.25, 7.75], - "faces": { - "north": {"uv": [8.75, 7.5, 8.5, 7.75], "texture": "#0"}, - "east": {"uv": [8.5, 7.5, 8.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 7.5, 8.75, 7.75], "texture": "#0"}, - "west": {"uv": [8.5, 7.5, 8.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 7.5, 8.75, 7.75], "texture": "#0"}, - "down": {"uv": [8.5, 7.75, 8.75, 7.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 7.5 + ], + "to": [ + 8.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 7.5, + 8.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.5, + 8.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 8.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 7.75, + 8.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_595", - "from": [8.75, 0, 7.5], - "to": [9, 0.25, 7.75], - "faces": { - "north": {"uv": [9, 7.5, 8.75, 7.75], "texture": "#0"}, - "east": {"uv": [8.75, 7.5, 9, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 7.5, 9, 7.75], "texture": "#0"}, - "west": {"uv": [8.75, 7.5, 9, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7.5, 9, 7.75], "texture": "#0"}, - "down": {"uv": [8.75, 7.75, 9, 7.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 7.5 + ], + "to": [ + 9, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 7.5, + 8.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 7.5, + 9, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7.5, + 9, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 7.75, + 9, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_596", - "from": [9, 0, 7.5], - "to": [9.25, 0.25, 7.75], - "faces": { - "north": {"uv": [9.25, 7.5, 9, 7.75], "texture": "#0"}, - "east": {"uv": [9, 7.5, 9.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.5, 9.25, 7.75], "texture": "#0"}, - "west": {"uv": [9, 7.5, 9.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.5, 9.25, 7.75], "texture": "#0"}, - "down": {"uv": [9, 7.75, 9.25, 7.5], "texture": "#0"} + "from": [ + 9, + 0, + 7.5 + ], + "to": [ + 9.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7.75, + 9.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_597", - "from": [9.25, 0, 7.5], - "to": [9.5, 0.25, 7.75], - "faces": { - "north": {"uv": [9.5, 7.5, 9.25, 7.75], "texture": "#0"}, - "east": {"uv": [9.25, 7.5, 9.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7.5, 9.5, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 7.5, 9.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7.5, 9.5, 7.75], "texture": "#0"}, - "down": {"uv": [9.25, 7.75, 9.5, 7.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 7.5 + ], + "to": [ + 9.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 7.5, + 9.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7.5, + 9.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.5, + 9.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7.5, + 9.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.5, + 9.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 7.75, + 9.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_598", - "from": [9.5, 0, 7.5], - "to": [9.75, 0.25, 7.75], - "faces": { - "north": {"uv": [9.75, 7.5, 9.5, 7.75], "texture": "#0"}, - "east": {"uv": [9.5, 7.5, 9.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.5, 9.75, 7.75], "texture": "#0"}, - "west": {"uv": [9.5, 7.5, 9.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7.5, 9.75, 7.75], "texture": "#0"}, - "down": {"uv": [9.5, 7.75, 9.75, 7.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 7.5 + ], + "to": [ + 9.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 7.5, + 9.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7.75, + 9.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_599", - "from": [9.75, 0, 7.5], - "to": [10, 0.25, 7.75], - "faces": { - "north": {"uv": [10, 7.5, 9.75, 7.75], "texture": "#0"}, - "east": {"uv": [9.75, 7.5, 10, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 7.5, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.75, 7.5, 10, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7.5, 10, 7.75], "texture": "#0"}, - "down": {"uv": [9.75, 7.75, 10, 7.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 7.5 + ], + "to": [ + 10, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 7.5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 7.5, + 10, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7.5, + 10, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 7.75, + 10, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_600", - "from": [10, 0, 7.5], - "to": [10.25, 0.25, 7.75], - "faces": { - "north": {"uv": [10.25, 7.5, 10, 7.75], "texture": "#0"}, - "east": {"uv": [10, 7.5, 10.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.5, 10.25, 7.75], "texture": "#0"}, - "west": {"uv": [10, 7.5, 10.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7.5, 10.25, 7.75], "texture": "#0"}, - "down": {"uv": [10, 7.75, 10.25, 7.5], "texture": "#0"} + "from": [ + 10, + 0, + 7.5 + ], + "to": [ + 10.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 7.75, + 10.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_601", - "from": [10.25, 0, 7.5], - "to": [10.5, 0.25, 7.75], - "faces": { - "north": {"uv": [10.5, 7.5, 10.25, 7.75], "texture": "#0"}, - "east": {"uv": [10.25, 7.5, 10.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 7.5, 10.5, 7.75], "texture": "#0"}, - "west": {"uv": [10.25, 7.5, 10.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7.5, 10.5, 7.75], "texture": "#0"}, - "down": {"uv": [10.25, 7.75, 10.5, 7.5], "texture": "#0"} + "from": [ + 10.25, + 0, + 7.5 + ], + "to": [ + 10.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7.5, + 10.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 7.5, + 10.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7.5, + 10.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7.5, + 10.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 7.75, + 10.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_602", - "from": [10.5, 0, 7.5], - "to": [10.75, 0.25, 7.75], - "faces": { - "north": {"uv": [10.75, 7.5, 10.5, 7.75], "texture": "#0"}, - "east": {"uv": [10.5, 7.5, 10.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.5, 10.75, 7.75], "texture": "#0"}, - "west": {"uv": [10.5, 7.5, 10.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7.5, 10.75, 7.75], "texture": "#0"}, - "down": {"uv": [10.5, 7.75, 10.75, 7.5], "texture": "#0"} + "from": [ + 10.5, + 0, + 7.5 + ], + "to": [ + 10.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 7.5, + 10.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7.75, + 10.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_603", - "from": [10.75, 0, 7.5], - "to": [11, 0.25, 7.75], - "faces": { - "north": {"uv": [11, 7.5, 10.75, 7.75], "texture": "#0"}, - "east": {"uv": [10.75, 7.5, 11, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 7.5, 11, 7.75], "texture": "#0"}, - "west": {"uv": [10.75, 7.5, 11, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7.5, 11, 7.75], "texture": "#0"}, - "down": {"uv": [10.75, 7.75, 11, 7.5], "texture": "#0"} + "from": [ + 10.75, + 0, + 7.5 + ], + "to": [ + 11, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 11, + 7.5, + 10.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 7.5, + 11, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.5, + 11, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7.5, + 11, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7.5, + 11, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 7.75, + 11, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_604", - "from": [11, 0, 7.5], - "to": [11.25, 0.25, 7.75], - "faces": { - "north": {"uv": [11.25, 7.5, 11, 7.75], "texture": "#0"}, - "east": {"uv": [11, 7.5, 11.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 7.5, 11.25, 7.75], "texture": "#0"}, - "west": {"uv": [11, 7.5, 11.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 7.5, 11.25, 7.75], "texture": "#0"}, - "down": {"uv": [11, 7.75, 11.25, 7.5], "texture": "#0"} + "from": [ + 11, + 0, + 7.5 + ], + "to": [ + 11.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 7.5, + 11, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7.5, + 11.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 7.5, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7.5, + 11.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7.5, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 7.75, + 11.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_605", - "from": [11.25, 0, 7.5], - "to": [11.5, 0.25, 7.75], - "faces": { - "north": {"uv": [11.5, 7.5, 11.25, 7.75], "texture": "#0"}, - "east": {"uv": [11.25, 7.5, 11.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 7.5, 11.5, 7.75], "texture": "#0"}, - "west": {"uv": [11.25, 7.5, 11.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7.5, 11.5, 7.75], "texture": "#0"}, - "down": {"uv": [11.25, 7.75, 11.5, 7.5], "texture": "#0"} + "from": [ + 11.25, + 0, + 7.5 + ], + "to": [ + 11.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 7.5, + 11.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 7.75, + 11.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_606", - "from": [11.5, 0, 7.5], - "to": [11.75, 0.25, 7.75], - "faces": { - "north": {"uv": [11.75, 7.5, 11.5, 7.75], "texture": "#0"}, - "east": {"uv": [11.5, 7.5, 11.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7.5, 11.75, 7.75], "texture": "#0"}, - "west": {"uv": [11.5, 7.5, 11.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7.5, 11.75, 7.75], "texture": "#0"}, - "down": {"uv": [11.5, 7.75, 11.75, 7.5], "texture": "#0"} + "from": [ + 11.5, + 0, + 7.5 + ], + "to": [ + 11.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 7.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7.5, + 11.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 7.75, + 11.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_607", - "from": [11.75, 0, 7.5], - "to": [12, 0.25, 7.75], - "faces": { - "north": {"uv": [12, 7.5, 11.75, 7.75], "texture": "#0"}, - "east": {"uv": [11.75, 7.5, 12, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7.5, 12, 7.75], "texture": "#0"}, - "west": {"uv": [11.75, 7.5, 12, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.5, 12, 7.75], "texture": "#0"}, - "down": {"uv": [11.75, 7.75, 12, 7.5], "texture": "#0"} + "from": [ + 11.75, + 0, + 7.5 + ], + "to": [ + 12, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 12, + 7.5, + 11.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.5, + 12, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7.5, + 12, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.5, + 12, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.5, + 12, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 7.75, + 12, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_608", - "from": [12, 0, 7.5], - "to": [12.25, 0.25, 7.75], - "faces": { - "north": {"uv": [12.25, 7.5, 12, 7.75], "texture": "#0"}, - "east": {"uv": [12, 7.5, 12.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7.5, 12.25, 7.75], "texture": "#0"}, - "west": {"uv": [12, 7.5, 12.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7.5, 12.25, 7.75], "texture": "#0"}, - "down": {"uv": [12, 7.75, 12.25, 7.5], "texture": "#0"} + "from": [ + 12, + 0, + 7.5 + ], + "to": [ + 12.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 7.5, + 12, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7.5, + 12.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.5, + 12.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7.5, + 12.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7.5, + 12.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 7.75, + 12.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_609", - "from": [12.25, 0, 7.5], - "to": [12.5, 0.25, 7.75], - "faces": { - "north": {"uv": [12.5, 7.5, 12.25, 7.75], "texture": "#0"}, - "east": {"uv": [12.25, 7.5, 12.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 7.5, 12.5, 7.75], "texture": "#0"}, - "west": {"uv": [12.25, 7.5, 12.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 7.5, 12.5, 7.75], "texture": "#0"}, - "down": {"uv": [12.25, 7.75, 12.5, 7.5], "texture": "#0"} + "from": [ + 12.25, + 0, + 7.5 + ], + "to": [ + 12.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 7.5, + 12.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 7.5, + 12.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 7.5, + 12.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 7.5, + 12.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 7.5, + 12.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 7.75, + 12.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_610", - "from": [12.5, 0, 7.5], - "to": [12.75, 0.25, 7.75], - "faces": { - "north": {"uv": [12.75, 7.5, 12.5, 7.75], "texture": "#0"}, - "east": {"uv": [12.5, 7.5, 12.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 7.5, 12.75, 7.75], "texture": "#0"}, - "west": {"uv": [12.5, 7.5, 12.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 7.5, 12.75, 7.75], "texture": "#0"}, - "down": {"uv": [12.5, 7.75, 12.75, 7.5], "texture": "#0"} + "from": [ + 12.5, + 0, + 7.5 + ], + "to": [ + 12.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 7.5, + 12.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7.5, + 12.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 7.5, + 12.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 7.5, + 12.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 7.5, + 12.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 7.75, + 12.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_611", - "from": [12.75, 0, 7.5], - "to": [13, 0.25, 7.75], - "faces": { - "north": {"uv": [13, 7.5, 12.75, 7.75], "texture": "#0"}, - "east": {"uv": [12.75, 7.5, 13, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 7.5, 13, 7.75], "texture": "#0"}, - "west": {"uv": [12.75, 7.5, 13, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 7.5, 13, 7.75], "texture": "#0"}, - "down": {"uv": [12.75, 7.75, 13, 7.5], "texture": "#0"} + "from": [ + 12.75, + 0, + 7.5 + ], + "to": [ + 13, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 13, + 7.5, + 12.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.5, + 13, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 7.5, + 13, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 7.5, + 13, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 7.5, + 13, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 7.75, + 13, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_612", - "from": [13, 0, 7.5], - "to": [13.25, 0.25, 7.75], - "faces": { - "north": {"uv": [13.25, 7.5, 13, 7.75], "texture": "#0"}, - "east": {"uv": [13, 7.5, 13.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7.5, 13.25, 7.75], "texture": "#0"}, - "west": {"uv": [13, 7.5, 13.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7.5, 13.25, 7.75], "texture": "#0"}, - "down": {"uv": [13, 7.75, 13.25, 7.5], "texture": "#0"} + "from": [ + 13, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 7.5, + 13, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7.5, + 13.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7.5, + 13.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7.5, + 13.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 7.75, + 13.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_613", - "from": [13.25, 0, 7.5], - "to": [13.5, 0.25, 7.75], - "faces": { - "north": {"uv": [13.5, 7.5, 13.25, 7.75], "texture": "#0"}, - "east": {"uv": [13.25, 7.5, 13.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7.5, 13.5, 7.75], "texture": "#0"}, - "west": {"uv": [13.25, 7.5, 13.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.5, 13.5, 7.75], "texture": "#0"}, - "down": {"uv": [13.25, 7.75, 13.5, 7.5], "texture": "#0"} + "from": [ + 13.25, + 0, + 7.5 + ], + "to": [ + 13.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 7.5, + 13.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.75, + 13.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_614", - "from": [13.5, 0, 7.5], - "to": [13.75, 0.25, 7.75], - "faces": { - "north": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#0"}, - "east": {"uv": [13.5, 7.5, 13.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "west": {"uv": [13.5, 7.5, 13.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "down": {"uv": [13.5, 7.75, 13.75, 7.5], "texture": "#0"} + "from": [ + 13.5, + 0, + 7.5 + ], + "to": [ + 13.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 7.5, + 13.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.75, + 13.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_615", - "from": [13.75, 0, 7.5], - "to": [14, 0.25, 7.75], - "faces": { - "north": {"uv": [14, 7.5, 13.75, 7.75], "texture": "#0"}, - "east": {"uv": [13.75, 7.5, 14, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 7.5, 14, 7.75], "texture": "#0"}, - "west": {"uv": [13.75, 7.5, 14, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7.5, 14, 7.75], "texture": "#0"}, - "down": {"uv": [13.75, 7.75, 14, 7.5], "texture": "#0"} + "from": [ + 13.75, + 0, + 7.5 + ], + "to": [ + 14, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 14, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7.5, + 14, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7.75, + 14, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_616", - "from": [14, 0, 7.5], - "to": [14.25, 0.25, 7.75], - "faces": { - "north": {"uv": [14.25, 7.5, 14, 7.75], "texture": "#0"}, - "east": {"uv": [14, 7.5, 14.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.5, 14.25, 7.75], "texture": "#0"}, - "west": {"uv": [14, 7.5, 14.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7.5, 14.25, 7.75], "texture": "#0"}, - "down": {"uv": [14, 7.75, 14.25, 7.5], "texture": "#0"} + "from": [ + 14, + 0, + 7.5 + ], + "to": [ + 14.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 7.5, + 14, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.5, + 14.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.5, + 14.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7.5, + 14.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7.5, + 14.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.75, + 14.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_617", - "from": [14.25, 0, 7.5], - "to": [14.5, 0.25, 7.75], - "faces": { - "north": {"uv": [14.5, 7.5, 14.25, 7.75], "texture": "#0"}, - "east": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.5, 14.5, 7.75], "texture": "#0"}, - "west": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.5, 14.5, 7.75], "texture": "#0"}, - "down": {"uv": [14.25, 7.75, 14.5, 7.5], "texture": "#0"} + "from": [ + 14.25, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 7.5, + 14.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 14.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_618", - "from": [14.5, 0, 7.5], - "to": [14.75, 0.25, 7.75], - "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#0"}, - "east": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#0"}, - "west": {"uv": [14.5, 7.5, 14.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.5, 14.75, 7.75], "texture": "#0"}, - "down": {"uv": [14.5, 7.75, 14.75, 7.5], "texture": "#0"} + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.75, + 14.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_619", - "from": [14.75, 0, 7.5], - "to": [15, 0.25, 7.75], - "faces": { - "north": {"uv": [15, 7.5, 14.75, 7.75], "texture": "#0"}, - "east": {"uv": [14.75, 7.5, 15, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.5, 15, 7.75], "texture": "#0"}, - "west": {"uv": [14.75, 7.5, 15, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.5, 15, 7.75], "texture": "#0"}, - "down": {"uv": [14.75, 7.75, 15, 7.5], "texture": "#0"} + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 15, + 7.5, + 14.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 7.75, + 15, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_620", - "from": [15, 0, 7.5], - "to": [15.25, 0.25, 7.75], - "faces": { - "north": {"uv": [15.25, 7.5, 15, 7.75], "texture": "#0"}, - "east": {"uv": [15, 7.5, 15.25, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.5, 15.25, 7.75], "texture": "#0"}, - "west": {"uv": [15, 7.5, 15.25, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.5, 15.25, 7.75], "texture": "#0"}, - "down": {"uv": [15, 7.75, 15.25, 7.5], "texture": "#0"} + "from": [ + 15, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 7.5, + 15, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 7.75, + 15.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_621", - "from": [15.25, 0, 7.5], - "to": [15.5, 0.25, 7.75], - "faces": { - "north": {"uv": [15.5, 7.5, 15.25, 7.75], "texture": "#0"}, - "east": {"uv": [15.25, 7.5, 15.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7.5, 15.5, 7.75], "texture": "#0"}, - "west": {"uv": [15.25, 7.5, 15.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.5, 15.5, 7.75], "texture": "#0"}, - "down": {"uv": [15.25, 7.75, 15.5, 7.5], "texture": "#0"} + "from": [ + 15.25, + 0, + 7.5 + ], + "to": [ + 15.5, + 0.25, + 7.75 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 7.5, + 15.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7.75, + 15.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_622", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 8], - "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#0"}, - "east": {"uv": [0.5, 7.75, 0.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#0"}, - "west": {"uv": [0.5, 7.75, 0.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#0"}, - "down": {"uv": [0.5, 8, 0.75, 7.75], "texture": "#0"} + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_623", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 8], - "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#0"}, - "east": {"uv": [0.75, 7.75, 1, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "west": {"uv": [0.75, 7.75, 1, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "down": {"uv": [0.75, 8, 1, 7.75], "texture": "#0"} + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_624", - "from": [1, 0, 7.75], - "to": [1.25, 0.25, 8], - "faces": { - "north": {"uv": [1.25, 7.75, 1, 8], "texture": "#0"}, - "east": {"uv": [1, 7.75, 1.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7.75, 1.25, 8], "texture": "#0"}, - "west": {"uv": [1, 7.75, 1.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.75, 1.25, 8], "texture": "#0"}, - "down": {"uv": [1, 8, 1.25, 7.75], "texture": "#0"} + "from": [ + 1, + 0, + 7.75 + ], + "to": [ + 1.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8, + 1.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_625", - "from": [1.25, 0, 7.75], - "to": [1.5, 0.25, 8], - "faces": { - "north": {"uv": [1.5, 7.75, 1.25, 8], "texture": "#0"}, - "east": {"uv": [1.25, 7.75, 1.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.75, 1.5, 8], "texture": "#0"}, - "west": {"uv": [1.25, 7.75, 1.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7.75, 1.5, 8], "texture": "#0"}, - "down": {"uv": [1.25, 8, 1.5, 7.75], "texture": "#0"} + "from": [ + 1.25, + 0, + 7.75 + ], + "to": [ + 1.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 7.75, + 1.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8, + 1.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_626", - "from": [1.5, 0, 7.75], - "to": [1.75, 0.25, 8], - "faces": { - "north": {"uv": [1.75, 7.75, 1.5, 8], "texture": "#0"}, - "east": {"uv": [1.5, 7.75, 1.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7.75, 1.75, 8], "texture": "#0"}, - "west": {"uv": [1.5, 7.75, 1.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.75, 1.75, 8], "texture": "#0"}, - "down": {"uv": [1.5, 8, 1.75, 7.75], "texture": "#0"} + "from": [ + 1.5, + 0, + 7.75 + ], + "to": [ + 1.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 7.75, + 1.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8, + 1.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_627", - "from": [1.75, 0, 7.75], - "to": [2, 0.25, 8], - "faces": { - "north": {"uv": [2, 7.75, 1.75, 8], "texture": "#0"}, - "east": {"uv": [1.75, 7.75, 2, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.75, 2, 8], "texture": "#0"}, - "west": {"uv": [1.75, 7.75, 2, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.75, 2, 8], "texture": "#0"}, - "down": {"uv": [1.75, 8, 2, 7.75], "texture": "#0"} + "from": [ + 1.75, + 0, + 7.75 + ], + "to": [ + 2, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 2, + 7.75, + 1.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8, + 2, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_628", - "from": [2, 0, 7.75], - "to": [2.25, 0.25, 8], - "faces": { - "north": {"uv": [2.25, 7.75, 2, 8], "texture": "#0"}, - "east": {"uv": [2, 7.75, 2.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 7.75, 2.25, 8], "texture": "#0"}, - "west": {"uv": [2, 7.75, 2.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 7.75, 2.25, 8], "texture": "#0"}, - "down": {"uv": [2, 8, 2.25, 7.75], "texture": "#0"} + "from": [ + 2, + 0, + 7.75 + ], + "to": [ + 2.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 7.75, + 2, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.75, + 2.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 7.75, + 2.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.75, + 2.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8, + 2.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_629", - "from": [2.25, 0, 7.75], - "to": [2.5, 0.25, 8], - "faces": { - "north": {"uv": [2.5, 7.75, 2.25, 8], "texture": "#0"}, - "east": {"uv": [2.25, 7.75, 2.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7.75, 2.5, 8], "texture": "#0"}, - "west": {"uv": [2.25, 7.75, 2.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7.75, 2.5, 8], "texture": "#0"}, - "down": {"uv": [2.25, 8, 2.5, 7.75], "texture": "#0"} + "from": [ + 2.25, + 0, + 7.75 + ], + "to": [ + 2.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 7.75, + 2.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8, + 2.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_630", - "from": [2.5, 0, 7.75], - "to": [2.75, 0.25, 8], - "faces": { - "north": {"uv": [2.75, 7.75, 2.5, 8], "texture": "#0"}, - "east": {"uv": [2.5, 7.75, 2.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 7.75, 2.75, 8], "texture": "#0"}, - "west": {"uv": [2.5, 7.75, 2.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.75, 2.75, 8], "texture": "#0"}, - "down": {"uv": [2.5, 8, 2.75, 7.75], "texture": "#0"} + "from": [ + 2.5, + 0, + 7.75 + ], + "to": [ + 2.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 7.75, + 2.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8, + 2.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_631", - "from": [2.75, 0, 7.75], - "to": [3, 0.25, 8], - "faces": { - "north": {"uv": [3, 7.75, 2.75, 8], "texture": "#0"}, - "east": {"uv": [2.75, 7.75, 3, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 7.75, 3, 8], "texture": "#0"}, - "west": {"uv": [2.75, 7.75, 3, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7.75, 3, 8], "texture": "#0"}, - "down": {"uv": [2.75, 8, 3, 7.75], "texture": "#0"} + "from": [ + 2.75, + 0, + 7.75 + ], + "to": [ + 3, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 3, + 7.75, + 2.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.75, + 3, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 7.75, + 3, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7.75, + 3, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7.75, + 3, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8, + 3, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_632", - "from": [3, 0, 7.75], - "to": [3.25, 0.25, 8], - "faces": { - "north": {"uv": [3.25, 7.75, 3, 8], "texture": "#0"}, - "east": {"uv": [3, 7.75, 3.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 7.75, 3.25, 8], "texture": "#0"}, - "west": {"uv": [3, 7.75, 3.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 7.75, 3.25, 8], "texture": "#0"}, - "down": {"uv": [3, 8, 3.25, 7.75], "texture": "#0"} + "from": [ + 3, + 0, + 7.75 + ], + "to": [ + 3.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 7.75, + 3, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7.75, + 3.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7.75, + 3.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.75, + 3.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 7.75, + 3.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8, + 3.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_633", - "from": [3.25, 0, 7.75], - "to": [3.5, 0.25, 8], - "faces": { - "north": {"uv": [3.5, 7.75, 3.25, 8], "texture": "#0"}, - "east": {"uv": [3.25, 7.75, 3.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 7.75, 3.5, 8], "texture": "#0"}, - "west": {"uv": [3.25, 7.75, 3.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 7.75, 3.5, 8], "texture": "#0"}, - "down": {"uv": [3.25, 8, 3.5, 7.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 7.75 + ], + "to": [ + 3.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 7.75, + 3.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8, + 3.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_634", - "from": [3.5, 0, 7.75], - "to": [3.75, 0.25, 8], - "faces": { - "north": {"uv": [3.75, 7.75, 3.5, 8], "texture": "#0"}, - "east": {"uv": [3.5, 7.75, 3.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 7.75, 3.75, 8], "texture": "#0"}, - "west": {"uv": [3.5, 7.75, 3.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 7.75, 3.75, 8], "texture": "#0"}, - "down": {"uv": [3.5, 8, 3.75, 7.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 7.75 + ], + "to": [ + 3.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8, + 3.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_635", - "from": [3.75, 0, 7.75], - "to": [4, 0.25, 8], - "faces": { - "north": {"uv": [4, 7.75, 3.75, 8], "texture": "#0"}, - "east": {"uv": [3.75, 7.75, 4, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 7.75, 4, 8], "texture": "#0"}, - "west": {"uv": [3.75, 7.75, 4, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 7.75, 4, 8], "texture": "#0"}, - "down": {"uv": [3.75, 8, 4, 7.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 7.75 + ], + "to": [ + 4, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 4, + 7.75, + 3.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7.75, + 4, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7.75, + 4, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 7.75, + 4, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7.75, + 4, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 8, + 4, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_636", - "from": [4, 0, 7.75], - "to": [4.25, 0.25, 8], - "faces": { - "north": {"uv": [4.25, 7.75, 4, 8], "texture": "#0"}, - "east": {"uv": [4, 7.75, 4.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 7.75, 4.25, 8], "texture": "#0"}, - "west": {"uv": [4, 7.75, 4.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7.75, 4.25, 8], "texture": "#0"}, - "down": {"uv": [4, 8, 4.25, 7.75], "texture": "#0"} + "from": [ + 4, + 0, + 7.75 + ], + "to": [ + 4.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 7.75, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.75, + 4.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.75, + 4.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7.75, + 4.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7.75, + 4.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8, + 4.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_637", - "from": [4.25, 0, 7.75], - "to": [4.5, 0.25, 8], - "faces": { - "north": {"uv": [4.5, 7.75, 4.25, 8], "texture": "#0"}, - "east": {"uv": [4.25, 7.75, 4.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 7.75, 4.5, 8], "texture": "#0"}, - "west": {"uv": [4.25, 7.75, 4.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.75, 4.5, 8], "texture": "#0"}, - "down": {"uv": [4.25, 8, 4.5, 7.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 7.75 + ], + "to": [ + 4.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 7.75, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7.75, + 4.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.75, + 4.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.75, + 4.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.75, + 4.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 8, + 4.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_638", - "from": [4.5, 0, 7.75], - "to": [4.75, 0.25, 8], - "faces": { - "north": {"uv": [4.75, 7.75, 4.5, 8], "texture": "#0"}, - "east": {"uv": [4.5, 7.75, 4.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 7.75, 4.75, 8], "texture": "#0"}, - "west": {"uv": [4.5, 7.75, 4.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 7.75, 4.75, 8], "texture": "#0"}, - "down": {"uv": [4.5, 8, 4.75, 7.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 7.75 + ], + "to": [ + 4.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 7.75, + 4.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7.75, + 4.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.75, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.75, + 4.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7.75, + 4.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8, + 4.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_639", - "from": [4.75, 0, 7.75], - "to": [5, 0.25, 8], - "faces": { - "north": {"uv": [5, 7.75, 4.75, 8], "texture": "#0"}, - "east": {"uv": [4.75, 7.75, 5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 7.75, 5, 8], "texture": "#0"}, - "west": {"uv": [4.75, 7.75, 5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 7.75, 5, 8], "texture": "#0"}, - "down": {"uv": [4.75, 8, 5, 7.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 7.75 + ], + "to": [ + 5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 5, + 7.75, + 4.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8, + 5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_640", - "from": [5, 0, 7.75], - "to": [5.25, 0.25, 8], - "faces": { - "north": {"uv": [5.25, 7.75, 5, 8], "texture": "#0"}, - "east": {"uv": [5, 7.75, 5.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 7.75, 5.25, 8], "texture": "#0"}, - "west": {"uv": [5, 7.75, 5.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 7.75, 5.25, 8], "texture": "#0"}, - "down": {"uv": [5, 8, 5.25, 7.75], "texture": "#0"} + "from": [ + 5, + 0, + 7.75 + ], + "to": [ + 5.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 7.75, + 5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8, + 5.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_641", - "from": [5.25, 0, 7.75], - "to": [5.5, 0.25, 8], - "faces": { - "north": {"uv": [5.5, 7.75, 5.25, 8], "texture": "#0"}, - "east": {"uv": [5.25, 7.75, 5.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 7.75, 5.5, 8], "texture": "#0"}, - "west": {"uv": [5.25, 7.75, 5.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 7.75, 5.5, 8], "texture": "#0"}, - "down": {"uv": [5.25, 8, 5.5, 7.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 7.75 + ], + "to": [ + 5.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.75, + 5.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 7.75, + 5.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7.75, + 5.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7.75, + 5.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8, + 5.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_642", - "from": [5.5, 0, 7.75], - "to": [5.75, 0.25, 8], - "faces": { - "north": {"uv": [5.75, 7.75, 5.5, 8], "texture": "#0"}, - "east": {"uv": [5.5, 7.75, 5.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 7.75, 5.75, 8], "texture": "#0"}, - "west": {"uv": [5.5, 7.75, 5.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7.75, 5.75, 8], "texture": "#0"}, - "down": {"uv": [5.5, 8, 5.75, 7.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 7.75 + ], + "to": [ + 5.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 7.75, + 5.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8, + 5.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_643", - "from": [5.75, 0, 7.75], - "to": [6, 0.25, 8], - "faces": { - "north": {"uv": [6, 7.75, 5.75, 8], "texture": "#0"}, - "east": {"uv": [5.75, 7.75, 6, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 7.75, 6, 8], "texture": "#0"}, - "west": {"uv": [5.75, 7.75, 6, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7.75, 6, 8], "texture": "#0"}, - "down": {"uv": [5.75, 8, 6, 7.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 7.75 + ], + "to": [ + 6, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 6, + 7.75, + 5.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8, + 6, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_644", - "from": [6, 0, 7.75], - "to": [6.25, 0.25, 8], - "faces": { - "north": {"uv": [6.25, 7.75, 6, 8], "texture": "#0"}, - "east": {"uv": [6, 7.75, 6.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 7.75, 6.25, 8], "texture": "#0"}, - "west": {"uv": [6, 7.75, 6.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 7.75, 6.25, 8], "texture": "#0"}, - "down": {"uv": [6, 8, 6.25, 7.75], "texture": "#0"} + "from": [ + 6, + 0, + 7.75 + ], + "to": [ + 6.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.75, + 6.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 7.75, + 6.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7.75, + 6.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7.75, + 6.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8, + 6.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_645", - "from": [6.25, 0, 7.75], - "to": [6.5, 0.25, 8], - "faces": { - "north": {"uv": [6.5, 7.75, 6.25, 8], "texture": "#0"}, - "east": {"uv": [6.25, 7.75, 6.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 7.75, 6.5, 8], "texture": "#0"}, - "west": {"uv": [6.25, 7.75, 6.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7.75, 6.5, 8], "texture": "#0"}, - "down": {"uv": [6.25, 8, 6.5, 7.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 7.75 + ], + "to": [ + 6.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 7.75, + 6.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8, + 6.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_646", - "from": [6.5, 0, 7.75], - "to": [6.75, 0.25, 8], - "faces": { - "north": {"uv": [6.75, 7.75, 6.5, 8], "texture": "#0"}, - "east": {"uv": [6.5, 7.75, 6.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 7.75, 6.75, 8], "texture": "#0"}, - "west": {"uv": [6.5, 7.75, 6.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 7.75, 6.75, 8], "texture": "#0"}, - "down": {"uv": [6.5, 8, 6.75, 7.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 7.75 + ], + "to": [ + 6.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 7.75, + 6.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.75, + 6.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7.75, + 6.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.75, + 6.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7.75, + 6.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8, + 6.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_647", - "from": [6.75, 0, 7.75], - "to": [7, 0.25, 8], - "faces": { - "north": {"uv": [7, 7.75, 6.75, 8], "texture": "#0"}, - "east": {"uv": [6.75, 7.75, 7, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 7.75, 7, 8], "texture": "#0"}, - "west": {"uv": [6.75, 7.75, 7, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 7.75, 7, 8], "texture": "#0"}, - "down": {"uv": [6.75, 8, 7, 7.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 7.75 + ], + "to": [ + 7, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 7, + 7.75, + 6.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7.75, + 7, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.75, + 7, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 7.75, + 7, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.75, + 7, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8, + 7, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_648", - "from": [7, 0, 7.75], - "to": [7.25, 0.25, 8], - "faces": { - "north": {"uv": [7.25, 7.75, 7, 8], "texture": "#0"}, - "east": {"uv": [7, 7.75, 7.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 7.75, 7.25, 8], "texture": "#0"}, - "west": {"uv": [7, 7.75, 7.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 7.75, 7.25, 8], "texture": "#0"}, - "down": {"uv": [7, 8, 7.25, 7.75], "texture": "#0"} + "from": [ + 7, + 0, + 7.75 + ], + "to": [ + 7.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 7.75, + 7, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7.75, + 7.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.75, + 7.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.75, + 7.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 7.75, + 7.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 8, + 7.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_649", - "from": [7.25, 0, 7.75], - "to": [7.5, 0.25, 8], - "faces": { - "north": {"uv": [7.5, 7.75, 7.25, 8], "texture": "#0"}, - "east": {"uv": [7.25, 7.75, 7.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 7.75, 7.5, 8], "texture": "#0"}, - "west": {"uv": [7.25, 7.75, 7.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 7.75, 7.5, 8], "texture": "#0"}, - "down": {"uv": [7.25, 8, 7.5, 7.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 7.75 + ], + "to": [ + 7.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 7.75, + 7.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 7.75, + 7.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.75, + 7.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.75, + 7.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7.75, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8, + 7.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_650", - "from": [7.5, 0, 7.75], - "to": [7.75, 0.25, 8], - "faces": { - "north": {"uv": [7.75, 7.75, 7.5, 8], "texture": "#0"}, - "east": {"uv": [7.5, 7.75, 7.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 7.75, 7.75, 8], "texture": "#0"}, - "west": {"uv": [7.5, 7.75, 7.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 7.75, 7.75, 8], "texture": "#0"}, - "down": {"uv": [7.5, 8, 7.75, 7.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 7.75 + ], + "to": [ + 7.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 7.75, + 7.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8, + 7.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_651", - "from": [7.75, 0, 7.75], - "to": [8, 0.25, 8], - "faces": { - "north": {"uv": [8, 7.75, 7.75, 8], "texture": "#0"}, - "east": {"uv": [7.75, 7.75, 8, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 7.75, 8, 8], "texture": "#0"}, - "west": {"uv": [7.75, 7.75, 8, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 7.75, 8, 8], "texture": "#0"}, - "down": {"uv": [7.75, 8, 8, 7.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 7.75 + ], + "to": [ + 8, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 8, + 7.75, + 7.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7.75, + 8, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7.75, + 8, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 7.75, + 8, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 7.75, + 8, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8, + 8, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_652", - "from": [8, 0, 7.75], - "to": [8.25, 0.25, 8], - "faces": { - "north": {"uv": [8.25, 7.75, 8, 8], "texture": "#0"}, - "east": {"uv": [8, 7.75, 8.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 7.75, 8.25, 8], "texture": "#0"}, - "west": {"uv": [8, 7.75, 8.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7.75, 8.25, 8], "texture": "#0"}, - "down": {"uv": [8, 8, 8.25, 7.75], "texture": "#0"} + "from": [ + 8, + 0, + 7.75 + ], + "to": [ + 8.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 7.75, + 8, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7.75, + 8.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.75, + 8.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.75, + 8.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.75, + 8.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8, + 8.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_653", - "from": [8.25, 0, 7.75], - "to": [8.5, 0.25, 8], - "faces": { - "north": {"uv": [8.5, 7.75, 8.25, 8], "texture": "#0"}, - "east": {"uv": [8.25, 7.75, 8.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, - "west": {"uv": [8.25, 7.75, 8.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 7.75, 8.5, 8], "texture": "#0"}, - "down": {"uv": [8.25, 8, 8.5, 7.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 7.75 + ], + "to": [ + 8.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 7.75, + 8.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.75, + 8.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 7.75, + 8.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 7.75, + 8.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 7.75, + 8.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8, + 8.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_654", - "from": [8.5, 0, 7.75], - "to": [8.75, 0.25, 8], - "faces": { - "north": {"uv": [8.75, 7.75, 8.5, 8], "texture": "#0"}, - "east": {"uv": [8.5, 7.75, 8.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 7.75, 8.75, 8], "texture": "#0"}, - "west": {"uv": [8.5, 7.75, 8.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 7.75, 8.75, 8], "texture": "#0"}, - "down": {"uv": [8.5, 8, 8.75, 7.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 7.75 + ], + "to": [ + 8.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 7.75, + 8.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.75, + 8.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.75, + 8.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.75, + 8.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7.75, + 8.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_655", - "from": [8.75, 0, 7.75], - "to": [9, 0.25, 8], - "faces": { - "north": {"uv": [9, 7.75, 8.75, 8], "texture": "#0"}, - "east": {"uv": [8.75, 7.75, 9, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 7.75, 9, 8], "texture": "#0"}, - "west": {"uv": [8.75, 7.75, 9, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 7.75, 9, 8], "texture": "#0"}, - "down": {"uv": [8.75, 8, 9, 7.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 7.75 + ], + "to": [ + 9, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 9, + 7.75, + 8.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 7.75, + 9, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7.75, + 9, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 7.75, + 9, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 7.75, + 9, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 8, + 9, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_656", - "from": [9, 0, 7.75], - "to": [9.25, 0.25, 8], - "faces": { - "north": {"uv": [9.25, 7.75, 9, 8], "texture": "#0"}, - "east": {"uv": [9, 7.75, 9.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 7.75, 9.25, 8], "texture": "#0"}, - "west": {"uv": [9, 7.75, 9.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.75, 9.25, 8], "texture": "#0"}, - "down": {"uv": [9, 8, 9.25, 7.75], "texture": "#0"} + "from": [ + 9, + 0, + 7.75 + ], + "to": [ + 9.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 7.75, + 9, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.75, + 9.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.75, + 9.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.75, + 9.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.75, + 9.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 8, + 9.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_657", - "from": [9.25, 0, 7.75], - "to": [9.5, 0.25, 8], - "faces": { - "north": {"uv": [9.5, 7.75, 9.25, 8], "texture": "#0"}, - "east": {"uv": [9.25, 7.75, 9.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 7.75, 9.5, 8], "texture": "#0"}, - "west": {"uv": [9.25, 7.75, 9.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 7.75, 9.5, 8], "texture": "#0"}, - "down": {"uv": [9.25, 8, 9.5, 7.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 7.75 + ], + "to": [ + 9.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 7.75, + 9.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7.75, + 9.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.75, + 9.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7.75, + 9.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.75, + 9.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 8, + 9.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_658", - "from": [9.5, 0, 7.75], - "to": [9.75, 0.25, 8], - "faces": { - "north": {"uv": [9.75, 7.75, 9.5, 8], "texture": "#0"}, - "east": {"uv": [9.5, 7.75, 9.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 7.75, 9.75, 8], "texture": "#0"}, - "west": {"uv": [9.5, 7.75, 9.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7.75, 9.75, 8], "texture": "#0"}, - "down": {"uv": [9.5, 8, 9.75, 7.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 7.75 + ], + "to": [ + 9.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 7.75, + 9.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.75, + 9.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8, + 9.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_659", - "from": [9.75, 0, 7.75], - "to": [10, 0.25, 8], - "faces": { - "north": {"uv": [10, 7.75, 9.75, 8], "texture": "#0"}, - "east": {"uv": [9.75, 7.75, 10, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 7.75, 10, 8], "texture": "#0"}, - "west": {"uv": [9.75, 7.75, 10, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7.75, 10, 8], "texture": "#0"}, - "down": {"uv": [9.75, 8, 10, 7.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 7.75 + ], + "to": [ + 10, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 10, + 7.75, + 9.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 7.75, + 10, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 7.75, + 10, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7.75, + 10, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7.75, + 10, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 10, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_660", - "from": [10, 0, 7.75], - "to": [10.25, 0.25, 8], - "faces": { - "north": {"uv": [10.25, 7.75, 10, 8], "texture": "#0"}, - "east": {"uv": [10, 7.75, 10.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 7.75, 10.25, 8], "texture": "#0"}, - "west": {"uv": [10, 7.75, 10.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 7.75, 10.25, 8], "texture": "#0"}, - "down": {"uv": [10, 8, 10.25, 7.75], "texture": "#0"} + "from": [ + 10, + 0, + 7.75 + ], + "to": [ + 10.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 7.75, + 10, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.75, + 10.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.75, + 10.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 7.75, + 10.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 7.75, + 10.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8, + 10.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_661", - "from": [10.25, 0, 7.75], - "to": [10.5, 0.25, 8], - "faces": { - "north": {"uv": [10.5, 7.75, 10.25, 8], "texture": "#0"}, - "east": {"uv": [10.25, 7.75, 10.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 7.75, 10.5, 8], "texture": "#0"}, - "west": {"uv": [10.25, 7.75, 10.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 7.75, 10.5, 8], "texture": "#0"}, - "down": {"uv": [10.25, 8, 10.5, 7.75], "texture": "#0"} + "from": [ + 10.25, + 0, + 7.75 + ], + "to": [ + 10.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 7.75, + 10.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7.75, + 10.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 7.75, + 10.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 7.75, + 10.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 7.75, + 10.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8, + 10.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_662", - "from": [10.5, 0, 7.75], - "to": [10.75, 0.25, 8], - "faces": { - "north": {"uv": [10.75, 7.75, 10.5, 8], "texture": "#0"}, - "east": {"uv": [10.5, 7.75, 10.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.75, 10.75, 8], "texture": "#0"}, - "west": {"uv": [10.5, 7.75, 10.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7.75, 10.75, 8], "texture": "#0"}, - "down": {"uv": [10.5, 8, 10.75, 7.75], "texture": "#0"} + "from": [ + 10.5, + 0, + 7.75 + ], + "to": [ + 10.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 7.75, + 10.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8, + 10.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_663", - "from": [10.75, 0, 7.75], - "to": [11, 0.25, 8], - "faces": { - "north": {"uv": [11, 7.75, 10.75, 8], "texture": "#0"}, - "east": {"uv": [10.75, 7.75, 11, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 7.75, 11, 8], "texture": "#0"}, - "west": {"uv": [10.75, 7.75, 11, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7.75, 11, 8], "texture": "#0"}, - "down": {"uv": [10.75, 8, 11, 7.75], "texture": "#0"} + "from": [ + 10.75, + 0, + 7.75 + ], + "to": [ + 11, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 11, + 7.75, + 10.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 7.75, + 11, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.75, + 11, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7.75, + 11, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7.75, + 11, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8, + 11, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_664", - "from": [11, 0, 7.75], - "to": [11.25, 0.25, 8], - "faces": { - "north": {"uv": [11.25, 7.75, 11, 8], "texture": "#0"}, - "east": {"uv": [11, 7.75, 11.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 7.75, 11.25, 8], "texture": "#0"}, - "west": {"uv": [11, 7.75, 11.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 7.75, 11.25, 8], "texture": "#0"}, - "down": {"uv": [11, 8, 11.25, 7.75], "texture": "#0"} + "from": [ + 11, + 0, + 7.75 + ], + "to": [ + 11.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 7.75, + 11, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7.75, + 11.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 7.75, + 11.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7.75, + 11.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7.75, + 11.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8, + 11.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_665", - "from": [11.25, 0, 7.75], - "to": [11.5, 0.25, 8], - "faces": { - "north": {"uv": [11.5, 7.75, 11.25, 8], "texture": "#0"}, - "east": {"uv": [11.25, 7.75, 11.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 7.75, 11.5, 8], "texture": "#0"}, - "west": {"uv": [11.25, 7.75, 11.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7.75, 11.5, 8], "texture": "#0"}, - "down": {"uv": [11.25, 8, 11.5, 7.75], "texture": "#0"} + "from": [ + 11.25, + 0, + 7.75 + ], + "to": [ + 11.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 7.75, + 11.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 7.75, + 11.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 7.75, + 11.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7.75, + 11.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7.75, + 11.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8, + 11.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_666", - "from": [11.5, 0, 7.75], - "to": [11.75, 0.25, 8], - "faces": { - "north": {"uv": [11.75, 7.75, 11.5, 8], "texture": "#0"}, - "east": {"uv": [11.5, 7.75, 11.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 7.75, 11.75, 8], "texture": "#0"}, - "west": {"uv": [11.5, 7.75, 11.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 7.75, 11.75, 8], "texture": "#0"}, - "down": {"uv": [11.5, 8, 11.75, 7.75], "texture": "#0"} + "from": [ + 11.5, + 0, + 7.75 + ], + "to": [ + 11.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 7.75, + 11.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.75, + 11.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 7.75, + 11.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8, + 11.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_667", - "from": [11.75, 0, 7.75], - "to": [12, 0.25, 8], - "faces": { - "north": {"uv": [12, 7.75, 11.75, 8], "texture": "#0"}, - "east": {"uv": [11.75, 7.75, 12, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 7.75, 12, 8], "texture": "#0"}, - "west": {"uv": [11.75, 7.75, 12, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 7.75, 12, 8], "texture": "#0"}, - "down": {"uv": [11.75, 8, 12, 7.75], "texture": "#0"} + "from": [ + 11.75, + 0, + 7.75 + ], + "to": [ + 12, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 12, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.75, + 12, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 7.75, + 12, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 7.75, + 12, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 7.75, + 12, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8, + 12, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_668", - "from": [12, 0, 7.75], - "to": [12.25, 0.25, 8], - "faces": { - "north": {"uv": [12.25, 7.75, 12, 8], "texture": "#0"}, - "east": {"uv": [12, 7.75, 12.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7.75, 12.25, 8], "texture": "#0"}, - "west": {"uv": [12, 7.75, 12.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7.75, 12.25, 8], "texture": "#0"}, - "down": {"uv": [12, 8, 12.25, 7.75], "texture": "#0"} + "from": [ + 12, + 0, + 7.75 + ], + "to": [ + 12.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 7.75, + 12, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 7.75, + 12.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.75, + 12.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7.75, + 12.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7.75, + 12.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8, + 12.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_669", - "from": [12.25, 0, 7.75], - "to": [12.5, 0.25, 8], - "faces": { - "north": {"uv": [12.5, 7.75, 12.25, 8], "texture": "#0"}, - "east": {"uv": [12.25, 7.75, 12.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 7.75, 12.5, 8], "texture": "#0"}, - "west": {"uv": [12.25, 7.75, 12.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 7.75, 12.5, 8], "texture": "#0"}, - "down": {"uv": [12.25, 8, 12.5, 7.75], "texture": "#0"} + "from": [ + 12.25, + 0, + 7.75 + ], + "to": [ + 12.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 7.75, + 12.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 7.75, + 12.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 7.75, + 12.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 7.75, + 12.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 7.75, + 12.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8, + 12.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_670", - "from": [12.5, 0, 7.75], - "to": [12.75, 0.25, 8], - "faces": { - "north": {"uv": [12.75, 7.75, 12.5, 8], "texture": "#0"}, - "east": {"uv": [12.5, 7.75, 12.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 7.75, 12.75, 8], "texture": "#0"}, - "west": {"uv": [12.5, 7.75, 12.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 7.75, 12.75, 8], "texture": "#0"}, - "down": {"uv": [12.5, 8, 12.75, 7.75], "texture": "#0"} + "from": [ + 12.5, + 0, + 7.75 + ], + "to": [ + 12.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 7.75, + 12.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7.75, + 12.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 7.75, + 12.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 7.75, + 12.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 7.75, + 12.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8, + 12.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_671", - "from": [12.75, 0, 7.75], - "to": [13, 0.25, 8], - "faces": { - "north": {"uv": [13, 7.75, 12.75, 8], "texture": "#0"}, - "east": {"uv": [12.75, 7.75, 13, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 7.75, 13, 8], "texture": "#0"}, - "west": {"uv": [12.75, 7.75, 13, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 7.75, 13, 8], "texture": "#0"}, - "down": {"uv": [12.75, 8, 13, 7.75], "texture": "#0"} + "from": [ + 12.75, + 0, + 7.75 + ], + "to": [ + 13, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 13, + 7.75, + 12.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 7.75, + 13, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8, + 13, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_672", - "from": [13, 0, 7.75], - "to": [13.25, 0.25, 8], - "faces": { - "north": {"uv": [13.25, 7.75, 13, 8], "texture": "#0"}, - "east": {"uv": [13, 7.75, 13.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7.75, 13.25, 8], "texture": "#0"}, - "west": {"uv": [13, 7.75, 13.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7.75, 13.25, 8], "texture": "#0"}, - "down": {"uv": [13, 8, 13.25, 7.75], "texture": "#0"} + "from": [ + 13, + 0, + 7.75 + ], + "to": [ + 13.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 7.75, + 13, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7.75, + 13.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7.75, + 13.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7.75, + 13.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7.75, + 13.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8, + 13.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_673", - "from": [13.25, 0, 7.75], - "to": [13.5, 0.25, 8], - "faces": { - "north": {"uv": [13.5, 7.75, 13.25, 8], "texture": "#0"}, - "east": {"uv": [13.25, 7.75, 13.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7.75, 13.5, 8], "texture": "#0"}, - "west": {"uv": [13.25, 7.75, 13.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.75, 13.5, 8], "texture": "#0"}, - "down": {"uv": [13.25, 8, 13.5, 7.75], "texture": "#0"} + "from": [ + 13.25, + 0, + 7.75 + ], + "to": [ + 13.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 7.75, + 13.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.75, + 13.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7.75, + 13.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.75, + 13.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.75, + 13.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8, + 13.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_674", - "from": [13.5, 0, 7.75], - "to": [13.75, 0.25, 8], - "faces": { - "north": {"uv": [13.75, 7.75, 13.5, 8], "texture": "#0"}, - "east": {"uv": [13.5, 7.75, 13.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.75, 13.75, 8], "texture": "#0"}, - "west": {"uv": [13.5, 7.75, 13.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.75, 13.75, 8], "texture": "#0"}, - "down": {"uv": [13.5, 8, 13.75, 7.75], "texture": "#0"} + "from": [ + 13.5, + 0, + 7.75 + ], + "to": [ + 13.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 7.75, + 13.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8, + 13.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_675", - "from": [13.75, 0, 7.75], - "to": [14, 0.25, 8], - "faces": { - "north": {"uv": [14, 7.75, 13.75, 8], "texture": "#0"}, - "east": {"uv": [13.75, 7.75, 14, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 7.75, 14, 8], "texture": "#0"}, - "west": {"uv": [13.75, 7.75, 14, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7.75, 14, 8], "texture": "#0"}, - "down": {"uv": [13.75, 8, 14, 7.75], "texture": "#0"} + "from": [ + 13.75, + 0, + 7.75 + ], + "to": [ + 14, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 14, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 7.75, + 14, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 7.75, + 14, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7.75, + 14, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7.75, + 14, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8, + 14, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_676", - "from": [14, 0, 7.75], - "to": [14.25, 0.25, 8], - "faces": { - "north": {"uv": [14.25, 7.75, 14, 8], "texture": "#0"}, - "east": {"uv": [14, 7.75, 14.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.75, 14.25, 8], "texture": "#0"}, - "west": {"uv": [14, 7.75, 14.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7.75, 14.25, 8], "texture": "#0"}, - "down": {"uv": [14, 8, 14.25, 7.75], "texture": "#0"} + "from": [ + 14, + 0, + 7.75 + ], + "to": [ + 14.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 7.75, + 14, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.75, + 14.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.75, + 14.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7.75, + 14.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7.75, + 14.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 8, + 14.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_677", - "from": [14.25, 0, 7.75], - "to": [14.5, 0.25, 8], - "faces": { - "north": {"uv": [14.5, 7.75, 14.25, 8], "texture": "#0"}, - "east": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "west": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.75, 14.5, 8], "texture": "#0"}, - "down": {"uv": [14.25, 8, 14.5, 7.75], "texture": "#0"} + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 14.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 7.75, + 14.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_678", - "from": [14.5, 0, 7.75], - "to": [14.75, 0.25, 8], - "faces": { - "north": {"uv": [14.75, 7.75, 14.5, 8], "texture": "#0"}, - "east": {"uv": [14.5, 7.75, 14.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7.75, 14.75, 8], "texture": "#0"}, - "west": {"uv": [14.5, 7.75, 14.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.75, 14.75, 8], "texture": "#0"}, - "down": {"uv": [14.5, 8, 14.75, 7.75], "texture": "#0"} + "from": [ + 14.5, + 0, + 7.75 + ], + "to": [ + 14.75, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8, + 14.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_679", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 8], - "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#0"}, - "east": {"uv": [14.75, 7.75, 15, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 7.75, 15, 8], "texture": "#0"}, - "west": {"uv": [14.75, 7.75, 15, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.75, 15, 8], "texture": "#0"}, - "down": {"uv": [14.75, 8, 15, 7.75], "texture": "#0"} + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8, + 15, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_680", - "from": [15, 0, 7.75], - "to": [15.25, 0.25, 8], - "faces": { - "north": {"uv": [15.25, 7.75, 15, 8], "texture": "#0"}, - "east": {"uv": [15, 7.75, 15.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.75, 15.25, 8], "texture": "#0"}, - "west": {"uv": [15, 7.75, 15.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.75, 15.25, 8], "texture": "#0"}, - "down": {"uv": [15, 8, 15.25, 7.75], "texture": "#0"} + "from": [ + 15, + 0, + 7.75 + ], + "to": [ + 15.25, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8, + 15.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_681", - "from": [15.25, 0, 7.75], - "to": [15.5, 0.25, 8], - "faces": { - "north": {"uv": [15.5, 7.75, 15.25, 8], "texture": "#0"}, - "east": {"uv": [15.25, 7.75, 15.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 7.75, 15.5, 8], "texture": "#0"}, - "west": {"uv": [15.25, 7.75, 15.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 7.75, 15.5, 8], "texture": "#0"}, - "down": {"uv": [15.25, 8, 15.5, 7.75], "texture": "#0"} + "from": [ + 15.25, + 0, + 7.75 + ], + "to": [ + 15.5, + 0.25, + 8 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8, + 15.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_682", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.25], - "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#0"}, - "down": {"uv": [0.5, 8.25, 0.75, 8], "texture": "#0"} + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_683", - "from": [0.75, 0, 8], - "to": [1, 0.25, 8.25], - "faces": { - "north": {"uv": [1, 8, 0.75, 8.25], "texture": "#0"}, - "east": {"uv": [0.75, 8, 1, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "west": {"uv": [0.75, 8, 1, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "down": {"uv": [0.75, 8.25, 1, 8], "texture": "#0"} + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 1, + 8, + 0.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_684", - "from": [1, 0, 8], - "to": [1.25, 0.25, 8.25], - "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#0"}, - "east": {"uv": [1, 8, 1.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#0"}, - "west": {"uv": [1, 8, 1.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8, 1.25, 8.25], "texture": "#0"}, - "down": {"uv": [1, 8.25, 1.25, 8], "texture": "#0"} + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_685", - "from": [1.25, 0, 8], - "to": [1.5, 0.25, 8.25], - "faces": { - "north": {"uv": [1.5, 8, 1.25, 8.25], "texture": "#0"}, - "east": {"uv": [1.25, 8, 1.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8, 1.5, 8.25], "texture": "#0"}, - "west": {"uv": [1.25, 8, 1.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8, 1.5, 8.25], "texture": "#0"}, - "down": {"uv": [1.25, 8.25, 1.5, 8], "texture": "#0"} + "from": [ + 1.25, + 0, + 8 + ], + "to": [ + 1.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 8, + 1.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8, + 1.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8, + 1.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8, + 1.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8, + 1.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_686", - "from": [1.5, 0, 8], - "to": [1.75, 0.25, 8.25], - "faces": { - "north": {"uv": [1.75, 8, 1.5, 8.25], "texture": "#0"}, - "east": {"uv": [1.5, 8, 1.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8, 1.75, 8.25], "texture": "#0"}, - "west": {"uv": [1.5, 8, 1.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8, 1.75, 8.25], "texture": "#0"}, - "down": {"uv": [1.5, 8.25, 1.75, 8], "texture": "#0"} + "from": [ + 1.5, + 0, + 8 + ], + "to": [ + 1.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 8, + 1.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_687", - "from": [1.75, 0, 8], - "to": [2, 0.25, 8.25], - "faces": { - "north": {"uv": [2, 8, 1.75, 8.25], "texture": "#0"}, - "east": {"uv": [1.75, 8, 2, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8, 2, 8.25], "texture": "#0"}, - "west": {"uv": [1.75, 8, 2, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8, 2, 8.25], "texture": "#0"}, - "down": {"uv": [1.75, 8.25, 2, 8], "texture": "#0"} + "from": [ + 1.75, + 0, + 8 + ], + "to": [ + 2, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 2, + 8, + 1.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8, + 2, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8, + 2, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8.25, + 2, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_688", - "from": [2, 0, 8], - "to": [2.25, 0.25, 8.25], - "faces": { - "north": {"uv": [2.25, 8, 2, 8.25], "texture": "#0"}, - "east": {"uv": [2, 8, 2.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8, 2.25, 8.25], "texture": "#0"}, - "west": {"uv": [2, 8, 2.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8, 2.25, 8.25], "texture": "#0"}, - "down": {"uv": [2, 8.25, 2.25, 8], "texture": "#0"} + "from": [ + 2, + 0, + 8 + ], + "to": [ + 2.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.25, + 2.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_689", - "from": [2.25, 0, 8], - "to": [2.5, 0.25, 8.25], - "faces": { - "north": {"uv": [2.5, 8, 2.25, 8.25], "texture": "#0"}, - "east": {"uv": [2.25, 8, 2.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8, 2.5, 8.25], "texture": "#0"}, - "west": {"uv": [2.25, 8, 2.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8, 2.5, 8.25], "texture": "#0"}, - "down": {"uv": [2.25, 8.25, 2.5, 8], "texture": "#0"} + "from": [ + 2.25, + 0, + 8 + ], + "to": [ + 2.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 8, + 2.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8, + 2.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8, + 2.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8, + 2.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8, + 2.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_690", - "from": [2.5, 0, 8], - "to": [2.75, 0.25, 8.25], - "faces": { - "north": {"uv": [2.75, 8, 2.5, 8.25], "texture": "#0"}, - "east": {"uv": [2.5, 8, 2.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8, 2.75, 8.25], "texture": "#0"}, - "west": {"uv": [2.5, 8, 2.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8, 2.75, 8.25], "texture": "#0"}, - "down": {"uv": [2.5, 8.25, 2.75, 8], "texture": "#0"} + "from": [ + 2.5, + 0, + 8 + ], + "to": [ + 2.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 8, + 2.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8.25, + 2.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_691", - "from": [2.75, 0, 8], - "to": [3, 0.25, 8.25], - "faces": { - "north": {"uv": [3, 8, 2.75, 8.25], "texture": "#0"}, - "east": {"uv": [2.75, 8, 3, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8, 3, 8.25], "texture": "#0"}, - "west": {"uv": [2.75, 8, 3, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 8, 3, 8.25], "texture": "#0"}, - "down": {"uv": [2.75, 8.25, 3, 8], "texture": "#0"} + "from": [ + 2.75, + 0, + 8 + ], + "to": [ + 3, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 8, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8, + 3, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8, + 3, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 8, + 3, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8, + 3, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.25, + 3, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_692", - "from": [3, 0, 8], - "to": [3.25, 0.25, 8.25], - "faces": { - "north": {"uv": [3.25, 8, 3, 8.25], "texture": "#0"}, - "east": {"uv": [3, 8, 3.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8, 3.25, 8.25], "texture": "#0"}, - "west": {"uv": [3, 8, 3.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8, 3.25, 8.25], "texture": "#0"}, - "down": {"uv": [3, 8.25, 3.25, 8], "texture": "#0"} + "from": [ + 3, + 0, + 8 + ], + "to": [ + 3.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 8, + 3, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8, + 3.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8, + 3.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8, + 3.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.25, + 3.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_693", - "from": [3.25, 0, 8], - "to": [3.5, 0.25, 8.25], - "faces": { - "north": {"uv": [3.5, 8, 3.25, 8.25], "texture": "#0"}, - "east": {"uv": [3.25, 8, 3.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8, 3.5, 8.25], "texture": "#0"}, - "west": {"uv": [3.25, 8, 3.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8, 3.5, 8.25], "texture": "#0"}, - "down": {"uv": [3.25, 8.25, 3.5, 8], "texture": "#0"} + "from": [ + 3.25, + 0, + 8 + ], + "to": [ + 3.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 8, + 3.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8, + 3.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8, + 3.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_694", - "from": [3.5, 0, 8], - "to": [3.75, 0.25, 8.25], - "faces": { - "north": {"uv": [3.75, 8, 3.5, 8.25], "texture": "#0"}, - "east": {"uv": [3.5, 8, 3.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8, 3.75, 8.25], "texture": "#0"}, - "west": {"uv": [3.5, 8, 3.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 8, 3.75, 8.25], "texture": "#0"}, - "down": {"uv": [3.5, 8.25, 3.75, 8], "texture": "#0"} + "from": [ + 3.5, + 0, + 8 + ], + "to": [ + 3.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8, + 3.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8, + 3.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8, + 3.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.25, + 3.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_695", - "from": [3.75, 0, 8], - "to": [4, 0.25, 8.25], - "faces": { - "north": {"uv": [4, 8, 3.75, 8.25], "texture": "#0"}, - "east": {"uv": [3.75, 8, 4, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8, 4, 8.25], "texture": "#0"}, - "west": {"uv": [3.75, 8, 4, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8, 4, 8.25], "texture": "#0"}, - "down": {"uv": [3.75, 8.25, 4, 8], "texture": "#0"} + "from": [ + 3.75, + 0, + 8 + ], + "to": [ + 4, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 8, + 3.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8, + 4, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8, + 4, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8, + 4, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8, + 4, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 8.25, + 4, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_696", - "from": [4, 0, 8], - "to": [4.25, 0.25, 8.25], - "faces": { - "north": {"uv": [4.25, 8, 4, 8.25], "texture": "#0"}, - "east": {"uv": [4, 8, 4.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 8, 4.25, 8.25], "texture": "#0"}, - "west": {"uv": [4, 8, 4.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 8, 4.25, 8.25], "texture": "#0"}, - "down": {"uv": [4, 8.25, 4.25, 8], "texture": "#0"} + "from": [ + 4, + 0, + 8 + ], + "to": [ + 4.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 8, + 4, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 4.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.25, + 4.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_697", - "from": [4.25, 0, 8], - "to": [4.5, 0.25, 8.25], - "faces": { - "north": {"uv": [4.5, 8, 4.25, 8.25], "texture": "#0"}, - "east": {"uv": [4.25, 8, 4.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 8, 4.5, 8.25], "texture": "#0"}, - "west": {"uv": [4.25, 8, 4.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 8, 4.5, 8.25], "texture": "#0"}, - "down": {"uv": [4.25, 8.25, 4.5, 8], "texture": "#0"} + "from": [ + 4.25, + 0, + 8 + ], + "to": [ + 4.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 8, + 4.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 8, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8, + 4.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8, + 4.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 8, + 4.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_698", - "from": [4.5, 0, 8], - "to": [4.75, 0.25, 8.25], - "faces": { - "north": {"uv": [4.75, 8, 4.5, 8.25], "texture": "#0"}, - "east": {"uv": [4.5, 8, 4.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8, 4.75, 8.25], "texture": "#0"}, - "west": {"uv": [4.5, 8, 4.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 8, 4.75, 8.25], "texture": "#0"}, - "down": {"uv": [4.5, 8.25, 4.75, 8], "texture": "#0"} + "from": [ + 4.5, + 0, + 8 + ], + "to": [ + 4.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 8, + 4.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8.25, + 4.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_699", - "from": [4.75, 0, 8], - "to": [5, 0.25, 8.25], - "faces": { - "north": {"uv": [5, 8, 4.75, 8.25], "texture": "#0"}, - "east": {"uv": [4.75, 8, 5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8, 5, 8.25], "texture": "#0"}, - "west": {"uv": [4.75, 8, 5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 8, 5, 8.25], "texture": "#0"}, - "down": {"uv": [4.75, 8.25, 5, 8], "texture": "#0"} + "from": [ + 4.75, + 0, + 8 + ], + "to": [ + 5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 8, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8, + 5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8, + 5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 8, + 5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 8, + 5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8.25, + 5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_700", - "from": [5, 0, 8], - "to": [5.25, 0.25, 8.25], - "faces": { - "north": {"uv": [5.25, 8, 5, 8.25], "texture": "#0"}, - "east": {"uv": [5, 8, 5.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8, 5.25, 8.25], "texture": "#0"}, - "west": {"uv": [5, 8, 5.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 8, 5.25, 8.25], "texture": "#0"}, - "down": {"uv": [5, 8.25, 5.25, 8], "texture": "#0"} + "from": [ + 5, + 0, + 8 + ], + "to": [ + 5.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 8, + 5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8, + 5.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8, + 5.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8, + 5.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.25, + 5.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_701", - "from": [5.25, 0, 8], - "to": [5.5, 0.25, 8.25], - "faces": { - "north": {"uv": [5.5, 8, 5.25, 8.25], "texture": "#0"}, - "east": {"uv": [5.25, 8, 5.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 8, 5.5, 8.25], "texture": "#0"}, - "west": {"uv": [5.25, 8, 5.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 8, 5.5, 8.25], "texture": "#0"}, - "down": {"uv": [5.25, 8.25, 5.5, 8], "texture": "#0"} + "from": [ + 5.25, + 0, + 8 + ], + "to": [ + 5.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 5.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 8, + 5.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8, + 5.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 8, + 5.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 8, + 5.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.25, + 5.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_702", - "from": [5.5, 0, 8], - "to": [5.75, 0.25, 8.25], - "faces": { - "north": {"uv": [5.75, 8, 5.5, 8.25], "texture": "#0"}, - "east": {"uv": [5.5, 8, 5.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8, 5.75, 8.25], "texture": "#0"}, - "west": {"uv": [5.5, 8, 5.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 8, 5.75, 8.25], "texture": "#0"}, - "down": {"uv": [5.5, 8.25, 5.75, 8], "texture": "#0"} + "from": [ + 5.5, + 0, + 8 + ], + "to": [ + 5.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 8, + 5.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_703", - "from": [5.75, 0, 8], - "to": [6, 0.25, 8.25], - "faces": { - "north": {"uv": [6, 8, 5.75, 8.25], "texture": "#0"}, - "east": {"uv": [5.75, 8, 6, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 8, 6, 8.25], "texture": "#0"}, - "west": {"uv": [5.75, 8, 6, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 8, 6, 8.25], "texture": "#0"}, - "down": {"uv": [5.75, 8.25, 6, 8], "texture": "#0"} + "from": [ + 5.75, + 0, + 8 + ], + "to": [ + 6, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 8, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8.25, + 6, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_704", - "from": [6, 0, 8], - "to": [6.25, 0.25, 8.25], - "faces": { - "north": {"uv": [6.25, 8, 6, 8.25], "texture": "#0"}, - "east": {"uv": [6, 8, 6.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8, 6.25, 8.25], "texture": "#0"}, - "west": {"uv": [6, 8, 6.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 8, 6.25, 8.25], "texture": "#0"}, - "down": {"uv": [6, 8.25, 6.25, 8], "texture": "#0"} + "from": [ + 6, + 0, + 8 + ], + "to": [ + 6.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 8, + 6, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8, + 6.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8, + 6.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8, + 6.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8.25, + 6.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_705", - "from": [6.25, 0, 8], - "to": [6.5, 0.25, 8.25], - "faces": { - "north": {"uv": [6.5, 8, 6.25, 8.25], "texture": "#0"}, - "east": {"uv": [6.25, 8, 6.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8, 6.5, 8.25], "texture": "#0"}, - "west": {"uv": [6.25, 8, 6.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 8, 6.5, 8.25], "texture": "#0"}, - "down": {"uv": [6.25, 8.25, 6.5, 8], "texture": "#0"} + "from": [ + 6.25, + 0, + 8 + ], + "to": [ + 6.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 8, + 6.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_706", - "from": [6.5, 0, 8], - "to": [6.75, 0.25, 8.25], - "faces": { - "north": {"uv": [6.75, 8, 6.5, 8.25], "texture": "#0"}, - "east": {"uv": [6.5, 8, 6.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8, 6.75, 8.25], "texture": "#0"}, - "west": {"uv": [6.5, 8, 6.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 8, 6.75, 8.25], "texture": "#0"}, - "down": {"uv": [6.5, 8.25, 6.75, 8], "texture": "#0"} + "from": [ + 6.5, + 0, + 8 + ], + "to": [ + 6.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 8, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 8, + 6.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 6.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8, + 6.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 8, + 6.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_707", - "from": [6.75, 0, 8], - "to": [7, 0.25, 8.25], - "faces": { - "north": {"uv": [7, 8, 6.75, 8.25], "texture": "#0"}, - "east": {"uv": [6.75, 8, 7, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8, 7, 8.25], "texture": "#0"}, - "west": {"uv": [6.75, 8, 7, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 8, 7, 8.25], "texture": "#0"}, - "down": {"uv": [6.75, 8.25, 7, 8], "texture": "#0"} + "from": [ + 6.75, + 0, + 8 + ], + "to": [ + 7, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 8, + 6.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8, + 7, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8, + 7, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 8, + 7, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8, + 7, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8.25, + 7, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_708", - "from": [7, 0, 8], - "to": [7.25, 0.25, 8.25], - "faces": { - "north": {"uv": [7.25, 8, 7, 8.25], "texture": "#0"}, - "east": {"uv": [7, 8, 7.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8, 7.25, 8.25], "texture": "#0"}, - "west": {"uv": [7, 8, 7.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 8, 7.25, 8.25], "texture": "#0"}, - "down": {"uv": [7, 8.25, 7.25, 8], "texture": "#0"} + "from": [ + 7, + 0, + 8 + ], + "to": [ + 7.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 8, + 7, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 8, + 7.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8, + 7.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8, + 7.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8, + 7.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 8.25, + 7.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_709", - "from": [7.25, 0, 8], - "to": [7.5, 0.25, 8.25], - "faces": { - "north": {"uv": [7.5, 8, 7.25, 8.25], "texture": "#0"}, - "east": {"uv": [7.25, 8, 7.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8, 7.5, 8.25], "texture": "#0"}, - "west": {"uv": [7.25, 8, 7.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 8, 7.5, 8.25], "texture": "#0"}, - "down": {"uv": [7.25, 8.25, 7.5, 8], "texture": "#0"} + "from": [ + 7.25, + 0, + 8 + ], + "to": [ + 7.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 7.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 8, + 7.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 8, + 7.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 8, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_710", - "from": [7.5, 0, 8], - "to": [7.75, 0.25, 8.25], - "faces": { - "north": {"uv": [7.75, 8, 7.5, 8.25], "texture": "#0"}, - "east": {"uv": [7.5, 8, 7.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8, 7.75, 8.25], "texture": "#0"}, - "west": {"uv": [7.5, 8, 7.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 8, 7.75, 8.25], "texture": "#0"}, - "down": {"uv": [7.5, 8.25, 7.75, 8], "texture": "#0"} + "from": [ + 7.5, + 0, + 8 + ], + "to": [ + 7.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 8, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8, + 7.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8, + 7.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 8, + 7.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8, + 7.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_711", - "from": [7.75, 0, 8], - "to": [8, 0.25, 8.25], - "faces": { - "north": {"uv": [8, 8, 7.75, 8.25], "texture": "#0"}, - "east": {"uv": [7.75, 8, 8, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8, 8, 8.25], "texture": "#0"}, - "west": {"uv": [7.75, 8, 8, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 8, 8, 8.25], "texture": "#0"}, - "down": {"uv": [7.75, 8.25, 8, 8], "texture": "#0"} + "from": [ + 7.75, + 0, + 8 + ], + "to": [ + 8, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 8, + 7.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8, + 8, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8, + 8, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 8, + 8, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 8, + 8, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8.25, + 8, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_712", - "from": [8, 0, 8], - "to": [8.25, 0.25, 8.25], - "faces": { - "north": {"uv": [8.25, 8, 8, 8.25], "texture": "#0"}, - "east": {"uv": [8, 8, 8.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8, 8.25, 8.25], "texture": "#0"}, - "west": {"uv": [8, 8, 8.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 8, 8.25, 8.25], "texture": "#0"}, - "down": {"uv": [8, 8.25, 8.25, 8], "texture": "#0"} + "from": [ + 8, + 0, + 8 + ], + "to": [ + 8.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 8, + 8, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8, + 8.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8, + 8.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8, + 8.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8, + 8.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8.25, + 8.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_713", - "from": [8.25, 0, 8], - "to": [8.5, 0.25, 8.25], - "faces": { - "north": {"uv": [8.5, 8, 8.25, 8.25], "texture": "#0"}, - "east": {"uv": [8.25, 8, 8.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8, 8.5, 8.25], "texture": "#0"}, - "west": {"uv": [8.25, 8, 8.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 8, 8.5, 8.25], "texture": "#0"}, - "down": {"uv": [8.25, 8.25, 8.5, 8], "texture": "#0"} + "from": [ + 8.25, + 0, + 8 + ], + "to": [ + 8.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 8.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8, + 8.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8, + 8.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 8, + 8.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 8, + 8.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_714", - "from": [8.5, 0, 8], - "to": [8.75, 0.25, 8.25], - "faces": { - "north": {"uv": [8.75, 8, 8.5, 8.25], "texture": "#0"}, - "east": {"uv": [8.5, 8, 8.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 8, 8.75, 8.25], "texture": "#0"}, - "west": {"uv": [8.5, 8, 8.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 8, 8.75, 8.25], "texture": "#0"}, - "down": {"uv": [8.5, 8.25, 8.75, 8], "texture": "#0"} + "from": [ + 8.5, + 0, + 8 + ], + "to": [ + 8.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 8, + 8.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8, + 8.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8, + 8.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8, + 8.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 8, + 8.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.25, + 8.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_715", - "from": [8.75, 0, 8], - "to": [9, 0.25, 8.25], - "faces": { - "north": {"uv": [9, 8, 8.75, 8.25], "texture": "#0"}, - "east": {"uv": [8.75, 8, 9, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 8, 9, 8.25], "texture": "#0"}, - "west": {"uv": [8.75, 8, 9, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 8, 9, 8.25], "texture": "#0"}, - "down": {"uv": [8.75, 8.25, 9, 8], "texture": "#0"} + "from": [ + 8.75, + 0, + 8 + ], + "to": [ + 9, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 8, + 8.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8, + 9, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8, + 9, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 8.25, + 9, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_716", - "from": [9, 0, 8], - "to": [9.25, 0.25, 8.25], - "faces": { - "north": {"uv": [9.25, 8, 9, 8.25], "texture": "#0"}, - "east": {"uv": [9, 8, 9.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8, 9.25, 8.25], "texture": "#0"}, - "west": {"uv": [9, 8, 9.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 8, 9.25, 8.25], "texture": "#0"}, - "down": {"uv": [9, 8.25, 9.25, 8], "texture": "#0"} + "from": [ + 9, + 0, + 8 + ], + "to": [ + 9.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 9.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 9.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8, + 9.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 8.25, + 9.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_717", - "from": [9.25, 0, 8], - "to": [9.5, 0.25, 8.25], - "faces": { - "north": {"uv": [9.5, 8, 9.25, 8.25], "texture": "#0"}, - "east": {"uv": [9.25, 8, 9.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8, 9.5, 8.25], "texture": "#0"}, - "west": {"uv": [9.25, 8, 9.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8, 9.5, 8.25], "texture": "#0"}, - "down": {"uv": [9.25, 8.25, 9.5, 8], "texture": "#0"} + "from": [ + 9.25, + 0, + 8 + ], + "to": [ + 9.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 8, + 9.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8, + 9.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8, + 9.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_718", - "from": [9.5, 0, 8], - "to": [9.75, 0.25, 8.25], - "faces": { - "north": {"uv": [9.75, 8, 9.5, 8.25], "texture": "#0"}, - "east": {"uv": [9.5, 8, 9.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8, 9.75, 8.25], "texture": "#0"}, - "west": {"uv": [9.5, 8, 9.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 8, 9.75, 8.25], "texture": "#0"}, - "down": {"uv": [9.5, 8.25, 9.75, 8], "texture": "#0"} + "from": [ + 9.5, + 0, + 8 + ], + "to": [ + 9.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_719", - "from": [9.75, 0, 8], - "to": [10, 0.25, 8.25], - "faces": { - "north": {"uv": [10, 8, 9.75, 8.25], "texture": "#0"}, - "east": {"uv": [9.75, 8, 10, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 8, 10, 8.25], "texture": "#0"}, - "west": {"uv": [9.75, 8, 10, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 8, 10, 8.25], "texture": "#0"}, - "down": {"uv": [9.75, 8.25, 10, 8], "texture": "#0"} + "from": [ + 9.75, + 0, + 8 + ], + "to": [ + 10, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 8, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 8, + 10, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 8, + 10, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 8, + 10, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 8, + 10, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.25, + 10, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_720", - "from": [10, 0, 8], - "to": [10.25, 0.25, 8.25], - "faces": { - "north": {"uv": [10.25, 8, 10, 8.25], "texture": "#0"}, - "east": {"uv": [10, 8, 10.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8, 10.25, 8.25], "texture": "#0"}, - "west": {"uv": [10, 8, 10.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8, 10.25, 8.25], "texture": "#0"}, - "down": {"uv": [10, 8.25, 10.25, 8], "texture": "#0"} + "from": [ + 10, + 0, + 8 + ], + "to": [ + 10.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 8, + 10, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 8, + 10.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8, + 10.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 10.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8.25, + 10.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_721", - "from": [10.25, 0, 8], - "to": [10.5, 0.25, 8.25], - "faces": { - "north": {"uv": [10.5, 8, 10.25, 8.25], "texture": "#0"}, - "east": {"uv": [10.25, 8, 10.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8, 10.5, 8.25], "texture": "#0"}, - "west": {"uv": [10.25, 8, 10.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 8, 10.5, 8.25], "texture": "#0"}, - "down": {"uv": [10.25, 8.25, 10.5, 8], "texture": "#0"} + "from": [ + 10.25, + 0, + 8 + ], + "to": [ + 10.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 8, + 10.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8, + 10.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8, + 10.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 8, + 10.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 8, + 10.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8.25, + 10.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_722", - "from": [10.5, 0, 8], - "to": [10.75, 0.25, 8.25], - "faces": { - "north": {"uv": [10.75, 8, 10.5, 8.25], "texture": "#0"}, - "east": {"uv": [10.5, 8, 10.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8, 10.75, 8.25], "texture": "#0"}, - "west": {"uv": [10.5, 8, 10.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8, 10.75, 8.25], "texture": "#0"}, - "down": {"uv": [10.5, 8.25, 10.75, 8], "texture": "#0"} + "from": [ + 10.5, + 0, + 8 + ], + "to": [ + 10.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 8, + 10.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8, + 10.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8, + 10.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8, + 10.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8, + 10.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_723", - "from": [10.75, 0, 8], - "to": [11, 0.25, 8.25], - "faces": { - "north": {"uv": [11, 8, 10.75, 8.25], "texture": "#0"}, - "east": {"uv": [10.75, 8, 11, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8, 11, 8.25], "texture": "#0"}, - "west": {"uv": [10.75, 8, 11, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8, 11, 8.25], "texture": "#0"}, - "down": {"uv": [10.75, 8.25, 11, 8], "texture": "#0"} + "from": [ + 10.75, + 0, + 8 + ], + "to": [ + 11, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 11, + 8, + 10.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8, + 11, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8, + 11, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.25, + 11, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_724", - "from": [11, 0, 8], - "to": [11.25, 0.25, 8.25], - "faces": { - "north": {"uv": [11.25, 8, 11, 8.25], "texture": "#0"}, - "east": {"uv": [11, 8, 11.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8, 11.25, 8.25], "texture": "#0"}, - "west": {"uv": [11, 8, 11.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8, 11.25, 8.25], "texture": "#0"}, - "down": {"uv": [11, 8.25, 11.25, 8], "texture": "#0"} + "from": [ + 11, + 0, + 8 + ], + "to": [ + 11.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8, + 11.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8, + 11.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8, + 11.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8, + 11.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.25, + 11.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_725", - "from": [11.25, 0, 8], - "to": [11.5, 0.25, 8.25], - "faces": { - "north": {"uv": [11.5, 8, 11.25, 8.25], "texture": "#0"}, - "east": {"uv": [11.25, 8, 11.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8, 11.5, 8.25], "texture": "#0"}, - "west": {"uv": [11.25, 8, 11.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8, 11.5, 8.25], "texture": "#0"}, - "down": {"uv": [11.25, 8.25, 11.5, 8], "texture": "#0"} + "from": [ + 11.25, + 0, + 8 + ], + "to": [ + 11.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 8, + 11.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_726", - "from": [11.5, 0, 8], - "to": [11.75, 0.25, 8.25], - "faces": { - "north": {"uv": [11.75, 8, 11.5, 8.25], "texture": "#0"}, - "east": {"uv": [11.5, 8, 11.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#0"}, - "west": {"uv": [11.5, 8, 11.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#0"}, - "down": {"uv": [11.5, 8.25, 11.75, 8], "texture": "#0"} + "from": [ + 11.5, + 0, + 8 + ], + "to": [ + 11.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 8, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_727", - "from": [11.75, 0, 8], - "to": [12, 0.25, 8.25], - "faces": { - "north": {"uv": [12, 8, 11.75, 8.25], "texture": "#0"}, - "east": {"uv": [11.75, 8, 12, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8, 12, 8.25], "texture": "#0"}, - "west": {"uv": [11.75, 8, 12, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8, 12, 8.25], "texture": "#0"}, - "down": {"uv": [11.75, 8.25, 12, 8], "texture": "#0"} + "from": [ + 11.75, + 0, + 8 + ], + "to": [ + 12, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 12, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 12, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_728", - "from": [12, 0, 8], - "to": [12.25, 0.25, 8.25], - "faces": { - "north": {"uv": [12.25, 8, 12, 8.25], "texture": "#0"}, - "east": {"uv": [12, 8, 12.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8, 12.25, 8.25], "texture": "#0"}, - "west": {"uv": [12, 8, 12.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8, 12.25, 8.25], "texture": "#0"}, - "down": {"uv": [12, 8.25, 12.25, 8], "texture": "#0"} + "from": [ + 12, + 0, + 8 + ], + "to": [ + 12.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.25, + 12.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_729", - "from": [12.25, 0, 8], - "to": [12.5, 0.25, 8.25], - "faces": { - "north": {"uv": [12.5, 8, 12.25, 8.25], "texture": "#0"}, - "east": {"uv": [12.25, 8, 12.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8, 12.5, 8.25], "texture": "#0"}, - "west": {"uv": [12.25, 8, 12.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 8, 12.5, 8.25], "texture": "#0"}, - "down": {"uv": [12.25, 8.25, 12.5, 8], "texture": "#0"} + "from": [ + 12.25, + 0, + 8 + ], + "to": [ + 12.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 8, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_730", - "from": [12.5, 0, 8], - "to": [12.75, 0.25, 8.25], - "faces": { - "north": {"uv": [12.75, 8, 12.5, 8.25], "texture": "#0"}, - "east": {"uv": [12.5, 8, 12.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8, 12.75, 8.25], "texture": "#0"}, - "west": {"uv": [12.5, 8, 12.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8, 12.75, 8.25], "texture": "#0"}, - "down": {"uv": [12.5, 8.25, 12.75, 8], "texture": "#0"} + "from": [ + 12.5, + 0, + 8 + ], + "to": [ + 12.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 8, + 12.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_731", - "from": [12.75, 0, 8], - "to": [13, 0.25, 8.25], - "faces": { - "north": {"uv": [13, 8, 12.75, 8.25], "texture": "#0"}, - "east": {"uv": [12.75, 8, 13, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8, 13, 8.25], "texture": "#0"}, - "west": {"uv": [12.75, 8, 13, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8, 13, 8.25], "texture": "#0"}, - "down": {"uv": [12.75, 8.25, 13, 8], "texture": "#0"} + "from": [ + 12.75, + 0, + 8 + ], + "to": [ + 13, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 13, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8, + 13, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8, + 13, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8, + 13, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8, + 13, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.25, + 13, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_732", - "from": [13, 0, 8], - "to": [13.25, 0.25, 8.25], - "faces": { - "north": {"uv": [13.25, 8, 13, 8.25], "texture": "#0"}, - "east": {"uv": [13, 8, 13.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8, 13.25, 8.25], "texture": "#0"}, - "west": {"uv": [13, 8, 13.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8, 13.25, 8.25], "texture": "#0"}, - "down": {"uv": [13, 8.25, 13.25, 8], "texture": "#0"} + "from": [ + 13, + 0, + 8 + ], + "to": [ + 13.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 8, + 13, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8, + 13.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8, + 13.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8, + 13.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8, + 13.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.25, + 13.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_733", - "from": [13.25, 0, 8], - "to": [13.5, 0.25, 8.25], - "faces": { - "north": {"uv": [13.5, 8, 13.25, 8.25], "texture": "#0"}, - "east": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8, 13.5, 8.25], "texture": "#0"}, - "west": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8, 13.5, 8.25], "texture": "#0"}, - "down": {"uv": [13.25, 8.25, 13.5, 8], "texture": "#0"} + "from": [ + 13.25, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 8, + 13.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_734", - "from": [13.5, 0, 8], - "to": [13.75, 0.25, 8.25], - "faces": { - "north": {"uv": [13.75, 8, 13.5, 8.25], "texture": "#0"}, - "east": {"uv": [13.5, 8, 13.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8, 13.75, 8.25], "texture": "#0"}, - "west": {"uv": [13.5, 8, 13.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8, 13.75, 8.25], "texture": "#0"}, - "down": {"uv": [13.5, 8.25, 13.75, 8], "texture": "#0"} + "from": [ + 13.5, + 0, + 8 + ], + "to": [ + 13.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_735", - "from": [13.75, 0, 8], - "to": [14, 0.25, 8.25], - "faces": { - "north": {"uv": [14, 8, 13.75, 8.25], "texture": "#0"}, - "east": {"uv": [13.75, 8, 14, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8, 14, 8.25], "texture": "#0"}, - "west": {"uv": [13.75, 8, 14, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8, 14, 8.25], "texture": "#0"}, - "down": {"uv": [13.75, 8.25, 14, 8], "texture": "#0"} + "from": [ + 13.75, + 0, + 8 + ], + "to": [ + 14, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 14, + 8, + 13.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.25, + 14, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_736", - "from": [14, 0, 8], - "to": [14.25, 0.25, 8.25], - "faces": { - "north": {"uv": [14.25, 8, 14, 8.25], "texture": "#0"}, - "east": {"uv": [14, 8, 14.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8, 14.25, 8.25], "texture": "#0"}, - "west": {"uv": [14, 8, 14.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8, 14.25, 8.25], "texture": "#0"}, - "down": {"uv": [14, 8.25, 14.25, 8], "texture": "#0"} + "from": [ + 14, + 0, + 8 + ], + "to": [ + 14.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 8, + 14, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8, + 14.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8, + 14.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8, + 14.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8, + 14.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 8.25, + 14.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_737", - "from": [14.25, 0, 8], - "to": [14.5, 0.25, 8.25], - "faces": { - "north": {"uv": [14.5, 8, 14.25, 8.25], "texture": "#0"}, - "east": {"uv": [14.25, 8, 14.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8, 14.5, 8.25], "texture": "#0"}, - "west": {"uv": [14.25, 8, 14.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8, 14.5, 8.25], "texture": "#0"}, - "down": {"uv": [14.25, 8.25, 14.5, 8], "texture": "#0"} + "from": [ + 14.25, + 0, + 8 + ], + "to": [ + 14.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 8, + 14.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8, + 14.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8, + 14.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8, + 14.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8, + 14.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_738", - "from": [14.5, 0, 8], - "to": [14.75, 0.25, 8.25], - "faces": { - "north": {"uv": [14.75, 8, 14.5, 8.25], "texture": "#0"}, - "east": {"uv": [14.5, 8, 14.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#0"}, - "west": {"uv": [14.5, 8, 14.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#0"}, - "down": {"uv": [14.5, 8.25, 14.75, 8], "texture": "#0"} + "from": [ + 14.5, + 0, + 8 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 8, + 14.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_739", - "from": [14.75, 0, 8], - "to": [15, 0.25, 8.25], - "faces": { - "north": {"uv": [15, 8, 14.75, 8.25], "texture": "#0"}, - "east": {"uv": [14.75, 8, 15, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8, 15, 8.25], "texture": "#0"}, - "west": {"uv": [14.75, 8, 15, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8, 15, 8.25], "texture": "#0"}, - "down": {"uv": [14.75, 8.25, 15, 8], "texture": "#0"} + "from": [ + 14.75, + 0, + 8 + ], + "to": [ + 15, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 15, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8, + 15, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8, + 15, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.25, + 15, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_740", - "from": [15, 0, 8], - "to": [15.25, 0.25, 8.25], - "faces": { - "north": {"uv": [15.25, 8, 15, 8.25], "texture": "#0"}, - "east": {"uv": [15, 8, 15.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8, 15.25, 8.25], "texture": "#0"}, - "west": {"uv": [15, 8, 15.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8, 15.25, 8.25], "texture": "#0"}, - "down": {"uv": [15, 8.25, 15.25, 8], "texture": "#0"} + "from": [ + 15, + 0, + 8 + ], + "to": [ + 15.25, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8, + 15.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8, + 15.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8, + 15.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8, + 15.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8.25, + 15.25, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_741", - "from": [15.25, 0, 8], - "to": [15.5, 0.25, 8.25], - "faces": { - "north": {"uv": [15.5, 8, 15.25, 8.25], "texture": "#0"}, - "east": {"uv": [15.25, 8, 15.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#0"}, - "west": {"uv": [15.25, 8, 15.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#0"}, - "down": {"uv": [15.25, 8.25, 15.5, 8], "texture": "#0"} + "from": [ + 15.25, + 0, + 8 + ], + "to": [ + 15.5, + 0.25, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 8, + 15.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_742", - "from": [0.75, 0, 8.25], - "to": [1, 0.25, 8.5], - "faces": { - "north": {"uv": [1, 8.25, 0.75, 8.5], "texture": "#0"}, - "east": {"uv": [0.75, 8.25, 1, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 8.25, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.25, 1, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 1, 8.25], "texture": "#0"} + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 1, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 1, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_743", - "from": [1, 0, 8.25], - "to": [1.25, 0.25, 8.5], - "faces": { - "north": {"uv": [1.25, 8.25, 1, 8.5], "texture": "#0"}, - "east": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#0"}, - "west": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#0"}, - "down": {"uv": [1, 8.5, 1.25, 8.25], "texture": "#0"} + "from": [ + 1, + 0, + 8.25 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 8.25, + 1, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_744", - "from": [1.25, 0, 8.25], - "to": [1.5, 0.25, 8.5], - "faces": { - "north": {"uv": [1.5, 8.25, 1.25, 8.5], "texture": "#0"}, - "east": {"uv": [1.25, 8.25, 1.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.25, 1.5, 8.5], "texture": "#0"}, - "west": {"uv": [1.25, 8.25, 1.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.25, 1.5, 8.5], "texture": "#0"}, - "down": {"uv": [1.25, 8.5, 1.5, 8.25], "texture": "#0"} + "from": [ + 1.25, + 0, + 8.25 + ], + "to": [ + 1.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.25, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_745", - "from": [1.5, 0, 8.25], - "to": [1.75, 0.25, 8.5], - "faces": { - "north": {"uv": [1.75, 8.25, 1.5, 8.5], "texture": "#0"}, - "east": {"uv": [1.5, 8.25, 1.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.25, 1.75, 8.5], "texture": "#0"}, - "west": {"uv": [1.5, 8.25, 1.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.25, 1.75, 8.5], "texture": "#0"}, - "down": {"uv": [1.5, 8.5, 1.75, 8.25], "texture": "#0"} + "from": [ + 1.5, + 0, + 8.25 + ], + "to": [ + 1.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 8.25, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.25, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_746", - "from": [1.75, 0, 8.25], - "to": [2, 0.25, 8.5], - "faces": { - "north": {"uv": [2, 8.25, 1.75, 8.5], "texture": "#0"}, - "east": {"uv": [1.75, 8.25, 2, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.25, 2, 8.5], "texture": "#0"}, - "west": {"uv": [1.75, 8.25, 2, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.25, 2, 8.5], "texture": "#0"}, - "down": {"uv": [1.75, 8.5, 2, 8.25], "texture": "#0"} + "from": [ + 1.75, + 0, + 8.25 + ], + "to": [ + 2, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 2, + 8.25, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.25, + 2, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.25, + 2, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8.5, + 2, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_747", - "from": [2, 0, 8.25], - "to": [2.25, 0.25, 8.5], - "faces": { - "north": {"uv": [2.25, 8.25, 2, 8.5], "texture": "#0"}, - "east": {"uv": [2, 8.25, 2.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.25, 2.25, 8.5], "texture": "#0"}, - "west": {"uv": [2, 8.25, 2.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8.25, 2.25, 8.5], "texture": "#0"}, - "down": {"uv": [2, 8.5, 2.25, 8.25], "texture": "#0"} + "from": [ + 2, + 0, + 8.25 + ], + "to": [ + 2.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.25, + 2.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.25, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.25, + 2.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8.25, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.5, + 2.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_748", - "from": [2.25, 0, 8.25], - "to": [2.5, 0.25, 8.5], - "faces": { - "north": {"uv": [2.5, 8.25, 2.25, 8.5], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8.25, 2.5, 8.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 2.5, 8.5], "texture": "#0"}, - "down": {"uv": [2.25, 8.5, 2.5, 8.25], "texture": "#0"} + "from": [ + 2.25, + 0, + 8.25 + ], + "to": [ + 2.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 8.25, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8.5, + 2.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_749", - "from": [2.5, 0, 8.25], - "to": [2.75, 0.25, 8.5], - "faces": { - "north": {"uv": [2.75, 8.25, 2.5, 8.5], "texture": "#0"}, - "east": {"uv": [2.5, 8.25, 2.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2.5, 8.25, 2.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [2.5, 8.5, 2.75, 8.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 8.25 + ], + "to": [ + 2.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 8.25, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8.25, + 2.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.25, + 2.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8.5, + 2.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_750", - "from": [2.75, 0, 8.25], - "to": [3, 0.25, 8.5], - "faces": { - "north": {"uv": [3, 8.25, 2.75, 8.5], "texture": "#0"}, - "east": {"uv": [2.75, 8.25, 3, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.25, 3, 8.5], "texture": "#0"}, - "west": {"uv": [2.75, 8.25, 3, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 8.25, 3, 8.5], "texture": "#0"}, - "down": {"uv": [2.75, 8.5, 3, 8.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 8.25 + ], + "to": [ + 3, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.5, + 3, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_751", - "from": [3, 0, 8.25], - "to": [3.25, 0.25, 8.5], - "faces": { - "north": {"uv": [3.25, 8.25, 3, 8.5], "texture": "#0"}, - "east": {"uv": [3, 8.25, 3.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.25, 3.25, 8.5], "texture": "#0"}, - "west": {"uv": [3, 8.25, 3.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8.25, 3.25, 8.5], "texture": "#0"}, - "down": {"uv": [3, 8.5, 3.25, 8.25], "texture": "#0"} + "from": [ + 3, + 0, + 8.25 + ], + "to": [ + 3.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 8.25, + 3, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.25, + 3.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.25, + 3.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 3.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_752", - "from": [3.25, 0, 8.25], - "to": [3.5, 0.25, 8.5], - "faces": { - "north": {"uv": [3.5, 8.25, 3.25, 8.5], "texture": "#0"}, - "east": {"uv": [3.25, 8.25, 3.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.25, 3.5, 8.5], "texture": "#0"}, - "west": {"uv": [3.25, 8.25, 3.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.25, 3.5, 8.5], "texture": "#0"}, - "down": {"uv": [3.25, 8.5, 3.5, 8.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 8.25 + ], + "to": [ + 3.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_753", - "from": [3.5, 0, 8.25], - "to": [3.75, 0.25, 8.5], - "faces": { - "north": {"uv": [3.75, 8.25, 3.5, 8.5], "texture": "#0"}, - "east": {"uv": [3.5, 8.25, 3.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.25, 3.75, 8.5], "texture": "#0"}, - "west": {"uv": [3.5, 8.25, 3.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 8.25, 3.75, 8.5], "texture": "#0"}, - "down": {"uv": [3.5, 8.5, 3.75, 8.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 8.25 + ], + "to": [ + 3.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 8.25, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8.25, + 3.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.25, + 3.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.25, + 3.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8.25, + 3.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_754", - "from": [3.75, 0, 8.25], - "to": [4, 0.25, 8.5], - "faces": { - "north": {"uv": [4, 8.25, 3.75, 8.5], "texture": "#0"}, - "east": {"uv": [3.75, 8.25, 4, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.25, 4, 8.5], "texture": "#0"}, - "west": {"uv": [3.75, 8.25, 4, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.25, 4, 8.5], "texture": "#0"}, - "down": {"uv": [3.75, 8.5, 4, 8.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 8.25 + ], + "to": [ + 4, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 8.25, + 3.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8.25, + 4, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.25, + 4, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.25, + 4, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.25, + 4, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 8.5, + 4, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_755", - "from": [4, 0, 8.25], - "to": [4.25, 0.25, 8.5], - "faces": { - "north": {"uv": [4.25, 8.25, 4, 8.5], "texture": "#0"}, - "east": {"uv": [4, 8.25, 4.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 8.25, 4.25, 8.5], "texture": "#0"}, - "west": {"uv": [4, 8.25, 4.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 8.25, 4.25, 8.5], "texture": "#0"}, - "down": {"uv": [4, 8.5, 4.25, 8.25], "texture": "#0"} + "from": [ + 4, + 0, + 8.25 + ], + "to": [ + 4.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 8.25, + 4, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.25, + 4.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8.25, + 4.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.25, + 4.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8.25, + 4.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.5, + 4.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_756", - "from": [4.25, 0, 8.25], - "to": [4.5, 0.25, 8.5], - "faces": { - "north": {"uv": [4.5, 8.25, 4.25, 8.5], "texture": "#0"}, - "east": {"uv": [4.25, 8.25, 4.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 8.25, 4.5, 8.5], "texture": "#0"}, - "west": {"uv": [4.25, 8.25, 4.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 8.25, 4.5, 8.5], "texture": "#0"}, - "down": {"uv": [4.25, 8.5, 4.5, 8.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 8.25 + ], + "to": [ + 4.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 8.25, + 4.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 8.5, + 4.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_757", - "from": [4.5, 0, 8.25], - "to": [4.75, 0.25, 8.5], - "faces": { - "north": {"uv": [4.75, 8.25, 4.5, 8.5], "texture": "#0"}, - "east": {"uv": [4.5, 8.25, 4.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8.25, 4.75, 8.5], "texture": "#0"}, - "west": {"uv": [4.5, 8.25, 4.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 8.25, 4.75, 8.5], "texture": "#0"}, - "down": {"uv": [4.5, 8.5, 4.75, 8.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 8.25 + ], + "to": [ + 4.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 8.25, + 4.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.25, + 4.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.25, + 4.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 8.25, + 4.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8.25, + 4.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_758", - "from": [4.75, 0, 8.25], - "to": [5, 0.25, 8.5], - "faces": { - "north": {"uv": [5, 8.25, 4.75, 8.5], "texture": "#0"}, - "east": {"uv": [4.75, 8.25, 5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8.25, 5, 8.5], "texture": "#0"}, - "west": {"uv": [4.75, 8.25, 5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 8.25, 5, 8.5], "texture": "#0"}, - "down": {"uv": [4.75, 8.5, 5, 8.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 8.25 + ], + "to": [ + 5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 8.25, + 4.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.25, + 5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 8.25, + 5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8.5, + 5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_759", - "from": [5, 0, 8.25], - "to": [5.25, 0.25, 8.5], - "faces": { - "north": {"uv": [5.25, 8.25, 5, 8.5], "texture": "#0"}, - "east": {"uv": [5, 8.25, 5.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.25, 5.25, 8.5], "texture": "#0"}, - "west": {"uv": [5, 8.25, 5.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 8.25, 5.25, 8.5], "texture": "#0"}, - "down": {"uv": [5, 8.5, 5.25, 8.25], "texture": "#0"} + "from": [ + 5, + 0, + 8.25 + ], + "to": [ + 5.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 8.25, + 5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8.25, + 5.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.25, + 5.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.25, + 5.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8.25, + 5.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.5, + 5.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_760", - "from": [5.25, 0, 8.25], - "to": [5.5, 0.25, 8.5], - "faces": { - "north": {"uv": [5.5, 8.25, 5.25, 8.5], "texture": "#0"}, - "east": {"uv": [5.25, 8.25, 5.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 8.25, 5.5, 8.5], "texture": "#0"}, - "west": {"uv": [5.25, 8.25, 5.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 8.25, 5.5, 8.5], "texture": "#0"}, - "down": {"uv": [5.25, 8.5, 5.5, 8.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 8.25 + ], + "to": [ + 5.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 8.25, + 5.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 8.25, + 5.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.25, + 5.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 8.25, + 5.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 8.25, + 5.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_761", - "from": [5.5, 0, 8.25], - "to": [5.75, 0.25, 8.5], - "faces": { - "north": {"uv": [5.75, 8.25, 5.5, 8.5], "texture": "#0"}, - "east": {"uv": [5.5, 8.25, 5.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8.25, 5.75, 8.5], "texture": "#0"}, - "west": {"uv": [5.5, 8.25, 5.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 8.25, 5.75, 8.5], "texture": "#0"}, - "down": {"uv": [5.5, 8.5, 5.75, 8.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 8.25 + ], + "to": [ + 5.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 8.25, + 5.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 8.25, + 5.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_762", - "from": [5.75, 0, 8.25], - "to": [6, 0.25, 8.5], - "faces": { - "north": {"uv": [6, 8.25, 5.75, 8.5], "texture": "#0"}, - "east": {"uv": [5.75, 8.25, 6, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 8.25, 6, 8.5], "texture": "#0"}, - "west": {"uv": [5.75, 8.25, 6, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 8.25, 6, 8.5], "texture": "#0"}, - "down": {"uv": [5.75, 8.5, 6, 8.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 8.25 + ], + "to": [ + 6, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 8.25, + 5.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8.25, + 6, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 8.25, + 6, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 8.25, + 6, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 8.25, + 6, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8.5, + 6, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_763", - "from": [6, 0, 8.25], - "to": [6.25, 0.25, 8.5], - "faces": { - "north": {"uv": [6.25, 8.25, 6, 8.5], "texture": "#0"}, - "east": {"uv": [6, 8.25, 6.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8.25, 6.25, 8.5], "texture": "#0"}, - "west": {"uv": [6, 8.25, 6.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 8.25, 6.25, 8.5], "texture": "#0"}, - "down": {"uv": [6, 8.5, 6.25, 8.25], "texture": "#0"} + "from": [ + 6, + 0, + 8.25 + ], + "to": [ + 6.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 8.25, + 6, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8.25, + 6.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8.25, + 6.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8.25, + 6.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8.25, + 6.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8.5, + 6.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_764", - "from": [6.25, 0, 8.25], - "to": [6.5, 0.25, 8.5], - "faces": { - "north": {"uv": [6.5, 8.25, 6.25, 8.5], "texture": "#0"}, - "east": {"uv": [6.25, 8.25, 6.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.25, 6.5, 8.5], "texture": "#0"}, - "west": {"uv": [6.25, 8.25, 6.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 8.25, 6.5, 8.5], "texture": "#0"}, - "down": {"uv": [6.25, 8.5, 6.5, 8.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 8.25 + ], + "to": [ + 6.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 8.25, + 6.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8.25, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_765", - "from": [6.5, 0, 8.25], - "to": [6.75, 0.25, 8.5], - "faces": { - "north": {"uv": [6.75, 8.25, 6.5, 8.5], "texture": "#0"}, - "east": {"uv": [6.5, 8.25, 6.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.25, 6.75, 8.5], "texture": "#0"}, - "west": {"uv": [6.5, 8.25, 6.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 8.25, 6.75, 8.5], "texture": "#0"}, - "down": {"uv": [6.5, 8.5, 6.75, 8.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 8.25 + ], + "to": [ + 6.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 8.25, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 8.25, + 6.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_766", - "from": [6.75, 0, 8.25], - "to": [7, 0.25, 8.5], - "faces": { - "north": {"uv": [7, 8.25, 6.75, 8.5], "texture": "#0"}, - "east": {"uv": [6.75, 8.25, 7, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.25, 7, 8.5], "texture": "#0"}, - "west": {"uv": [6.75, 8.25, 7, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 8.25, 7, 8.5], "texture": "#0"}, - "down": {"uv": [6.75, 8.5, 7, 8.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 8.25 + ], + "to": [ + 7, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 8.25, + 6.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8.25, + 7, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.25, + 7, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 8.25, + 7, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.25, + 7, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8.5, + 7, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_767", - "from": [7, 0, 8.25], - "to": [7.25, 0.25, 8.5], - "faces": { - "north": {"uv": [7.25, 8.25, 7, 8.5], "texture": "#0"}, - "east": {"uv": [7, 8.25, 7.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8.25, 7.25, 8.5], "texture": "#0"}, - "west": {"uv": [7, 8.25, 7.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 8.25, 7.25, 8.5], "texture": "#0"}, - "down": {"uv": [7, 8.5, 7.25, 8.25], "texture": "#0"} + "from": [ + 7, + 0, + 8.25 + ], + "to": [ + 7.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 8.25, + 7, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 8.25, + 7.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.25, + 7.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.25, + 7.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8.25, + 7.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 8.5, + 7.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_768", - "from": [7.25, 0, 8.25], - "to": [7.5, 0.25, 8.5], - "faces": { - "north": {"uv": [7.5, 8.25, 7.25, 8.5], "texture": "#0"}, - "east": {"uv": [7.25, 8.25, 7.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.25, 7.5, 8.5], "texture": "#0"}, - "west": {"uv": [7.25, 8.25, 7.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 8.25, 7.5, 8.5], "texture": "#0"}, - "down": {"uv": [7.25, 8.5, 7.5, 8.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 8.25 + ], + "to": [ + 7.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8.25, + 7.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_769", - "from": [7.5, 0, 8.25], - "to": [7.75, 0.25, 8.5], - "faces": { - "north": {"uv": [7.75, 8.25, 7.5, 8.5], "texture": "#0"}, - "east": {"uv": [7.5, 8.25, 7.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.25, 7.75, 8.5], "texture": "#0"}, - "west": {"uv": [7.5, 8.25, 7.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 8.25, 7.75, 8.5], "texture": "#0"}, - "down": {"uv": [7.5, 8.5, 7.75, 8.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 8.25 + ], + "to": [ + 7.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 8.25, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_770", - "from": [7.75, 0, 8.25], - "to": [8, 0.25, 8.5], - "faces": { - "north": {"uv": [8, 8.25, 7.75, 8.5], "texture": "#0"}, - "east": {"uv": [7.75, 8.25, 8, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.25, 8, 8.5], "texture": "#0"}, - "west": {"uv": [7.75, 8.25, 8, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 8.25, 8, 8.5], "texture": "#0"}, - "down": {"uv": [7.75, 8.5, 8, 8.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 8.25 + ], + "to": [ + 8, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 8.25, + 7.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8.25, + 8, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.25, + 8, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 8.25, + 8, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 8.25, + 8, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8.5, + 8, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_771", - "from": [8, 0, 8.25], - "to": [8.25, 0.25, 8.5], - "faces": { - "north": {"uv": [8.25, 8.25, 8, 8.5], "texture": "#0"}, - "east": {"uv": [8, 8.25, 8.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8.25, 8.25, 8.5], "texture": "#0"}, - "west": {"uv": [8, 8.25, 8.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 8.25, 8.25, 8.5], "texture": "#0"}, - "down": {"uv": [8, 8.5, 8.25, 8.25], "texture": "#0"} + "from": [ + 8, + 0, + 8.25 + ], + "to": [ + 8.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 8.25, + 8, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8.25, + 8.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.25, + 8.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8.25, + 8.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8.25, + 8.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8.5, + 8.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_772", - "from": [8.25, 0, 8.25], - "to": [8.5, 0.25, 8.5], - "faces": { - "north": {"uv": [8.5, 8.25, 8.25, 8.5], "texture": "#0"}, - "east": {"uv": [8.25, 8.25, 8.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.25, 8.5, 8.5], "texture": "#0"}, - "west": {"uv": [8.25, 8.25, 8.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 8.25, 8.5, 8.5], "texture": "#0"}, - "down": {"uv": [8.25, 8.5, 8.5, 8.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 8.25 + ], + "to": [ + 8.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8.25, + 8.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_773", - "from": [8.5, 0, 8.25], - "to": [8.75, 0.25, 8.5], - "faces": { - "north": {"uv": [8.75, 8.25, 8.5, 8.5], "texture": "#0"}, - "east": {"uv": [8.5, 8.25, 8.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 8.25, 8.75, 8.5], "texture": "#0"}, - "west": {"uv": [8.5, 8.25, 8.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 8.25, 8.75, 8.5], "texture": "#0"}, - "down": {"uv": [8.5, 8.5, 8.75, 8.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 8.25 + ], + "to": [ + 8.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 8.25, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.25, + 8.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.25, + 8.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.25, + 8.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 8.25, + 8.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_774", - "from": [8.75, 0, 8.25], - "to": [9, 0.25, 8.5], - "faces": { - "north": {"uv": [9, 8.25, 8.75, 8.5], "texture": "#0"}, - "east": {"uv": [8.75, 8.25, 9, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 8.25, 9, 8.5], "texture": "#0"}, - "west": {"uv": [8.75, 8.25, 9, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 8.25, 9, 8.5], "texture": "#0"}, - "down": {"uv": [8.75, 8.5, 9, 8.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 8.25 + ], + "to": [ + 9, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 8.25, + 8.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8.25, + 9, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8.25, + 9, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8.25, + 9, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 8.25, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 8.5, + 9, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_775", - "from": [9, 0, 8.25], - "to": [9.25, 0.25, 8.5], - "faces": { - "north": {"uv": [9.25, 8.25, 9, 8.5], "texture": "#0"}, - "east": {"uv": [9, 8.25, 9.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8.25, 9.25, 8.5], "texture": "#0"}, - "west": {"uv": [9, 8.25, 9.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 8.25, 9.25, 8.5], "texture": "#0"}, - "down": {"uv": [9, 8.5, 9.25, 8.25], "texture": "#0"} + "from": [ + 9, + 0, + 8.25 + ], + "to": [ + 9.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 8.25, + 9, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.25, + 9.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.25, + 9.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8.25, + 9.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.25, + 9.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 8.5, + 9.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_776", - "from": [9.25, 0, 8.25], - "to": [9.5, 0.25, 8.5], - "faces": { - "north": {"uv": [9.5, 8.25, 9.25, 8.5], "texture": "#0"}, - "east": {"uv": [9.25, 8.25, 9.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, - "west": {"uv": [9.25, 8.25, 9.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8.25, 9.5, 8.5], "texture": "#0"}, - "down": {"uv": [9.25, 8.5, 9.5, 8.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 8.25 + ], + "to": [ + 9.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 8.25, + 9.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.25, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_777", - "from": [9.5, 0, 8.25], - "to": [9.75, 0.25, 8.5], - "faces": { - "north": {"uv": [9.75, 8.25, 9.5, 8.5], "texture": "#0"}, - "east": {"uv": [9.5, 8.25, 9.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8.25, 9.75, 8.5], "texture": "#0"}, - "west": {"uv": [9.5, 8.25, 9.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 8.25, 9.75, 8.5], "texture": "#0"}, - "down": {"uv": [9.5, 8.5, 9.75, 8.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 8.25 + ], + "to": [ + 9.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 8.25, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.25, + 9.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_778", - "from": [9.75, 0, 8.25], - "to": [10, 0.25, 8.5], - "faces": { - "north": {"uv": [10, 8.25, 9.75, 8.5], "texture": "#0"}, - "east": {"uv": [9.75, 8.25, 10, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 8.25, 10, 8.5], "texture": "#0"}, - "west": {"uv": [9.75, 8.25, 10, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 8.25, 10, 8.5], "texture": "#0"}, - "down": {"uv": [9.75, 8.5, 10, 8.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 8.25 + ], + "to": [ + 10, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 8.25, + 9.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 8.25, + 10, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 8.25, + 10, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 8.25, + 10, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 8.25, + 10, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.5, + 10, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_779", - "from": [10, 0, 8.25], - "to": [10.25, 0.25, 8.5], - "faces": { - "north": {"uv": [10.25, 8.25, 10, 8.5], "texture": "#0"}, - "east": {"uv": [10, 8.25, 10.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.25, 10.25, 8.5], "texture": "#0"}, - "west": {"uv": [10, 8.25, 10.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.25, 10.25, 8.5], "texture": "#0"}, - "down": {"uv": [10, 8.5, 10.25, 8.25], "texture": "#0"} + "from": [ + 10, + 0, + 8.25 + ], + "to": [ + 10.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 8.25, + 10, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 8.25, + 10.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.25, + 10.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.25, + 10.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.25, + 10.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8.5, + 10.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_780", - "from": [10.25, 0, 8.25], - "to": [10.5, 0.25, 8.5], - "faces": { - "north": {"uv": [10.5, 8.25, 10.25, 8.5], "texture": "#0"}, - "east": {"uv": [10.25, 8.25, 10.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8.25, 10.5, 8.5], "texture": "#0"}, - "west": {"uv": [10.25, 8.25, 10.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 8.25, 10.5, 8.5], "texture": "#0"}, - "down": {"uv": [10.25, 8.5, 10.5, 8.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 8.25 + ], + "to": [ + 10.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 8.25, + 10.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8.25, + 10.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8.25, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 8.25, + 10.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 8.25, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_781", - "from": [10.5, 0, 8.25], - "to": [10.75, 0.25, 8.5], - "faces": { - "north": {"uv": [10.75, 8.25, 10.5, 8.5], "texture": "#0"}, - "east": {"uv": [10.5, 8.25, 10.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.25, 10.75, 8.5], "texture": "#0"}, - "west": {"uv": [10.5, 8.25, 10.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.25, 10.75, 8.5], "texture": "#0"}, - "down": {"uv": [10.5, 8.5, 10.75, 8.25], "texture": "#0"} + "from": [ + 10.5, + 0, + 8.25 + ], + "to": [ + 10.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 8.25, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.25, + 10.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_782", - "from": [10.75, 0, 8.25], - "to": [11, 0.25, 8.5], - "faces": { - "north": {"uv": [11, 8.25, 10.75, 8.5], "texture": "#0"}, - "east": {"uv": [10.75, 8.25, 11, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.25, 11, 8.5], "texture": "#0"}, - "west": {"uv": [10.75, 8.25, 11, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.25, 11, 8.5], "texture": "#0"}, - "down": {"uv": [10.75, 8.5, 11, 8.25], "texture": "#0"} + "from": [ + 10.75, + 0, + 8.25 + ], + "to": [ + 11, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 11, + 8.25, + 10.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.25, + 11, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.25, + 11, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.25, + 11, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.25, + 11, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.5, + 11, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_783", - "from": [11, 0, 8.25], - "to": [11.25, 0.25, 8.5], - "faces": { - "north": {"uv": [11.25, 8.25, 11, 8.5], "texture": "#0"}, - "east": {"uv": [11, 8.25, 11.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.25, 11.25, 8.5], "texture": "#0"}, - "west": {"uv": [11, 8.25, 11.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8.25, 11.25, 8.5], "texture": "#0"}, - "down": {"uv": [11, 8.5, 11.25, 8.25], "texture": "#0"} + "from": [ + 11, + 0, + 8.25 + ], + "to": [ + 11.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 8.25, + 11, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.5, + 11.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_784", - "from": [11.25, 0, 8.25], - "to": [11.5, 0.25, 8.5], - "faces": { - "north": {"uv": [11.5, 8.25, 11.25, 8.5], "texture": "#0"}, - "east": {"uv": [11.25, 8.25, 11.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.25, 11.5, 8.5], "texture": "#0"}, - "west": {"uv": [11.25, 8.25, 11.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.25, 11.5, 8.5], "texture": "#0"}, - "down": {"uv": [11.25, 8.5, 11.5, 8.25], "texture": "#0"} + "from": [ + 11.25, + 0, + 8.25 + ], + "to": [ + 11.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.25, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_785", - "from": [11.5, 0, 8.25], - "to": [11.75, 0.25, 8.5], - "faces": { - "north": {"uv": [11.75, 8.25, 11.5, 8.5], "texture": "#0"}, - "east": {"uv": [11.5, 8.25, 11.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.25, 11.75, 8.5], "texture": "#0"}, - "west": {"uv": [11.5, 8.25, 11.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8.25, 11.75, 8.5], "texture": "#0"}, - "down": {"uv": [11.5, 8.5, 11.75, 8.25], "texture": "#0"} + "from": [ + 11.5, + 0, + 8.25 + ], + "to": [ + 11.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 8.25, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8.5, + 11.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_786", - "from": [11.75, 0, 8.25], - "to": [12, 0.25, 8.5], - "faces": { - "north": {"uv": [12, 8.25, 11.75, 8.5], "texture": "#0"}, - "east": {"uv": [11.75, 8.25, 12, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.25, 12, 8.5], "texture": "#0"}, - "west": {"uv": [11.75, 8.25, 12, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.25, 12, 8.5], "texture": "#0"}, - "down": {"uv": [11.75, 8.5, 12, 8.25], "texture": "#0"} + "from": [ + 11.75, + 0, + 8.25 + ], + "to": [ + 12, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 12, + 8.25, + 11.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.25, + 12, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.25, + 12, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.5, + 12, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_787", - "from": [12, 0, 8.25], - "to": [12.25, 0.25, 8.5], - "faces": { - "north": {"uv": [12.25, 8.25, 12, 8.5], "texture": "#0"}, - "east": {"uv": [12, 8.25, 12.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, - "west": {"uv": [12, 8.25, 12.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.25, 12.25, 8.5], "texture": "#0"}, - "down": {"uv": [12, 8.5, 12.25, 8.25], "texture": "#0"} + "from": [ + 12, + 0, + 8.25 + ], + "to": [ + 12.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.5, + 12.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_788", - "from": [12.25, 0, 8.25], - "to": [12.5, 0.25, 8.5], - "faces": { - "north": {"uv": [12.5, 8.25, 12.25, 8.5], "texture": "#0"}, - "east": {"uv": [12.25, 8.25, 12.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#0"}, - "west": {"uv": [12.25, 8.25, 12.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#0"}, - "down": {"uv": [12.25, 8.5, 12.5, 8.25], "texture": "#0"} + "from": [ + 12.25, + 0, + 8.25 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 8.25, + 12.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_789", - "from": [12.5, 0, 8.25], - "to": [12.75, 0.25, 8.5], - "faces": { - "north": {"uv": [12.75, 8.25, 12.5, 8.5], "texture": "#0"}, - "east": {"uv": [12.5, 8.25, 12.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.25, 12.75, 8.5], "texture": "#0"}, - "west": {"uv": [12.5, 8.25, 12.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.25, 12.75, 8.5], "texture": "#0"}, - "down": {"uv": [12.5, 8.5, 12.75, 8.25], "texture": "#0"} + "from": [ + 12.5, + 0, + 8.25 + ], + "to": [ + 12.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 12.75, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.5, + 12.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_790", - "from": [12.75, 0, 8.25], - "to": [13, 0.25, 8.5], - "faces": { - "north": {"uv": [13, 8.25, 12.75, 8.5], "texture": "#0"}, - "east": {"uv": [12.75, 8.25, 13, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8.25, 13, 8.5], "texture": "#0"}, - "west": {"uv": [12.75, 8.25, 13, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.25, 13, 8.5], "texture": "#0"}, - "down": {"uv": [12.75, 8.5, 13, 8.25], "texture": "#0"} + "from": [ + 12.75, + 0, + 8.25 + ], + "to": [ + 13, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 13, + 8.25, + 12.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 8.25, + 13, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.25, + 13, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.5, + 13, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_791", - "from": [13, 0, 8.25], - "to": [13.25, 0.25, 8.5], - "faces": { - "north": {"uv": [13.25, 8.25, 13, 8.5], "texture": "#0"}, - "east": {"uv": [13, 8.25, 13.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.25, 13.25, 8.5], "texture": "#0"}, - "west": {"uv": [13, 8.25, 13.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8.25, 13.25, 8.5], "texture": "#0"}, - "down": {"uv": [13, 8.5, 13.25, 8.25], "texture": "#0"} + "from": [ + 13, + 0, + 8.25 + ], + "to": [ + 13.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.5, + 13.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_792", - "from": [13.25, 0, 8.25], - "to": [13.5, 0.25, 8.5], - "faces": { - "north": {"uv": [13.5, 8.25, 13.25, 8.5], "texture": "#0"}, - "east": {"uv": [13.25, 8.25, 13.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.25, 13.5, 8.5], "texture": "#0"}, - "west": {"uv": [13.25, 8.25, 13.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8.25, 13.5, 8.5], "texture": "#0"}, - "down": {"uv": [13.25, 8.5, 13.5, 8.25], "texture": "#0"} + "from": [ + 13.25, + 0, + 8.25 + ], + "to": [ + 13.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_793", - "from": [13.5, 0, 8.25], - "to": [13.75, 0.25, 8.5], - "faces": { - "north": {"uv": [13.75, 8.25, 13.5, 8.5], "texture": "#0"}, - "east": {"uv": [13.5, 8.25, 13.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.25, 13.75, 8.5], "texture": "#0"}, - "west": {"uv": [13.5, 8.25, 13.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8.25, 13.75, 8.5], "texture": "#0"}, - "down": {"uv": [13.5, 8.5, 13.75, 8.25], "texture": "#0"} + "from": [ + 13.5, + 0, + 8.25 + ], + "to": [ + 13.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 8.25, + 13.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_794", - "from": [13.75, 0, 8.25], - "to": [14, 0.25, 8.5], - "faces": { - "north": {"uv": [14, 8.25, 13.75, 8.5], "texture": "#0"}, - "east": {"uv": [13.75, 8.25, 14, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.25, 14, 8.5], "texture": "#0"}, - "west": {"uv": [13.75, 8.25, 14, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8.25, 14, 8.5], "texture": "#0"}, - "down": {"uv": [13.75, 8.5, 14, 8.25], "texture": "#0"} + "from": [ + 13.75, + 0, + 8.25 + ], + "to": [ + 14, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 14, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.5, + 14, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_795", - "from": [14, 0, 8.25], - "to": [14.25, 0.25, 8.5], - "faces": { - "north": {"uv": [14.25, 8.25, 14, 8.5], "texture": "#0"}, - "east": {"uv": [14, 8.25, 14.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.25, 14.25, 8.5], "texture": "#0"}, - "west": {"uv": [14, 8.25, 14.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.25, 14.25, 8.5], "texture": "#0"}, - "down": {"uv": [14, 8.5, 14.25, 8.25], "texture": "#0"} + "from": [ + 14, + 0, + 8.25 + ], + "to": [ + 14.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 8.5, + 14.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_796", - "from": [14.25, 0, 8.25], - "to": [14.5, 0.25, 8.5], - "faces": { - "north": {"uv": [14.5, 8.25, 14.25, 8.5], "texture": "#0"}, - "east": {"uv": [14.25, 8.25, 14.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.25, 14.5, 8.5], "texture": "#0"}, - "west": {"uv": [14.25, 8.25, 14.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.25, 14.5, 8.5], "texture": "#0"}, - "down": {"uv": [14.25, 8.5, 14.5, 8.25], "texture": "#0"} + "from": [ + 14.25, + 0, + 8.25 + ], + "to": [ + 14.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 8.25, + 14.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_797", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 8.5], - "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#0"}, - "east": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#0"}, - "west": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#0"}, - "down": {"uv": [14.5, 8.5, 14.75, 8.25], "texture": "#0"} + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_798", - "from": [14.75, 0, 8.25], - "to": [15, 0.25, 8.5], - "faces": { - "north": {"uv": [15, 8.25, 14.75, 8.5], "texture": "#0"}, - "east": {"uv": [14.75, 8.25, 15, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#0"}, - "west": {"uv": [14.75, 8.25, 15, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#0"}, - "down": {"uv": [14.75, 8.5, 15, 8.25], "texture": "#0"} + "from": [ + 14.75, + 0, + 8.25 + ], + "to": [ + 15, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 15, + 8.25, + 14.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_799", - "from": [15, 0, 8.25], - "to": [15.25, 0.25, 8.5], - "faces": { - "north": {"uv": [15.25, 8.25, 15, 8.5], "texture": "#0"}, - "east": {"uv": [15, 8.25, 15.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8.25, 15.25, 8.5], "texture": "#0"}, - "west": {"uv": [15, 8.25, 15.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.25, 15.25, 8.5], "texture": "#0"}, - "down": {"uv": [15, 8.5, 15.25, 8.25], "texture": "#0"} + "from": [ + 15, + 0, + 8.25 + ], + "to": [ + 15.25, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8.5, + 15.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_800", - "from": [15.25, 0, 8.25], - "to": [15.5, 0.25, 8.5], - "faces": { - "north": {"uv": [15.5, 8.25, 15.25, 8.5], "texture": "#0"}, - "east": {"uv": [15.25, 8.25, 15.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "west": {"uv": [15.25, 8.25, 15.5, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.25, 15.5, 8.5], "texture": "#0"}, - "down": {"uv": [15.25, 8.5, 15.5, 8.25], "texture": "#0"} + "from": [ + 15.25, + 0, + 8.25 + ], + "to": [ + 15.5, + 0.25, + 8.5 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.25, + 15.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_801", - "from": [0.5, 0, 8.5], - "to": [0.75, 0.25, 8.75], - "faces": { - "north": {"uv": [0.75, 8.5, 0.5, 8.75], "texture": "#0"}, - "east": {"uv": [0.5, 8.5, 0.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8.5, 0.75, 8.75], "texture": "#0"}, - "west": {"uv": [0.5, 8.5, 0.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8.5, 0.75, 8.75], "texture": "#0"}, - "down": {"uv": [0.5, 8.75, 0.75, 8.5], "texture": "#0"} + "from": [ + 0.5, + 0, + 8.5 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 0.75, + 8.5, + 0.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.75, + 0.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_802", - "from": [0.75, 0, 8.5], - "to": [1, 0.25, 8.75], - "faces": { - "north": {"uv": [1, 8.5, 0.75, 8.75], "texture": "#0"}, - "east": {"uv": [0.75, 8.5, 1, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.5, 1, 8.75], "texture": "#0"}, - "west": {"uv": [0.75, 8.5, 1, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.5, 1, 8.75], "texture": "#0"}, - "down": {"uv": [0.75, 8.75, 1, 8.5], "texture": "#0"} + "from": [ + 0.75, + 0, + 8.5 + ], + "to": [ + 1, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 1, + 8.5, + 0.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_803", - "from": [1, 0, 8.5], - "to": [1.25, 0.25, 8.75], - "faces": { - "north": {"uv": [1.25, 8.5, 1, 8.75], "texture": "#0"}, - "east": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#0"}, - "west": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#0"}, - "down": {"uv": [1, 8.75, 1.25, 8.5], "texture": "#0"} + "from": [ + 1, + 0, + 8.5 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_804", - "from": [1.25, 0, 8.5], - "to": [1.5, 0.25, 8.75], - "faces": { - "north": {"uv": [1.5, 8.5, 1.25, 8.75], "texture": "#0"}, - "east": {"uv": [1.25, 8.5, 1.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 8.5, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.5, 8.5], "texture": "#0"} + "from": [ + 1.25, + 0, + 8.5 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 8.5, + 1.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_805", - "from": [1.5, 0, 8.5], - "to": [1.75, 0.25, 8.75], - "faces": { - "north": {"uv": [1.75, 8.5, 1.5, 8.75], "texture": "#0"}, - "east": {"uv": [1.5, 8.5, 1.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.5, 1.75, 8.75], "texture": "#0"}, - "west": {"uv": [1.5, 8.5, 1.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.5, 1.75, 8.75], "texture": "#0"}, - "down": {"uv": [1.5, 8.75, 1.75, 8.5], "texture": "#0"} + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 1.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 1.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_806", - "from": [1.75, 0, 8.5], - "to": [2, 0.25, 8.75], - "faces": { - "north": {"uv": [2, 8.5, 1.75, 8.75], "texture": "#0"}, - "east": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.5, 2, 8.75], "texture": "#0"}, - "west": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.5, 2, 8.75], "texture": "#0"}, - "down": {"uv": [1.75, 8.75, 2, 8.5], "texture": "#0"} + "from": [ + 1.75, + 0, + 8.5 + ], + "to": [ + 2, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 2, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8.75, + 2, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_807", - "from": [2, 0, 8.5], - "to": [2.25, 0.25, 8.75], - "faces": { - "north": {"uv": [2.25, 8.5, 2, 8.75], "texture": "#0"}, - "east": {"uv": [2, 8.5, 2.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.5, 2.25, 8.75], "texture": "#0"}, - "west": {"uv": [2, 8.5, 2.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8.5, 2.25, 8.75], "texture": "#0"}, - "down": {"uv": [2, 8.75, 2.25, 8.5], "texture": "#0"} + "from": [ + 2, + 0, + 8.5 + ], + "to": [ + 2.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.5, + 2.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.5, + 2.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8.5, + 2.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.75, + 2.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_808", - "from": [2.25, 0, 8.5], - "to": [2.5, 0.25, 8.75], - "faces": { - "north": {"uv": [2.5, 8.5, 2.25, 8.75], "texture": "#0"}, - "east": {"uv": [2.25, 8.5, 2.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8.5, 2.5, 8.75], "texture": "#0"}, - "west": {"uv": [2.25, 8.5, 2.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8.5, 2.5, 8.75], "texture": "#0"}, - "down": {"uv": [2.25, 8.75, 2.5, 8.5], "texture": "#0"} + "from": [ + 2.25, + 0, + 8.5 + ], + "to": [ + 2.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 8.5, + 2.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.5, + 2.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.5, + 2.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8.75, + 2.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_809", - "from": [2.5, 0, 8.5], - "to": [2.75, 0.25, 8.75], - "faces": { - "north": {"uv": [2.75, 8.5, 2.5, 8.75], "texture": "#0"}, - "east": {"uv": [2.5, 8.5, 2.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.5, 2.75, 8.75], "texture": "#0"}, - "west": {"uv": [2.5, 8.5, 2.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.5, 2.75, 8.75], "texture": "#0"}, - "down": {"uv": [2.5, 8.75, 2.75, 8.5], "texture": "#0"} + "from": [ + 2.5, + 0, + 8.5 + ], + "to": [ + 2.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8.5, + 2.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.5, + 2.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 2.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.5, + 2.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8.75, + 2.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_810", - "from": [2.75, 0, 8.5], - "to": [3, 0.25, 8.75], - "faces": { - "north": {"uv": [3, 8.5, 2.75, 8.75], "texture": "#0"}, - "east": {"uv": [2.75, 8.5, 3, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.5, 3, 8.75], "texture": "#0"}, - "west": {"uv": [2.75, 8.5, 3, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 8.5, 3, 8.75], "texture": "#0"}, - "down": {"uv": [2.75, 8.75, 3, 8.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 8.5 + ], + "to": [ + 3, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 8.5, + 2.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.5, + 3, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 8.5, + 3, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.75, + 3, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_811", - "from": [3, 0, 8.5], - "to": [3.25, 0.25, 8.75], - "faces": { - "north": {"uv": [3.25, 8.5, 3, 8.75], "texture": "#0"}, - "east": {"uv": [3, 8.5, 3.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.5, 3.25, 8.75], "texture": "#0"}, - "west": {"uv": [3, 8.5, 3.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8.5, 3.25, 8.75], "texture": "#0"}, - "down": {"uv": [3, 8.75, 3.25, 8.5], "texture": "#0"} + "from": [ + 3, + 0, + 8.5 + ], + "to": [ + 3.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.5, + 3.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.5, + 3.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.75, + 3.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_812", - "from": [3.25, 0, 8.5], - "to": [3.5, 0.25, 8.75], - "faces": { - "north": {"uv": [3.5, 8.5, 3.25, 8.75], "texture": "#0"}, - "east": {"uv": [3.25, 8.5, 3.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.5, 3.5, 8.75], "texture": "#0"}, - "west": {"uv": [3.25, 8.5, 3.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.5, 3.5, 8.75], "texture": "#0"}, - "down": {"uv": [3.25, 8.75, 3.5, 8.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 8.5 + ], + "to": [ + 3.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 8.5, + 3.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.5, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 8.75, + 3.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_813", - "from": [3.5, 0, 8.5], - "to": [3.75, 0.25, 8.75], - "faces": { - "north": {"uv": [3.75, 8.5, 3.5, 8.75], "texture": "#0"}, - "east": {"uv": [3.5, 8.5, 3.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.5, 3.75, 8.75], "texture": "#0"}, - "west": {"uv": [3.5, 8.5, 3.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 8.5, 3.75, 8.75], "texture": "#0"}, - "down": {"uv": [3.5, 8.75, 3.75, 8.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 8.5 + ], + "to": [ + 3.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 8.5, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8.5, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 8.75, + 3.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_814", - "from": [3.75, 0, 8.5], - "to": [4, 0.25, 8.75], - "faces": { - "north": {"uv": [4, 8.5, 3.75, 8.75], "texture": "#0"}, - "east": {"uv": [3.75, 8.5, 4, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.5, 4, 8.75], "texture": "#0"}, - "west": {"uv": [3.75, 8.5, 4, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.5, 4, 8.75], "texture": "#0"}, - "down": {"uv": [3.75, 8.75, 4, 8.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 8.5 + ], + "to": [ + 4, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 8.5, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8.5, + 4, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.5, + 4, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 8.75, + 4, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_815", - "from": [4, 0, 8.5], - "to": [4.25, 0.25, 8.75], - "faces": { - "north": {"uv": [4.25, 8.5, 4, 8.75], "texture": "#0"}, - "east": {"uv": [4, 8.5, 4.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 8.5, 4.25, 8.75], "texture": "#0"}, - "west": {"uv": [4, 8.5, 4.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 8.5, 4.25, 8.75], "texture": "#0"}, - "down": {"uv": [4, 8.75, 4.25, 8.5], "texture": "#0"} + "from": [ + 4, + 0, + 8.5 + ], + "to": [ + 4.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8.5, + 4.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.5, + 4.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8.5, + 4.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.75, + 4.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_816", - "from": [4.25, 0, 8.5], - "to": [4.5, 0.25, 8.75], - "faces": { - "north": {"uv": [4.5, 8.5, 4.25, 8.75], "texture": "#0"}, - "east": {"uv": [4.25, 8.5, 4.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 8.5, 4.5, 8.75], "texture": "#0"}, - "west": {"uv": [4.25, 8.5, 4.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 8.5, 4.5, 8.75], "texture": "#0"}, - "down": {"uv": [4.25, 8.75, 4.5, 8.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 8.5 + ], + "to": [ + 4.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 8.5, + 4.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 8.5, + 4.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8.5, + 4.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8.5, + 4.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 8.5, + 4.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 8.75, + 4.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_817", - "from": [4.5, 0, 8.5], - "to": [4.75, 0.25, 8.75], - "faces": { - "north": {"uv": [4.75, 8.5, 4.5, 8.75], "texture": "#0"}, - "east": {"uv": [4.5, 8.5, 4.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8.5, 4.75, 8.75], "texture": "#0"}, - "west": {"uv": [4.5, 8.5, 4.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 8.5, 4.75, 8.75], "texture": "#0"}, - "down": {"uv": [4.5, 8.75, 4.75, 8.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 8.5 + ], + "to": [ + 4.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 8.5, + 4.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8.75, + 4.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_818", - "from": [4.75, 0, 8.5], - "to": [5, 0.25, 8.75], - "faces": { - "north": {"uv": [5, 8.5, 4.75, 8.75], "texture": "#0"}, - "east": {"uv": [4.75, 8.5, 5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8.5, 5, 8.75], "texture": "#0"}, - "west": {"uv": [4.75, 8.5, 5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 8.5, 5, 8.75], "texture": "#0"}, - "down": {"uv": [4.75, 8.75, 5, 8.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 8.5 + ], + "to": [ + 5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 8.5, + 4.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 8.75, + 5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_819", - "from": [5, 0, 8.5], - "to": [5.25, 0.25, 8.75], - "faces": { - "north": {"uv": [5.25, 8.5, 5, 8.75], "texture": "#0"}, - "east": {"uv": [5, 8.5, 5.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.5, 5.25, 8.75], "texture": "#0"}, - "west": {"uv": [5, 8.5, 5.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 8.5, 5.25, 8.75], "texture": "#0"}, - "down": {"uv": [5, 8.75, 5.25, 8.5], "texture": "#0"} + "from": [ + 5, + 0, + 8.5 + ], + "to": [ + 5.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 8.5, + 5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8.5, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.75, + 5.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_820", - "from": [5.25, 0, 8.5], - "to": [5.5, 0.25, 8.75], - "faces": { - "north": {"uv": [5.5, 8.5, 5.25, 8.75], "texture": "#0"}, - "east": {"uv": [5.25, 8.5, 5.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 8.5, 5.5, 8.75], "texture": "#0"}, - "west": {"uv": [5.25, 8.5, 5.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 8.5, 5.5, 8.75], "texture": "#0"}, - "down": {"uv": [5.25, 8.75, 5.5, 8.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 8.5 + ], + "to": [ + 5.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 8.5, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.75, + 5.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_821", - "from": [5.5, 0, 8.5], - "to": [5.75, 0.25, 8.75], - "faces": { - "north": {"uv": [5.75, 8.5, 5.5, 8.75], "texture": "#0"}, - "east": {"uv": [5.5, 8.5, 5.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8.5, 5.75, 8.75], "texture": "#0"}, - "west": {"uv": [5.5, 8.5, 5.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 8.5, 5.75, 8.75], "texture": "#0"}, - "down": {"uv": [5.5, 8.75, 5.75, 8.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 8.5 + ], + "to": [ + 5.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 8.5, + 5.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8.75, + 5.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_822", - "from": [5.75, 0, 8.5], - "to": [6, 0.25, 8.75], - "faces": { - "north": {"uv": [6, 8.5, 5.75, 8.75], "texture": "#0"}, - "east": {"uv": [5.75, 8.5, 6, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 8.5, 6, 8.75], "texture": "#0"}, - "west": {"uv": [5.75, 8.5, 6, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 8.5, 6, 8.75], "texture": "#0"}, - "down": {"uv": [5.75, 8.75, 6, 8.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 8.5 + ], + "to": [ + 6, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 8.5, + 5.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 8.5, + 6, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 8.75, + 6, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_823", - "from": [6, 0, 8.5], - "to": [6.25, 0.25, 8.75], - "faces": { - "north": {"uv": [6.25, 8.5, 6, 8.75], "texture": "#0"}, - "east": {"uv": [6, 8.5, 6.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8.5, 6.25, 8.75], "texture": "#0"}, - "west": {"uv": [6, 8.5, 6.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 8.5, 6.25, 8.75], "texture": "#0"}, - "down": {"uv": [6, 8.75, 6.25, 8.5], "texture": "#0"} + "from": [ + 6, + 0, + 8.5 + ], + "to": [ + 6.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 8.5, + 6, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8.5, + 6.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8.5, + 6.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8.5, + 6.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8.5, + 6.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 8.75, + 6.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_824", - "from": [6.25, 0, 8.5], - "to": [6.5, 0.25, 8.75], - "faces": { - "north": {"uv": [6.5, 8.5, 6.25, 8.75], "texture": "#0"}, - "east": {"uv": [6.25, 8.5, 6.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.5, 6.5, 8.75], "texture": "#0"}, - "west": {"uv": [6.25, 8.5, 6.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 8.5, 6.5, 8.75], "texture": "#0"}, - "down": {"uv": [6.25, 8.75, 6.5, 8.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 8.5 + ], + "to": [ + 6.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 6.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8.5, + 6.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.75, + 6.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_825", - "from": [6.5, 0, 8.5], - "to": [6.75, 0.25, 8.75], - "faces": { - "north": {"uv": [6.75, 8.5, 6.5, 8.75], "texture": "#0"}, - "east": {"uv": [6.5, 8.5, 6.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.5, 6.75, 8.75], "texture": "#0"}, - "west": {"uv": [6.5, 8.5, 6.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 8.5, 6.75, 8.75], "texture": "#0"}, - "down": {"uv": [6.5, 8.75, 6.75, 8.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 8.5 + ], + "to": [ + 6.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 8.5, + 6.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 8.5, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 8.75, + 6.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_826", - "from": [6.75, 0, 8.5], - "to": [7, 0.25, 8.75], - "faces": { - "north": {"uv": [7, 8.5, 6.75, 8.75], "texture": "#0"}, - "east": {"uv": [6.75, 8.5, 7, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.5, 7, 8.75], "texture": "#0"}, - "west": {"uv": [6.75, 8.5, 7, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 8.5, 7, 8.75], "texture": "#0"}, - "down": {"uv": [6.75, 8.75, 7, 8.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 8.5 + ], + "to": [ + 7, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 8.5, + 6.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 8.75, + 7, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_827", - "from": [7, 0, 8.5], - "to": [7.25, 0.25, 8.75], - "faces": { - "north": {"uv": [7.25, 8.5, 7, 8.75], "texture": "#0"}, - "east": {"uv": [7, 8.5, 7.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8.5, 7.25, 8.75], "texture": "#0"}, - "west": {"uv": [7, 8.5, 7.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 8.5, 7.25, 8.75], "texture": "#0"}, - "down": {"uv": [7, 8.75, 7.25, 8.5], "texture": "#0"} + "from": [ + 7, + 0, + 8.5 + ], + "to": [ + 7.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 8.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8.5, + 7.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 8.75, + 7.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_828", - "from": [7.25, 0, 8.5], - "to": [7.5, 0.25, 8.75], - "faces": { - "north": {"uv": [7.5, 8.5, 7.25, 8.75], "texture": "#0"}, - "east": {"uv": [7.25, 8.5, 7.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.5, 7.5, 8.75], "texture": "#0"}, - "west": {"uv": [7.25, 8.5, 7.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 8.5, 7.5, 8.75], "texture": "#0"}, - "down": {"uv": [7.25, 8.75, 7.5, 8.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 8.5 + ], + "to": [ + 7.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8.5, + 7.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 8.5, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.75, + 7.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_829", - "from": [7.5, 0, 8.5], - "to": [7.75, 0.25, 8.75], - "faces": { - "north": {"uv": [7.75, 8.5, 7.5, 8.75], "texture": "#0"}, - "east": {"uv": [7.5, 8.5, 7.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.5, 7.75, 8.75], "texture": "#0"}, - "west": {"uv": [7.5, 8.5, 7.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 8.5, 7.75, 8.75], "texture": "#0"}, - "down": {"uv": [7.5, 8.75, 7.75, 8.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 8.5 + ], + "to": [ + 7.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 8.5, + 7.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8.5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8.75, + 7.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_830", - "from": [7.75, 0, 8.5], - "to": [8, 0.25, 8.75], - "faces": { - "north": {"uv": [8, 8.5, 7.75, 8.75], "texture": "#0"}, - "east": {"uv": [7.75, 8.5, 8, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.5, 8, 8.75], "texture": "#0"}, - "west": {"uv": [7.75, 8.5, 8, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 8.5, 8, 8.75], "texture": "#0"}, - "down": {"uv": [7.75, 8.75, 8, 8.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 8.5 + ], + "to": [ + 8, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 7.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8.5, + 8, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 8.5, + 8, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 8.75, + 8, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_831", - "from": [8, 0, 8.5], - "to": [8.25, 0.25, 8.75], - "faces": { - "north": {"uv": [8.25, 8.5, 8, 8.75], "texture": "#0"}, - "east": {"uv": [8, 8.5, 8.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8.5, 8.25, 8.75], "texture": "#0"}, - "west": {"uv": [8, 8.5, 8.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 8.5, 8.25, 8.75], "texture": "#0"}, - "down": {"uv": [8, 8.75, 8.25, 8.5], "texture": "#0"} + "from": [ + 8, + 0, + 8.5 + ], + "to": [ + 8.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8.75, + 8.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_832", - "from": [8.25, 0, 8.5], - "to": [8.5, 0.25, 8.75], - "faces": { - "north": {"uv": [8.5, 8.5, 8.25, 8.75], "texture": "#0"}, - "east": {"uv": [8.25, 8.5, 8.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.5, 8.5, 8.75], "texture": "#0"}, - "west": {"uv": [8.25, 8.5, 8.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 8.5, 8.5, 8.75], "texture": "#0"}, - "down": {"uv": [8.25, 8.75, 8.5, 8.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 8.5 + ], + "to": [ + 8.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 8.75, + 8.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_833", - "from": [8.5, 0, 8.5], - "to": [8.75, 0.25, 8.75], - "faces": { - "north": {"uv": [8.75, 8.5, 8.5, 8.75], "texture": "#0"}, - "east": {"uv": [8.5, 8.5, 8.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 8.5, 8.75, 8.75], "texture": "#0"}, - "west": {"uv": [8.5, 8.5, 8.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 8.5, 8.75, 8.75], "texture": "#0"}, - "down": {"uv": [8.5, 8.75, 8.75, 8.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 8.5 + ], + "to": [ + 8.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 8.5, + 8.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.75, + 8.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_834", - "from": [8.75, 0, 8.5], - "to": [9, 0.25, 8.75], - "faces": { - "north": {"uv": [9, 8.5, 8.75, 8.75], "texture": "#0"}, - "east": {"uv": [8.75, 8.5, 9, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 8.5, 9, 8.75], "texture": "#0"}, - "west": {"uv": [8.75, 8.5, 9, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 8.5, 9, 8.75], "texture": "#0"}, - "down": {"uv": [8.75, 8.75, 9, 8.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 8.5 + ], + "to": [ + 9, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 8.5, + 8.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8.5, + 9, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8.5, + 9, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 8.75, + 9, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_835", - "from": [9, 0, 8.5], - "to": [9.25, 0.25, 8.75], - "faces": { - "north": {"uv": [9.25, 8.5, 9, 8.75], "texture": "#0"}, - "east": {"uv": [9, 8.5, 9.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8.5, 9.25, 8.75], "texture": "#0"}, - "west": {"uv": [9, 8.5, 9.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 8.5, 9.25, 8.75], "texture": "#0"}, - "down": {"uv": [9, 8.75, 9.25, 8.5], "texture": "#0"} + "from": [ + 9, + 0, + 8.5 + ], + "to": [ + 9.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 9.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.5, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8.5, + 9.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.5, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 8.75, + 9.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_836", - "from": [9.25, 0, 8.5], - "to": [9.5, 0.25, 8.75], - "faces": { - "north": {"uv": [9.5, 8.5, 9.25, 8.75], "texture": "#0"}, - "east": {"uv": [9.25, 8.5, 9.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.5, 9.5, 8.75], "texture": "#0"}, - "west": {"uv": [9.25, 8.5, 9.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8.5, 9.5, 8.75], "texture": "#0"}, - "down": {"uv": [9.25, 8.75, 9.5, 8.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 8.5 + ], + "to": [ + 9.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 8.5, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 8.75, + 9.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_837", - "from": [9.5, 0, 8.5], - "to": [9.75, 0.25, 8.75], - "faces": { - "north": {"uv": [9.75, 8.5, 9.5, 8.75], "texture": "#0"}, - "east": {"uv": [9.5, 8.5, 9.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8.5, 9.75, 8.75], "texture": "#0"}, - "west": {"uv": [9.5, 8.5, 9.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 8.5, 9.75, 8.75], "texture": "#0"}, - "down": {"uv": [9.5, 8.75, 9.75, 8.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 8.5 + ], + "to": [ + 9.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8.75, + 9.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_838", - "from": [9.75, 0, 8.5], - "to": [10, 0.25, 8.75], - "faces": { - "north": {"uv": [10, 8.5, 9.75, 8.75], "texture": "#0"}, - "east": {"uv": [9.75, 8.5, 10, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 8.5, 10, 8.75], "texture": "#0"}, - "west": {"uv": [9.75, 8.5, 10, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 8.5, 10, 8.75], "texture": "#0"}, - "down": {"uv": [9.75, 8.75, 10, 8.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 8.5 + ], + "to": [ + 10, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 8.5, + 9.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 8.5, + 10, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 8.5, + 10, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 10, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_839", - "from": [10, 0, 8.5], - "to": [10.25, 0.25, 8.75], - "faces": { - "north": {"uv": [10.25, 8.5, 10, 8.75], "texture": "#0"}, - "east": {"uv": [10, 8.5, 10.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.5, 10.25, 8.75], "texture": "#0"}, - "west": {"uv": [10, 8.5, 10.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.5, 10.25, 8.75], "texture": "#0"}, - "down": {"uv": [10, 8.75, 10.25, 8.5], "texture": "#0"} + "from": [ + 10, + 0, + 8.5 + ], + "to": [ + 10.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 8.5, + 10.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.5, + 10.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.5, + 10.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8.75, + 10.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_840", - "from": [10.25, 0, 8.5], - "to": [10.5, 0.25, 8.75], - "faces": { - "north": {"uv": [10.5, 8.5, 10.25, 8.75], "texture": "#0"}, - "east": {"uv": [10.25, 8.5, 10.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8.5, 10.5, 8.75], "texture": "#0"}, - "west": {"uv": [10.25, 8.5, 10.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 8.5, 10.5, 8.75], "texture": "#0"}, - "down": {"uv": [10.25, 8.75, 10.5, 8.5], "texture": "#0"} + "from": [ + 10.25, + 0, + 8.5 + ], + "to": [ + 10.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 8.5, + 10.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 8.5, + 10.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 8.75, + 10.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_841", - "from": [10.5, 0, 8.5], - "to": [10.75, 0.25, 8.75], - "faces": { - "north": {"uv": [10.75, 8.5, 10.5, 8.75], "texture": "#0"}, - "east": {"uv": [10.5, 8.5, 10.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.5, 10.75, 8.75], "texture": "#0"}, - "west": {"uv": [10.5, 8.5, 10.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.5, 10.75, 8.75], "texture": "#0"}, - "down": {"uv": [10.5, 8.75, 10.75, 8.5], "texture": "#0"} + "from": [ + 10.5, + 0, + 8.5 + ], + "to": [ + 10.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 8.5, + 10.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8.75, + 10.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_842", - "from": [10.75, 0, 8.5], - "to": [11, 0.25, 8.75], - "faces": { - "north": {"uv": [11, 8.5, 10.75, 8.75], "texture": "#0"}, - "east": {"uv": [10.75, 8.5, 11, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.5, 11, 8.75], "texture": "#0"}, - "west": {"uv": [10.75, 8.5, 11, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.5, 11, 8.75], "texture": "#0"}, - "down": {"uv": [10.75, 8.75, 11, 8.5], "texture": "#0"} + "from": [ + 10.75, + 0, + 8.5 + ], + "to": [ + 11, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 11, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 11, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_843", - "from": [11, 0, 8.5], - "to": [11.25, 0.25, 8.75], - "faces": { - "north": {"uv": [11.25, 8.5, 11, 8.75], "texture": "#0"}, - "east": {"uv": [11, 8.5, 11.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.5, 11.25, 8.75], "texture": "#0"}, - "west": {"uv": [11, 8.5, 11.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8.5, 11.25, 8.75], "texture": "#0"}, - "down": {"uv": [11, 8.75, 11.25, 8.5], "texture": "#0"} + "from": [ + 11, + 0, + 8.5 + ], + "to": [ + 11.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 8.5, + 11, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8.5, + 11.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8.75, + 11.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_844", - "from": [11.25, 0, 8.5], - "to": [11.5, 0.25, 8.75], - "faces": { - "north": {"uv": [11.5, 8.5, 11.25, 8.75], "texture": "#0"}, - "east": {"uv": [11.25, 8.5, 11.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.5, 11.5, 8.75], "texture": "#0"}, - "west": {"uv": [11.25, 8.5, 11.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.5, 11.5, 8.75], "texture": "#0"}, - "down": {"uv": [11.25, 8.75, 11.5, 8.5], "texture": "#0"} + "from": [ + 11.25, + 0, + 8.5 + ], + "to": [ + 11.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.75, + 11.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_845", - "from": [11.5, 0, 8.5], - "to": [11.75, 0.25, 8.75], - "faces": { - "north": {"uv": [11.75, 8.5, 11.5, 8.75], "texture": "#0"}, - "east": {"uv": [11.5, 8.5, 11.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.5, 11.75, 8.75], "texture": "#0"}, - "west": {"uv": [11.5, 8.5, 11.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8.5, 11.75, 8.75], "texture": "#0"}, - "down": {"uv": [11.5, 8.75, 11.75, 8.5], "texture": "#0"} + "from": [ + 11.5, + 0, + 8.5 + ], + "to": [ + 11.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 8.5, + 11.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8.5, + 11.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.5, + 11.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.5, + 11.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8.5, + 11.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8.75, + 11.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_846", - "from": [11.75, 0, 8.5], - "to": [12, 0.25, 8.75], - "faces": { - "north": {"uv": [12, 8.5, 11.75, 8.75], "texture": "#0"}, - "east": {"uv": [11.75, 8.5, 12, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.5, 12, 8.75], "texture": "#0"}, - "west": {"uv": [11.75, 8.5, 12, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.5, 12, 8.75], "texture": "#0"}, - "down": {"uv": [11.75, 8.75, 12, 8.5], "texture": "#0"} + "from": [ + 11.75, + 0, + 8.5 + ], + "to": [ + 12, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 12, + 8.5, + 11.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.5, + 12, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.5, + 12, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.75, + 12, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_847", - "from": [12, 0, 8.5], - "to": [12.25, 0.25, 8.75], - "faces": { - "north": {"uv": [12.25, 8.5, 12, 8.75], "texture": "#0"}, - "east": {"uv": [12, 8.5, 12.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.5, 12.25, 8.75], "texture": "#0"}, - "west": {"uv": [12, 8.5, 12.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.5, 12.25, 8.75], "texture": "#0"}, - "down": {"uv": [12, 8.75, 12.25, 8.5], "texture": "#0"} + "from": [ + 12, + 0, + 8.5 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 8.5, + 12, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.75, + 12.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_848", - "from": [12.25, 0, 8.5], - "to": [12.5, 0.25, 8.75], - "faces": { - "north": {"uv": [12.5, 8.5, 12.25, 8.75], "texture": "#0"}, - "east": {"uv": [12.25, 8.5, 12.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8.5, 12.5, 8.75], "texture": "#0"}, - "west": {"uv": [12.25, 8.5, 12.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 8.5, 12.5, 8.75], "texture": "#0"}, - "down": {"uv": [12.25, 8.75, 12.5, 8.5], "texture": "#0"} + "from": [ + 12.25, + 0, + 8.5 + ], + "to": [ + 12.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 12.5, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.75, + 12.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_849", - "from": [13, 0, 8.5], - "to": [13.25, 0.25, 8.75], - "faces": { - "north": {"uv": [13.25, 8.5, 13, 8.75], "texture": "#0"}, - "east": {"uv": [13, 8.5, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 8.5, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 13.25, 8.5], "texture": "#0"} + "from": [ + 13, + 0, + 8.5 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 13.25, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_850", - "from": [13.25, 0, 8.5], - "to": [13.5, 0.25, 8.75], - "faces": { - "north": {"uv": [13.5, 8.5, 13.25, 8.75], "texture": "#0"}, - "east": {"uv": [13.25, 8.5, 13.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.5, 13.5, 8.75], "texture": "#0"}, - "west": {"uv": [13.25, 8.5, 13.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8.5, 13.5, 8.75], "texture": "#0"}, - "down": {"uv": [13.25, 8.75, 13.5, 8.5], "texture": "#0"} + "from": [ + 13.25, + 0, + 8.5 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 13.5, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 13.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_851", - "from": [13.5, 0, 8.5], - "to": [13.75, 0.25, 8.75], - "faces": { - "north": {"uv": [13.75, 8.5, 13.5, 8.75], "texture": "#0"}, - "east": {"uv": [13.5, 8.5, 13.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.5, 13.75, 8.75], "texture": "#0"}, - "west": {"uv": [13.5, 8.5, 13.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8.5, 13.75, 8.75], "texture": "#0"}, - "down": {"uv": [13.5, 8.75, 13.75, 8.5], "texture": "#0"} + "from": [ + 13.5, + 0, + 8.5 + ], + "to": [ + 13.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 8.5, + 13.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 13.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_852", - "from": [13.75, 0, 8.5], - "to": [14, 0.25, 8.75], - "faces": { - "north": {"uv": [14, 8.5, 13.75, 8.75], "texture": "#0"}, - "east": {"uv": [13.75, 8.5, 14, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#0"}, - "west": {"uv": [13.75, 8.5, 14, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#0"}, - "down": {"uv": [13.75, 8.75, 14, 8.5], "texture": "#0"} + "from": [ + 13.75, + 0, + 8.5 + ], + "to": [ + 14, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 14, + 8.5, + 13.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_853", - "from": [14, 0, 8.5], - "to": [14.25, 0.25, 8.75], - "faces": { - "north": {"uv": [14.25, 8.5, 14, 8.75], "texture": "#0"}, - "east": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.5, 14.25, 8.75], "texture": "#0"}, - "west": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.5, 14.25, 8.75], "texture": "#0"}, - "down": {"uv": [14, 8.75, 14.25, 8.5], "texture": "#0"} + "from": [ + 14, + 0, + 8.5 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 8.5, + 14, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 8.75, + 14.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_854", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 8.75], - "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "east": {"uv": [14.25, 8.5, 14.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#0"}, - "west": {"uv": [14.25, 8.5, 14.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#0"}, - "down": {"uv": [14.25, 8.75, 14.5, 8.5], "texture": "#0"} + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_855", - "from": [14.5, 0, 8.5], - "to": [14.75, 0.25, 8.75], - "faces": { - "north": {"uv": [14.75, 8.5, 14.5, 8.75], "texture": "#0"}, - "east": {"uv": [14.5, 8.5, 14.75, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.5, 14.75, 8.75], "texture": "#0"}, - "west": {"uv": [14.5, 8.5, 14.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.5, 14.75, 8.75], "texture": "#0"}, - "down": {"uv": [14.5, 8.75, 14.75, 8.5], "texture": "#0"} + "from": [ + 14.5, + 0, + 8.5 + ], + "to": [ + 14.75, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 8.5, + 14.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 8.75, + 14.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_856", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 8.75], - "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#0"}, - "east": {"uv": [14.75, 8.5, 15, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.5, 15, 8.75], "texture": "#0"}, - "west": {"uv": [14.75, 8.5, 15, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.5, 15, 8.75], "texture": "#0"}, - "down": {"uv": [14.75, 8.75, 15, 8.5], "texture": "#0"} + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.75, + 15, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_857", - "from": [15, 0, 8.5], - "to": [15.25, 0.25, 8.75], - "faces": { - "north": {"uv": [15.25, 8.5, 15, 8.75], "texture": "#0"}, - "east": {"uv": [15, 8.5, 15.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#0"}, - "west": {"uv": [15, 8.5, 15.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.5, 15.25, 8.75], "texture": "#0"}, - "down": {"uv": [15, 8.75, 15.25, 8.5], "texture": "#0"} + "from": [ + 15, + 0, + 8.5 + ], + "to": [ + 15.25, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_858", - "from": [15.25, 0, 8.5], - "to": [15.5, 0.25, 8.75], - "faces": { - "north": {"uv": [15.5, 8.5, 15.25, 8.75], "texture": "#0"}, - "east": {"uv": [15.25, 8.5, 15.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#0"}, - "west": {"uv": [15.25, 8.5, 15.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.5, 15.5, 8.75], "texture": "#0"}, - "down": {"uv": [15.25, 8.75, 15.5, 8.5], "texture": "#0"} + "from": [ + 15.25, + 0, + 8.5 + ], + "to": [ + 15.5, + 0.25, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 8.5, + 15.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 8.75, + 15.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_859", - "from": [0.75, 0, 8.75], - "to": [1, 0.25, 9], - "faces": { - "north": {"uv": [1, 8.75, 0.75, 9], "texture": "#0"}, - "east": {"uv": [0.75, 8.75, 1, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.75, 1, 9], "texture": "#0"}, - "west": {"uv": [0.75, 8.75, 1, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.75, 1, 9], "texture": "#0"}, - "down": {"uv": [0.75, 9, 1, 8.75], "texture": "#0"} + "from": [ + 0.75, + 0, + 8.75 + ], + "to": [ + 1, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 1, + 8.75, + 0.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9, + 1, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_860", - "from": [1, 0, 8.75], - "to": [1.25, 0.25, 9], - "faces": { - "north": {"uv": [1.25, 8.75, 1, 9], "texture": "#0"}, - "east": {"uv": [1, 8.75, 1.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.75, 1.25, 9], "texture": "#0"}, - "west": {"uv": [1, 8.75, 1.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8.75, 1.25, 9], "texture": "#0"}, - "down": {"uv": [1, 9, 1.25, 8.75], "texture": "#0"} + "from": [ + 1, + 0, + 8.75 + ], + "to": [ + 1.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 8.75, + 1, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9, + 1.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_861", - "from": [1.25, 0, 8.75], - "to": [1.5, 0.25, 9], - "faces": { - "north": {"uv": [1.5, 8.75, 1.25, 9], "texture": "#0"}, - "east": {"uv": [1.25, 8.75, 1.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.75, 1.5, 9], "texture": "#0"}, - "west": {"uv": [1.25, 8.75, 1.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.75, 1.5, 9], "texture": "#0"}, - "down": {"uv": [1.25, 9, 1.5, 8.75], "texture": "#0"} + "from": [ + 1.25, + 0, + 8.75 + ], + "to": [ + 1.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9, + 1.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_862", - "from": [1.5, 0, 8.75], - "to": [1.75, 0.25, 9], - "faces": { - "north": {"uv": [1.75, 8.75, 1.5, 9], "texture": "#0"}, - "east": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "west": {"uv": [1.5, 8.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 1.75, 8.75], "texture": "#0"} + "from": [ + 1.5, + 0, + 8.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 8.75, + 1.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_863", - "from": [1.75, 0, 8.75], - "to": [2, 0.25, 9], - "faces": { - "north": {"uv": [2, 8.75, 1.75, 9], "texture": "#0"}, - "east": {"uv": [1.75, 8.75, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.75, 8.75, 2, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.75, 2, 9], "texture": "#0"}, - "down": {"uv": [1.75, 9, 2, 8.75], "texture": "#0"} + "from": [ + 1.75, + 0, + 8.75 + ], + "to": [ + 2, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 2, + 8.75, + 1.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9, + 2, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_864", - "from": [2, 0, 8.75], - "to": [2.25, 0.25, 9], - "faces": { - "north": {"uv": [2.25, 8.75, 2, 9], "texture": "#0"}, - "east": {"uv": [2, 8.75, 2.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.25, 9], "texture": "#0"}, - "west": {"uv": [2, 8.75, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8.75, 2.25, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.25, 8.75], "texture": "#0"} + "from": [ + 2, + 0, + 8.75 + ], + "to": [ + 2.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_865", - "from": [2.25, 0, 8.75], - "to": [2.5, 0.25, 9], - "faces": { - "north": {"uv": [2.5, 8.75, 2.25, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.75, 2.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 8.75, 2.5, 9], "texture": "#0"}, - "west": {"uv": [2.25, 8.75, 2.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8.75, 2.5, 9], "texture": "#0"}, - "down": {"uv": [2.25, 9, 2.5, 8.75], "texture": "#0"} + "from": [ + 2.25, + 0, + 8.75 + ], + "to": [ + 2.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 8.75, + 2.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9, + 2.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_866", - "from": [2.5, 0, 8.75], - "to": [2.75, 0.25, 9], - "faces": { - "north": {"uv": [2.75, 8.75, 2.5, 9], "texture": "#0"}, - "east": {"uv": [2.5, 8.75, 2.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.75, 2.75, 9], "texture": "#0"}, - "west": {"uv": [2.5, 8.75, 2.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.75, 2.75, 9], "texture": "#0"}, - "down": {"uv": [2.5, 9, 2.75, 8.75], "texture": "#0"} + "from": [ + 2.5, + 0, + 8.75 + ], + "to": [ + 2.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9, + 2.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_867", - "from": [2.75, 0, 8.75], - "to": [3, 0.25, 9], - "faces": { - "north": {"uv": [3, 8.75, 2.75, 9], "texture": "#0"}, - "east": {"uv": [2.75, 8.75, 3, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.75, 3, 9], "texture": "#0"}, - "west": {"uv": [2.75, 8.75, 3, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 8.75, 3, 9], "texture": "#0"}, - "down": {"uv": [2.75, 9, 3, 8.75], "texture": "#0"} + "from": [ + 2.75, + 0, + 8.75 + ], + "to": [ + 3, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 3, + 8.75, + 2.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 8.75, + 3, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.75, + 3, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 8.75, + 3, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.75, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9, + 3, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_868", - "from": [3, 0, 8.75], - "to": [3.25, 0.25, 9], - "faces": { - "north": {"uv": [3.25, 8.75, 3, 9], "texture": "#0"}, - "east": {"uv": [3, 8.75, 3.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 8.75, 3.25, 9], "texture": "#0"}, - "west": {"uv": [3, 8.75, 3.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8.75, 3.25, 9], "texture": "#0"}, - "down": {"uv": [3, 9, 3.25, 8.75], "texture": "#0"} + "from": [ + 3, + 0, + 8.75 + ], + "to": [ + 3.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 8.75, + 3, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9, + 3.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_869", - "from": [3.25, 0, 8.75], - "to": [3.5, 0.25, 9], - "faces": { - "north": {"uv": [3.5, 8.75, 3.25, 9], "texture": "#0"}, - "east": {"uv": [3.25, 8.75, 3.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 8.75, 3.5, 9], "texture": "#0"}, - "west": {"uv": [3.25, 8.75, 3.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.75, 3.5, 9], "texture": "#0"}, - "down": {"uv": [3.25, 9, 3.5, 8.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 8.75 + ], + "to": [ + 3.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9, + 3.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_870", - "from": [3.5, 0, 8.75], - "to": [3.75, 0.25, 9], - "faces": { - "north": {"uv": [3.75, 8.75, 3.5, 9], "texture": "#0"}, - "east": {"uv": [3.5, 8.75, 3.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 8.75, 3.75, 9], "texture": "#0"}, - "west": {"uv": [3.5, 8.75, 3.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 8.75, 3.75, 9], "texture": "#0"}, - "down": {"uv": [3.5, 9, 3.75, 8.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 8.75 + ], + "to": [ + 3.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 8.75, + 3.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8.75, + 3.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.75, + 3.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9, + 3.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_871", - "from": [3.75, 0, 8.75], - "to": [4, 0.25, 9], - "faces": { - "north": {"uv": [4, 8.75, 3.75, 9], "texture": "#0"}, - "east": {"uv": [3.75, 8.75, 4, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 8.75, 4, 9], "texture": "#0"}, - "west": {"uv": [3.75, 8.75, 4, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8.75, 4, 9], "texture": "#0"}, - "down": {"uv": [3.75, 9, 4, 8.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 8.75 + ], + "to": [ + 4, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 4, + 8.75, + 3.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.75, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9, + 4, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_872", - "from": [4, 0, 8.75], - "to": [4.25, 0.25, 9], - "faces": { - "north": {"uv": [4.25, 8.75, 4, 9], "texture": "#0"}, - "east": {"uv": [4, 8.75, 4.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 8.75, 4.25, 9], "texture": "#0"}, - "west": {"uv": [4, 8.75, 4.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 8.75, 4.25, 9], "texture": "#0"}, - "down": {"uv": [4, 9, 4.25, 8.75], "texture": "#0"} + "from": [ + 4, + 0, + 8.75 + ], + "to": [ + 4.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 8.75, + 4, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.75, + 4.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.75, + 4.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9, + 4.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_873", - "from": [4.25, 0, 8.75], - "to": [4.5, 0.25, 9], - "faces": { - "north": {"uv": [4.5, 8.75, 4.25, 9], "texture": "#0"}, - "east": {"uv": [4.25, 8.75, 4.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 8.75, 4.5, 9], "texture": "#0"}, - "west": {"uv": [4.25, 8.75, 4.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 8.75, 4.5, 9], "texture": "#0"}, - "down": {"uv": [4.25, 9, 4.5, 8.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 8.75 + ], + "to": [ + 4.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 8.75, + 4.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 8.75, + 4.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8.75, + 4.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8.75, + 4.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 8.75, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9, + 4.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_874", - "from": [4.5, 0, 8.75], - "to": [4.75, 0.25, 9], - "faces": { - "north": {"uv": [4.75, 8.75, 4.5, 9], "texture": "#0"}, - "east": {"uv": [4.5, 8.75, 4.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 8.75, 4.75, 9], "texture": "#0"}, - "west": {"uv": [4.5, 8.75, 4.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 8.75, 4.75, 9], "texture": "#0"}, - "down": {"uv": [4.5, 9, 4.75, 8.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 8.75 + ], + "to": [ + 4.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 8.75, + 4.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.75, + 4.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.75, + 4.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 8.75, + 4.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8.75, + 4.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9, + 4.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_875", - "from": [4.75, 0, 8.75], - "to": [5, 0.25, 9], - "faces": { - "north": {"uv": [5, 8.75, 4.75, 9], "texture": "#0"}, - "east": {"uv": [4.75, 8.75, 5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 8.75, 5, 9], "texture": "#0"}, - "west": {"uv": [4.75, 8.75, 5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 8.75, 5, 9], "texture": "#0"}, - "down": {"uv": [4.75, 9, 5, 8.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 8.75 + ], + "to": [ + 5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 5, + 8.75, + 4.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_876", - "from": [5, 0, 8.75], - "to": [5.25, 0.25, 9], - "faces": { - "north": {"uv": [5.25, 8.75, 5, 9], "texture": "#0"}, - "east": {"uv": [5, 8.75, 5.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 8.75, 5.25, 9], "texture": "#0"}, - "west": {"uv": [5, 8.75, 5.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 8.75, 5.25, 9], "texture": "#0"}, - "down": {"uv": [5, 9, 5.25, 8.75], "texture": "#0"} + "from": [ + 5, + 0, + 8.75 + ], + "to": [ + 5.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 8.75, + 5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8.75, + 5.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.75, + 5.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.75, + 5.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8.75, + 5.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 5.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_877", - "from": [5.25, 0, 8.75], - "to": [5.5, 0.25, 9], - "faces": { - "north": {"uv": [5.5, 8.75, 5.25, 9], "texture": "#0"}, - "east": {"uv": [5.25, 8.75, 5.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 8.75, 5.5, 9], "texture": "#0"}, - "west": {"uv": [5.25, 8.75, 5.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 8.75, 5.5, 9], "texture": "#0"}, - "down": {"uv": [5.25, 9, 5.5, 8.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 8.75 + ], + "to": [ + 5.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 8.75, + 5.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 8.75, + 5.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.75, + 5.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 8.75, + 5.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 8.75, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_878", - "from": [5.5, 0, 8.75], - "to": [5.75, 0.25, 9], - "faces": { - "north": {"uv": [5.75, 8.75, 5.5, 9], "texture": "#0"}, - "east": {"uv": [5.5, 8.75, 5.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8.75, 5.75, 9], "texture": "#0"}, - "west": {"uv": [5.5, 8.75, 5.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 8.75, 5.75, 9], "texture": "#0"}, - "down": {"uv": [5.5, 9, 5.75, 8.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 8.75 + ], + "to": [ + 5.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 8.75, + 5.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 8.75, + 5.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9, + 5.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_879", - "from": [5.75, 0, 8.75], - "to": [6, 0.25, 9], - "faces": { - "north": {"uv": [6, 8.75, 5.75, 9], "texture": "#0"}, - "east": {"uv": [5.75, 8.75, 6, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 8.75, 6, 9], "texture": "#0"}, - "west": {"uv": [5.75, 8.75, 6, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 8.75, 6, 9], "texture": "#0"}, - "down": {"uv": [5.75, 9, 6, 8.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 8.75 + ], + "to": [ + 6, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 6, + 8.75, + 5.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8.75, + 6, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 8.75, + 6, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 8.75, + 6, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 8.75, + 6, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9, + 6, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_880", - "from": [6, 0, 8.75], - "to": [6.25, 0.25, 9], - "faces": { - "north": {"uv": [6.25, 8.75, 6, 9], "texture": "#0"}, - "east": {"uv": [6, 8.75, 6.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 8.75, 6.25, 9], "texture": "#0"}, - "west": {"uv": [6, 8.75, 6.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 8.75, 6.25, 9], "texture": "#0"}, - "down": {"uv": [6, 9, 6.25, 8.75], "texture": "#0"} + "from": [ + 6, + 0, + 8.75 + ], + "to": [ + 6.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 8.75, + 6, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8.75, + 6.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8.75, + 6.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8.75, + 6.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8.75, + 6.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9, + 6.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_881", - "from": [6.25, 0, 8.75], - "to": [6.5, 0.25, 9], - "faces": { - "north": {"uv": [6.5, 8.75, 6.25, 9], "texture": "#0"}, - "east": {"uv": [6.25, 8.75, 6.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 8.75, 6.5, 9], "texture": "#0"}, - "west": {"uv": [6.25, 8.75, 6.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 8.75, 6.5, 9], "texture": "#0"}, - "down": {"uv": [6.25, 9, 6.5, 8.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 8.75 + ], + "to": [ + 6.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 8.75, + 6.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 8.75, + 6.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.75, + 6.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.75, + 6.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8.75, + 6.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_882", - "from": [6.5, 0, 8.75], - "to": [6.75, 0.25, 9], - "faces": { - "north": {"uv": [6.75, 8.75, 6.5, 9], "texture": "#0"}, - "east": {"uv": [6.5, 8.75, 6.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 8.75, 6.75, 9], "texture": "#0"}, - "west": {"uv": [6.5, 8.75, 6.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 8.75, 6.75, 9], "texture": "#0"}, - "down": {"uv": [6.5, 9, 6.75, 8.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 8.75 + ], + "to": [ + 6.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 8.75, + 6.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 8.75, + 6.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8.75, + 6.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9, + 6.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_883", - "from": [6.75, 0, 8.75], - "to": [7, 0.25, 9], - "faces": { - "north": {"uv": [7, 8.75, 6.75, 9], "texture": "#0"}, - "east": {"uv": [6.75, 8.75, 7, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 8.75, 7, 9], "texture": "#0"}, - "west": {"uv": [6.75, 8.75, 7, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 8.75, 7, 9], "texture": "#0"}, - "down": {"uv": [6.75, 9, 7, 8.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 8.75 + ], + "to": [ + 7, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 7, + 8.75, + 6.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.75, + 7, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9, + 7, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_884", - "from": [7, 0, 8.75], - "to": [7.25, 0.25, 9], - "faces": { - "north": {"uv": [7.25, 8.75, 7, 9], "texture": "#0"}, - "east": {"uv": [7, 8.75, 7.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 8.75, 7.25, 9], "texture": "#0"}, - "west": {"uv": [7, 8.75, 7.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 8.75, 7.25, 9], "texture": "#0"}, - "down": {"uv": [7, 9, 7.25, 8.75], "texture": "#0"} + "from": [ + 7, + 0, + 8.75 + ], + "to": [ + 7.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 8.75, + 7, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9, + 7.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_885", - "from": [7.25, 0, 8.75], - "to": [7.5, 0.25, 9], - "faces": { - "north": {"uv": [7.5, 8.75, 7.25, 9], "texture": "#0"}, - "east": {"uv": [7.25, 8.75, 7.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 8.75, 7.5, 9], "texture": "#0"}, - "west": {"uv": [7.25, 8.75, 7.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 8.75, 7.5, 9], "texture": "#0"}, - "down": {"uv": [7.25, 9, 7.5, 8.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 8.75 + ], + "to": [ + 7.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8.75, + 7.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 8.75, + 7.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.75, + 7.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 8.75, + 7.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 8.75, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9, + 7.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_886", - "from": [7.5, 0, 8.75], - "to": [7.75, 0.25, 9], - "faces": { - "north": {"uv": [7.75, 8.75, 7.5, 9], "texture": "#0"}, - "east": {"uv": [7.5, 8.75, 7.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 8.75, 7.75, 9], "texture": "#0"}, - "west": {"uv": [7.5, 8.75, 7.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 8.75, 7.75, 9], "texture": "#0"}, - "down": {"uv": [7.5, 9, 7.75, 8.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 8.75 + ], + "to": [ + 7.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 8.75, + 7.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9, + 7.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_887", - "from": [7.75, 0, 8.75], - "to": [8, 0.25, 9], - "faces": { - "north": {"uv": [8, 8.75, 7.75, 9], "texture": "#0"}, - "east": {"uv": [7.75, 8.75, 8, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 8.75, 8, 9], "texture": "#0"}, - "west": {"uv": [7.75, 8.75, 8, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 8.75, 8, 9], "texture": "#0"}, - "down": {"uv": [7.75, 9, 8, 8.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 8.75 + ], + "to": [ + 8, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 8, + 8.75, + 7.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 8.75, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 8, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_888", - "from": [8, 0, 8.75], - "to": [8.25, 0.25, 9], - "faces": { - "north": {"uv": [8.25, 8.75, 8, 9], "texture": "#0"}, - "east": {"uv": [8, 8.75, 8.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8.75, 8.25, 9], "texture": "#0"}, - "west": {"uv": [8, 8.75, 8.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 8.75, 8.25, 9], "texture": "#0"}, - "down": {"uv": [8, 9, 8.25, 8.75], "texture": "#0"} + "from": [ + 8, + 0, + 8.75 + ], + "to": [ + 8.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 8.75, + 8, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8.75, + 8.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.75, + 8.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8.75, + 8.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8.75, + 8.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9, + 8.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_889", - "from": [8.25, 0, 8.75], - "to": [8.5, 0.25, 9], - "faces": { - "north": {"uv": [8.5, 8.75, 8.25, 9], "texture": "#0"}, - "east": {"uv": [8.25, 8.75, 8.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.75, 8.5, 9], "texture": "#0"}, - "west": {"uv": [8.25, 8.75, 8.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 8.75, 8.5, 9], "texture": "#0"}, - "down": {"uv": [8.25, 9, 8.5, 8.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 8.75 + ], + "to": [ + 8.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8.75, + 8.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8.75, + 8.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.75, + 8.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 8.75, + 8.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 8.75, + 8.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_890", - "from": [8.5, 0, 8.75], - "to": [8.75, 0.25, 9], - "faces": { - "north": {"uv": [8.75, 8.75, 8.5, 9], "texture": "#0"}, - "east": {"uv": [8.5, 8.75, 8.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 8.75, 8.75, 9], "texture": "#0"}, - "west": {"uv": [8.5, 8.75, 8.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 8.75, 8.75, 9], "texture": "#0"}, - "down": {"uv": [8.5, 9, 8.75, 8.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 8.75 + ], + "to": [ + 8.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 8.75, + 8.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 8.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9, + 8.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_891", - "from": [8.75, 0, 8.75], - "to": [9, 0.25, 9], - "faces": { - "north": {"uv": [9, 8.75, 8.75, 9], "texture": "#0"}, - "east": {"uv": [8.75, 8.75, 9, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 8.75, 9, 9], "texture": "#0"}, - "west": {"uv": [8.75, 8.75, 9, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 8.75, 9, 9], "texture": "#0"}, - "down": {"uv": [8.75, 9, 9, 8.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 8.75 + ], + "to": [ + 9, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 9, + 8.75, + 8.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8.75, + 9, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8.75, + 9, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8.75, + 9, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 8.75, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9, + 9, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_892", - "from": [9, 0, 8.75], - "to": [9.25, 0.25, 9], - "faces": { - "north": {"uv": [9.25, 8.75, 9, 9], "texture": "#0"}, - "east": {"uv": [9, 8.75, 9.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8.75, 9.25, 9], "texture": "#0"}, - "west": {"uv": [9, 8.75, 9.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 8.75, 9.25, 9], "texture": "#0"}, - "down": {"uv": [9, 9, 9.25, 8.75], "texture": "#0"} + "from": [ + 9, + 0, + 8.75 + ], + "to": [ + 9.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 8.75, + 9, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.75, + 9.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8.75, + 9.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9, + 9.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_893", - "from": [9.25, 0, 8.75], - "to": [9.5, 0.25, 9], - "faces": { - "north": {"uv": [9.5, 8.75, 9.25, 9], "texture": "#0"}, - "east": {"uv": [9.25, 8.75, 9.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 8.75, 9.5, 9], "texture": "#0"}, - "west": {"uv": [9.25, 8.75, 9.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 8.75, 9.5, 9], "texture": "#0"}, - "down": {"uv": [9.25, 9, 9.5, 8.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 8.75 + ], + "to": [ + 9.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 8.75, + 9.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.75, + 9.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_894", - "from": [9.5, 0, 8.75], - "to": [9.75, 0.25, 9], - "faces": { - "north": {"uv": [9.75, 8.75, 9.5, 9], "texture": "#0"}, - "east": {"uv": [9.5, 8.75, 9.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 8.75, 9.75, 9], "texture": "#0"}, - "west": {"uv": [9.5, 8.75, 9.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 8.75, 9.75, 9], "texture": "#0"}, - "down": {"uv": [9.5, 9, 9.75, 8.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 8.75 + ], + "to": [ + 9.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 8.75, + 9.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9, + 9.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_895", - "from": [9.75, 0, 8.75], - "to": [10, 0.25, 9], - "faces": { - "north": {"uv": [10, 8.75, 9.75, 9], "texture": "#0"}, - "east": {"uv": [9.75, 8.75, 10, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 8.75, 10, 9], "texture": "#0"}, - "west": {"uv": [9.75, 8.75, 10, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 8.75, 10, 9], "texture": "#0"}, - "down": {"uv": [9.75, 9, 10, 8.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 8.75 + ], + "to": [ + 10, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 10, + 8.75, + 9.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 8.75, + 10, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 8.75, + 10, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 8.75, + 10, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 8.75, + 10, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9, + 10, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_896", - "from": [10, 0, 8.75], - "to": [10.25, 0.25, 9], - "faces": { - "north": {"uv": [10.25, 8.75, 10, 9], "texture": "#0"}, - "east": {"uv": [10, 8.75, 10.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8.75, 10.25, 9], "texture": "#0"}, - "west": {"uv": [10, 8.75, 10.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.75, 10.25, 9], "texture": "#0"}, - "down": {"uv": [10, 9, 10.25, 8.75], "texture": "#0"} + "from": [ + 10, + 0, + 8.75 + ], + "to": [ + 10.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 8.75, + 10, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9, + 10.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_897", - "from": [10.25, 0, 8.75], - "to": [10.5, 0.25, 9], - "faces": { - "north": {"uv": [10.5, 8.75, 10.25, 9], "texture": "#0"}, - "east": {"uv": [10.25, 8.75, 10.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 8.75, 10.5, 9], "texture": "#0"}, - "west": {"uv": [10.25, 8.75, 10.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 8.75, 10.5, 9], "texture": "#0"}, - "down": {"uv": [10.25, 9, 10.5, 8.75], "texture": "#0"} + "from": [ + 10.25, + 0, + 8.75 + ], + "to": [ + 10.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 8.75, + 10.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9, + 10.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_898", - "from": [10.5, 0, 8.75], - "to": [10.75, 0.25, 9], - "faces": { - "north": {"uv": [10.75, 8.75, 10.5, 9], "texture": "#0"}, - "east": {"uv": [10.5, 8.75, 10.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 8.75, 10.75, 9], "texture": "#0"}, - "west": {"uv": [10.5, 8.75, 10.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.75, 10.75, 9], "texture": "#0"}, - "down": {"uv": [10.5, 9, 10.75, 8.75], "texture": "#0"} + "from": [ + 10.5, + 0, + 8.75 + ], + "to": [ + 10.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 8.75, + 10.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9, + 10.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_899", - "from": [10.75, 0, 8.75], - "to": [11, 0.25, 9], - "faces": { - "north": {"uv": [11, 8.75, 10.75, 9], "texture": "#0"}, - "east": {"uv": [10.75, 8.75, 11, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.75, 11, 9], "texture": "#0"}, - "west": {"uv": [10.75, 8.75, 11, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.75, 11, 9], "texture": "#0"}, - "down": {"uv": [10.75, 9, 11, 8.75], "texture": "#0"} + "from": [ + 10.75, + 0, + 8.75 + ], + "to": [ + 11, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 11, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9, + 11, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_900", - "from": [11, 0, 8.75], - "to": [11.25, 0.25, 9], - "faces": { - "north": {"uv": [11.25, 8.75, 11, 9], "texture": "#0"}, - "east": {"uv": [11, 8.75, 11.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 8.75, 11.25, 9], "texture": "#0"}, - "west": {"uv": [11, 8.75, 11.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8.75, 11.25, 9], "texture": "#0"}, - "down": {"uv": [11, 9, 11.25, 8.75], "texture": "#0"} + "from": [ + 11, + 0, + 8.75 + ], + "to": [ + 11.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 8.75, + 11, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.75, + 11.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 8.75, + 11.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8.75, + 11.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8.75, + 11.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9, + 11.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_901", - "from": [11.25, 0, 8.75], - "to": [11.5, 0.25, 9], - "faces": { - "north": {"uv": [11.5, 8.75, 11.25, 9], "texture": "#0"}, - "east": {"uv": [11.25, 8.75, 11.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8.75, 11.5, 9], "texture": "#0"}, - "west": {"uv": [11.25, 8.75, 11.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.75, 11.5, 9], "texture": "#0"}, - "down": {"uv": [11.25, 9, 11.5, 8.75], "texture": "#0"} + "from": [ + 11.25, + 0, + 8.75 + ], + "to": [ + 11.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 8.75, + 11.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9, + 11.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_902", - "from": [11.5, 0, 8.75], - "to": [11.75, 0.25, 9], - "faces": { - "north": {"uv": [11.75, 8.75, 11.5, 9], "texture": "#0"}, - "east": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8.75, 11.75, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 11.75, 8.75], "texture": "#0"} + "from": [ + 11.5, + 0, + 8.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 8.75, + 11.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_903", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 9], - "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#0"}, - "east": {"uv": [11.75, 8.75, 12, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "west": {"uv": [11.75, 8.75, 12, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.75, 12, 9], "texture": "#0"}, - "down": {"uv": [11.75, 9, 12, 8.75], "texture": "#0"} + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_904", - "from": [12, 0, 8.75], - "to": [12.25, 0.25, 9], - "faces": { - "north": {"uv": [12.25, 8.75, 12, 9], "texture": "#0"}, - "east": {"uv": [12, 8.75, 12.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, - "west": {"uv": [12, 8.75, 12.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 8.75, 12.25, 9], "texture": "#0"}, - "down": {"uv": [12, 9, 12.25, 8.75], "texture": "#0"} + "from": [ + 12, + 0, + 8.75 + ], + "to": [ + 12.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 12.25, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 8.75, + 12.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9, + 12.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_905", - "from": [13.5, 0, 8.75], - "to": [13.75, 0.25, 9], - "faces": { - "north": {"uv": [13.75, 8.75, 13.5, 9], "texture": "#0"}, - "east": {"uv": [13.5, 8.75, 13.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#0"}, - "west": {"uv": [13.5, 8.75, 13.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8.75, 13.75, 9], "texture": "#0"}, - "down": {"uv": [13.5, 9, 13.75, 8.75], "texture": "#0"} + "from": [ + 13.5, + 0, + 8.75 + ], + "to": [ + 13.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 13.75, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9, + 13.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_906", - "from": [13.75, 0, 8.75], - "to": [14, 0.25, 9], - "faces": { - "north": {"uv": [14, 8.75, 13.75, 9], "texture": "#0"}, - "east": {"uv": [13.75, 8.75, 14, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.75, 14, 9], "texture": "#0"}, - "west": {"uv": [13.75, 8.75, 14, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8.75, 14, 9], "texture": "#0"}, - "down": {"uv": [13.75, 9, 14, 8.75], "texture": "#0"} + "from": [ + 13.75, + 0, + 8.75 + ], + "to": [ + 14, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 14, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9, + 14, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_907", - "from": [14, 0, 8.75], - "to": [14.25, 0.25, 9], - "faces": { - "north": {"uv": [14.25, 8.75, 14, 9], "texture": "#0"}, - "east": {"uv": [14, 8.75, 14.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 8.75, 14.25, 9], "texture": "#0"}, - "west": {"uv": [14, 8.75, 14.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.75, 14.25, 9], "texture": "#0"}, - "down": {"uv": [14, 9, 14.25, 8.75], "texture": "#0"} + "from": [ + 14, + 0, + 8.75 + ], + "to": [ + 14.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 14.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_908", - "from": [14.25, 0, 8.75], - "to": [14.5, 0.25, 9], - "faces": { - "north": {"uv": [14.5, 8.75, 14.25, 9], "texture": "#0"}, - "east": {"uv": [14.25, 8.75, 14.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8.75, 14.5, 9], "texture": "#0"}, - "west": {"uv": [14.25, 8.75, 14.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.75, 14.5, 9], "texture": "#0"}, - "down": {"uv": [14.25, 9, 14.5, 8.75], "texture": "#0"} + "from": [ + 14.25, + 0, + 8.75 + ], + "to": [ + 14.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 8.75, + 14.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9, + 14.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_909", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 9], - "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#0"}, - "east": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#0"}, - "west": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#0"}, - "down": {"uv": [14.5, 9, 14.75, 8.75], "texture": "#0"} + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9, + 14.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_910", - "from": [14.75, 0, 8.75], - "to": [15, 0.25, 9], - "faces": { - "north": {"uv": [15, 8.75, 14.75, 9], "texture": "#0"}, - "east": {"uv": [14.75, 8.75, 15, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.75, 15, 9], "texture": "#0"}, - "west": {"uv": [14.75, 8.75, 15, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.75, 15, 9], "texture": "#0"}, - "down": {"uv": [14.75, 9, 15, 8.75], "texture": "#0"} + "from": [ + 14.75, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 15, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9, + 15, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_911", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 9], - "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#0"}, - "east": {"uv": [15, 8.75, 15.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 8.75, 15.25, 9], "texture": "#0"}, - "west": {"uv": [15, 8.75, 15.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.75, 15.25, 9], "texture": "#0"}, - "down": {"uv": [15, 9, 15.25, 8.75], "texture": "#0"} + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9, + 15.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_912", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 9], - "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#0"}, - "east": {"uv": [15.25, 8.75, 15.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 8.75, 15.5, 9], "texture": "#0"}, - "west": {"uv": [15.25, 8.75, 15.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.75, 15.5, 9], "texture": "#0"}, - "down": {"uv": [15.25, 9, 15.5, 8.75], "texture": "#0"} + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 9 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9, + 15.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_913", - "from": [1, 0, 9], - "to": [1.25, 0.25, 9.25], - "faces": { - "north": {"uv": [1.25, 9, 1, 9.25], "texture": "#0"}, - "east": {"uv": [1, 9, 1.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 9, 1.25, 9.25], "texture": "#0"}, - "west": {"uv": [1, 9, 1.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 9, 1.25, 9.25], "texture": "#0"}, - "down": {"uv": [1, 9.25, 1.25, 9], "texture": "#0"} + "from": [ + 1, + 0, + 9 + ], + "to": [ + 1.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 1.25, + 9, + 1, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_914", - "from": [1.25, 0, 9], - "to": [1.5, 0.25, 9.25], - "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 9], "texture": "#0"} + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_915", - "from": [1.5, 0, 9], - "to": [1.75, 0.25, 9.25], - "faces": { - "north": {"uv": [1.75, 9, 1.5, 9.25], "texture": "#0"}, - "east": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#0"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#0"}, - "down": {"uv": [1.5, 9.25, 1.75, 9], "texture": "#0"} + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_916", - "from": [1.75, 0, 9], - "to": [2, 0.25, 9.25], - "faces": { - "north": {"uv": [2, 9, 1.75, 9.25], "texture": "#0"}, - "east": {"uv": [1.75, 9, 2, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9, 2, 9.25], "texture": "#0"}, - "west": {"uv": [1.75, 9, 2, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9, 2, 9.25], "texture": "#0"}, - "down": {"uv": [1.75, 9.25, 2, 9], "texture": "#0"} + "from": [ + 1.75, + 0, + 9 + ], + "to": [ + 2, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 2, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_917", - "from": [2, 0, 9], - "to": [2.25, 0.25, 9.25], - "faces": { - "north": {"uv": [2.25, 9, 2, 9.25], "texture": "#0"}, - "east": {"uv": [2, 9, 2.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9, 2.25, 9.25], "texture": "#0"}, - "west": {"uv": [2, 9, 2.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9, 2.25, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.25, 2.25, 9], "texture": "#0"} + "from": [ + 2, + 0, + 9 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_918", - "from": [2.25, 0, 9], - "to": [2.5, 0.25, 9.25], - "faces": { - "north": {"uv": [2.5, 9, 2.25, 9.25], "texture": "#0"}, - "east": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 2.5, 9], "texture": "#0"} + "from": [ + 2.25, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_919", - "from": [2.5, 0, 9], - "to": [2.75, 0.25, 9.25], - "faces": { - "north": {"uv": [2.75, 9, 2.5, 9.25], "texture": "#0"}, - "east": {"uv": [2.5, 9, 2.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9, 2.75, 9.25], "texture": "#0"}, - "west": {"uv": [2.5, 9, 2.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9, 2.75, 9.25], "texture": "#0"}, - "down": {"uv": [2.5, 9.25, 2.75, 9], "texture": "#0"} + "from": [ + 2.5, + 0, + 9 + ], + "to": [ + 2.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_920", - "from": [2.75, 0, 9], - "to": [3, 0.25, 9.25], - "faces": { - "north": {"uv": [3, 9, 2.75, 9.25], "texture": "#0"}, - "east": {"uv": [2.75, 9, 3, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9, 3, 9.25], "texture": "#0"}, - "west": {"uv": [2.75, 9, 3, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 9, 3, 9.25], "texture": "#0"}, - "down": {"uv": [2.75, 9.25, 3, 9], "texture": "#0"} + "from": [ + 2.75, + 0, + 9 + ], + "to": [ + 3, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.25, + 3, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_921", - "from": [3, 0, 9], - "to": [3.25, 0.25, 9.25], - "faces": { - "north": {"uv": [3.25, 9, 3, 9.25], "texture": "#0"}, - "east": {"uv": [3, 9, 3.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9, 3.25, 9.25], "texture": "#0"}, - "west": {"uv": [3, 9, 3.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9, 3.25, 9.25], "texture": "#0"}, - "down": {"uv": [3, 9.25, 3.25, 9], "texture": "#0"} + "from": [ + 3, + 0, + 9 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.25, + 3.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_922", - "from": [3.25, 0, 9], - "to": [3.5, 0.25, 9.25], - "faces": { - "north": {"uv": [3.5, 9, 3.25, 9.25], "texture": "#0"}, - "east": {"uv": [3.25, 9, 3.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "west": {"uv": [3.25, 9, 3.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.25, 9.25, 3.5, 9], "texture": "#0"} + "from": [ + 3.25, + 0, + 9 + ], + "to": [ + 3.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_923", - "from": [3.5, 0, 9], - "to": [3.75, 0.25, 9.25], - "faces": { - "north": {"uv": [3.75, 9, 3.5, 9.25], "texture": "#0"}, - "east": {"uv": [3.5, 9, 3.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9, 3.75, 9.25], "texture": "#0"}, - "west": {"uv": [3.5, 9, 3.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9, 3.75, 9.25], "texture": "#0"}, - "down": {"uv": [3.5, 9.25, 3.75, 9], "texture": "#0"} + "from": [ + 3.5, + 0, + 9 + ], + "to": [ + 3.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_924", - "from": [3.75, 0, 9], - "to": [4, 0.25, 9.25], - "faces": { - "north": {"uv": [4, 9, 3.75, 9.25], "texture": "#0"}, - "east": {"uv": [3.75, 9, 4, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9, 4, 9.25], "texture": "#0"}, - "west": {"uv": [3.75, 9, 4, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9, 4, 9.25], "texture": "#0"}, - "down": {"uv": [3.75, 9.25, 4, 9], "texture": "#0"} + "from": [ + 3.75, + 0, + 9 + ], + "to": [ + 4, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9, + 4, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9, + 4, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.25, + 4, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_925", - "from": [4, 0, 9], - "to": [4.25, 0.25, 9.25], - "faces": { - "north": {"uv": [4.25, 9, 4, 9.25], "texture": "#0"}, - "east": {"uv": [4, 9, 4.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9, 4.25, 9.25], "texture": "#0"}, - "west": {"uv": [4, 9, 4.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9, 4.25, 9.25], "texture": "#0"}, - "down": {"uv": [4, 9.25, 4.25, 9], "texture": "#0"} + "from": [ + 4, + 0, + 9 + ], + "to": [ + 4.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.25, + 4.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_926", - "from": [4.25, 0, 9], - "to": [4.5, 0.25, 9.25], - "faces": { - "north": {"uv": [4.5, 9, 4.25, 9.25], "texture": "#0"}, - "east": {"uv": [4.25, 9, 4.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9, 4.5, 9.25], "texture": "#0"}, - "west": {"uv": [4.25, 9, 4.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9, 4.5, 9.25], "texture": "#0"}, - "down": {"uv": [4.25, 9.25, 4.5, 9], "texture": "#0"} + "from": [ + 4.25, + 0, + 9 + ], + "to": [ + 4.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9, + 4.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_927", - "from": [4.5, 0, 9], - "to": [4.75, 0.25, 9.25], - "faces": { - "north": {"uv": [4.75, 9, 4.5, 9.25], "texture": "#0"}, - "east": {"uv": [4.5, 9, 4.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9, 4.75, 9.25], "texture": "#0"}, - "west": {"uv": [4.5, 9, 4.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9, 4.75, 9.25], "texture": "#0"}, - "down": {"uv": [4.5, 9.25, 4.75, 9], "texture": "#0"} + "from": [ + 4.5, + 0, + 9 + ], + "to": [ + 4.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 4.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9, + 4.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9, + 4.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9, + 4.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_928", - "from": [4.75, 0, 9], - "to": [5, 0.25, 9.25], - "faces": { - "north": {"uv": [5, 9, 4.75, 9.25], "texture": "#0"}, - "east": {"uv": [4.75, 9, 5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9, 5, 9.25], "texture": "#0"}, - "west": {"uv": [4.75, 9, 5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9, 5, 9.25], "texture": "#0"}, - "down": {"uv": [4.75, 9.25, 5, 9], "texture": "#0"} + "from": [ + 4.75, + 0, + 9 + ], + "to": [ + 5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 9, + 4.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9, + 5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9, + 5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.25, + 5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_929", - "from": [5, 0, 9], - "to": [5.25, 0.25, 9.25], - "faces": { - "north": {"uv": [5.25, 9, 5, 9.25], "texture": "#0"}, - "east": {"uv": [5, 9, 5.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9, 5.25, 9.25], "texture": "#0"}, - "west": {"uv": [5, 9, 5.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9, 5.25, 9.25], "texture": "#0"}, - "down": {"uv": [5, 9.25, 5.25, 9], "texture": "#0"} + "from": [ + 5, + 0, + 9 + ], + "to": [ + 5.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 5.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9, + 5.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9, + 5.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9, + 5.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.25, + 5.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_930", - "from": [5.25, 0, 9], - "to": [5.5, 0.25, 9.25], - "faces": { - "north": {"uv": [5.5, 9, 5.25, 9.25], "texture": "#0"}, - "east": {"uv": [5.25, 9, 5.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9, 5.5, 9.25], "texture": "#0"}, - "west": {"uv": [5.25, 9, 5.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9, 5.5, 9.25], "texture": "#0"}, - "down": {"uv": [5.25, 9.25, 5.5, 9], "texture": "#0"} + "from": [ + 5.25, + 0, + 9 + ], + "to": [ + 5.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 9, + 5.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9, + 5.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9, + 5.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_931", - "from": [5.5, 0, 9], - "to": [5.75, 0.25, 9.25], - "faces": { - "north": {"uv": [5.75, 9, 5.5, 9.25], "texture": "#0"}, - "east": {"uv": [5.5, 9, 5.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9, 5.75, 9.25], "texture": "#0"}, - "west": {"uv": [5.5, 9, 5.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 9, 5.75, 9.25], "texture": "#0"}, - "down": {"uv": [5.5, 9.25, 5.75, 9], "texture": "#0"} + "from": [ + 5.5, + 0, + 9 + ], + "to": [ + 5.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 9, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_932", - "from": [5.75, 0, 9], - "to": [6, 0.25, 9.25], - "faces": { - "north": {"uv": [6, 9, 5.75, 9.25], "texture": "#0"}, - "east": {"uv": [5.75, 9, 6, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9, 6, 9.25], "texture": "#0"}, - "west": {"uv": [5.75, 9, 6, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9, 6, 9.25], "texture": "#0"}, - "down": {"uv": [5.75, 9.25, 6, 9], "texture": "#0"} + "from": [ + 5.75, + 0, + 9 + ], + "to": [ + 6, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 9, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.25, + 6, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_933", - "from": [6, 0, 9], - "to": [6.25, 0.25, 9.25], - "faces": { - "north": {"uv": [6.25, 9, 6, 9.25], "texture": "#0"}, - "east": {"uv": [6, 9, 6.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9, 6.25, 9.25], "texture": "#0"}, - "west": {"uv": [6, 9, 6.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9, 6.25, 9.25], "texture": "#0"}, - "down": {"uv": [6, 9.25, 6.25, 9], "texture": "#0"} + "from": [ + 6, + 0, + 9 + ], + "to": [ + 6.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.25, + 6.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_934", - "from": [6.25, 0, 9], - "to": [6.5, 0.25, 9.25], - "faces": { - "north": {"uv": [6.5, 9, 6.25, 9.25], "texture": "#0"}, - "east": {"uv": [6.25, 9, 6.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 9, 6.5, 9.25], "texture": "#0"}, - "west": {"uv": [6.25, 9, 6.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 9, 6.5, 9.25], "texture": "#0"}, - "down": {"uv": [6.25, 9.25, 6.5, 9], "texture": "#0"} + "from": [ + 6.25, + 0, + 9 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 9, + 6.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_935", - "from": [6.5, 0, 9], - "to": [6.75, 0.25, 9.25], - "faces": { - "north": {"uv": [6.75, 9, 6.5, 9.25], "texture": "#0"}, - "east": {"uv": [6.5, 9, 6.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9, 6.75, 9.25], "texture": "#0"}, - "west": {"uv": [6.5, 9, 6.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 9, 6.75, 9.25], "texture": "#0"}, - "down": {"uv": [6.5, 9.25, 6.75, 9], "texture": "#0"} + "from": [ + 6.5, + 0, + 9 + ], + "to": [ + 6.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9, + 6.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9, + 6.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 9, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_936", - "from": [6.75, 0, 9], - "to": [7, 0.25, 9.25], - "faces": { - "north": {"uv": [7, 9, 6.75, 9.25], "texture": "#0"}, - "east": {"uv": [6.75, 9, 7, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9, 7, 9.25], "texture": "#0"}, - "west": {"uv": [6.75, 9, 7, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 9, 7, 9.25], "texture": "#0"}, - "down": {"uv": [6.75, 9.25, 7, 9], "texture": "#0"} + "from": [ + 6.75, + 0, + 9 + ], + "to": [ + 7, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 9, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 9, + 7, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9, + 7, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 9, + 7, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9, + 7, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.25, + 7, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_937", - "from": [7, 0, 9], - "to": [7.25, 0.25, 9.25], - "faces": { - "north": {"uv": [7.25, 9, 7, 9.25], "texture": "#0"}, - "east": {"uv": [7, 9, 7.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9, 7.25, 9.25], "texture": "#0"}, - "west": {"uv": [7, 9, 7.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 9, 7.25, 9.25], "texture": "#0"}, - "down": {"uv": [7, 9.25, 7.25, 9], "texture": "#0"} + "from": [ + 7, + 0, + 9 + ], + "to": [ + 7.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 9, + 7, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 9, + 7.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9, + 7.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9, + 7.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.25, + 7.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_938", - "from": [7.25, 0, 9], - "to": [7.5, 0.25, 9.25], - "faces": { - "north": {"uv": [7.5, 9, 7.25, 9.25], "texture": "#0"}, - "east": {"uv": [7.25, 9, 7.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9, 7.5, 9.25], "texture": "#0"}, - "west": {"uv": [7.25, 9, 7.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [7.25, 9.25, 7.5, 9], "texture": "#0"} + "from": [ + 7.25, + 0, + 9 + ], + "to": [ + 7.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9, + 7.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9, + 7.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_939", - "from": [7.5, 0, 9], - "to": [7.75, 0.25, 9.25], - "faces": { - "north": {"uv": [7.75, 9, 7.5, 9.25], "texture": "#0"}, - "east": {"uv": [7.5, 9, 7.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9, 7.75, 9.25], "texture": "#0"}, - "west": {"uv": [7.5, 9, 7.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9, 7.75, 9.25], "texture": "#0"}, - "down": {"uv": [7.5, 9.25, 7.75, 9], "texture": "#0"} + "from": [ + 7.5, + 0, + 9 + ], + "to": [ + 7.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 9, + 7.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9, + 7.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9, + 7.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9, + 7.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9, + 7.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_940", - "from": [7.75, 0, 9], - "to": [8, 0.25, 9.25], - "faces": { - "north": {"uv": [8, 9, 7.75, 9.25], "texture": "#0"}, - "east": {"uv": [7.75, 9, 8, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9, 8, 9.25], "texture": "#0"}, - "west": {"uv": [7.75, 9, 8, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9, 8, 9.25], "texture": "#0"}, - "down": {"uv": [7.75, 9.25, 8, 9], "texture": "#0"} + "from": [ + 7.75, + 0, + 9 + ], + "to": [ + 8, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 9, + 7.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9, + 8, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9, + 8, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9, + 8, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9, + 8, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.25, + 8, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_941", - "from": [8, 0, 9], - "to": [8.25, 0.25, 9.25], - "faces": { - "north": {"uv": [8.25, 9, 8, 9.25], "texture": "#0"}, - "east": {"uv": [8, 9, 8.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9, 8.25, 9.25], "texture": "#0"}, - "west": {"uv": [8, 9, 8.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 9, 8.25, 9.25], "texture": "#0"}, - "down": {"uv": [8, 9.25, 8.25, 9], "texture": "#0"} + "from": [ + 8, + 0, + 9 + ], + "to": [ + 8.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 9, + 8, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.25, + 8.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_942", - "from": [8.25, 0, 9], - "to": [8.5, 0.25, 9.25], - "faces": { - "north": {"uv": [8.5, 9, 8.25, 9.25], "texture": "#0"}, - "east": {"uv": [8.25, 9, 8.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9, 8.5, 9.25], "texture": "#0"}, - "west": {"uv": [8.25, 9, 8.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9, 8.5, 9.25], "texture": "#0"}, - "down": {"uv": [8.25, 9.25, 8.5, 9], "texture": "#0"} + "from": [ + 8.25, + 0, + 9 + ], + "to": [ + 8.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_943", - "from": [8.5, 0, 9], - "to": [8.75, 0.25, 9.25], - "faces": { - "north": {"uv": [8.75, 9, 8.5, 9.25], "texture": "#0"}, - "east": {"uv": [8.5, 9, 8.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9, 8.75, 9.25], "texture": "#0"}, - "west": {"uv": [8.5, 9, 8.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 9, 8.75, 9.25], "texture": "#0"}, - "down": {"uv": [8.5, 9.25, 8.75, 9], "texture": "#0"} + "from": [ + 8.5, + 0, + 9 + ], + "to": [ + 8.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_944", - "from": [8.75, 0, 9], - "to": [9, 0.25, 9.25], - "faces": { - "north": {"uv": [9, 9, 8.75, 9.25], "texture": "#0"}, - "east": {"uv": [8.75, 9, 9, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9, 9, 9.25], "texture": "#0"}, - "west": {"uv": [8.75, 9, 9, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 9, 9, 9.25], "texture": "#0"}, - "down": {"uv": [8.75, 9.25, 9, 9], "texture": "#0"} + "from": [ + 8.75, + 0, + 9 + ], + "to": [ + 9, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.25, + 9, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_945", - "from": [9, 0, 9], - "to": [9.25, 0.25, 9.25], - "faces": { - "north": {"uv": [9.25, 9, 9, 9.25], "texture": "#0"}, - "east": {"uv": [9, 9, 9.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9, 9.25, 9.25], "texture": "#0"}, - "west": {"uv": [9, 9, 9.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9, 9.25, 9.25], "texture": "#0"}, - "down": {"uv": [9, 9.25, 9.25, 9], "texture": "#0"} + "from": [ + 9, + 0, + 9 + ], + "to": [ + 9.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.25, + 9.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_946", - "from": [9.25, 0, 9], - "to": [9.5, 0.25, 9.25], - "faces": { - "north": {"uv": [9.5, 9, 9.25, 9.25], "texture": "#0"}, - "east": {"uv": [9.25, 9, 9.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9, 9.5, 9.25], "texture": "#0"}, - "west": {"uv": [9.25, 9, 9.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9, 9.5, 9.25], "texture": "#0"}, - "down": {"uv": [9.25, 9.25, 9.5, 9], "texture": "#0"} + "from": [ + 9.25, + 0, + 9 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_947", - "from": [9.5, 0, 9], - "to": [9.75, 0.25, 9.25], - "faces": { - "north": {"uv": [9.75, 9, 9.5, 9.25], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#0"}, - "west": {"uv": [9.5, 9, 9.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#0"}, - "down": {"uv": [9.5, 9.25, 9.75, 9], "texture": "#0"} + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 9.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_948", - "from": [9.75, 0, 9], - "to": [10, 0.25, 9.25], - "faces": { - "north": {"uv": [10, 9, 9.75, 9.25], "texture": "#0"}, - "east": {"uv": [9.75, 9, 10, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9, 10, 9.25], "texture": "#0"}, - "west": {"uv": [9.75, 9, 10, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9, 10, 9.25], "texture": "#0"}, - "down": {"uv": [9.75, 9.25, 10, 9], "texture": "#0"} + "from": [ + 9.75, + 0, + 9 + ], + "to": [ + 10, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_949", - "from": [10, 0, 9], - "to": [10.25, 0.25, 9.25], - "faces": { - "north": {"uv": [10.25, 9, 10, 9.25], "texture": "#0"}, - "east": {"uv": [10, 9, 10.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9, 10.25, 9.25], "texture": "#0"}, - "west": {"uv": [10, 9, 10.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9, 10.25, 9.25], "texture": "#0"}, - "down": {"uv": [10, 9.25, 10.25, 9], "texture": "#0"} + "from": [ + 10, + 0, + 9 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 9, + 10, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.25, + 10.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_950", - "from": [10.25, 0, 9], - "to": [10.5, 0.25, 9.25], - "faces": { - "north": {"uv": [10.5, 9, 10.25, 9.25], "texture": "#0"}, - "east": {"uv": [10.25, 9, 10.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9, 10.5, 9.25], "texture": "#0"}, - "west": {"uv": [10.25, 9, 10.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 9, 10.5, 9.25], "texture": "#0"}, - "down": {"uv": [10.25, 9.25, 10.5, 9], "texture": "#0"} + "from": [ + 10.25, + 0, + 9 + ], + "to": [ + 10.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9, + 10.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9, + 10.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 9, + 10.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9, + 10.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_951", - "from": [10.5, 0, 9], - "to": [10.75, 0.25, 9.25], - "faces": { - "north": {"uv": [10.75, 9, 10.5, 9.25], "texture": "#0"}, - "east": {"uv": [10.5, 9, 10.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9, 10.75, 9.25], "texture": "#0"}, - "west": {"uv": [10.5, 9, 10.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 9, 10.75, 9.25], "texture": "#0"}, - "down": {"uv": [10.5, 9.25, 10.75, 9], "texture": "#0"} + "from": [ + 10.5, + 0, + 9 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 9, + 10.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_952", - "from": [10.75, 0, 9], - "to": [11, 0.25, 9.25], - "faces": { - "north": {"uv": [11, 9, 10.75, 9.25], "texture": "#0"}, - "east": {"uv": [10.75, 9, 11, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9, 11, 9.25], "texture": "#0"}, - "west": {"uv": [10.75, 9, 11, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9, 11, 9.25], "texture": "#0"}, - "down": {"uv": [10.75, 9.25, 11, 9], "texture": "#0"} + "from": [ + 10.75, + 0, + 9 + ], + "to": [ + 11, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 11, + 9, + 10.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_953", - "from": [11, 0, 9], - "to": [11.25, 0.25, 9.25], - "faces": { - "north": {"uv": [11.25, 9, 11, 9.25], "texture": "#0"}, - "east": {"uv": [11, 9, 11.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9, 11.25, 9.25], "texture": "#0"}, - "west": {"uv": [11, 9, 11.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9, 11.25, 9.25], "texture": "#0"}, - "down": {"uv": [11, 9.25, 11.25, 9], "texture": "#0"} + "from": [ + 11, + 0, + 9 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.25, + 11.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_954", - "from": [11.25, 0, 9], - "to": [11.5, 0.25, 9.25], - "faces": { - "north": {"uv": [11.5, 9, 11.25, 9.25], "texture": "#0"}, - "east": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "west": {"uv": [11.25, 9, 11.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9, 11.5, 9.25], "texture": "#0"}, - "down": {"uv": [11.25, 9.25, 11.5, 9], "texture": "#0"} + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_955", - "from": [11.5, 0, 9], - "to": [11.75, 0.25, 9.25], - "faces": { - "north": {"uv": [11.75, 9, 11.5, 9.25], "texture": "#0"}, - "east": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#0"}, - "west": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#0"}, - "down": {"uv": [11.5, 9.25, 11.75, 9], "texture": "#0"} + "from": [ + 11.5, + 0, + 9 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_956", - "from": [11.75, 0, 9], - "to": [12, 0.25, 9.25], - "faces": { - "north": {"uv": [12, 9, 11.75, 9.25], "texture": "#0"}, - "east": {"uv": [11.75, 9, 12, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9, 12, 9.25], "texture": "#0"}, - "west": {"uv": [11.75, 9, 12, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9, 12, 9.25], "texture": "#0"}, - "down": {"uv": [11.75, 9.25, 12, 9], "texture": "#0"} + "from": [ + 11.75, + 0, + 9 + ], + "to": [ + 12, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 12, + 9, + 11.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_957", - "from": [14, 0, 9], - "to": [14.25, 0.25, 9.25], - "faces": { - "north": {"uv": [14.25, 9, 14, 9.25], "texture": "#0"}, - "east": {"uv": [14, 9, 14.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9, 14.25, 9.25], "texture": "#0"}, - "west": {"uv": [14, 9, 14.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 9, 14.25, 9.25], "texture": "#0"}, - "down": {"uv": [14, 9.25, 14.25, 9], "texture": "#0"} + "from": [ + 14, + 0, + 9 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 14.25, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_958", - "from": [14.25, 0, 9], - "to": [14.5, 0.25, 9.25], - "faces": { - "north": {"uv": [14.5, 9, 14.25, 9.25], "texture": "#0"}, - "east": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#0"}, - "west": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#0"}, - "down": {"uv": [14.25, 9.25, 14.5, 9], "texture": "#0"} + "from": [ + 14.25, + 0, + 9 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 14.5, + 9, + 14.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_959", - "from": [14.5, 0, 9], - "to": [14.75, 0.25, 9.25], - "faces": { - "north": {"uv": [14.75, 9, 14.5, 9.25], "texture": "#0"}, - "east": {"uv": [14.5, 9, 14.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9, 14.75, 9.25], "texture": "#0"}, - "west": {"uv": [14.5, 9, 14.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 9, 14.75, 9.25], "texture": "#0"}, - "down": {"uv": [14.5, 9.25, 14.75, 9], "texture": "#0"} + "from": [ + 14.5, + 0, + 9 + ], + "to": [ + 14.75, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 9, + 14.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_960", - "from": [14.75, 0, 9], - "to": [15, 0.25, 9.25], - "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#0"}, - "east": {"uv": [14.75, 9, 15, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#0"}, - "west": {"uv": [14.75, 9, 15, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9, 15, 9.25], "texture": "#0"}, - "down": {"uv": [14.75, 9.25, 15, 9], "texture": "#0"} + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_961", - "from": [15, 0, 9], - "to": [15.25, 0.25, 9.25], - "faces": { - "north": {"uv": [15.25, 9, 15, 9.25], "texture": "#0"}, - "east": {"uv": [15, 9, 15.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9, 15.25, 9.25], "texture": "#0"}, - "west": {"uv": [15, 9, 15.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 9, 15.25, 9.25], "texture": "#0"}, - "down": {"uv": [15, 9.25, 15.25, 9], "texture": "#0"} + "from": [ + 15, + 0, + 9 + ], + "to": [ + 15.25, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 9, + 15, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.25, + 15.25, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_962", - "from": [15.25, 0, 9], - "to": [15.5, 0.25, 9.25], - "faces": { - "north": {"uv": [15.5, 9, 15.25, 9.25], "texture": "#0"}, - "east": {"uv": [15.25, 9, 15.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#0"}, - "west": {"uv": [15.25, 9, 15.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#0"}, - "down": {"uv": [15.25, 9.25, 15.5, 9], "texture": "#0"} + "from": [ + 15.25, + 0, + 9 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], + "faces": { + "north": { + "uv": [ + 15.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_963", - "from": [1.25, 0, 9.25], - "to": [1.5, 0.25, 9.5], - "faces": { - "north": {"uv": [1.5, 9.25, 1.25, 9.5], "texture": "#0"}, - "east": {"uv": [1.25, 9.25, 1.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#0"}, - "west": {"uv": [1.25, 9.25, 1.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#0"}, - "down": {"uv": [1.25, 9.5, 1.5, 9.25], "texture": "#0"} + "from": [ + 1.25, + 0, + 9.25 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 9.25, + 1.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_964", - "from": [1.5, 0, 9.25], - "to": [1.75, 0.25, 9.5], - "faces": { - "north": {"uv": [1.75, 9.25, 1.5, 9.5], "texture": "#0"}, - "east": {"uv": [1.5, 9.25, 1.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9.25, 1.75, 9.5], "texture": "#0"}, - "west": {"uv": [1.5, 9.25, 1.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 9.25, 1.75, 9.5], "texture": "#0"}, - "down": {"uv": [1.5, 9.5, 1.75, 9.25], "texture": "#0"} + "from": [ + 1.5, + 0, + 9.25 + ], + "to": [ + 1.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 9.25, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_965", - "from": [1.75, 0, 9.25], - "to": [2, 0.25, 9.5], - "faces": { - "north": {"uv": [2, 9.25, 1.75, 9.5], "texture": "#0"}, - "east": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#0"}, - "west": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#0"}, - "down": {"uv": [1.75, 9.5, 2, 9.25], "texture": "#0"} + "from": [ + 1.75, + 0, + 9.25 + ], + "to": [ + 2, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 2, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_966", - "from": [2, 0, 9.25], - "to": [2.25, 0.25, 9.5], - "faces": { - "north": {"uv": [2.25, 9.25, 2, 9.5], "texture": "#0"}, - "east": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.25, 2.25, 9.5], "texture": "#0"}, - "west": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9.25, 2.25, 9.5], "texture": "#0"}, - "down": {"uv": [2, 9.5, 2.25, 9.25], "texture": "#0"} + "from": [ + 2, + 0, + 9.25 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 9.25, + 2, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_967", - "from": [2.25, 0, 9.25], - "to": [2.5, 0.25, 9.5], - "faces": { - "north": {"uv": [2.5, 9.25, 2.25, 9.5], "texture": "#0"}, - "east": {"uv": [2.25, 9.25, 2.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.25, 2.5, 9.5], "texture": "#0"}, - "west": {"uv": [2.25, 9.25, 2.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.25, 2.5, 9.5], "texture": "#0"}, - "down": {"uv": [2.25, 9.5, 2.5, 9.25], "texture": "#0"} + "from": [ + 2.25, + 0, + 9.25 + ], + "to": [ + 2.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_968", - "from": [2.5, 0, 9.25], - "to": [2.75, 0.25, 9.5], - "faces": { - "north": {"uv": [2.75, 9.25, 2.5, 9.5], "texture": "#0"}, - "east": {"uv": [2.5, 9.25, 2.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.25, 2.75, 9.5], "texture": "#0"}, - "west": {"uv": [2.5, 9.25, 2.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9.25, 2.75, 9.5], "texture": "#0"}, - "down": {"uv": [2.5, 9.5, 2.75, 9.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 9.25 + ], + "to": [ + 2.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 9.25, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.25, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_969", - "from": [2.75, 0, 9.25], - "to": [3, 0.25, 9.5], - "faces": { - "north": {"uv": [3, 9.25, 2.75, 9.5], "texture": "#0"}, - "east": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#0"}, - "west": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#0"}, - "down": {"uv": [2.75, 9.5, 3, 9.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 9.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 9.25, + 2.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 3, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_970", - "from": [3, 0, 9.25], - "to": [3.25, 0.25, 9.5], - "faces": { - "north": {"uv": [3.25, 9.25, 3, 9.5], "texture": "#0"}, - "east": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.25, 3.25, 9.5], "texture": "#0"}, - "west": {"uv": [3, 9.25, 3.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9.25, 3.25, 9.5], "texture": "#0"}, - "down": {"uv": [3, 9.5, 3.25, 9.25], "texture": "#0"} + "from": [ + 3, + 0, + 9.25 + ], + "to": [ + 3.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.25, + 3.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.5, + 3.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_971", - "from": [3.25, 0, 9.25], - "to": [3.5, 0.25, 9.5], - "faces": { - "north": {"uv": [3.5, 9.25, 3.25, 9.5], "texture": "#0"}, - "east": {"uv": [3.25, 9.25, 3.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9.25, 3.5, 9.5], "texture": "#0"}, - "west": {"uv": [3.25, 9.25, 3.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 9.25, 3.5, 9.5], "texture": "#0"}, - "down": {"uv": [3.25, 9.5, 3.5, 9.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 9.25 + ], + "to": [ + 3.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 9.25, + 3.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_972", - "from": [3.5, 0, 9.25], - "to": [3.75, 0.25, 9.5], - "faces": { - "north": {"uv": [3.75, 9.25, 3.5, 9.5], "texture": "#0"}, - "east": {"uv": [3.5, 9.25, 3.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.25, 3.75, 9.5], "texture": "#0"}, - "west": {"uv": [3.5, 9.25, 3.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.25, 3.75, 9.5], "texture": "#0"}, - "down": {"uv": [3.5, 9.5, 3.75, 9.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 9.25 + ], + "to": [ + 3.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_973", - "from": [3.75, 0, 9.25], - "to": [4, 0.25, 9.5], - "faces": { - "north": {"uv": [4, 9.25, 3.75, 9.5], "texture": "#0"}, - "east": {"uv": [3.75, 9.25, 4, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.25, 4, 9.5], "texture": "#0"}, - "west": {"uv": [3.75, 9.25, 4, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.25, 4, 9.5], "texture": "#0"}, - "down": {"uv": [3.75, 9.5, 4, 9.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 9.25 + ], + "to": [ + 4, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 9.25, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.5, + 4, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_974", - "from": [4, 0, 9.25], - "to": [4.25, 0.25, 9.5], - "faces": { - "north": {"uv": [4.25, 9.25, 4, 9.5], "texture": "#0"}, - "east": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.25, 4.25, 9.5], "texture": "#0"}, - "west": {"uv": [4, 9.25, 4.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.25, 4.25, 9.5], "texture": "#0"}, - "down": {"uv": [4, 9.5, 4.25, 9.25], "texture": "#0"} + "from": [ + 4, + 0, + 9.25 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 9.25, + 4, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.5, + 4.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_975", - "from": [4.25, 0, 9.25], - "to": [4.5, 0.25, 9.5], - "faces": { - "north": {"uv": [4.5, 9.25, 4.25, 9.5], "texture": "#0"}, - "east": {"uv": [4.25, 9.25, 4.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.25, 4.5, 9.5], "texture": "#0"}, - "west": {"uv": [4.25, 9.25, 4.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.25, 4.5, 9.5], "texture": "#0"}, - "down": {"uv": [4.25, 9.5, 4.5, 9.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 9.25 + ], + "to": [ + 4.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_976", - "from": [4.5, 0, 9.25], - "to": [4.75, 0.25, 9.5], - "faces": { - "north": {"uv": [4.75, 9.25, 4.5, 9.5], "texture": "#0"}, - "east": {"uv": [4.5, 9.25, 4.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.25, 4.75, 9.5], "texture": "#0"}, - "west": {"uv": [4.5, 9.25, 4.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9.25, 4.75, 9.5], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 4.75, 9.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 9.25 + ], + "to": [ + 4.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 4.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_977", - "from": [4.75, 0, 9.25], - "to": [5, 0.25, 9.5], - "faces": { - "north": {"uv": [5, 9.25, 4.75, 9.5], "texture": "#0"}, - "east": {"uv": [4.75, 9.25, 5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.25, 5, 9.5], "texture": "#0"}, - "west": {"uv": [4.75, 9.25, 5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9.25, 5, 9.5], "texture": "#0"}, - "down": {"uv": [4.75, 9.5, 5, 9.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 9.25 + ], + "to": [ + 5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 9.25, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.5, + 5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_978", - "from": [5, 0, 9.25], - "to": [5.25, 0.25, 9.5], - "faces": { - "north": {"uv": [5.25, 9.25, 5, 9.5], "texture": "#0"}, - "east": {"uv": [5, 9.25, 5.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#0"}, - "west": {"uv": [5, 9.25, 5.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#0"}, - "down": {"uv": [5, 9.5, 5.25, 9.25], "texture": "#0"} + "from": [ + 5, + 0, + 9.25 + ], + "to": [ + 5.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 9.25, + 5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 5.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_979", - "from": [5.25, 0, 9.25], - "to": [5.5, 0.25, 9.5], - "faces": { - "north": {"uv": [5.5, 9.25, 5.25, 9.5], "texture": "#0"}, - "east": {"uv": [5.25, 9.25, 5.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9.25, 5.5, 9.5], "texture": "#0"}, - "west": {"uv": [5.25, 9.25, 5.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.25, 5.5, 9.5], "texture": "#0"}, - "down": {"uv": [5.25, 9.5, 5.5, 9.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 9.25 + ], + "to": [ + 5.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_980", - "from": [5.5, 0, 9.25], - "to": [5.75, 0.25, 9.5], - "faces": { - "north": {"uv": [5.75, 9.25, 5.5, 9.5], "texture": "#0"}, - "east": {"uv": [5.5, 9.25, 5.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.25, 5.75, 9.5], "texture": "#0"}, - "west": {"uv": [5.5, 9.25, 5.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 9.25, 5.75, 9.5], "texture": "#0"}, - "down": {"uv": [5.5, 9.5, 5.75, 9.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 9.25 + ], + "to": [ + 5.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 9.25, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_981", - "from": [5.75, 0, 9.25], - "to": [6, 0.25, 9.5], - "faces": { - "north": {"uv": [6, 9.25, 5.75, 9.5], "texture": "#0"}, - "east": {"uv": [5.75, 9.25, 6, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9.25, 6, 9.5], "texture": "#0"}, - "west": {"uv": [5.75, 9.25, 6, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9.25, 6, 9.5], "texture": "#0"}, - "down": {"uv": [5.75, 9.5, 6, 9.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 9.25 + ], + "to": [ + 6, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 9.25, + 5.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.5, + 6, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_982", - "from": [6, 0, 9.25], - "to": [6.25, 0.25, 9.5], - "faces": { - "north": {"uv": [6.25, 9.25, 6, 9.5], "texture": "#0"}, - "east": {"uv": [6, 9.25, 6.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.25, 6.25, 9.5], "texture": "#0"}, - "west": {"uv": [6, 9.25, 6.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9.25, 6.25, 9.5], "texture": "#0"}, - "down": {"uv": [6, 9.5, 6.25, 9.25], "texture": "#0"} + "from": [ + 6, + 0, + 9.25 + ], + "to": [ + 6.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.25, + 6.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.25, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.25, + 6.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9.25, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.5, + 6.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_983", - "from": [6.25, 0, 9.25], - "to": [6.5, 0.25, 9.5], - "faces": { - "north": {"uv": [6.5, 9.25, 6.25, 9.5], "texture": "#0"}, - "east": {"uv": [6.25, 9.25, 6.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 9.25, 6.5, 9.5], "texture": "#0"}, - "west": {"uv": [6.25, 9.25, 6.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 9.25, 6.5, 9.5], "texture": "#0"}, - "down": {"uv": [6.25, 9.5, 6.5, 9.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 9.25 + ], + "to": [ + 6.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 9.25, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_984", - "from": [6.5, 0, 9.25], - "to": [6.75, 0.25, 9.5], - "faces": { - "north": {"uv": [6.75, 9.25, 6.5, 9.5], "texture": "#0"}, - "east": {"uv": [6.5, 9.25, 6.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.25, 6.75, 9.5], "texture": "#0"}, - "west": {"uv": [6.5, 9.25, 6.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 9.25, 6.75, 9.5], "texture": "#0"}, - "down": {"uv": [6.5, 9.5, 6.75, 9.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 9.25 + ], + "to": [ + 6.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 9.25, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 9.25, + 6.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_985", - "from": [6.75, 0, 9.25], - "to": [7, 0.25, 9.5], - "faces": { - "north": {"uv": [7, 9.25, 6.75, 9.5], "texture": "#0"}, - "east": {"uv": [6.75, 9.25, 7, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.25, 7, 9.5], "texture": "#0"}, - "west": {"uv": [6.75, 9.25, 7, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 9.25, 7, 9.5], "texture": "#0"}, - "down": {"uv": [6.75, 9.5, 7, 9.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 9.25 + ], + "to": [ + 7, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 9.25, + 6.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 9.25, + 7, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.25, + 7, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 9.25, + 7, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.25, + 7, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.5, + 7, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_986", - "from": [7, 0, 9.25], - "to": [7.25, 0.25, 9.5], - "faces": { - "north": {"uv": [7.25, 9.25, 7, 9.5], "texture": "#0"}, - "east": {"uv": [7, 9.25, 7.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.25, 7.25, 9.5], "texture": "#0"}, - "west": {"uv": [7, 9.25, 7.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 9.25, 7.25, 9.5], "texture": "#0"}, - "down": {"uv": [7, 9.5, 7.25, 9.25], "texture": "#0"} + "from": [ + 7, + 0, + 9.25 + ], + "to": [ + 7.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 9.25, + 7, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.5, + 7.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_987", - "from": [7.25, 0, 9.25], - "to": [7.5, 0.25, 9.5], - "faces": { - "north": {"uv": [7.5, 9.25, 7.25, 9.5], "texture": "#0"}, - "east": {"uv": [7.25, 9.25, 7.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.25, 7.5, 9.5], "texture": "#0"}, - "west": {"uv": [7.25, 9.25, 7.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9.25, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [7.25, 9.5, 7.5, 9.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 9.25 + ], + "to": [ + 7.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9.25, + 7.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9.25, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_988", - "from": [7.5, 0, 9.25], - "to": [7.75, 0.25, 9.5], - "faces": { - "north": {"uv": [7.75, 9.25, 7.5, 9.5], "texture": "#0"}, - "east": {"uv": [7.5, 9.25, 7.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.25, 7.75, 9.5], "texture": "#0"}, - "west": {"uv": [7.5, 9.25, 7.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9.25, 7.75, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.75, 9.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 9.25 + ], + "to": [ + 7.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 9.25, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_989", - "from": [7.75, 0, 9.25], - "to": [8, 0.25, 9.5], - "faces": { - "north": {"uv": [8, 9.25, 7.75, 9.5], "texture": "#0"}, - "east": {"uv": [7.75, 9.25, 8, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.25, 8, 9.5], "texture": "#0"}, - "west": {"uv": [7.75, 9.25, 8, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.25, 8, 9.5], "texture": "#0"}, - "down": {"uv": [7.75, 9.5, 8, 9.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 9.25 + ], + "to": [ + 8, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 9.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.25, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.5, + 8, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_990", - "from": [8, 0, 9.25], - "to": [8.25, 0.25, 9.5], - "faces": { - "north": {"uv": [8.25, 9.25, 8, 9.5], "texture": "#0"}, - "east": {"uv": [8, 9.25, 8.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#0"}, - "west": {"uv": [8, 9.25, 8.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 8.25, 9.25], "texture": "#0"} + "from": [ + 8, + 0, + 9.25 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 9.25, + 8, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_991", - "from": [8.25, 0, 9.25], - "to": [8.5, 0.25, 9.5], - "faces": { - "north": {"uv": [8.5, 9.25, 8.25, 9.5], "texture": "#0"}, - "east": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#0"}, - "west": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#0"}, - "down": {"uv": [8.25, 9.5, 8.5, 9.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 9.25 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_992", - "from": [8.5, 0, 9.25], - "to": [8.75, 0.25, 9.5], - "faces": { - "north": {"uv": [8.75, 9.25, 8.5, 9.5], "texture": "#0"}, - "east": {"uv": [8.5, 9.25, 8.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.25, 8.75, 9.5], "texture": "#0"}, - "west": {"uv": [8.5, 9.25, 8.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 9.25, 8.75, 9.5], "texture": "#0"}, - "down": {"uv": [8.5, 9.5, 8.75, 9.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 9.25 + ], + "to": [ + 8.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_993", - "from": [8.75, 0, 9.25], - "to": [9, 0.25, 9.5], - "faces": { - "north": {"uv": [9, 9.25, 8.75, 9.5], "texture": "#0"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#0"}, - "west": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#0"}, - "down": {"uv": [8.75, 9.5, 9, 9.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.5, + 9, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_994", - "from": [9, 0, 9.25], - "to": [9.25, 0.25, 9.5], - "faces": { - "north": {"uv": [9.25, 9.25, 9, 9.5], "texture": "#0"}, - "east": {"uv": [9, 9.25, 9.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.25, 9.25, 9.5], "texture": "#0"}, - "west": {"uv": [9, 9.25, 9.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.25, 9.25, 9.5], "texture": "#0"}, - "down": {"uv": [9, 9.5, 9.25, 9.25], "texture": "#0"} + "from": [ + 9, + 0, + 9.25 + ], + "to": [ + 9.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 9.25, + 9, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.25, + 9.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.25, + 9.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.25, + 9.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.25, + 9.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.5, + 9.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_995", - "from": [9.25, 0, 9.25], - "to": [9.5, 0.25, 9.5], - "faces": { - "north": {"uv": [9.5, 9.25, 9.25, 9.5], "texture": "#0"}, - "east": {"uv": [9.25, 9.25, 9.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.25, 9.5, 9.5], "texture": "#0"}, - "west": {"uv": [9.25, 9.25, 9.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9.25, 9.5, 9.5], "texture": "#0"}, - "down": {"uv": [9.25, 9.5, 9.5, 9.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 9.25 + ], + "to": [ + 9.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 9.25, + 9.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_996", - "from": [9.5, 0, 9.25], - "to": [9.75, 0.25, 9.5], - "faces": { - "north": {"uv": [9.75, 9.25, 9.5, 9.5], "texture": "#0"}, - "east": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 9.75, 9.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 9.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_997", - "from": [9.75, 0, 9.25], - "to": [10, 0.25, 9.5], - "faces": { - "north": {"uv": [10, 9.25, 9.75, 9.5], "texture": "#0"}, - "east": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.25, 10, 9.5], "texture": "#0"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.25, 10, 9.5], "texture": "#0"}, - "down": {"uv": [9.75, 9.5, 10, 9.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_998", - "from": [10, 0, 9.25], - "to": [10.25, 0.25, 9.5], - "faces": { - "north": {"uv": [10.25, 9.25, 10, 9.5], "texture": "#0"}, - "east": {"uv": [10, 9.25, 10.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.25, 10.25, 9.5], "texture": "#0"}, - "west": {"uv": [10, 9.25, 10.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.25, 10.25, 9.5], "texture": "#0"}, - "down": {"uv": [10, 9.5, 10.25, 9.25], "texture": "#0"} + "from": [ + 10, + 0, + 9.25 + ], + "to": [ + 10.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 9.25, + 10, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 10.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_999", - "from": [10.25, 0, 9.25], - "to": [10.5, 0.25, 9.5], - "faces": { - "north": {"uv": [10.5, 9.25, 10.25, 9.5], "texture": "#0"}, - "east": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "west": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "down": {"uv": [10.25, 9.5, 10.5, 9.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 9.25 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1000", - "from": [10.5, 0, 9.25], - "to": [10.75, 0.25, 9.5], - "faces": { - "north": {"uv": [10.75, 9.25, 10.5, 9.5], "texture": "#0"}, - "east": {"uv": [10.5, 9.25, 10.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9.25, 10.75, 9.5], "texture": "#0"}, - "west": {"uv": [10.5, 9.25, 10.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 9.25, 10.75, 9.5], "texture": "#0"}, - "down": {"uv": [10.5, 9.5, 10.75, 9.25], "texture": "#0"} + "from": [ + 10.5, + 0, + 9.25 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1001", - "from": [10.75, 0, 9.25], - "to": [11, 0.25, 9.5], - "faces": { - "north": {"uv": [11, 9.25, 10.75, 9.5], "texture": "#0"}, - "east": {"uv": [10.75, 9.25, 11, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "west": {"uv": [10.75, 9.25, 11, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.25, 11, 9.5], "texture": "#0"}, - "down": {"uv": [10.75, 9.5, 11, 9.25], "texture": "#0"} + "from": [ + 10.75, + 0, + 9.25 + ], + "to": [ + 11, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 11, + 9.25, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1002", - "from": [11, 0, 9.25], - "to": [11.25, 0.25, 9.5], - "faces": { - "north": {"uv": [11.25, 9.25, 11, 9.5], "texture": "#0"}, - "east": {"uv": [11, 9.25, 11.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.25, 11.25, 9.5], "texture": "#0"}, - "west": {"uv": [11, 9.25, 11.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9.25, 11.25, 9.5], "texture": "#0"}, - "down": {"uv": [11, 9.5, 11.25, 9.25], "texture": "#0"} + "from": [ + 11, + 0, + 9.25 + ], + "to": [ + 11.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 9.25, + 11, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.5, + 11.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1003", - "from": [11.25, 0, 9.25], - "to": [11.5, 0.25, 9.5], - "faces": { - "north": {"uv": [11.5, 9.25, 11.25, 9.5], "texture": "#0"}, - "east": {"uv": [11.25, 9.25, 11.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9.25, 11.5, 9.5], "texture": "#0"}, - "west": {"uv": [11.25, 9.25, 11.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9.25, 11.5, 9.5], "texture": "#0"}, - "down": {"uv": [11.25, 9.5, 11.5, 9.25], "texture": "#0"} + "from": [ + 11.25, + 0, + 9.25 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 9.25, + 11.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1004", - "from": [11.5, 0, 9.25], - "to": [11.75, 0.25, 9.5], - "faces": { - "north": {"uv": [11.75, 9.25, 11.5, 9.5], "texture": "#0"}, - "east": {"uv": [11.5, 9.25, 11.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 9.25, 11.75, 9.5], "texture": "#0"}, - "west": {"uv": [11.5, 9.25, 11.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9.25, 11.75, 9.5], "texture": "#0"}, - "down": {"uv": [11.5, 9.5, 11.75, 9.25], "texture": "#0"} + "from": [ + 11.5, + 0, + 9.25 + ], + "to": [ + 11.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 11.75, + 9.25, + 11.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 11.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1005", - "from": [14.5, 0, 9.25], - "to": [14.75, 0.25, 9.5], - "faces": { - "north": {"uv": [14.75, 9.25, 14.5, 9.5], "texture": "#0"}, - "east": {"uv": [14.5, 9.25, 14.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#0"}, - "west": {"uv": [14.5, 9.25, 14.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#0"}, - "down": {"uv": [14.5, 9.5, 14.75, 9.25], "texture": "#0"} + "from": [ + 14.5, + 0, + 9.25 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 14.75, + 9.25, + 14.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1006", - "from": [14.75, 0, 9.25], - "to": [15, 0.25, 9.5], - "faces": { - "north": {"uv": [15, 9.25, 14.75, 9.5], "texture": "#0"}, - "east": {"uv": [14.75, 9.25, 15, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#0"}, - "west": {"uv": [14.75, 9.25, 15, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#0"}, - "down": {"uv": [14.75, 9.5, 15, 9.25], "texture": "#0"} + "from": [ + 14.75, + 0, + 9.25 + ], + "to": [ + 15, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 15, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.5, + 15, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1007", - "from": [15, 0, 9.25], - "to": [15.25, 0.25, 9.5], - "faces": { - "north": {"uv": [15.25, 9.25, 15, 9.5], "texture": "#0"}, - "east": {"uv": [15, 9.25, 15.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#0"}, - "west": {"uv": [15, 9.25, 15.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#0"}, - "down": {"uv": [15, 9.5, 15.25, 9.25], "texture": "#0"} + "from": [ + 15, + 0, + 9.25 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], + "faces": { + "north": { + "uv": [ + 15.25, + 9.25, + 15, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1008", - "from": [1.5, 0, 9.5], - "to": [1.75, 0.25, 9.75], - "faces": { - "north": {"uv": [1.75, 9.5, 1.5, 9.75], "texture": "#0"}, - "east": {"uv": [1.5, 9.5, 1.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#0"}, - "west": {"uv": [1.5, 9.5, 1.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#0"}, - "down": {"uv": [1.5, 9.75, 1.75, 9.5], "texture": "#0"} + "from": [ + 1.5, + 0, + 9.5 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 1.75, + 9.5, + 1.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1009", - "from": [1.75, 0, 9.5], - "to": [2, 0.25, 9.75], - "faces": { - "north": {"uv": [2, 9.5, 1.75, 9.75], "texture": "#0"}, - "east": {"uv": [1.75, 9.5, 2, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.5, 2, 9.75], "texture": "#0"}, - "west": {"uv": [1.75, 9.5, 2, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.5, 2, 9.75], "texture": "#0"}, - "down": {"uv": [1.75, 9.75, 2, 9.5], "texture": "#0"} + "from": [ + 1.75, + 0, + 9.5 + ], + "to": [ + 2, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 2, + 9.5, + 1.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 2, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1010", - "from": [2, 0, 9.5], - "to": [2.25, 0.25, 9.75], - "faces": { - "north": {"uv": [2.25, 9.5, 2, 9.75], "texture": "#0"}, - "east": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.5, 2.25, 9.75], "texture": "#0"}, - "west": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9.5, 2.25, 9.75], "texture": "#0"}, - "down": {"uv": [2, 9.75, 2.25, 9.5], "texture": "#0"} + "from": [ + 2, + 0, + 9.5 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 9.5, + 2, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.75, + 2.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1011", - "from": [2.25, 0, 9.5], - "to": [2.5, 0.25, 9.75], - "faces": { - "north": {"uv": [2.5, 9.5, 2.25, 9.75], "texture": "#0"}, - "east": {"uv": [2.25, 9.5, 2.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.5, 2.5, 9.75], "texture": "#0"}, - "west": {"uv": [2.25, 9.5, 2.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.5, 2.5, 9.75], "texture": "#0"}, - "down": {"uv": [2.25, 9.75, 2.5, 9.5], "texture": "#0"} + "from": [ + 2.25, + 0, + 9.5 + ], + "to": [ + 2.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 2.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 2.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1012", - "from": [2.5, 0, 9.5], - "to": [2.75, 0.25, 9.75], - "faces": { - "north": {"uv": [2.75, 9.5, 2.5, 9.75], "texture": "#0"}, - "east": {"uv": [2.5, 9.5, 2.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.5, 2.75, 9.75], "texture": "#0"}, - "west": {"uv": [2.5, 9.5, 2.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9.5, 2.75, 9.75], "texture": "#0"}, - "down": {"uv": [2.5, 9.75, 2.75, 9.5], "texture": "#0"} + "from": [ + 2.5, + 0, + 9.5 + ], + "to": [ + 2.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.75, + 2.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1013", - "from": [2.75, 0, 9.5], - "to": [3, 0.25, 9.75], - "faces": { - "north": {"uv": [3, 9.5, 2.75, 9.75], "texture": "#0"}, - "east": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.5, 3, 9.75], "texture": "#0"}, - "west": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 9.5, 3, 9.75], "texture": "#0"}, - "down": {"uv": [2.75, 9.75, 3, 9.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 9.5 + ], + "to": [ + 3, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 9.5, + 2.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.75, + 3, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1014", - "from": [3, 0, 9.5], - "to": [3.25, 0.25, 9.75], - "faces": { - "north": {"uv": [3.25, 9.5, 3, 9.75], "texture": "#0"}, - "east": {"uv": [3, 9.5, 3.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.5, 3.25, 9.75], "texture": "#0"}, - "west": {"uv": [3, 9.5, 3.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9.5, 3.25, 9.75], "texture": "#0"}, - "down": {"uv": [3, 9.75, 3.25, 9.5], "texture": "#0"} + "from": [ + 3, + 0, + 9.5 + ], + "to": [ + 3.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.5, + 3.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9.5, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.5, + 3.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1015", - "from": [3.25, 0, 9.5], - "to": [3.5, 0.25, 9.75], - "faces": { - "north": {"uv": [3.5, 9.5, 3.25, 9.75], "texture": "#0"}, - "east": {"uv": [3.25, 9.5, 3.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9.5, 3.5, 9.75], "texture": "#0"}, - "west": {"uv": [3.25, 9.5, 3.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 9.5, 3.5, 9.75], "texture": "#0"}, - "down": {"uv": [3.25, 9.75, 3.5, 9.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 9.5 + ], + "to": [ + 3.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 9.5, + 3.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.75, + 3.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1016", - "from": [3.5, 0, 9.5], - "to": [3.75, 0.25, 9.75], - "faces": { - "north": {"uv": [3.75, 9.5, 3.5, 9.75], "texture": "#0"}, - "east": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#0"}, - "west": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#0"}, - "down": {"uv": [3.5, 9.75, 3.75, 9.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 9.5 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 3.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1017", - "from": [3.75, 0, 9.5], - "to": [4, 0.25, 9.75], - "faces": { - "north": {"uv": [4, 9.5, 3.75, 9.75], "texture": "#0"}, - "east": {"uv": [3.75, 9.5, 4, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.5, 4, 9.75], "texture": "#0"}, - "west": {"uv": [3.75, 9.5, 4, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.5, 4, 9.75], "texture": "#0"}, - "down": {"uv": [3.75, 9.75, 4, 9.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 9.5 + ], + "to": [ + 4, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 9.5, + 3.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 4, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1018", - "from": [4, 0, 9.5], - "to": [4.25, 0.25, 9.75], - "faces": { - "north": {"uv": [4.25, 9.5, 4, 9.75], "texture": "#0"}, - "east": {"uv": [4, 9.5, 4.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.5, 4.25, 9.75], "texture": "#0"}, - "west": {"uv": [4, 9.5, 4.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.5, 4.25, 9.75], "texture": "#0"}, - "down": {"uv": [4, 9.75, 4.25, 9.5], "texture": "#0"} + "from": [ + 4, + 0, + 9.5 + ], + "to": [ + 4.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9.75, + 4.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1019", - "from": [4.25, 0, 9.5], - "to": [4.5, 0.25, 9.75], - "faces": { - "north": {"uv": [4.5, 9.5, 4.25, 9.75], "texture": "#0"}, - "east": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#0"}, - "west": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#0"}, - "down": {"uv": [4.25, 9.75, 4.5, 9.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 4.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 4.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1020", - "from": [4.5, 0, 9.5], - "to": [4.75, 0.25, 9.75], - "faces": { - "north": {"uv": [4.75, 9.5, 4.5, 9.75], "texture": "#0"}, - "east": {"uv": [4.5, 9.5, 4.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.5, 4.75, 9.75], "texture": "#0"}, - "west": {"uv": [4.5, 9.5, 4.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9.5, 4.75, 9.75], "texture": "#0"}, - "down": {"uv": [4.5, 9.75, 4.75, 9.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 9.5 + ], + "to": [ + 4.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9.5, + 4.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9.5, + 4.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.75, + 4.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1021", - "from": [4.75, 0, 9.5], - "to": [5, 0.25, 9.75], - "faces": { - "north": {"uv": [5, 9.5, 4.75, 9.75], "texture": "#0"}, - "east": {"uv": [4.75, 9.5, 5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.5, 5, 9.75], "texture": "#0"}, - "west": {"uv": [4.75, 9.5, 5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9.5, 5, 9.75], "texture": "#0"}, - "down": {"uv": [4.75, 9.75, 5, 9.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 9.5 + ], + "to": [ + 5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 9.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.5, + 5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.75, + 5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1022", - "from": [5, 0, 9.5], - "to": [5.25, 0.25, 9.75], - "faces": { - "north": {"uv": [5.25, 9.5, 5, 9.75], "texture": "#0"}, - "east": {"uv": [5, 9.5, 5.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.5, 5.25, 9.75], "texture": "#0"}, - "west": {"uv": [5, 9.5, 5.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.5, 5.25, 9.75], "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 9.5], "texture": "#0"} + "from": [ + 5, + 0, + 9.5 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 9.5, + 5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.75, + 5.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1023", - "from": [5.25, 0, 9.5], - "to": [5.5, 0.25, 9.75], - "faces": { - "north": {"uv": [5.5, 9.5, 5.25, 9.75], "texture": "#0"}, - "east": {"uv": [5.25, 9.5, 5.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#0"}, - "west": {"uv": [5.25, 9.5, 5.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#0"}, - "down": {"uv": [5.25, 9.75, 5.5, 9.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 9.5 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1024", - "from": [5.5, 0, 9.5], - "to": [5.75, 0.25, 9.75], - "faces": { - "north": {"uv": [5.75, 9.5, 5.5, 9.75], "texture": "#0"}, - "east": {"uv": [5.5, 9.5, 5.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.5, 5.75, 9.75], "texture": "#0"}, - "west": {"uv": [5.5, 9.5, 5.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 9.5, 5.75, 9.75], "texture": "#0"}, - "down": {"uv": [5.5, 9.75, 5.75, 9.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 9.5, + 5.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.75, + 5.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1025", - "from": [5.75, 0, 9.5], - "to": [6, 0.25, 9.75], - "faces": { - "north": {"uv": [6, 9.5, 5.75, 9.75], "texture": "#0"}, - "east": {"uv": [5.75, 9.5, 6, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9.5, 6, 9.75], "texture": "#0"}, - "west": {"uv": [5.75, 9.5, 6, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9.5, 6, 9.75], "texture": "#0"}, - "down": {"uv": [5.75, 9.75, 6, 9.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 9.5 + ], + "to": [ + 6, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 9.5, + 5.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.75, + 6, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1026", - "from": [6, 0, 9.5], - "to": [6.25, 0.25, 9.75], - "faces": { - "north": {"uv": [6.25, 9.5, 6, 9.75], "texture": "#0"}, - "east": {"uv": [6, 9.5, 6.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.5, 6.25, 9.75], "texture": "#0"}, - "west": {"uv": [6, 9.5, 6.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9.5, 6.25, 9.75], "texture": "#0"}, - "down": {"uv": [6, 9.75, 6.25, 9.5], "texture": "#0"} + "from": [ + 6, + 0, + 9.5 + ], + "to": [ + 6.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.75, + 6.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1027", - "from": [6.25, 0, 9.5], - "to": [6.5, 0.25, 9.75], - "faces": { - "north": {"uv": [6.5, 9.5, 6.25, 9.75], "texture": "#0"}, - "east": {"uv": [6.25, 9.5, 6.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 9.5, 6.5, 9.75], "texture": "#0"}, - "west": {"uv": [6.25, 9.5, 6.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 9.5, 6.5, 9.75], "texture": "#0"}, - "down": {"uv": [6.25, 9.75, 6.5, 9.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 9.5 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 9.5, + 6.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.75, + 6.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1028", - "from": [6.5, 0, 9.5], - "to": [6.75, 0.25, 9.75], - "faces": { - "north": {"uv": [6.75, 9.5, 6.5, 9.75], "texture": "#0"}, - "east": {"uv": [6.5, 9.5, 6.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#0"}, - "west": {"uv": [6.5, 9.5, 6.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#0"}, - "down": {"uv": [6.5, 9.75, 6.75, 9.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 9.5 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 9.5, + 6.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1029", - "from": [6.75, 0, 9.5], - "to": [7, 0.25, 9.75], - "faces": { - "north": {"uv": [7, 9.5, 6.75, 9.75], "texture": "#0"}, - "east": {"uv": [6.75, 9.5, 7, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#0"}, - "west": {"uv": [6.75, 9.5, 7, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#0"}, - "down": {"uv": [6.75, 9.75, 7, 9.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 9.5 + ], + "to": [ + 7, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 9.5, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1030", - "from": [7, 0, 9.5], - "to": [7.25, 0.25, 9.75], - "faces": { - "north": {"uv": [7.25, 9.5, 7, 9.75], "texture": "#0"}, - "east": {"uv": [7, 9.5, 7.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#0"}, - "west": {"uv": [7, 9.5, 7.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#0"}, - "down": {"uv": [7, 9.75, 7.25, 9.5], "texture": "#0"} + "from": [ + 7, + 0, + 9.5 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.75, + 7.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1031", - "from": [7.25, 0, 9.5], - "to": [7.5, 0.25, 9.75], - "faces": { - "north": {"uv": [7.5, 9.5, 7.25, 9.75], "texture": "#0"}, - "east": {"uv": [7.25, 9.5, 7.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#0"}, - "west": {"uv": [7.25, 9.5, 7.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#0"}, - "down": {"uv": [7.25, 9.75, 7.5, 9.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 9.5 + ], + "to": [ + 7.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 7.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1032", - "from": [7.5, 0, 9.5], - "to": [7.75, 0.25, 9.75], - "faces": { - "north": {"uv": [7.75, 9.5, 7.5, 9.75], "texture": "#0"}, - "east": {"uv": [7.5, 9.5, 7.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.5, 7.75, 9.75], "texture": "#0"}, - "west": {"uv": [7.5, 9.5, 7.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9.5, 7.75, 9.75], "texture": "#0"}, - "down": {"uv": [7.5, 9.75, 7.75, 9.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 9.5 + ], + "to": [ + 7.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.75, + 7.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1033", - "from": [7.75, 0, 9.5], - "to": [8, 0.25, 9.75], - "faces": { - "north": {"uv": [8, 9.5, 7.75, 9.75], "texture": "#0"}, - "east": {"uv": [7.75, 9.5, 8, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.5, 8, 9.75], "texture": "#0"}, - "west": {"uv": [7.75, 9.5, 8, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.5, 8, 9.75], "texture": "#0"}, - "down": {"uv": [7.75, 9.75, 8, 9.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 9.5 + ], + "to": [ + 8, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.75, + 8, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1034", - "from": [8, 0, 9.5], - "to": [8.25, 0.25, 9.75], - "faces": { - "north": {"uv": [8.25, 9.5, 8, 9.75], "texture": "#0"}, - "east": {"uv": [8, 9.5, 8.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.5, 8.25, 9.75], "texture": "#0"}, - "west": {"uv": [8, 9.5, 8.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 9.5, 8.25, 9.75], "texture": "#0"}, - "down": {"uv": [8, 9.75, 8.25, 9.5], "texture": "#0"} + "from": [ + 8, + 0, + 9.5 + ], + "to": [ + 8.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.75, + 8.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1035", - "from": [8.25, 0, 9.5], - "to": [8.5, 0.25, 9.75], - "faces": { - "north": {"uv": [8.5, 9.5, 8.25, 9.75], "texture": "#0"}, - "east": {"uv": [8.25, 9.5, 8.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.5, 8.5, 9.75], "texture": "#0"}, - "west": {"uv": [8.25, 9.5, 8.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.5, 8.5, 9.75], "texture": "#0"}, - "down": {"uv": [8.25, 9.75, 8.5, 9.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 9.5 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1036", - "from": [8.5, 0, 9.5], - "to": [8.75, 0.25, 9.75], - "faces": { - "north": {"uv": [8.75, 9.5, 8.5, 9.75], "texture": "#0"}, - "east": {"uv": [8.5, 9.5, 8.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 8.75, 9.75], "texture": "#0"}, - "west": {"uv": [8.5, 9.5, 8.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 9.5, 8.75, 9.75], "texture": "#0"}, - "down": {"uv": [8.5, 9.75, 8.75, 9.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 9.5 + ], + "to": [ + 8.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.75, + 8.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1037", - "from": [8.75, 0, 9.5], - "to": [9, 0.25, 9.75], - "faces": { - "north": {"uv": [9, 9.5, 8.75, 9.75], "texture": "#0"}, - "east": {"uv": [8.75, 9.5, 9, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.5, 9, 9.75], "texture": "#0"}, - "west": {"uv": [8.75, 9.5, 9, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 9.5, 9, 9.75], "texture": "#0"}, - "down": {"uv": [8.75, 9.75, 9, 9.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 9.5 + ], + "to": [ + 9, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 9.5, + 9, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 9.5, + 9, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 9.75, + 9, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1038", - "from": [9, 0, 9.5], - "to": [9.25, 0.25, 9.75], - "faces": { - "north": {"uv": [9.25, 9.5, 9, 9.75], "texture": "#0"}, - "east": {"uv": [9, 9.5, 9.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#0"}, - "down": {"uv": [9, 9.75, 9.25, 9.5], "texture": "#0"} + "from": [ + 9, + 0, + 9.5 + ], + "to": [ + 9.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1039", - "from": [9.25, 0, 9.5], - "to": [9.5, 0.25, 9.75], - "faces": { - "north": {"uv": [9.5, 9.5, 9.25, 9.75], "texture": "#0"}, - "east": {"uv": [9.25, 9.5, 9.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.5, 9.5, 9.75], "texture": "#0"}, - "west": {"uv": [9.25, 9.5, 9.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9.5, 9.5, 9.75], "texture": "#0"}, - "down": {"uv": [9.25, 9.75, 9.5, 9.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 9.5 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.75, + 9.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1040", - "from": [9.5, 0, 9.5], - "to": [9.75, 0.25, 9.75], - "faces": { - "north": {"uv": [9.75, 9.5, 9.5, 9.75], "texture": "#0"}, - "east": {"uv": [9.5, 9.5, 9.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.5, 9.75, 9.75], "texture": "#0"}, - "west": {"uv": [9.5, 9.5, 9.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9.5, 9.75, 9.75], "texture": "#0"}, - "down": {"uv": [9.5, 9.75, 9.75, 9.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 9.5 + ], + "to": [ + 9.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.75, + 9.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1041", - "from": [9.75, 0, 9.5], - "to": [10, 0.25, 9.75], - "faces": { - "north": {"uv": [10, 9.5, 9.75, 9.75], "texture": "#0"}, - "east": {"uv": [9.75, 9.5, 10, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 9.5, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10, 9.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 9.5 + ], + "to": [ + 10, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1042", - "from": [10, 0, 9.5], - "to": [10.25, 0.25, 9.75], - "faces": { - "north": {"uv": [10.25, 9.5, 10, 9.75], "texture": "#0"}, - "east": {"uv": [10, 9.5, 10.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#0"}, - "west": {"uv": [10, 9.5, 10.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#0"}, - "down": {"uv": [10, 9.75, 10.25, 9.5], "texture": "#0"} + "from": [ + 10, + 0, + 9.5 + ], + "to": [ + 10.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.75, + 10.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1043", - "from": [10.25, 0, 9.5], - "to": [10.5, 0.25, 9.75], - "faces": { - "north": {"uv": [10.5, 9.5, 10.25, 9.75], "texture": "#0"}, - "east": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.5, 10.5, 9.75], "texture": "#0"}, - "west": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 9.5, 10.5, 9.75], "texture": "#0"}, - "down": {"uv": [10.25, 9.75, 10.5, 9.5], "texture": "#0"} + "from": [ + 10.25, + 0, + 9.5 + ], + "to": [ + 10.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 9.5, + 10.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 10.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1044", - "from": [10.5, 0, 9.5], - "to": [10.75, 0.25, 9.75], - "faces": { - "north": {"uv": [10.75, 9.5, 10.5, 9.75], "texture": "#0"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#0"}, - "west": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#0"}, - "down": {"uv": [10.5, 9.75, 10.75, 9.5], "texture": "#0"} + "from": [ + 10.5, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 9.5, + 10.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1045", - "from": [10.75, 0, 9.5], - "to": [11, 0.25, 9.75], - "faces": { - "north": {"uv": [11, 9.5, 10.75, 9.75], "texture": "#0"}, - "east": {"uv": [10.75, 9.5, 11, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.5, 11, 9.75], "texture": "#0"}, - "west": {"uv": [10.75, 9.5, 11, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.5, 11, 9.75], "texture": "#0"}, - "down": {"uv": [10.75, 9.75, 11, 9.5], "texture": "#0"} + "from": [ + 10.75, + 0, + 9.5 + ], + "to": [ + 11, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 11, + 9.5, + 10.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.75, + 11, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1046", - "from": [11, 0, 9.5], - "to": [11.25, 0.25, 9.75], - "faces": { - "north": {"uv": [11.25, 9.5, 11, 9.75], "texture": "#0"}, - "east": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#0"}, - "west": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#0"}, - "down": {"uv": [11, 9.75, 11.25, 9.5], "texture": "#0"} + "from": [ + 11, + 0, + 9.5 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 9.5, + 11, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.75, + 11.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1047", - "from": [11.25, 0, 9.5], - "to": [11.5, 0.25, 9.75], - "faces": { - "north": {"uv": [11.5, 9.5, 11.25, 9.75], "texture": "#0"}, - "east": {"uv": [11.25, 9.5, 11.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9.5, 11.5, 9.75], "texture": "#0"}, - "west": {"uv": [11.25, 9.5, 11.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9.5, 11.5, 9.75], "texture": "#0"}, - "down": {"uv": [11.25, 9.75, 11.5, 9.5], "texture": "#0"} + "from": [ + 11.25, + 0, + 9.5 + ], + "to": [ + 11.5, + 0.25, + 9.75 + ], + "faces": { + "north": { + "uv": [ + 11.5, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.75, + 11.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1048", - "from": [1.75, 0, 9.75], - "to": [2, 0.25, 10], - "faces": { - "north": {"uv": [2, 9.75, 1.75, 10], "texture": "#0"}, - "east": {"uv": [1.75, 9.75, 2, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.75, 2, 10], "texture": "#0"}, - "west": {"uv": [1.75, 9.75, 2, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.75, 2, 10], "texture": "#0"}, - "down": {"uv": [1.75, 10, 2, 9.75], "texture": "#0"} + "from": [ + 1.75, + 0, + 9.75 + ], + "to": [ + 2, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 2, + 9.75, + 1.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 10, + 2, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1049", - "from": [2, 0, 9.75], - "to": [2.25, 0.25, 10], - "faces": { - "north": {"uv": [2.25, 9.75, 2, 10], "texture": "#0"}, - "east": {"uv": [2, 9.75, 2.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.75, 2.25, 10], "texture": "#0"}, - "west": {"uv": [2, 9.75, 2.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9.75, 2.25, 10], "texture": "#0"}, - "down": {"uv": [2, 10, 2.25, 9.75], "texture": "#0"} + "from": [ + 2, + 0, + 9.75 + ], + "to": [ + 2.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 9.75, + 2, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.75, + 2.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.75, + 2.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.75, + 2.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9.75, + 2.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10, + 2.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1050", - "from": [2.25, 0, 9.75], - "to": [2.5, 0.25, 10], - "faces": { - "north": {"uv": [2.5, 9.75, 2.25, 10], "texture": "#0"}, - "east": {"uv": [2.25, 9.75, 2.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#0"}, - "west": {"uv": [2.25, 9.75, 2.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#0"}, - "down": {"uv": [2.25, 10, 2.5, 9.75], "texture": "#0"} + "from": [ + 2.25, + 0, + 9.75 + ], + "to": [ + 2.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 9.75, + 2.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10, + 2.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1051", - "from": [2.5, 0, 9.75], - "to": [2.75, 0.25, 10], - "faces": { - "north": {"uv": [2.75, 9.75, 2.5, 10], "texture": "#0"}, - "east": {"uv": [2.5, 9.75, 2.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.75, 2.75, 10], "texture": "#0"}, - "west": {"uv": [2.5, 9.75, 2.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9.75, 2.75, 10], "texture": "#0"}, - "down": {"uv": [2.5, 10, 2.75, 9.75], "texture": "#0"} + "from": [ + 2.5, + 0, + 9.75 + ], + "to": [ + 2.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 9.75, + 2.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.75, + 2.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10, + 2.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1052", - "from": [2.75, 0, 9.75], - "to": [3, 0.25, 10], - "faces": { - "north": {"uv": [3, 9.75, 2.75, 10], "texture": "#0"}, - "east": {"uv": [2.75, 9.75, 3, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.75, 3, 10], "texture": "#0"}, - "west": {"uv": [2.75, 9.75, 3, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 9.75, 3, 10], "texture": "#0"}, - "down": {"uv": [2.75, 10, 3, 9.75], "texture": "#0"} + "from": [ + 2.75, + 0, + 9.75 + ], + "to": [ + 3, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 3, + 9.75, + 2.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10, + 3, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1053", - "from": [3, 0, 9.75], - "to": [3.25, 0.25, 10], - "faces": { - "north": {"uv": [3.25, 9.75, 3, 10], "texture": "#0"}, - "east": {"uv": [3, 9.75, 3.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.75, 3.25, 10], "texture": "#0"}, - "west": {"uv": [3, 9.75, 3.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9.75, 3.25, 10], "texture": "#0"}, - "down": {"uv": [3, 10, 3.25, 9.75], "texture": "#0"} + "from": [ + 3, + 0, + 9.75 + ], + "to": [ + 3.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 9.75, + 3, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.75, + 3.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.75, + 3.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9.75, + 3.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.75, + 3.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10, + 3.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1054", - "from": [3.25, 0, 9.75], - "to": [3.5, 0.25, 10], - "faces": { - "north": {"uv": [3.5, 9.75, 3.25, 10], "texture": "#0"}, - "east": {"uv": [3.25, 9.75, 3.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9.75, 3.5, 10], "texture": "#0"}, - "west": {"uv": [3.25, 9.75, 3.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 9.75, 3.5, 10], "texture": "#0"}, - "down": {"uv": [3.25, 10, 3.5, 9.75], "texture": "#0"} + "from": [ + 3.25, + 0, + 9.75 + ], + "to": [ + 3.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 9.75, + 3.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9.75, + 3.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.75, + 3.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9.75, + 3.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9.75, + 3.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10, + 3.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1055", - "from": [3.5, 0, 9.75], - "to": [3.75, 0.25, 10], - "faces": { - "north": {"uv": [3.75, 9.75, 3.5, 10], "texture": "#0"}, - "east": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.75, 3.75, 10], "texture": "#0"}, - "west": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 9.75, 3.75, 10], "texture": "#0"}, - "down": {"uv": [3.5, 10, 3.75, 9.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 9.75 + ], + "to": [ + 3.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 9.75, + 3.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10, + 3.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1056", - "from": [3.75, 0, 9.75], - "to": [4, 0.25, 10], - "faces": { - "north": {"uv": [4, 9.75, 3.75, 10], "texture": "#0"}, - "east": {"uv": [3.75, 9.75, 4, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.75, 4, 10], "texture": "#0"}, - "west": {"uv": [3.75, 9.75, 4, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 9.75, 4, 10], "texture": "#0"}, - "down": {"uv": [3.75, 10, 4, 9.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 9.75 + ], + "to": [ + 4, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 4, + 9.75, + 3.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 9.75, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10, + 4, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1057", - "from": [4, 0, 9.75], - "to": [4.25, 0.25, 10], - "faces": { - "north": {"uv": [4.25, 9.75, 4, 10], "texture": "#0"}, - "east": {"uv": [4, 9.75, 4.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 9.75, 4.25, 10], "texture": "#0"}, - "west": {"uv": [4, 9.75, 4.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 9.75, 4.25, 10], "texture": "#0"}, - "down": {"uv": [4, 10, 4.25, 9.75], "texture": "#0"} + "from": [ + 4, + 0, + 9.75 + ], + "to": [ + 4.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 9.75, + 4, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10, + 4.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1058", - "from": [4.25, 0, 9.75], - "to": [4.5, 0.25, 10], - "faces": { - "north": {"uv": [4.5, 9.75, 4.25, 10], "texture": "#0"}, - "east": {"uv": [4.25, 9.75, 4.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.75, 4.5, 10], "texture": "#0"}, - "west": {"uv": [4.25, 9.75, 4.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.75, 4.5, 10], "texture": "#0"}, - "down": {"uv": [4.25, 10, 4.5, 9.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 9.75 + ], + "to": [ + 4.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10, + 4.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1059", - "from": [4.5, 0, 9.75], - "to": [4.75, 0.25, 10], - "faces": { - "north": {"uv": [4.75, 9.75, 4.5, 10], "texture": "#0"}, - "east": {"uv": [4.5, 9.75, 4.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.75, 4.75, 10], "texture": "#0"}, - "west": {"uv": [4.5, 9.75, 4.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 9.75, 4.75, 10], "texture": "#0"}, - "down": {"uv": [4.5, 10, 4.75, 9.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 9.75 + ], + "to": [ + 4.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 9.75, + 4.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10, + 4.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1060", - "from": [4.75, 0, 9.75], - "to": [5, 0.25, 10], - "faces": { - "north": {"uv": [5, 9.75, 4.75, 10], "texture": "#0"}, - "east": {"uv": [4.75, 9.75, 5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.75, 5, 10], "texture": "#0"}, - "west": {"uv": [4.75, 9.75, 5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 9.75, 5, 10], "texture": "#0"}, - "down": {"uv": [4.75, 10, 5, 9.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 9.75 + ], + "to": [ + 5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 5, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1061", - "from": [5, 0, 9.75], - "to": [5.25, 0.25, 10], - "faces": { - "north": {"uv": [5.25, 9.75, 5, 10], "texture": "#0"}, - "east": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"}, - "west": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"}, - "down": {"uv": [5, 10, 5.25, 9.75], "texture": "#0"} + "from": [ + 5, + 0, + 9.75 + ], + "to": [ + 5.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 9.75, + 5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10, + 5.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1062", - "from": [5.25, 0, 9.75], - "to": [5.5, 0.25, 10], - "faces": { - "north": {"uv": [5.5, 9.75, 5.25, 10], "texture": "#0"}, - "east": {"uv": [5.25, 9.75, 5.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 9.75, 5.5, 10], "texture": "#0"}, - "west": {"uv": [5.25, 9.75, 5.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 9.75, 5.5, 10], "texture": "#0"}, - "down": {"uv": [5.25, 10, 5.5, 9.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 9.75 + ], + "to": [ + 5.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.75, + 5.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10, + 5.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1063", - "from": [5.5, 0, 9.75], - "to": [5.75, 0.25, 10], - "faces": { - "north": {"uv": [5.75, 9.75, 5.5, 10], "texture": "#0"}, - "east": {"uv": [5.5, 9.75, 5.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.75, 5.75, 10], "texture": "#0"}, - "west": {"uv": [5.5, 9.75, 5.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 9.75, 5.75, 10], "texture": "#0"}, - "down": {"uv": [5.5, 10, 5.75, 9.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 9.75 + ], + "to": [ + 5.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 9.75, + 5.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10, + 5.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1064", - "from": [5.75, 0, 9.75], - "to": [6, 0.25, 10], - "faces": { - "north": {"uv": [6, 9.75, 5.75, 10], "texture": "#0"}, - "east": {"uv": [5.75, 9.75, 6, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9.75, 6, 10], "texture": "#0"}, - "west": {"uv": [5.75, 9.75, 6, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 9.75, 6, 10], "texture": "#0"}, - "down": {"uv": [5.75, 10, 6, 9.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 9.75 + ], + "to": [ + 6, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 6, + 9.75, + 5.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10, + 6, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1065", - "from": [6, 0, 9.75], - "to": [6.25, 0.25, 10], - "faces": { - "north": {"uv": [6.25, 9.75, 6, 10], "texture": "#0"}, - "east": {"uv": [6, 9.75, 6.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.75, 6.25, 10], "texture": "#0"}, - "west": {"uv": [6, 9.75, 6.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9.75, 6.25, 10], "texture": "#0"}, - "down": {"uv": [6, 10, 6.25, 9.75], "texture": "#0"} + "from": [ + 6, + 0, + 9.75 + ], + "to": [ + 6.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10, + 6.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1066", - "from": [6.25, 0, 9.75], - "to": [6.5, 0.25, 10], - "faces": { - "north": {"uv": [6.5, 9.75, 6.25, 10], "texture": "#0"}, - "east": {"uv": [6.25, 9.75, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [6.25, 9.75, 6.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 9.75, 6.5, 10], "texture": "#0"}, - "down": {"uv": [6.25, 10, 6.5, 9.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 9.75 + ], + "to": [ + 6.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 9.75, + 6.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9.75, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 9.75, + 6.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10, + 6.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1067", - "from": [6.5, 0, 9.75], - "to": [6.75, 0.25, 10], - "faces": { - "north": {"uv": [6.75, 9.75, 6.5, 10], "texture": "#0"}, - "east": {"uv": [6.5, 9.75, 6.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.75, 6.75, 10], "texture": "#0"}, - "west": {"uv": [6.5, 9.75, 6.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 9.75, 6.75, 10], "texture": "#0"}, - "down": {"uv": [6.5, 10, 6.75, 9.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 9.75 + ], + "to": [ + 6.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 9.75, + 6.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10, + 6.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1068", - "from": [6.75, 0, 9.75], - "to": [7, 0.25, 10], - "faces": { - "north": {"uv": [7, 9.75, 6.75, 10], "texture": "#0"}, - "east": {"uv": [6.75, 9.75, 7, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#0"}, - "west": {"uv": [6.75, 9.75, 7, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 9.75, 7, 10], "texture": "#0"}, - "down": {"uv": [6.75, 10, 7, 9.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 9.75 + ], + "to": [ + 7, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 7, + 9.75, + 6.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1069", - "from": [7, 0, 9.75], - "to": [7.25, 0.25, 10], - "faces": { - "north": {"uv": [7.25, 9.75, 7, 10], "texture": "#0"}, - "east": {"uv": [7, 9.75, 7.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.75, 7.25, 10], "texture": "#0"}, - "west": {"uv": [7, 9.75, 7.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 9.75, 7.25, 10], "texture": "#0"}, - "down": {"uv": [7, 10, 7.25, 9.75], "texture": "#0"} + "from": [ + 7, + 0, + 9.75 + ], + "to": [ + 7.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10, + 7.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1070", - "from": [7.25, 0, 9.75], - "to": [7.5, 0.25, 10], - "faces": { - "north": {"uv": [7.5, 9.75, 7.25, 10], "texture": "#0"}, - "east": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#0"}, - "west": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#0"}, - "down": {"uv": [7.25, 10, 7.5, 9.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 9.75 + ], + "to": [ + 7.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1071", - "from": [7.5, 0, 9.75], - "to": [7.75, 0.25, 10], - "faces": { - "north": {"uv": [7.75, 9.75, 7.5, 10], "texture": "#0"}, - "east": {"uv": [7.5, 9.75, 7.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.75, 7.75, 10], "texture": "#0"}, - "west": {"uv": [7.5, 9.75, 7.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9.75, 7.75, 10], "texture": "#0"}, - "down": {"uv": [7.5, 10, 7.75, 9.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 9.75 + ], + "to": [ + 7.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10, + 7.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1072", - "from": [7.75, 0, 9.75], - "to": [8, 0.25, 10], - "faces": { - "north": {"uv": [8, 9.75, 7.75, 10], "texture": "#0"}, - "east": {"uv": [7.75, 9.75, 8, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.75, 8, 10], "texture": "#0"}, - "west": {"uv": [7.75, 9.75, 8, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.75, 8, 10], "texture": "#0"}, - "down": {"uv": [7.75, 10, 8, 9.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 9.75 + ], + "to": [ + 8, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 8, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10, + 8, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1073", - "from": [8, 0, 9.75], - "to": [8.25, 0.25, 10], - "faces": { - "north": {"uv": [8.25, 9.75, 8, 10], "texture": "#0"}, - "east": {"uv": [8, 9.75, 8.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.75, 8.25, 10], "texture": "#0"}, - "west": {"uv": [8, 9.75, 8.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 9.75, 8.25, 10], "texture": "#0"}, - "down": {"uv": [8, 10, 8.25, 9.75], "texture": "#0"} + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 8.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10, + 8.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1074", - "from": [8.25, 0, 9.75], - "to": [8.5, 0.25, 10], - "faces": { - "north": {"uv": [8.5, 9.75, 8.25, 10], "texture": "#0"}, - "east": {"uv": [8.25, 9.75, 8.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.75, 8.5, 10], "texture": "#0"}, - "west": {"uv": [8.25, 9.75, 8.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.75, 8.5, 10], "texture": "#0"}, - "down": {"uv": [8.25, 10, 8.5, 9.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 9.75 + ], + "to": [ + 8.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 9.75, + 8.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10, + 8.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1075", - "from": [8.5, 0, 9.75], - "to": [8.75, 0.25, 10], - "faces": { - "north": {"uv": [8.75, 9.75, 8.5, 10], "texture": "#0"}, - "east": {"uv": [8.5, 9.75, 8.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.75, 8.75, 10], "texture": "#0"}, - "west": {"uv": [8.5, 9.75, 8.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 9.75, 8.75, 10], "texture": "#0"}, - "down": {"uv": [8.5, 10, 8.75, 9.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 9.75 + ], + "to": [ + 8.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 9.75, + 8.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10, + 8.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1076", - "from": [8.75, 0, 9.75], - "to": [9, 0.25, 10], - "faces": { - "north": {"uv": [9, 9.75, 8.75, 10], "texture": "#0"}, - "east": {"uv": [8.75, 9.75, 9, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.75, 9, 10], "texture": "#0"}, - "west": {"uv": [8.75, 9.75, 9, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 9.75, 9, 10], "texture": "#0"}, - "down": {"uv": [8.75, 10, 9, 9.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 9.75 + ], + "to": [ + 9, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 9, + 9.75, + 8.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 9.75, + 9, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 9.75, + 9, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.75, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10, + 9, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1077", - "from": [9, 0, 9.75], - "to": [9.25, 0.25, 10], - "faces": { - "north": {"uv": [9.25, 9.75, 9, 10], "texture": "#0"}, - "east": {"uv": [9, 9.75, 9.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.75, 9.25, 10], "texture": "#0"}, - "west": {"uv": [9, 9.75, 9.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.75, 9.25, 10], "texture": "#0"}, - "down": {"uv": [9, 10, 9.25, 9.75], "texture": "#0"} + "from": [ + 9, + 0, + 9.75 + ], + "to": [ + 9.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 9.75, + 9, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.75, + 9.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.75, + 9.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10, + 9.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1078", - "from": [9.25, 0, 9.75], - "to": [9.5, 0.25, 10], - "faces": { - "north": {"uv": [9.5, 9.75, 9.25, 10], "texture": "#0"}, - "east": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#0"}, - "west": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 9.75, 9.5, 10], "texture": "#0"}, - "down": {"uv": [9.25, 10, 9.5, 9.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 9.75 + ], + "to": [ + 9.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10, + 9.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1079", - "from": [9.5, 0, 9.75], - "to": [9.75, 0.25, 10], - "faces": { - "north": {"uv": [9.75, 9.75, 9.5, 10], "texture": "#0"}, - "east": {"uv": [9.5, 9.75, 9.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#0"}, - "west": {"uv": [9.5, 9.75, 9.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#0"}, - "down": {"uv": [9.5, 10, 9.75, 9.75], "texture": "#0"} + "from": [ + 9.5, + 0, + 9.75 + ], + "to": [ + 9.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 9.75, + 9.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10, + 9.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1080", - "from": [9.75, 0, 9.75], - "to": [10, 0.25, 10], - "faces": { - "north": {"uv": [10, 9.75, 9.75, 10], "texture": "#0"}, - "east": {"uv": [9.75, 9.75, 10, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.75, 10, 10], "texture": "#0"}, - "west": {"uv": [9.75, 9.75, 10, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 9.75, 10, 10], "texture": "#0"}, - "down": {"uv": [9.75, 10, 10, 9.75], "texture": "#0"} + "from": [ + 9.75, + 0, + 9.75 + ], + "to": [ + 10, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 10, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10, + 10, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1081", - "from": [10, 0, 9.75], - "to": [10.25, 0.25, 10], - "faces": { - "north": {"uv": [10.25, 9.75, 10, 10], "texture": "#0"}, - "east": {"uv": [10, 9.75, 10.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#0"}, - "west": {"uv": [10, 9.75, 10.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.75, 10.25, 10], "texture": "#0"}, - "down": {"uv": [10, 10, 10.25, 9.75], "texture": "#0"} + "from": [ + 10, + 0, + 9.75 + ], + "to": [ + 10.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1082", - "from": [10.25, 0, 9.75], - "to": [10.5, 0.25, 10], - "faces": { - "north": {"uv": [10.5, 9.75, 10.25, 10], "texture": "#0"}, - "east": {"uv": [10.25, 9.75, 10.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.75, 10.5, 10], "texture": "#0"}, - "west": {"uv": [10.25, 9.75, 10.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 9.75, 10.5, 10], "texture": "#0"}, - "down": {"uv": [10.25, 10, 10.5, 9.75], "texture": "#0"} + "from": [ + 10.25, + 0, + 9.75 + ], + "to": [ + 10.5, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10, + 10.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1083", - "from": [10.5, 0, 9.75], - "to": [10.75, 0.25, 10], - "faces": { - "north": {"uv": [10.75, 9.75, 10.5, 10], "texture": "#0"}, - "east": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#0"}, - "west": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#0"}, - "down": {"uv": [10.5, 10, 10.75, 9.75], "texture": "#0"} + "from": [ + 10.5, + 0, + 9.75 + ], + "to": [ + 10.75, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 9.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10, + 10.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1084", - "from": [10.75, 0, 9.75], - "to": [11, 0.25, 10], - "faces": { - "north": {"uv": [11, 9.75, 10.75, 10], "texture": "#0"}, - "east": {"uv": [10.75, 9.75, 11, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.75, 11, 10], "texture": "#0"}, - "west": {"uv": [10.75, 9.75, 11, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.75, 11, 10], "texture": "#0"}, - "down": {"uv": [10.75, 10, 11, 9.75], "texture": "#0"} + "from": [ + 10.75, + 0, + 9.75 + ], + "to": [ + 11, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 11, + 9.75, + 10.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10, + 11, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1085", - "from": [11, 0, 9.75], - "to": [11.25, 0.25, 10], - "faces": { - "north": {"uv": [11.25, 9.75, 11, 10], "texture": "#0"}, - "east": {"uv": [11, 9.75, 11.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.75, 11.25, 10], "texture": "#0"}, - "west": {"uv": [11, 9.75, 11.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 9.75, 11.25, 10], "texture": "#0"}, - "down": {"uv": [11, 10, 11.25, 9.75], "texture": "#0"} + "from": [ + 11, + 0, + 9.75 + ], + "to": [ + 11.25, + 0.25, + 10 + ], + "faces": { + "north": { + "uv": [ + 11.25, + 9.75, + 11, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10, + 11.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1086", - "from": [2, 0, 10], - "to": [2.25, 0.25, 10.25], - "faces": { - "north": {"uv": [2.25, 10, 2, 10.25], "texture": "#0"}, - "east": {"uv": [2, 10, 2.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10, 2.25, 10.25], "texture": "#0"}, - "west": {"uv": [2, 10, 2.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 10, 2.25, 10.25], "texture": "#0"}, - "down": {"uv": [2, 10.25, 2.25, 10], "texture": "#0"} + "from": [ + 2, + 0, + 10 + ], + "to": [ + 2.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 10, + 2, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1087", - "from": [2.25, 0, 10], - "to": [2.5, 0.25, 10.25], - "faces": { - "north": {"uv": [2.5, 10, 2.25, 10.25], "texture": "#0"}, - "east": {"uv": [2.25, 10, 2.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#0"}, - "west": {"uv": [2.25, 10, 2.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#0"}, - "down": {"uv": [2.25, 10.25, 2.5, 10], "texture": "#0"} + "from": [ + 2.25, + 0, + 10 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 10, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1088", - "from": [2.5, 0, 10], - "to": [2.75, 0.25, 10.25], - "faces": { - "north": {"uv": [2.75, 10, 2.5, 10.25], "texture": "#0"}, - "east": {"uv": [2.5, 10, 2.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#0"}, - "west": {"uv": [2.5, 10, 2.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#0"}, - "down": {"uv": [2.5, 10.25, 2.75, 10], "texture": "#0"} + "from": [ + 2.5, + 0, + 10 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 10, + 2.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1089", - "from": [2.75, 0, 10], - "to": [3, 0.25, 10.25], - "faces": { - "north": {"uv": [3, 10, 2.75, 10.25], "texture": "#0"}, - "east": {"uv": [2.75, 10, 3, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10, 3, 10.25], "texture": "#0"}, - "west": {"uv": [2.75, 10, 3, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 10, 3, 10.25], "texture": "#0"}, - "down": {"uv": [2.75, 10.25, 3, 10], "texture": "#0"} + "from": [ + 2.75, + 0, + 10 + ], + "to": [ + 3, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 3, + 10, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 3, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1090", - "from": [3, 0, 10], - "to": [3.25, 0.25, 10.25], - "faces": { - "north": {"uv": [3.25, 10, 3, 10.25], "texture": "#0"}, - "east": {"uv": [3, 10, 3.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10, 3.25, 10.25], "texture": "#0"}, - "west": {"uv": [3, 10, 3.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 10, 3.25, 10.25], "texture": "#0"}, - "down": {"uv": [3, 10.25, 3.25, 10], "texture": "#0"} + "from": [ + 3, + 0, + 10 + ], + "to": [ + 3.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1091", - "from": [3.25, 0, 10], - "to": [3.5, 0.25, 10.25], - "faces": { - "north": {"uv": [3.5, 10, 3.25, 10.25], "texture": "#0"}, - "east": {"uv": [3.25, 10, 3.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10, 3.5, 10.25], "texture": "#0"}, - "west": {"uv": [3.25, 10, 3.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 10, 3.5, 10.25], "texture": "#0"}, - "down": {"uv": [3.25, 10.25, 3.5, 10], "texture": "#0"} + "from": [ + 3.25, + 0, + 10 + ], + "to": [ + 3.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 10, + 3.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 10, + 3.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1092", - "from": [3.5, 0, 10], - "to": [3.75, 0.25, 10.25], - "faces": { - "north": {"uv": [3.75, 10, 3.5, 10.25], "texture": "#0"}, - "east": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#0"}, - "west": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#0"}, - "down": {"uv": [3.5, 10.25, 3.75, 10], "texture": "#0"} + "from": [ + 3.5, + 0, + 10 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 10, + 3.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1093", - "from": [3.75, 0, 10], - "to": [4, 0.25, 10.25], - "faces": { - "north": {"uv": [4, 10, 3.75, 10.25], "texture": "#0"}, - "east": {"uv": [3.75, 10, 4, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10, 4, 10.25], "texture": "#0"}, - "west": {"uv": [3.75, 10, 4, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10, 4, 10.25], "texture": "#0"}, - "down": {"uv": [3.75, 10.25, 4, 10], "texture": "#0"} + "from": [ + 3.75, + 0, + 10 + ], + "to": [ + 4, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 4, + 10, + 3.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 10, + 4, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10, + 4, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10, + 4, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10, + 4, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.25, + 4, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1094", - "from": [4, 0, 10], - "to": [4.25, 0.25, 10.25], - "faces": { - "north": {"uv": [4.25, 10, 4, 10.25], "texture": "#0"}, - "east": {"uv": [4, 10, 4.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10, 4.25, 10.25], "texture": "#0"}, - "west": {"uv": [4, 10, 4.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 10, 4.25, 10.25], "texture": "#0"}, - "down": {"uv": [4, 10.25, 4.25, 10], "texture": "#0"} + "from": [ + 4, + 0, + 10 + ], + "to": [ + 4.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 10, + 4, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 10, + 4.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10, + 4.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10, + 4.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10, + 4.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10.25, + 4.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1095", - "from": [4.25, 0, 10], - "to": [4.5, 0.25, 10.25], - "faces": { - "north": {"uv": [4.5, 10, 4.25, 10.25], "texture": "#0"}, - "east": {"uv": [4.25, 10, 4.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10, 4.5, 10.25], "texture": "#0"}, - "west": {"uv": [4.25, 10, 4.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10, 4.5, 10.25], "texture": "#0"}, - "down": {"uv": [4.25, 10.25, 4.5, 10], "texture": "#0"} + "from": [ + 4.25, + 0, + 10 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 10, + 4.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1096", - "from": [4.5, 0, 10], - "to": [4.75, 0.25, 10.25], - "faces": { - "north": {"uv": [4.75, 10, 4.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10, 4.75, 10.25], "texture": "#0"}, - "west": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10, 4.75, 10.25], "texture": "#0"}, - "down": {"uv": [4.5, 10.25, 4.75, 10], "texture": "#0"} + "from": [ + 4.5, + 0, + 10 + ], + "to": [ + 4.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 10, + 4.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1097", - "from": [4.75, 0, 10], - "to": [5, 0.25, 10.25], - "faces": { - "north": {"uv": [5, 10, 4.75, 10.25], "texture": "#0"}, - "east": {"uv": [4.75, 10, 5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10, 5, 10.25], "texture": "#0"}, - "west": {"uv": [4.75, 10, 5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10, 5, 10.25], "texture": "#0"}, - "down": {"uv": [4.75, 10.25, 5, 10], "texture": "#0"} + "from": [ + 4.75, + 0, + 10 + ], + "to": [ + 5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 5, + 10, + 4.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10, + 5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1098", - "from": [5, 0, 10], - "to": [5.25, 0.25, 10.25], - "faces": { - "north": {"uv": [5.25, 10, 5, 10.25], "texture": "#0"}, - "east": {"uv": [5, 10, 5.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10, 5.25, 10.25], "texture": "#0"}, - "west": {"uv": [5, 10, 5.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10, 5.25, 10.25], "texture": "#0"}, - "down": {"uv": [5, 10.25, 5.25, 10], "texture": "#0"} + "from": [ + 5, + 0, + 10 + ], + "to": [ + 5.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 10, + 5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10, + 5.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.25, + 5.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1099", - "from": [5.25, 0, 10], - "to": [5.5, 0.25, 10.25], - "faces": { - "north": {"uv": [5.5, 10, 5.25, 10.25], "texture": "#0"}, - "east": {"uv": [5.25, 10, 5.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10, 5.5, 10.25], "texture": "#0"}, - "west": {"uv": [5.25, 10, 5.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10, 5.5, 10.25], "texture": "#0"}, - "down": {"uv": [5.25, 10.25, 5.5, 10], "texture": "#0"} + "from": [ + 5.25, + 0, + 10 + ], + "to": [ + 5.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 10, + 5.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1100", - "from": [5.5, 0, 10], - "to": [5.75, 0.25, 10.25], - "faces": { - "north": {"uv": [5.75, 10, 5.5, 10.25], "texture": "#0"}, - "east": {"uv": [5.5, 10, 5.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10, 5.75, 10.25], "texture": "#0"}, - "west": {"uv": [5.5, 10, 5.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10, 5.75, 10.25], "texture": "#0"}, - "down": {"uv": [5.5, 10.25, 5.75, 10], "texture": "#0"} + "from": [ + 5.5, + 0, + 10 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1101", - "from": [5.75, 0, 10], - "to": [6, 0.25, 10.25], - "faces": { - "north": {"uv": [6, 10, 5.75, 10.25], "texture": "#0"}, - "east": {"uv": [5.75, 10, 6, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10, 6, 10.25], "texture": "#0"}, - "west": {"uv": [5.75, 10, 6, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 10, 6, 10.25], "texture": "#0"}, - "down": {"uv": [5.75, 10.25, 6, 10], "texture": "#0"} + "from": [ + 5.75, + 0, + 10 + ], + "to": [ + 6, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 10, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.25, + 6, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1102", - "from": [6, 0, 10], - "to": [6.25, 0.25, 10.25], - "faces": { - "north": {"uv": [6.25, 10, 6, 10.25], "texture": "#0"}, - "east": {"uv": [6, 10, 6.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10, 6.25, 10.25], "texture": "#0"}, - "west": {"uv": [6, 10, 6.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10, 6.25, 10.25], "texture": "#0"}, - "down": {"uv": [6, 10.25, 6.25, 10], "texture": "#0"} + "from": [ + 6, + 0, + 10 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1103", - "from": [6.25, 0, 10], - "to": [6.5, 0.25, 10.25], - "faces": { - "north": {"uv": [6.5, 10, 6.25, 10.25], "texture": "#0"}, - "east": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.25, 10.25, 6.5, 10], "texture": "#0"} + "from": [ + 6.25, + 0, + 10 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1104", - "from": [6.5, 0, 10], - "to": [6.75, 0.25, 10.25], - "faces": { - "north": {"uv": [6.75, 10, 6.5, 10.25], "texture": "#0"}, - "east": {"uv": [6.5, 10, 6.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10, 6.75, 10.25], "texture": "#0"}, - "west": {"uv": [6.5, 10, 6.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 10, 6.75, 10.25], "texture": "#0"}, - "down": {"uv": [6.5, 10.25, 6.75, 10], "texture": "#0"} + "from": [ + 6.5, + 0, + 10 + ], + "to": [ + 6.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1105", - "from": [6.75, 0, 10], - "to": [7, 0.25, 10.25], - "faces": { - "north": {"uv": [7, 10, 6.75, 10.25], "texture": "#0"}, - "east": {"uv": [6.75, 10, 7, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10, 7, 10.25], "texture": "#0"}, - "west": {"uv": [6.75, 10, 7, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10, 7, 10.25], "texture": "#0"}, - "down": {"uv": [6.75, 10.25, 7, 10], "texture": "#0"} + "from": [ + 6.75, + 0, + 10 + ], + "to": [ + 7, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 7, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10.25, + 7, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1106", - "from": [7, 0, 10], - "to": [7.25, 0.25, 10.25], - "faces": { - "north": {"uv": [7.25, 10, 7, 10.25], "texture": "#0"}, - "east": {"uv": [7, 10, 7.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10, 7.25, 10.25], "texture": "#0"}, - "west": {"uv": [7, 10, 7.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10, 7.25, 10.25], "texture": "#0"}, - "down": {"uv": [7, 10.25, 7.25, 10], "texture": "#0"} + "from": [ + 7, + 0, + 10 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 10, + 7, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10.25, + 7.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1107", - "from": [7.25, 0, 10], - "to": [7.5, 0.25, 10.25], - "faces": { - "north": {"uv": [7.5, 10, 7.25, 10.25], "texture": "#0"}, - "east": {"uv": [7.25, 10, 7.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10, 7.5, 10.25], "texture": "#0"}, - "west": {"uv": [7.25, 10, 7.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10, 7.5, 10.25], "texture": "#0"}, - "down": {"uv": [7.25, 10.25, 7.5, 10], "texture": "#0"} + "from": [ + 7.25, + 0, + 10 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1108", - "from": [7.5, 0, 10], - "to": [7.75, 0.25, 10.25], - "faces": { - "north": {"uv": [7.75, 10, 7.5, 10.25], "texture": "#0"}, - "east": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#0"}, - "west": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#0"}, - "down": {"uv": [7.5, 10.25, 7.75, 10], "texture": "#0"} + "from": [ + 7.5, + 0, + 10 + ], + "to": [ + 7.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1109", - "from": [7.75, 0, 10], - "to": [8, 0.25, 10.25], - "faces": { - "north": {"uv": [8, 10, 7.75, 10.25], "texture": "#0"}, - "east": {"uv": [7.75, 10, 8, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10, 8, 10.25], "texture": "#0"}, - "west": {"uv": [7.75, 10, 8, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10, 8, 10.25], "texture": "#0"}, - "down": {"uv": [7.75, 10.25, 8, 10], "texture": "#0"} + "from": [ + 7.75, + 0, + 10 + ], + "to": [ + 8, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.25, + 8, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1110", - "from": [8, 0, 10], - "to": [8.25, 0.25, 10.25], - "faces": { - "north": {"uv": [8.25, 10, 8, 10.25], "texture": "#0"}, - "east": {"uv": [8, 10, 8.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10, 8.25, 10.25], "texture": "#0"}, - "west": {"uv": [8, 10, 8.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10, 8.25, 10.25], "texture": "#0"}, - "down": {"uv": [8, 10.25, 8.25, 10], "texture": "#0"} + "from": [ + 8, + 0, + 10 + ], + "to": [ + 8.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 10, + 8, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1111", - "from": [8.25, 0, 10], - "to": [8.5, 0.25, 10.25], - "faces": { - "north": {"uv": [8.5, 10, 8.25, 10.25], "texture": "#0"}, - "east": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10, 8.5, 10.25], "texture": "#0"}, - "down": {"uv": [8.25, 10.25, 8.5, 10], "texture": "#0"} + "from": [ + 8.25, + 0, + 10 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1112", - "from": [8.5, 0, 10], - "to": [8.75, 0.25, 10.25], - "faces": { - "north": {"uv": [8.75, 10, 8.5, 10.25], "texture": "#0"}, - "east": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#0"}, - "down": {"uv": [8.5, 10.25, 8.75, 10], "texture": "#0"} + "from": [ + 8.5, + 0, + 10 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1113", - "from": [8.75, 0, 10], - "to": [9, 0.25, 10.25], - "faces": { - "north": {"uv": [9, 10, 8.75, 10.25], "texture": "#0"}, - "east": {"uv": [8.75, 10, 9, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#0"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10, 9, 10.25], "texture": "#0"}, - "down": {"uv": [8.75, 10.25, 9, 10], "texture": "#0"} + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1114", - "from": [9, 0, 10], - "to": [9.25, 0.25, 10.25], - "faces": { - "north": {"uv": [9.25, 10, 9, 10.25], "texture": "#0"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "west": {"uv": [9, 10, 9.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "down": {"uv": [9, 10.25, 9.25, 10], "texture": "#0"} + "from": [ + 9, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.25, + 9.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1115", - "from": [9.25, 0, 10], - "to": [9.5, 0.25, 10.25], - "faces": { - "north": {"uv": [9.5, 10, 9.25, 10.25], "texture": "#0"}, - "east": {"uv": [9.25, 10, 9.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10, 9.5, 10.25], "texture": "#0"}, - "west": {"uv": [9.25, 10, 9.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10, 9.5, 10.25], "texture": "#0"}, - "down": {"uv": [9.25, 10.25, 9.5, 10], "texture": "#0"} + "from": [ + 9.25, + 0, + 10 + ], + "to": [ + 9.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1116", - "from": [9.5, 0, 10], - "to": [9.75, 0.25, 10.25], - "faces": { - "north": {"uv": [9.75, 10, 9.5, 10.25], "texture": "#0"}, - "east": {"uv": [9.5, 10, 9.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10, 9.75, 10.25], "texture": "#0"}, - "west": {"uv": [9.5, 10, 9.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10, 9.75, 10.25], "texture": "#0"}, - "down": {"uv": [9.5, 10.25, 9.75, 10], "texture": "#0"} + "from": [ + 9.5, + 0, + 10 + ], + "to": [ + 9.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1117", - "from": [9.75, 0, 10], - "to": [10, 0.25, 10.25], - "faces": { - "north": {"uv": [10, 10, 9.75, 10.25], "texture": "#0"}, - "east": {"uv": [9.75, 10, 10, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#0"}, - "west": {"uv": [9.75, 10, 10, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10, 10, 10.25], "texture": "#0"}, - "down": {"uv": [9.75, 10.25, 10, 10], "texture": "#0"} + "from": [ + 9.75, + 0, + 10 + ], + "to": [ + 10, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 10, + 10, + 9.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1118", - "from": [10, 0, 10], - "to": [10.25, 0.25, 10.25], - "faces": { - "north": {"uv": [10.25, 10, 10, 10.25], "texture": "#0"}, - "east": {"uv": [10, 10, 10.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10, 10.25, 10.25], "texture": "#0"}, - "west": {"uv": [10, 10, 10.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10, 10.25, 10.25], "texture": "#0"}, - "down": {"uv": [10, 10.25, 10.25, 10], "texture": "#0"} + "from": [ + 10, + 0, + 10 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1119", - "from": [10.25, 0, 10], - "to": [10.5, 0.25, 10.25], - "faces": { - "north": {"uv": [10.5, 10, 10.25, 10.25], "texture": "#0"}, - "east": {"uv": [10.25, 10, 10.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10, 10.5, 10.25], "texture": "#0"}, - "west": {"uv": [10.25, 10, 10.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 10, 10.5, 10.25], "texture": "#0"}, - "down": {"uv": [10.25, 10.25, 10.5, 10], "texture": "#0"} + "from": [ + 10.25, + 0, + 10 + ], + "to": [ + 10.5, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1120", - "from": [10.5, 0, 10], - "to": [10.75, 0.25, 10.25], - "faces": { - "north": {"uv": [10.75, 10, 10.5, 10.25], "texture": "#0"}, - "east": {"uv": [10.5, 10, 10.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#0"}, - "west": {"uv": [10.5, 10, 10.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#0"}, - "down": {"uv": [10.5, 10.25, 10.75, 10], "texture": "#0"} + "from": [ + 10.5, + 0, + 10 + ], + "to": [ + 10.75, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 10.75, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 10.75, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1121", - "from": [10.75, 0, 10], - "to": [11, 0.25, 10.25], - "faces": { - "north": {"uv": [11, 10, 10.75, 10.25], "texture": "#0"}, - "east": {"uv": [10.75, 10, 11, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10, 11, 10.25], "texture": "#0"}, - "west": {"uv": [10.75, 10, 11, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 10, 11, 10.25], "texture": "#0"}, - "down": {"uv": [10.75, 10.25, 11, 10], "texture": "#0"} + "from": [ + 10.75, + 0, + 10 + ], + "to": [ + 11, + 0.25, + 10.25 + ], + "faces": { + "north": { + "uv": [ + 11, + 10, + 10.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11, + 10 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1122", - "from": [2.25, 0, 10.25], - "to": [2.5, 0.25, 10.5], - "faces": { - "north": {"uv": [2.5, 10.25, 2.25, 10.5], "texture": "#0"}, - "east": {"uv": [2.25, 10.25, 2.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 10.25, 2.5, 10.5], "texture": "#0"}, - "west": {"uv": [2.25, 10.25, 2.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 10.25, 2.5, 10.5], "texture": "#0"}, - "down": {"uv": [2.25, 10.5, 2.5, 10.25], "texture": "#0"} + "from": [ + 2.25, + 0, + 10.25 + ], + "to": [ + 2.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 2.5, + 10.25, + 2.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10.5, + 2.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1123", - "from": [2.5, 0, 10.25], - "to": [2.75, 0.25, 10.5], - "faces": { - "north": {"uv": [2.75, 10.25, 2.5, 10.5], "texture": "#0"}, - "east": {"uv": [2.5, 10.25, 2.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10.25, 2.75, 10.5], "texture": "#0"}, - "west": {"uv": [2.5, 10.25, 2.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 10.25, 2.75, 10.5], "texture": "#0"}, - "down": {"uv": [2.5, 10.5, 2.75, 10.25], "texture": "#0"} + "from": [ + 2.5, + 0, + 10.25 + ], + "to": [ + 2.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 2.75, + 10.25, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.5, + 2.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1124", - "from": [2.75, 0, 10.25], - "to": [3, 0.25, 10.5], - "faces": { - "north": {"uv": [3, 10.25, 2.75, 10.5], "texture": "#0"}, - "east": {"uv": [2.75, 10.25, 3, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10.25, 3, 10.5], "texture": "#0"}, - "west": {"uv": [2.75, 10.25, 3, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 10.25, 3, 10.5], "texture": "#0"}, - "down": {"uv": [2.75, 10.5, 3, 10.25], "texture": "#0"} + "from": [ + 2.75, + 0, + 10.25 + ], + "to": [ + 3, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 3, + 10.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.5, + 3, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1125", - "from": [3, 0, 10.25], - "to": [3.25, 0.25, 10.5], - "faces": { - "north": {"uv": [3.25, 10.25, 3, 10.5], "texture": "#0"}, - "east": {"uv": [3, 10.25, 3.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.25, 3.25, 10.5], "texture": "#0"}, - "west": {"uv": [3, 10.25, 3.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 10.25, 3.25, 10.5], "texture": "#0"}, - "down": {"uv": [3, 10.5, 3.25, 10.25], "texture": "#0"} + "from": [ + 3, + 0, + 10.25 + ], + "to": [ + 3.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 10.25, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1126", - "from": [3.25, 0, 10.25], - "to": [3.5, 0.25, 10.5], - "faces": { - "north": {"uv": [3.5, 10.25, 3.25, 10.5], "texture": "#0"}, - "east": {"uv": [3.25, 10.25, 3.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.25, 3.5, 10.5], "texture": "#0"}, - "west": {"uv": [3.25, 10.25, 3.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 10.25, 3.5, 10.5], "texture": "#0"}, - "down": {"uv": [3.25, 10.5, 3.5, 10.25], "texture": "#0"} + "from": [ + 3.25, + 0, + 10.25 + ], + "to": [ + 3.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1127", - "from": [3.5, 0, 10.25], - "to": [3.75, 0.25, 10.5], - "faces": { - "north": {"uv": [3.75, 10.25, 3.5, 10.5], "texture": "#0"}, - "east": {"uv": [3.5, 10.25, 3.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.25, 3.75, 10.5], "texture": "#0"}, - "west": {"uv": [3.5, 10.25, 3.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 10.25, 3.75, 10.5], "texture": "#0"}, - "down": {"uv": [3.5, 10.5, 3.75, 10.25], "texture": "#0"} + "from": [ + 3.5, + 0, + 10.25 + ], + "to": [ + 3.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 10.25, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1128", - "from": [3.75, 0, 10.25], - "to": [4, 0.25, 10.5], - "faces": { - "north": {"uv": [4, 10.25, 3.75, 10.5], "texture": "#0"}, - "east": {"uv": [3.75, 10.25, 4, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.25, 4, 10.5], "texture": "#0"}, - "west": {"uv": [3.75, 10.25, 4, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10.25, 4, 10.5], "texture": "#0"}, - "down": {"uv": [3.75, 10.5, 4, 10.25], "texture": "#0"} + "from": [ + 3.75, + 0, + 10.25 + ], + "to": [ + 4, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 4, + 10.25, + 3.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 10.25, + 4, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 4, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10.25, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.25, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 4, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1129", - "from": [4, 0, 10.25], - "to": [4.25, 0.25, 10.5], - "faces": { - "north": {"uv": [4.25, 10.25, 4, 10.5], "texture": "#0"}, - "east": {"uv": [4, 10.25, 4.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.25, 4.25, 10.5], "texture": "#0"}, - "west": {"uv": [4, 10.25, 4.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 10.25, 4.25, 10.5], "texture": "#0"}, - "down": {"uv": [4, 10.5, 4.25, 10.25], "texture": "#0"} + "from": [ + 4, + 0, + 10.25 + ], + "to": [ + 4.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 10.25, + 4, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10.5, + 4.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1130", - "from": [4.25, 0, 10.25], - "to": [4.5, 0.25, 10.5], - "faces": { - "north": {"uv": [4.5, 10.25, 4.25, 10.5], "texture": "#0"}, - "east": {"uv": [4.25, 10.25, 4.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.25, 4.5, 10.5], "texture": "#0"}, - "west": {"uv": [4.25, 10.25, 4.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10.25, 4.5, 10.5], "texture": "#0"}, - "down": {"uv": [4.25, 10.5, 4.5, 10.25], "texture": "#0"} + "from": [ + 4.25, + 0, + 10.25 + ], + "to": [ + 4.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 10.25, + 4.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.25, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1131", - "from": [4.5, 0, 10.25], - "to": [4.75, 0.25, 10.5], - "faces": { - "north": {"uv": [4.75, 10.25, 4.5, 10.5], "texture": "#0"}, - "east": {"uv": [4.5, 10.25, 4.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10.25, 4.75, 10.5], "texture": "#0"}, - "west": {"uv": [4.5, 10.25, 4.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10.25, 4.75, 10.5], "texture": "#0"}, - "down": {"uv": [4.5, 10.5, 4.75, 10.25], "texture": "#0"} + "from": [ + 4.5, + 0, + 10.25 + ], + "to": [ + 4.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 10.25, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1132", - "from": [4.75, 0, 10.25], - "to": [5, 0.25, 10.5], - "faces": { - "north": {"uv": [5, 10.25, 4.75, 10.5], "texture": "#0"}, - "east": {"uv": [4.75, 10.25, 5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10.25, 5, 10.5], "texture": "#0"}, - "west": {"uv": [4.75, 10.25, 5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10.25, 5, 10.5], "texture": "#0"}, - "down": {"uv": [4.75, 10.5, 5, 10.25], "texture": "#0"} + "from": [ + 4.75, + 0, + 10.25 + ], + "to": [ + 5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 5, + 10.25, + 4.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.25, + 5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.5, + 5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1133", - "from": [5, 0, 10.25], - "to": [5.25, 0.25, 10.5], - "faces": { - "north": {"uv": [5.25, 10.25, 5, 10.5], "texture": "#0"}, - "east": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#0"}, - "west": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#0"}, - "down": {"uv": [5, 10.5, 5.25, 10.25], "texture": "#0"} + "from": [ + 5, + 0, + 10.25 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 10.25, + 5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1134", - "from": [5.25, 0, 10.25], - "to": [5.5, 0.25, 10.5], - "faces": { - "north": {"uv": [5.5, 10.25, 5.25, 10.5], "texture": "#0"}, - "east": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#0"}, - "west": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#0"}, - "down": {"uv": [5.25, 10.5, 5.5, 10.25], "texture": "#0"} + "from": [ + 5.25, + 0, + 10.25 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1135", - "from": [5.5, 0, 10.25], - "to": [5.75, 0.25, 10.5], - "faces": { - "north": {"uv": [5.75, 10.25, 5.5, 10.5], "texture": "#0"}, - "east": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.25, 5.75, 10.5], "texture": "#0"}, - "west": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10.25, 5.75, 10.5], "texture": "#0"}, - "down": {"uv": [5.5, 10.5, 5.75, 10.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 10.25 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1136", - "from": [5.75, 0, 10.25], - "to": [6, 0.25, 10.5], - "faces": { - "north": {"uv": [6, 10.25, 5.75, 10.5], "texture": "#0"}, - "east": {"uv": [5.75, 10.25, 6, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10.25, 6, 10.5], "texture": "#0"}, - "west": {"uv": [5.75, 10.25, 6, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 10.25, 6, 10.5], "texture": "#0"}, - "down": {"uv": [5.75, 10.5, 6, 10.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 10.25 + ], + "to": [ + 6, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.5, + 6, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1137", - "from": [6, 0, 10.25], - "to": [6.25, 0.25, 10.5], - "faces": { - "north": {"uv": [6.25, 10.25, 6, 10.5], "texture": "#0"}, - "east": {"uv": [6, 10.25, 6.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10.25, 6.25, 10.5], "texture": "#0"}, - "west": {"uv": [6, 10.25, 6.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10.25, 6.25, 10.5], "texture": "#0"}, - "down": {"uv": [6, 10.5, 6.25, 10.25], "texture": "#0"} + "from": [ + 6, + 0, + 10.25 + ], + "to": [ + 6.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 10.25, + 6, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.5, + 6.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1138", - "from": [6.25, 0, 10.25], - "to": [6.5, 0.25, 10.5], - "faces": { - "north": {"uv": [6.5, 10.25, 6.25, 10.5], "texture": "#0"}, - "east": {"uv": [6.25, 10.25, 6.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10.25, 6.5, 10.5], "texture": "#0"}, - "west": {"uv": [6.25, 10.25, 6.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10.25, 6.5, 10.5], "texture": "#0"}, - "down": {"uv": [6.25, 10.5, 6.5, 10.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 10.25 + ], + "to": [ + 6.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1139", - "from": [6.5, 0, 10.25], - "to": [6.75, 0.25, 10.5], - "faces": { - "north": {"uv": [6.75, 10.25, 6.5, 10.5], "texture": "#0"}, - "east": {"uv": [6.5, 10.25, 6.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#0"}, - "west": {"uv": [6.5, 10.25, 6.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#0"}, - "down": {"uv": [6.5, 10.5, 6.75, 10.25], "texture": "#0"} + "from": [ + 6.5, + 0, + 10.25 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 10.25, + 6.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1140", - "from": [6.75, 0, 10.25], - "to": [7, 0.25, 10.5], - "faces": { - "north": {"uv": [7, 10.25, 6.75, 10.5], "texture": "#0"}, - "east": {"uv": [6.75, 10.25, 7, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.25, 7, 10.5], "texture": "#0"}, - "west": {"uv": [6.75, 10.25, 7, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10.25, 7, 10.5], "texture": "#0"}, - "down": {"uv": [6.75, 10.5, 7, 10.25], "texture": "#0"} + "from": [ + 6.75, + 0, + 10.25 + ], + "to": [ + 7, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 7, + 10.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10.25, + 7, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10.5, + 7, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1141", - "from": [7, 0, 10.25], - "to": [7.25, 0.25, 10.5], - "faces": { - "north": {"uv": [7.25, 10.25, 7, 10.5], "texture": "#0"}, - "east": {"uv": [7, 10.25, 7.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.25, 7.25, 10.5], "texture": "#0"}, - "west": {"uv": [7, 10.25, 7.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10.25, 7.25, 10.5], "texture": "#0"}, - "down": {"uv": [7, 10.5, 7.25, 10.25], "texture": "#0"} + "from": [ + 7, + 0, + 10.25 + ], + "to": [ + 7.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 10.25, + 7, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10.5, + 7.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1142", - "from": [7.25, 0, 10.25], - "to": [7.5, 0.25, 10.5], - "faces": { - "north": {"uv": [7.5, 10.25, 7.25, 10.5], "texture": "#0"}, - "east": {"uv": [7.25, 10.25, 7.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#0"}, - "west": {"uv": [7.25, 10.25, 7.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#0"}, - "down": {"uv": [7.25, 10.5, 7.5, 10.25], "texture": "#0"} + "from": [ + 7.25, + 0, + 10.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 10.25, + 7.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1143", - "from": [7.5, 0, 10.25], - "to": [7.75, 0.25, 10.5], - "faces": { - "north": {"uv": [7.75, 10.25, 7.5, 10.5], "texture": "#0"}, - "east": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#0"}, - "west": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10.25, 7.75, 10.5], "texture": "#0"}, - "down": {"uv": [7.5, 10.5, 7.75, 10.25], "texture": "#0"} + "from": [ + 7.5, + 0, + 10.25 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 10.25, + 7.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1144", - "from": [7.75, 0, 10.25], - "to": [8, 0.25, 10.5], - "faces": { - "north": {"uv": [8, 10.25, 7.75, 10.5], "texture": "#0"}, - "east": {"uv": [7.75, 10.25, 8, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#0"}, - "west": {"uv": [7.75, 10.25, 8, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#0"}, - "down": {"uv": [7.75, 10.5, 8, 10.25], "texture": "#0"} + "from": [ + 7.75, + 0, + 10.25 + ], + "to": [ + 8, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 8, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1145", - "from": [8, 0, 10.25], - "to": [8.25, 0.25, 10.5], - "faces": { - "north": {"uv": [8.25, 10.25, 8, 10.5], "texture": "#0"}, - "east": {"uv": [8, 10.25, 8.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#0"}, - "west": {"uv": [8, 10.25, 8.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#0"}, - "down": {"uv": [8, 10.5, 8.25, 10.25], "texture": "#0"} + "from": [ + 8, + 0, + 10.25 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1146", - "from": [8.25, 0, 10.25], - "to": [8.5, 0.25, 10.5], - "faces": { - "north": {"uv": [8.5, 10.25, 8.25, 10.5], "texture": "#0"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [8.25, 10.5, 8.5, 10.25], "texture": "#0"} + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1147", - "from": [8.5, 0, 10.25], - "to": [8.75, 0.25, 10.5], - "faces": { - "north": {"uv": [8.75, 10.25, 8.5, 10.5], "texture": "#0"}, - "east": {"uv": [8.5, 10.25, 8.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.25, 8.75, 10.5], "texture": "#0"}, - "west": {"uv": [8.5, 10.25, 8.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10.25, 8.75, 10.5], "texture": "#0"}, - "down": {"uv": [8.5, 10.5, 8.75, 10.25], "texture": "#0"} + "from": [ + 8.5, + 0, + 10.25 + ], + "to": [ + 8.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1148", - "from": [8.75, 0, 10.25], - "to": [9, 0.25, 10.5], - "faces": { - "north": {"uv": [9, 10.25, 8.75, 10.5], "texture": "#0"}, - "east": {"uv": [8.75, 10.25, 9, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.25, 9, 10.5], "texture": "#0"}, - "west": {"uv": [8.75, 10.25, 9, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10.25, 9, 10.5], "texture": "#0"}, - "down": {"uv": [8.75, 10.5, 9, 10.25], "texture": "#0"} + "from": [ + 8.75, + 0, + 10.25 + ], + "to": [ + 9, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 10.25, + 8.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.5, + 9, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1149", - "from": [9, 0, 10.25], - "to": [9.25, 0.25, 10.5], - "faces": { - "north": {"uv": [9.25, 10.25, 9, 10.5], "texture": "#0"}, - "east": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#0"}, - "west": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#0"}, - "down": {"uv": [9, 10.5, 9.25, 10.25], "texture": "#0"} + "from": [ + 9, + 0, + 10.25 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 10.25, + 9, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.5, + 9.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1150", - "from": [9.25, 0, 10.25], - "to": [9.5, 0.25, 10.5], - "faces": { - "north": {"uv": [9.5, 10.25, 9.25, 10.5], "texture": "#0"}, - "east": {"uv": [9.25, 10.25, 9.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.25, 9.5, 10.5], "texture": "#0"}, - "west": {"uv": [9.25, 10.25, 9.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10.25, 9.5, 10.5], "texture": "#0"}, - "down": {"uv": [9.25, 10.5, 9.5, 10.25], "texture": "#0"} + "from": [ + 9.25, + 0, + 10.25 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1151", - "from": [9.5, 0, 10.25], - "to": [9.75, 0.25, 10.5], - "faces": { - "north": {"uv": [9.75, 10.25, 9.5, 10.5], "texture": "#0"}, - "east": {"uv": [9.5, 10.25, 9.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#0"}, - "west": {"uv": [9.5, 10.25, 9.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#0"}, - "down": {"uv": [9.5, 10.5, 9.75, 10.25], "texture": "#0"} + "from": [ + 9.5, + 0, + 10.25 + ], + "to": [ + 9.75, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1152", - "from": [9.75, 0, 10.25], - "to": [10, 0.25, 10.5], - "faces": { - "north": {"uv": [10, 10.25, 9.75, 10.5], "texture": "#0"}, - "east": {"uv": [9.75, 10.25, 10, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.25, 10, 10.5], "texture": "#0"}, - "west": {"uv": [9.75, 10.25, 10, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10.25, 10, 10.5], "texture": "#0"}, - "down": {"uv": [9.75, 10.5, 10, 10.25], "texture": "#0"} + "from": [ + 9.75, + 0, + 10.25 + ], + "to": [ + 10, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 10, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.5, + 10, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1153", - "from": [10, 0, 10.25], - "to": [10.25, 0.25, 10.5], - "faces": { - "north": {"uv": [10.25, 10.25, 10, 10.5], "texture": "#0"}, - "east": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#0"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#0"}, - "down": {"uv": [10, 10.5, 10.25, 10.25], "texture": "#0"} + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 10.25, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 10.25, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1154", - "from": [10.25, 0, 10.25], - "to": [10.5, 0.25, 10.5], - "faces": { - "north": {"uv": [10.5, 10.25, 10.25, 10.5], "texture": "#0"}, - "east": {"uv": [10.25, 10.25, 10.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10.25, 10.5, 10.5], "texture": "#0"}, - "west": {"uv": [10.25, 10.25, 10.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 10.25, 10.5, 10.5], "texture": "#0"}, - "down": {"uv": [10.25, 10.5, 10.5, 10.25], "texture": "#0"} + "from": [ + 10.25, + 0, + 10.25 + ], + "to": [ + 10.5, + 0.25, + 10.5 + ], + "faces": { + "north": { + "uv": [ + 10.5, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.5, + 10.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1155", - "from": [2.75, 0, 10.5], - "to": [3, 0.25, 10.75], - "faces": { - "north": {"uv": [3, 10.5, 2.75, 10.75], "texture": "#0"}, - "east": {"uv": [2.75, 10.5, 3, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10.5, 3, 10.75], "texture": "#0"}, - "west": {"uv": [2.75, 10.5, 3, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 10.5, 3, 10.75], "texture": "#0"}, - "down": {"uv": [2.75, 10.75, 3, 10.5], "texture": "#0"} + "from": [ + 2.75, + 0, + 10.5 + ], + "to": [ + 3, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 2.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 10.5, + 3, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 10.5, + 3, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.75, + 3, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1156", - "from": [3, 0, 10.5], - "to": [3.25, 0.25, 10.75], - "faces": { - "north": {"uv": [3.25, 10.5, 3, 10.75], "texture": "#0"}, - "east": {"uv": [3, 10.5, 3.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.5, 3.25, 10.75], "texture": "#0"}, - "west": {"uv": [3, 10.5, 3.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 10.5, 3.25, 10.75], "texture": "#0"}, - "down": {"uv": [3, 10.75, 3.25, 10.5], "texture": "#0"} + "from": [ + 3, + 0, + 10.5 + ], + "to": [ + 3.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 3.25, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.75, + 3.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1157", - "from": [3.25, 0, 10.5], - "to": [3.5, 0.25, 10.75], - "faces": { - "north": {"uv": [3.5, 10.5, 3.25, 10.75], "texture": "#0"}, - "east": {"uv": [3.25, 10.5, 3.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.5, 3.5, 10.75], "texture": "#0"}, - "west": {"uv": [3.25, 10.5, 3.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 10.5, 3.5, 10.75], "texture": "#0"}, - "down": {"uv": [3.25, 10.75, 3.5, 10.5], "texture": "#0"} + "from": [ + 3.25, + 0, + 10.5 + ], + "to": [ + 3.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 10.5, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.75, + 3.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1158", - "from": [3.5, 0, 10.5], - "to": [3.75, 0.25, 10.75], - "faces": { - "north": {"uv": [3.75, 10.5, 3.5, 10.75], "texture": "#0"}, - "east": {"uv": [3.5, 10.5, 3.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.5, 3.75, 10.75], "texture": "#0"}, - "west": {"uv": [3.5, 10.5, 3.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 10.5, 3.75, 10.75], "texture": "#0"}, - "down": {"uv": [3.5, 10.75, 3.75, 10.5], "texture": "#0"} + "from": [ + 3.5, + 0, + 10.5 + ], + "to": [ + 3.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 10.5, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10.75, + 3.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1159", - "from": [3.75, 0, 10.5], - "to": [4, 0.25, 10.75], - "faces": { - "north": {"uv": [4, 10.5, 3.75, 10.75], "texture": "#0"}, - "east": {"uv": [3.75, 10.5, 4, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.5, 4, 10.75], "texture": "#0"}, - "west": {"uv": [3.75, 10.5, 4, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10.5, 4, 10.75], "texture": "#0"}, - "down": {"uv": [3.75, 10.75, 4, 10.5], "texture": "#0"} + "from": [ + 3.75, + 0, + 10.5 + ], + "to": [ + 4, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 4, + 10.5, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 10.5, + 4, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10.5, + 4, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.75, + 4, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1160", - "from": [4, 0, 10.5], - "to": [4.25, 0.25, 10.75], - "faces": { - "north": {"uv": [4.25, 10.5, 4, 10.75], "texture": "#0"}, - "east": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.5, 4.25, 10.75], "texture": "#0"}, - "west": {"uv": [4, 10.5, 4.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 10.5, 4.25, 10.75], "texture": "#0"}, - "down": {"uv": [4, 10.75, 4.25, 10.5], "texture": "#0"} + "from": [ + 4, + 0, + 10.5 + ], + "to": [ + 4.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 10.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10.5, + 4.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10.75, + 4.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1161", - "from": [4.25, 0, 10.5], - "to": [4.5, 0.25, 10.75], - "faces": { - "north": {"uv": [4.5, 10.5, 4.25, 10.75], "texture": "#0"}, - "east": {"uv": [4.25, 10.5, 4.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.5, 4.5, 10.75], "texture": "#0"}, - "west": {"uv": [4.25, 10.5, 4.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10.5, 4.5, 10.75], "texture": "#0"}, - "down": {"uv": [4.25, 10.75, 4.5, 10.5], "texture": "#0"} + "from": [ + 4.25, + 0, + 10.5 + ], + "to": [ + 4.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 4.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10.75, + 4.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1162", - "from": [4.5, 0, 10.5], - "to": [4.75, 0.25, 10.75], - "faces": { - "north": {"uv": [4.75, 10.5, 4.5, 10.75], "texture": "#0"}, - "east": {"uv": [4.5, 10.5, 4.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10.5, 4.75, 10.75], "texture": "#0"}, - "west": {"uv": [4.5, 10.5, 4.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10.5, 4.75, 10.75], "texture": "#0"}, - "down": {"uv": [4.5, 10.75, 4.75, 10.5], "texture": "#0"} + "from": [ + 4.5, + 0, + 10.5 + ], + "to": [ + 4.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.75, + 4.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1163", - "from": [4.75, 0, 10.5], - "to": [5, 0.25, 10.75], - "faces": { - "north": {"uv": [5, 10.5, 4.75, 10.75], "texture": "#0"}, - "east": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#0"}, - "west": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#0"}, - "down": {"uv": [4.75, 10.75, 5, 10.5], "texture": "#0"} + "from": [ + 4.75, + 0, + 10.5 + ], + "to": [ + 5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1164", - "from": [5, 0, 10.5], - "to": [5.25, 0.25, 10.75], - "faces": { - "north": {"uv": [5.25, 10.5, 5, 10.75], "texture": "#0"}, - "east": {"uv": [5, 10.5, 5.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#0"}, - "west": {"uv": [5, 10.5, 5.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#0"}, - "down": {"uv": [5, 10.75, 5.25, 10.5], "texture": "#0"} + "from": [ + 5, + 0, + 10.5 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.75, + 5.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1165", - "from": [5.25, 0, 10.5], - "to": [5.5, 0.25, 10.75], - "faces": { - "north": {"uv": [5.5, 10.5, 5.25, 10.75], "texture": "#0"}, - "east": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#0"}, - "west": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10.5, 5.5, 10.75], "texture": "#0"}, - "down": {"uv": [5.25, 10.75, 5.5, 10.5], "texture": "#0"} + "from": [ + 5.25, + 0, + 10.5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.75, + 5.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1166", - "from": [5.5, 0, 10.5], - "to": [5.75, 0.25, 10.75], - "faces": { - "north": {"uv": [5.75, 10.5, 5.5, 10.75], "texture": "#0"}, - "east": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#0"}, - "west": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#0"}, - "down": {"uv": [5.5, 10.75, 5.75, 10.5], "texture": "#0"} + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 5.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1167", - "from": [5.75, 0, 10.5], - "to": [6, 0.25, 10.75], - "faces": { - "north": {"uv": [6, 10.5, 5.75, 10.75], "texture": "#0"}, - "east": {"uv": [5.75, 10.5, 6, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#0"}, - "west": {"uv": [5.75, 10.5, 6, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#0"}, - "down": {"uv": [5.75, 10.75, 6, 10.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 10.5 + ], + "to": [ + 6, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 6, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1168", - "from": [6, 0, 10.5], - "to": [6.25, 0.25, 10.75], - "faces": { - "north": {"uv": [6.25, 10.5, 6, 10.75], "texture": "#0"}, - "east": {"uv": [6, 10.5, 6.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10.5, 6.25, 10.75], "texture": "#0"}, - "west": {"uv": [6, 10.5, 6.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10.5, 6.25, 10.75], "texture": "#0"}, - "down": {"uv": [6, 10.75, 6.25, 10.5], "texture": "#0"} + "from": [ + 6, + 0, + 10.5 + ], + "to": [ + 6.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.75, + 6.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1169", - "from": [6.25, 0, 10.5], - "to": [6.5, 0.25, 10.75], - "faces": { - "north": {"uv": [6.5, 10.5, 6.25, 10.75], "texture": "#0"}, - "east": {"uv": [6.25, 10.5, 6.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10.5, 6.5, 10.75], "texture": "#0"}, - "west": {"uv": [6.25, 10.5, 6.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10.5, 6.5, 10.75], "texture": "#0"}, - "down": {"uv": [6.25, 10.75, 6.5, 10.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 10.5 + ], + "to": [ + 6.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 10.5, + 6.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.75, + 6.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1170", - "from": [6.5, 0, 10.5], - "to": [6.75, 0.25, 10.75], - "faces": { - "north": {"uv": [6.75, 10.5, 6.5, 10.75], "texture": "#0"}, - "east": {"uv": [6.5, 10.5, 6.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.5, 6.75, 10.75], "texture": "#0"}, - "west": {"uv": [6.5, 10.5, 6.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 10.5, 6.75, 10.75], "texture": "#0"}, - "down": {"uv": [6.5, 10.75, 6.75, 10.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 10.5 + ], + "to": [ + 6.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.75, + 6.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1171", - "from": [6.75, 0, 10.5], - "to": [7, 0.25, 10.75], - "faces": { - "north": {"uv": [7, 10.5, 6.75, 10.75], "texture": "#0"}, - "east": {"uv": [6.75, 10.5, 7, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.5, 7, 10.75], "texture": "#0"}, - "west": {"uv": [6.75, 10.5, 7, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10.5, 7, 10.75], "texture": "#0"}, - "down": {"uv": [6.75, 10.75, 7, 10.5], "texture": "#0"} + "from": [ + 6.75, + 0, + 10.5 + ], + "to": [ + 7, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7, + 10.5, + 6.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10.75, + 7, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1172", - "from": [7, 0, 10.5], - "to": [7.25, 0.25, 10.75], - "faces": { - "north": {"uv": [7.25, 10.5, 7, 10.75], "texture": "#0"}, - "east": {"uv": [7, 10.5, 7.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.5, 7.25, 10.75], "texture": "#0"}, - "west": {"uv": [7, 10.5, 7.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10.5, 7.25, 10.75], "texture": "#0"}, - "down": {"uv": [7, 10.75, 7.25, 10.5], "texture": "#0"} + "from": [ + 7, + 0, + 10.5 + ], + "to": [ + 7.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10.5, + 7.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 7.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.5, + 7.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.5, + 7.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10.75, + 7.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1173", - "from": [7.25, 0, 10.5], - "to": [7.5, 0.25, 10.75], - "faces": { - "north": {"uv": [7.5, 10.5, 7.25, 10.75], "texture": "#0"}, - "east": {"uv": [7.25, 10.5, 7.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10.5, 7.5, 10.75], "texture": "#0"}, - "west": {"uv": [7.25, 10.5, 7.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10.5, 7.5, 10.75], "texture": "#0"}, - "down": {"uv": [7.25, 10.75, 7.5, 10.5], "texture": "#0"} + "from": [ + 7.25, + 0, + 10.5 + ], + "to": [ + 7.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 10.5, + 7.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10.75, + 7.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1174", - "from": [7.5, 0, 10.5], - "to": [7.75, 0.25, 10.75], - "faces": { - "north": {"uv": [7.75, 10.5, 7.5, 10.75], "texture": "#0"}, - "east": {"uv": [7.5, 10.5, 7.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.5, 7.75, 10.75], "texture": "#0"}, - "west": {"uv": [7.5, 10.5, 7.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10.5, 7.75, 10.75], "texture": "#0"}, - "down": {"uv": [7.5, 10.75, 7.75, 10.5], "texture": "#0"} + "from": [ + 7.5, + 0, + 10.5 + ], + "to": [ + 7.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 10.5, + 7.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.75, + 7.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1175", - "from": [7.75, 0, 10.5], - "to": [8, 0.25, 10.75], - "faces": { - "north": {"uv": [8, 10.5, 7.75, 10.75], "texture": "#0"}, - "east": {"uv": [7.75, 10.5, 8, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.5, 8, 10.75], "texture": "#0"}, - "west": {"uv": [7.75, 10.5, 8, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10.5, 8, 10.75], "texture": "#0"}, - "down": {"uv": [7.75, 10.75, 8, 10.5], "texture": "#0"} + "from": [ + 7.75, + 0, + 10.5 + ], + "to": [ + 8, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 8, + 10.5, + 7.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.75, + 8, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1176", - "from": [8, 0, 10.5], - "to": [8.25, 0.25, 10.75], - "faces": { - "north": {"uv": [8.25, 10.5, 8, 10.75], "texture": "#0"}, - "east": {"uv": [8, 10.5, 8.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.5, 8.25, 10.75], "texture": "#0"}, - "west": {"uv": [8, 10.5, 8.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10.5, 8.25, 10.75], "texture": "#0"}, - "down": {"uv": [8, 10.75, 8.25, 10.5], "texture": "#0"} + "from": [ + 8, + 0, + 10.5 + ], + "to": [ + 8.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.75, + 8.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1177", - "from": [8.25, 0, 10.5], - "to": [8.5, 0.25, 10.75], - "faces": { - "north": {"uv": [8.5, 10.5, 8.25, 10.75], "texture": "#0"}, - "east": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#0"}, - "west": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#0"}, - "down": {"uv": [8.25, 10.75, 8.5, 10.5], "texture": "#0"} + "from": [ + 8.25, + 0, + 10.5 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 8.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 8.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1178", - "from": [8.5, 0, 10.5], - "to": [8.75, 0.25, 10.75], - "faces": { - "north": {"uv": [8.75, 10.5, 8.5, 10.75], "texture": "#0"}, - "east": {"uv": [8.5, 10.5, 8.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.5, 8.75, 10.75], "texture": "#0"}, - "west": {"uv": [8.5, 10.5, 8.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10.5, 8.75, 10.75], "texture": "#0"}, - "down": {"uv": [8.5, 10.75, 8.75, 10.5], "texture": "#0"} + "from": [ + 8.5, + 0, + 10.5 + ], + "to": [ + 8.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.5, + 8.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 8.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1179", - "from": [8.75, 0, 10.5], - "to": [9, 0.25, 10.75], - "faces": { - "north": {"uv": [9, 10.5, 8.75, 10.75], "texture": "#0"}, - "east": {"uv": [8.75, 10.5, 9, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.5, 9, 10.75], "texture": "#0"}, - "west": {"uv": [8.75, 10.5, 9, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10.5, 9, 10.75], "texture": "#0"}, - "down": {"uv": [8.75, 10.75, 9, 10.5], "texture": "#0"} + "from": [ + 8.75, + 0, + 10.5 + ], + "to": [ + 9, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 9, + 10.5, + 8.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10.5, + 9, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10.5, + 9, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.75, + 9, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1180", - "from": [9, 0, 10.5], - "to": [9.25, 0.25, 10.75], - "faces": { - "north": {"uv": [9.25, 10.5, 9, 10.75], "texture": "#0"}, - "east": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#0"}, - "west": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#0"}, - "down": {"uv": [9, 10.75, 9.25, 10.5], "texture": "#0"} + "from": [ + 9, + 0, + 10.5 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.25, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1181", - "from": [9.25, 0, 10.5], - "to": [9.5, 0.25, 10.75], - "faces": { - "north": {"uv": [9.5, 10.5, 9.25, 10.75], "texture": "#0"}, - "east": {"uv": [9.25, 10.5, 9.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#0"}, - "west": {"uv": [9.25, 10.5, 9.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#0"}, - "down": {"uv": [9.25, 10.75, 9.5, 10.5], "texture": "#0"} + "from": [ + 9.25, + 0, + 10.5 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1182", - "from": [9.5, 0, 10.5], - "to": [9.75, 0.25, 10.75], - "faces": { - "north": {"uv": [9.75, 10.5, 9.5, 10.75], "texture": "#0"}, - "east": {"uv": [9.5, 10.5, 9.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.5, 9.75, 10.75], "texture": "#0"}, - "west": {"uv": [9.5, 10.5, 9.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10.5, 9.75, 10.75], "texture": "#0"}, - "down": {"uv": [9.5, 10.75, 9.75, 10.5], "texture": "#0"} + "from": [ + 9.5, + 0, + 10.5 + ], + "to": [ + 9.75, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 9.75, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.75, + 9.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1183", - "from": [9.75, 0, 10.5], - "to": [10, 0.25, 10.75], - "faces": { - "north": {"uv": [10, 10.5, 9.75, 10.75], "texture": "#0"}, - "east": {"uv": [9.75, 10.5, 10, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.5, 10, 10.75], "texture": "#0"}, - "west": {"uv": [9.75, 10.5, 10, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10.5, 10, 10.75], "texture": "#0"}, - "down": {"uv": [9.75, 10.75, 10, 10.5], "texture": "#0"} + "from": [ + 9.75, + 0, + 10.5 + ], + "to": [ + 10, + 0.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 10, + 10.5, + 9.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.75, + 10, + 10.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1184", - "from": [3.5, 0, 10.75], - "to": [3.75, 0.25, 11], - "faces": { - "north": {"uv": [3.75, 10.75, 3.5, 11], "texture": "#0"}, - "east": {"uv": [3.5, 10.75, 3.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.75, 3.75, 11], "texture": "#0"}, - "west": {"uv": [3.5, 10.75, 3.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 10.75, 3.75, 11], "texture": "#0"}, - "down": {"uv": [3.5, 11, 3.75, 10.75], "texture": "#0"} + "from": [ + 3.5, + 0, + 10.75 + ], + "to": [ + 3.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 3.75, + 10.75, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 11, + 3.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1185", - "from": [3.75, 0, 10.75], - "to": [4, 0.25, 11], - "faces": { - "north": {"uv": [4, 10.75, 3.75, 11], "texture": "#0"}, - "east": {"uv": [3.75, 10.75, 4, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.75, 4, 11], "texture": "#0"}, - "west": {"uv": [3.75, 10.75, 4, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10.75, 4, 11], "texture": "#0"}, - "down": {"uv": [3.75, 11, 4, 10.75], "texture": "#0"} + "from": [ + 3.75, + 0, + 10.75 + ], + "to": [ + 4, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 11, + 4, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1186", - "from": [4, 0, 10.75], - "to": [4.25, 0.25, 11], - "faces": { - "north": {"uv": [4.25, 10.75, 4, 11], "texture": "#0"}, - "east": {"uv": [4, 10.75, 4.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.75, 4.25, 11], "texture": "#0"}, - "west": {"uv": [4, 10.75, 4.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 10.75, 4.25, 11], "texture": "#0"}, - "down": {"uv": [4, 11, 4.25, 10.75], "texture": "#0"} + "from": [ + 4, + 0, + 10.75 + ], + "to": [ + 4.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 10.75, + 4, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 10.75, + 4.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.75, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 11, + 4.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1187", - "from": [4.25, 0, 10.75], - "to": [4.5, 0.25, 11], - "faces": { - "north": {"uv": [4.5, 10.75, 4.25, 11], "texture": "#0"}, - "east": {"uv": [4.25, 10.75, 4.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.75, 4.5, 11], "texture": "#0"}, - "west": {"uv": [4.25, 10.75, 4.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10.75, 4.5, 11], "texture": "#0"}, - "down": {"uv": [4.25, 11, 4.5, 10.75], "texture": "#0"} + "from": [ + 4.25, + 0, + 10.75 + ], + "to": [ + 4.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11, + 4.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1188", - "from": [4.5, 0, 10.75], - "to": [4.75, 0.25, 11], - "faces": { - "north": {"uv": [4.75, 10.75, 4.5, 11], "texture": "#0"}, - "east": {"uv": [4.5, 10.75, 4.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10.75, 4.75, 11], "texture": "#0"}, - "west": {"uv": [4.5, 10.75, 4.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10.75, 4.75, 11], "texture": "#0"}, - "down": {"uv": [4.5, 11, 4.75, 10.75], "texture": "#0"} + "from": [ + 4.5, + 0, + 10.75 + ], + "to": [ + 4.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 10.75, + 4.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 11, + 4.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1189", - "from": [4.75, 0, 10.75], - "to": [5, 0.25, 11], - "faces": { - "north": {"uv": [5, 10.75, 4.75, 11], "texture": "#0"}, - "east": {"uv": [4.75, 10.75, 5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10.75, 5, 11], "texture": "#0"}, - "west": {"uv": [4.75, 10.75, 5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10.75, 5, 11], "texture": "#0"}, - "down": {"uv": [4.75, 11, 5, 10.75], "texture": "#0"} + "from": [ + 4.75, + 0, + 10.75 + ], + "to": [ + 5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 5, + 10.75, + 4.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 11, + 5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1190", - "from": [5, 0, 10.75], - "to": [5.25, 0.25, 11], - "faces": { - "north": {"uv": [5.25, 10.75, 5, 11], "texture": "#0"}, - "east": {"uv": [5, 10.75, 5.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.75, 5.25, 11], "texture": "#0"}, - "west": {"uv": [5, 10.75, 5.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.75, 5.25, 11], "texture": "#0"}, - "down": {"uv": [5, 11, 5.25, 10.75], "texture": "#0"} + "from": [ + 5, + 0, + 10.75 + ], + "to": [ + 5.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 10.75, + 5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 11, + 5.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1191", - "from": [5.25, 0, 10.75], - "to": [5.5, 0.25, 11], - "faces": { - "north": {"uv": [5.5, 10.75, 5.25, 11], "texture": "#0"}, - "east": {"uv": [5.25, 10.75, 5.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.75, 5.5, 11], "texture": "#0"}, - "west": {"uv": [5.25, 10.75, 5.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 10.75, 5.5, 11], "texture": "#0"}, - "down": {"uv": [5.25, 11, 5.5, 10.75], "texture": "#0"} + "from": [ + 5.25, + 0, + 10.75 + ], + "to": [ + 5.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 10.75, + 5.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 11, + 5.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1192", - "from": [5.5, 0, 10.75], - "to": [5.75, 0.25, 11], - "faces": { - "north": {"uv": [5.75, 10.75, 5.5, 11], "texture": "#0"}, - "east": {"uv": [5.5, 10.75, 5.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.75, 5.75, 11], "texture": "#0"}, - "west": {"uv": [5.5, 10.75, 5.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10.75, 5.75, 11], "texture": "#0"}, - "down": {"uv": [5.5, 11, 5.75, 10.75], "texture": "#0"} + "from": [ + 5.5, + 0, + 10.75 + ], + "to": [ + 5.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 11, + 5.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1193", - "from": [5.75, 0, 10.75], - "to": [6, 0.25, 11], - "faces": { - "north": {"uv": [6, 10.75, 5.75, 11], "texture": "#0"}, - "east": {"uv": [5.75, 10.75, 6, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10.75, 6, 11], "texture": "#0"}, - "west": {"uv": [5.75, 10.75, 6, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 10.75, 6, 11], "texture": "#0"}, - "down": {"uv": [5.75, 11, 6, 10.75], "texture": "#0"} + "from": [ + 5.75, + 0, + 10.75 + ], + "to": [ + 6, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 6, + 10.75, + 5.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11, + 6, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1194", - "from": [6, 0, 10.75], - "to": [6.25, 0.25, 11], - "faces": { - "north": {"uv": [6.25, 10.75, 6, 11], "texture": "#0"}, - "east": {"uv": [6, 10.75, 6.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10.75, 6.25, 11], "texture": "#0"}, - "west": {"uv": [6, 10.75, 6.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10.75, 6.25, 11], "texture": "#0"}, - "down": {"uv": [6, 11, 6.25, 10.75], "texture": "#0"} + "from": [ + 6, + 0, + 10.75 + ], + "to": [ + 6.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 10.75, + 6, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11, + 6.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1195", - "from": [6.25, 0, 10.75], - "to": [6.5, 0.25, 11], - "faces": { - "north": {"uv": [6.5, 10.75, 6.25, 11], "texture": "#0"}, - "east": {"uv": [6.25, 10.75, 6.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10.75, 6.5, 11], "texture": "#0"}, - "west": {"uv": [6.25, 10.75, 6.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10.75, 6.5, 11], "texture": "#0"}, - "down": {"uv": [6.25, 11, 6.5, 10.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 10.75 + ], + "to": [ + 6.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 10.75, + 6.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10.75, + 6.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10.75, + 6.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.75, + 6.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10.75, + 6.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11, + 6.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1196", - "from": [6.5, 0, 10.75], - "to": [6.75, 0.25, 11], - "faces": { - "north": {"uv": [6.75, 10.75, 6.5, 11], "texture": "#0"}, - "east": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.75, 6.75, 11], "texture": "#0"}, - "west": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 10.75, 6.75, 11], "texture": "#0"}, - "down": {"uv": [6.5, 11, 6.75, 10.75], "texture": "#0"} + "from": [ + 6.5, + 0, + 10.75 + ], + "to": [ + 6.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 10.75, + 6.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 11, + 6.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1197", - "from": [6.75, 0, 10.75], - "to": [7, 0.25, 11], - "faces": { - "north": {"uv": [7, 10.75, 6.75, 11], "texture": "#0"}, - "east": {"uv": [6.75, 10.75, 7, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.75, 7, 11], "texture": "#0"}, - "west": {"uv": [6.75, 10.75, 7, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10.75, 7, 11], "texture": "#0"}, - "down": {"uv": [6.75, 11, 7, 10.75], "texture": "#0"} + "from": [ + 6.75, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 7, + 10.75, + 6.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 11, + 7, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1198", - "from": [7, 0, 10.75], - "to": [7.25, 0.25, 11], - "faces": { - "north": {"uv": [7.25, 10.75, 7, 11], "texture": "#0"}, - "east": {"uv": [7, 10.75, 7.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.75, 7.25, 11], "texture": "#0"}, - "west": {"uv": [7, 10.75, 7.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 10.75, 7.25, 11], "texture": "#0"}, - "down": {"uv": [7, 11, 7.25, 10.75], "texture": "#0"} + "from": [ + 7, + 0, + 10.75 + ], + "to": [ + 7.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 7.25, + 10.75, + 7, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11, + 7.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1199", - "from": [7.25, 0, 10.75], - "to": [7.5, 0.25, 11], - "faces": { - "north": {"uv": [7.5, 10.75, 7.25, 11], "texture": "#0"}, - "east": {"uv": [7.25, 10.75, 7.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10.75, 7.5, 11], "texture": "#0"}, - "west": {"uv": [7.25, 10.75, 7.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 10.75, 7.5, 11], "texture": "#0"}, - "down": {"uv": [7.25, 11, 7.5, 10.75], "texture": "#0"} + "from": [ + 7.25, + 0, + 10.75 + ], + "to": [ + 7.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11, + 7.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1200", - "from": [7.5, 0, 10.75], - "to": [7.75, 0.25, 11], - "faces": { - "north": {"uv": [7.75, 10.75, 7.5, 11], "texture": "#0"}, - "east": {"uv": [7.5, 10.75, 7.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.75, 7.75, 11], "texture": "#0"}, - "west": {"uv": [7.5, 10.75, 7.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10.75, 7.75, 11], "texture": "#0"}, - "down": {"uv": [7.5, 11, 7.75, 10.75], "texture": "#0"} + "from": [ + 7.5, + 0, + 10.75 + ], + "to": [ + 7.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 10.75, + 7.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 11, + 7.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1201", - "from": [7.75, 0, 10.75], - "to": [8, 0.25, 11], - "faces": { - "north": {"uv": [8, 10.75, 7.75, 11], "texture": "#0"}, - "east": {"uv": [7.75, 10.75, 8, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.75, 8, 11], "texture": "#0"}, - "west": {"uv": [7.75, 10.75, 8, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10.75, 8, 11], "texture": "#0"}, - "down": {"uv": [7.75, 11, 8, 10.75], "texture": "#0"} + "from": [ + 7.75, + 0, + 10.75 + ], + "to": [ + 8, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 8, + 10.75, + 7.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10.75, + 8, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 11, + 8, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1202", - "from": [8, 0, 10.75], - "to": [8.25, 0.25, 11], - "faces": { - "north": {"uv": [8.25, 10.75, 8, 11], "texture": "#0"}, - "east": {"uv": [8, 10.75, 8.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.75, 8.25, 11], "texture": "#0"}, - "west": {"uv": [8, 10.75, 8.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10.75, 8.25, 11], "texture": "#0"}, - "down": {"uv": [8, 11, 8.25, 10.75], "texture": "#0"} + "from": [ + 8, + 0, + 10.75 + ], + "to": [ + 8.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 10.75, + 8, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 11, + 8.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1203", - "from": [8.25, 0, 10.75], - "to": [8.5, 0.25, 11], - "faces": { - "north": {"uv": [8.5, 10.75, 8.25, 11], "texture": "#0"}, - "east": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "west": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "down": {"uv": [8.25, 11, 8.5, 10.75], "texture": "#0"} + "from": [ + 8.25, + 0, + 10.75 + ], + "to": [ + 8.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11, + 8.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1204", - "from": [8.5, 0, 10.75], - "to": [8.75, 0.25, 11], - "faces": { - "north": {"uv": [8.75, 10.75, 8.5, 11], "texture": "#0"}, - "east": {"uv": [8.5, 10.75, 8.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.75, 8.75, 11], "texture": "#0"}, - "west": {"uv": [8.5, 10.75, 8.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10.75, 8.75, 11], "texture": "#0"}, - "down": {"uv": [8.5, 11, 8.75, 10.75], "texture": "#0"} + "from": [ + 8.5, + 0, + 10.75 + ], + "to": [ + 8.75, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 10.75, + 8.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.75, + 8.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.75, + 8.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.75, + 8.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 11, + 8.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1205", - "from": [8.75, 0, 10.75], - "to": [9, 0.25, 11], - "faces": { - "north": {"uv": [9, 10.75, 8.75, 11], "texture": "#0"}, - "east": {"uv": [8.75, 10.75, 9, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.75, 9, 11], "texture": "#0"}, - "west": {"uv": [8.75, 10.75, 9, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10.75, 9, 11], "texture": "#0"}, - "down": {"uv": [8.75, 11, 9, 10.75], "texture": "#0"} + "from": [ + 8.75, + 0, + 10.75 + ], + "to": [ + 9, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 9, + 10.75, + 8.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11, + 9, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1206", - "from": [9, 0, 10.75], - "to": [9.25, 0.25, 11], - "faces": { - "north": {"uv": [9.25, 10.75, 9, 11], "texture": "#0"}, - "east": {"uv": [9, 10.75, 9.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.75, 9.25, 11], "texture": "#0"}, - "west": {"uv": [9, 10.75, 9.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10.75, 9.25, 11], "texture": "#0"}, - "down": {"uv": [9, 11, 9.25, 10.75], "texture": "#0"} + "from": [ + 9, + 0, + 10.75 + ], + "to": [ + 9.25, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 9.25, + 10.75, + 9, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11, + 9.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1207", - "from": [9.25, 0, 10.75], - "to": [9.5, 0.25, 11], - "faces": { - "north": {"uv": [9.5, 10.75, 9.25, 11], "texture": "#0"}, - "east": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#0"}, - "west": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#0"}, - "down": {"uv": [9.25, 11, 9.5, 10.75], "texture": "#0"} + "from": [ + 9.25, + 0, + 10.75 + ], + "to": [ + 9.5, + 0.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 10.75, + 9.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1208", - "from": [5, 0, 11], - "to": [5.25, 0.25, 11.25], - "faces": { - "north": {"uv": [5.25, 11, 5, 11.25], "texture": "#0"}, - "east": {"uv": [5, 11, 5.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 11, 5.25, 11.25], "texture": "#0"}, - "west": {"uv": [5, 11, 5.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 11, 5.25, 11.25], "texture": "#0"}, - "down": {"uv": [5, 11.25, 5.25, 11], "texture": "#0"} + "from": [ + 5, + 0, + 11 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 11, + 5, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 11.25, + 5.25, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1209", - "from": [5.25, 0, 11], - "to": [5.5, 0.25, 11.25], - "faces": { - "north": {"uv": [5.5, 11, 5.25, 11.25], "texture": "#0"}, - "east": {"uv": [5.25, 11, 5.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 11, 5.5, 11.25], "texture": "#0"}, - "west": {"uv": [5.25, 11, 5.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 11, 5.5, 11.25], "texture": "#0"}, - "down": {"uv": [5.25, 11.25, 5.5, 11], "texture": "#0"} + "from": [ + 5.25, + 0, + 11 + ], + "to": [ + 5.5, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 11, + 5.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 5.5, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1210", - "from": [5.5, 0, 11], - "to": [5.75, 0.25, 11.25], - "faces": { - "north": {"uv": [5.75, 11, 5.5, 11.25], "texture": "#0"}, - "east": {"uv": [5.5, 11, 5.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 11, 5.75, 11.25], "texture": "#0"}, - "west": {"uv": [5.5, 11, 5.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 11, 5.75, 11.25], "texture": "#0"}, - "down": {"uv": [5.5, 11.25, 5.75, 11], "texture": "#0"} + "from": [ + 5.5, + 0, + 11 + ], + "to": [ + 5.75, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 11, + 5.5, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1211", - "from": [5.75, 0, 11], - "to": [6, 0.25, 11.25], - "faces": { - "north": {"uv": [6, 11, 5.75, 11.25], "texture": "#0"}, - "east": {"uv": [5.75, 11, 6, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11, 6, 11.25], "texture": "#0"}, - "west": {"uv": [5.75, 11, 6, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11, 6, 11.25], "texture": "#0"}, - "down": {"uv": [5.75, 11.25, 6, 11], "texture": "#0"} + "from": [ + 5.75, + 0, + 11 + ], + "to": [ + 6, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 11, + 5.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11, + 6, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.25, + 6, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1212", - "from": [6, 0, 11], - "to": [6.25, 0.25, 11.25], - "faces": { - "north": {"uv": [6.25, 11, 6, 11.25], "texture": "#0"}, - "east": {"uv": [6, 11, 6.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11, 6.25, 11.25], "texture": "#0"}, - "west": {"uv": [6, 11, 6.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 11, 6.25, 11.25], "texture": "#0"}, - "down": {"uv": [6, 11.25, 6.25, 11], "texture": "#0"} + "from": [ + 6, + 0, + 11 + ], + "to": [ + 6.25, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 11, + 6, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11.25, + 6.25, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1213", - "from": [6.25, 0, 11], - "to": [6.5, 0.25, 11.25], - "faces": { - "north": {"uv": [6.5, 11, 6.25, 11.25], "texture": "#0"}, - "east": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#0"}, - "west": {"uv": [6.25, 11, 6.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11, 6.5, 11.25], "texture": "#0"}, - "down": {"uv": [6.25, 11.25, 6.5, 11], "texture": "#0"} + "from": [ + 6.25, + 0, + 11 + ], + "to": [ + 6.5, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 11, + 6.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11, + 6.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1214", - "from": [7.25, 0, 11], - "to": [7.5, 0.25, 11.25], - "faces": { - "north": {"uv": [7.5, 11, 7.25, 11.25], "texture": "#0"}, - "east": {"uv": [7.25, 11, 7.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 11, 7.5, 11.25], "texture": "#0"}, - "west": {"uv": [7.25, 11, 7.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 11, 7.5, 11.25], "texture": "#0"}, - "down": {"uv": [7.25, 11.25, 7.5, 11], "texture": "#0"} + "from": [ + 7.25, + 0, + 11 + ], + "to": [ + 7.5, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 11, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 11, + 7.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 11, + 7.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 11, + 7.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 11, + 7.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11.25, + 7.5, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1215", - "from": [7.5, 0, 11], - "to": [7.75, 0.25, 11.25], - "faces": { - "north": {"uv": [7.75, 11, 7.5, 11.25], "texture": "#0"}, - "east": {"uv": [7.5, 11, 7.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 11, 7.75, 11.25], "texture": "#0"}, - "west": {"uv": [7.5, 11, 7.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 11, 7.75, 11.25], "texture": "#0"}, - "down": {"uv": [7.5, 11.25, 7.75, 11], "texture": "#0"} + "from": [ + 7.5, + 0, + 11 + ], + "to": [ + 7.75, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 11, + 7.5, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11, + 7.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 11, + 7.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 11, + 7.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 11, + 7.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 11.25, + 7.75, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1216", - "from": [7.75, 0, 11], - "to": [8, 0.25, 11.25], - "faces": { - "north": {"uv": [8, 11, 7.75, 11.25], "texture": "#0"}, - "east": {"uv": [7.75, 11, 8, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 11, 8, 11.25], "texture": "#0"}, - "west": {"uv": [7.75, 11, 8, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 11, 8, 11.25], "texture": "#0"}, - "down": {"uv": [7.75, 11.25, 8, 11], "texture": "#0"} + "from": [ + 7.75, + 0, + 11 + ], + "to": [ + 8, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 8, + 11, + 7.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 11.25, + 8, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1217", - "from": [8, 0, 11], - "to": [8.25, 0.25, 11.25], - "faces": { - "north": {"uv": [8.25, 11, 8, 11.25], "texture": "#0"}, - "east": {"uv": [8, 11, 8.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 11, 8.25, 11.25], "texture": "#0"}, - "west": {"uv": [8, 11, 8.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 11, 8.25, 11.25], "texture": "#0"}, - "down": {"uv": [8, 11.25, 8.25, 11], "texture": "#0"} + "from": [ + 8, + 0, + 11 + ], + "to": [ + 8.25, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 8.25, + 11, + 8, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 11.25, + 8.25, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1218", - "from": [8.25, 0, 11], - "to": [8.5, 0.25, 11.25], - "faces": { - "north": {"uv": [8.5, 11, 8.25, 11.25], "texture": "#0"}, - "east": {"uv": [8.25, 11, 8.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 11, 8.5, 11.25], "texture": "#0"}, - "west": {"uv": [8.25, 11, 8.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 11, 8.5, 11.25], "texture": "#0"}, - "down": {"uv": [8.25, 11.25, 8.5, 11], "texture": "#0"} + "from": [ + 8.25, + 0, + 11 + ], + "to": [ + 8.5, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 11, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1219", - "from": [8.5, 0, 11], - "to": [8.75, 0.25, 11.25], - "faces": { - "north": {"uv": [8.75, 11, 8.5, 11.25], "texture": "#0"}, - "east": {"uv": [8.5, 11, 8.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#0"}, - "west": {"uv": [8.5, 11, 8.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#0"}, - "down": {"uv": [8.5, 11.25, 8.75, 11], "texture": "#0"} + "from": [ + 8.5, + 0, + 11 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 8.75, + 11, + 8.5, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 11.25, + 8.75, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1220", - "from": [8.75, 0, 11], - "to": [9, 0.25, 11.25], - "faces": { - "north": {"uv": [9, 11, 8.75, 11.25], "texture": "#0"}, - "east": {"uv": [8.75, 11, 9, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11, 9, 11.25], "texture": "#0"}, - "west": {"uv": [8.75, 11, 9, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 11, 9, 11.25], "texture": "#0"}, - "down": {"uv": [8.75, 11.25, 9, 11], "texture": "#0"} + "from": [ + 8.75, + 0, + 11 + ], + "to": [ + 9, + 0.25, + 11.25 + ], + "faces": { + "north": { + "uv": [ + 9, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11.25, + 9, + 11 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1221", - "from": [5.5, 0, 11.25], - "to": [5.75, 0.25, 11.5], - "faces": { - "north": {"uv": [5.75, 11.25, 5.5, 11.5], "texture": "#0"}, - "east": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#0"}, - "west": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#0"}, - "down": {"uv": [5.5, 11.5, 5.75, 11.25], "texture": "#0"} + "from": [ + 5.5, + 0, + 11.25 + ], + "to": [ + 5.75, + 0.25, + 11.5 + ], + "faces": { + "north": { + "uv": [ + 5.75, + 11.25, + 5.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 5.75, + 11.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1222", - "from": [5.75, 0, 11.25], - "to": [6, 0.25, 11.5], - "faces": { - "north": {"uv": [6, 11.25, 5.75, 11.5], "texture": "#0"}, - "east": {"uv": [5.75, 11.25, 6, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.25, 6, 11.5], "texture": "#0"}, - "west": {"uv": [5.75, 11.25, 6, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11.25, 6, 11.5], "texture": "#0"}, - "down": {"uv": [5.75, 11.5, 6, 11.25], "texture": "#0"} + "from": [ + 5.75, + 0, + 11.25 + ], + "to": [ + 6, + 0.25, + 11.5 + ], + "faces": { + "north": { + "uv": [ + 6, + 11.25, + 5.75, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 6, + 11.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1223", - "from": [6, 0, 11.25], - "to": [6.25, 0.25, 11.5], - "faces": { - "north": {"uv": [6.25, 11.25, 6, 11.5], "texture": "#0"}, - "east": {"uv": [6, 11.25, 6.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11.25, 6.25, 11.5], "texture": "#0"}, - "west": {"uv": [6, 11.25, 6.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 11.25, 6.25, 11.5], "texture": "#0"}, - "down": {"uv": [6, 11.5, 6.25, 11.25], "texture": "#0"} + "from": [ + 6, + 0, + 11.25 + ], + "to": [ + 6.25, + 0.25, + 11.5 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 11.25, + 6, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11.5, + 6.25, + 11.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1224", - "from": [6.25, 0, 11.25], - "to": [6.5, 0.25, 11.5], - "faces": { - "north": {"uv": [6.5, 11.25, 6.25, 11.5], "texture": "#0"}, - "east": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.25, 6.5, 11.5], "texture": "#0"}, - "west": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11.25, 6.5, 11.5], "texture": "#0"}, - "down": {"uv": [6.25, 11.5, 6.5, 11.25], "texture": "#0"} + "from": [ + 6.25, + 0, + 11.25 + ], + "to": [ + 6.5, + 0.25, + 11.5 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 11.25, + 6.25, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.25 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1225", - "from": [5.75, 0, 11.5], - "to": [6, 0.25, 11.75], - "faces": { - "north": {"uv": [6, 11.5, 5.75, 11.75], "texture": "#0"}, - "east": {"uv": [5.75, 11.5, 6, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.5, 6, 11.75], "texture": "#0"}, - "west": {"uv": [5.75, 11.5, 6, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11.5, 6, 11.75], "texture": "#0"}, - "down": {"uv": [5.75, 11.75, 6, 11.5], "texture": "#0"} + "from": [ + 5.75, + 0, + 11.5 + ], + "to": [ + 6, + 0.25, + 11.75 + ], + "faces": { + "north": { + "uv": [ + 6, + 11.5, + 5.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.75, + 6, + 11.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1226", - "from": [6, 0, 11.5], - "to": [6.25, 0.25, 11.75], - "faces": { - "north": {"uv": [6.25, 11.5, 6, 11.75], "texture": "#0"}, - "east": {"uv": [6, 11.5, 6.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11.5, 6.25, 11.75], "texture": "#0"}, - "west": {"uv": [6, 11.5, 6.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 11.5, 6.25, 11.75], "texture": "#0"}, - "down": {"uv": [6, 11.75, 6.25, 11.5], "texture": "#0"} + "from": [ + 6, + 0, + 11.5 + ], + "to": [ + 6.25, + 0.25, + 11.75 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 11.5, + 6, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11.75, + 6.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1227", - "from": [6.25, 0, 11.5], - "to": [6.5, 0.25, 11.75], - "faces": { - "north": {"uv": [6.5, 11.5, 6.25, 11.75], "texture": "#0"}, - "east": {"uv": [6.25, 11.5, 6.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.5, 6.5, 11.75], "texture": "#0"}, - "west": {"uv": [6.25, 11.5, 6.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11.5, 6.5, 11.75], "texture": "#0"}, - "down": {"uv": [6.25, 11.75, 6.5, 11.5], "texture": "#0"} + "from": [ + 6.25, + 0, + 11.5 + ], + "to": [ + 6.5, + 0.25, + 11.75 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 11.5, + 6.25, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.75, + 6.5, + 11.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1228", - "from": [6.5, 0, 11.5], - "to": [6.75, 0.25, 11.75], - "faces": { - "north": {"uv": [6.75, 11.5, 6.5, 11.75], "texture": "#0"}, - "east": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#0"}, - "west": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#0"}, - "down": {"uv": [6.5, 11.75, 6.75, 11.5], "texture": "#0"} + "from": [ + 6.5, + 0, + 11.5 + ], + "to": [ + 6.75, + 0.25, + 11.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 11.5, + 6.5, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 11.75, + 6.75, + 11.5 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1229", - "from": [6, 0, 11.75], - "to": [6.25, 0.25, 12], - "faces": { - "north": {"uv": [6.25, 11.75, 6, 12], "texture": "#0"}, - "east": {"uv": [6, 11.75, 6.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11.75, 6.25, 12], "texture": "#0"}, - "west": {"uv": [6, 11.75, 6.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 11.75, 6.25, 12], "texture": "#0"}, - "down": {"uv": [6, 12, 6.25, 11.75], "texture": "#0"} + "from": [ + 6, + 0, + 11.75 + ], + "to": [ + 6.25, + 0.25, + 12 + ], + "faces": { + "north": { + "uv": [ + 6.25, + 11.75, + 6, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 12, + 6.25, + 11.75 + ], + "texture": "#0" + } } }, { "name": "nanyouhagi_1230", - "from": [6.25, 0, 11.75], - "to": [6.5, 0.25, 12], - "faces": { - "north": {"uv": [6.5, 11.75, 6.25, 12], "texture": "#0"}, - "east": {"uv": [6.25, 11.75, 6.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.75, 6.5, 12], "texture": "#0"}, - "west": {"uv": [6.25, 11.75, 6.5, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11.75, 6.5, 12], "texture": "#0"}, - "down": {"uv": [6.25, 12, 6.5, 11.75], "texture": "#0"} + "from": [ + 6.25, + 0, + 11.75 + ], + "to": [ + 6.5, + 0.25, + 12 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 11.75, + 6.25, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12, + 6.5, + 11.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "nanyouhagi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647, + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 860, + 861, + 862, + 863, + 864, + 865, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 955, + 956, + 957, + 958, + 959, + 960, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/napoleonfish.json b/pack/assets/minecraft/models/fish/napoleonfish.json index 41dab2a9..b83d395d 100644 --- a/pack/assets/minecraft/models/fish/napoleonfish.json +++ b/pack/assets/minecraft/models/fish/napoleonfish.json @@ -2,695 +2,3687 @@ "__name": "ナポレオンフィッシュ", "credit": "Made with Blockbench", "textures": { - "0": "fish/napoleonfish", - "particle": "fish/napoleonfish" + "0": "item/fish/napoleonfish", + "particle": "item/fish/napoleonfish" }, "elements": [ { "name": "napoleonfish_1", - "from": [6.75, 0, 3], - "to": [7, 0.25, 3.25], + "from": [ + 6.75, + 0, + 3 + ], + "to": [ + 7, + 0.25, + 3.25 + ], "faces": { - "north": {"uv": [7, 3, 6.75, 3.25], "texture": "#0"}, - "east": {"uv": [6.75, 3, 7, 3.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 3, 7, 3.25], "texture": "#0"}, - "west": {"uv": [6.75, 3, 7, 3.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 3, 7, 3.25], "texture": "#0"}, - "down": {"uv": [6.75, 3.25, 7, 3], "texture": "#0"} + "north": { + "uv": [ + 7, + 3, + 6.75, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3, + 7, + 3.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 3, + 7, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3, + 7, + 3.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 3, + 7, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 3.25, + 7, + 3 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_2", - "from": [5.75, 0, 5], - "to": [10.5, 0.25, 11.5], + "from": [ + 5.75, + 0, + 5 + ], + "to": [ + 10.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.5, 5, 5.75, 5.25], "texture": "#0"}, - "east": {"uv": [10.25, 5, 10.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.25, 10.5, 11.5], "texture": "#0"}, - "west": {"uv": [5.75, 5, 6, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5, 10.5, 11.5], "texture": "#0"}, - "down": {"uv": [5.75, 11.5, 10.5, 5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 5, + 10.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 10.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5, + 10.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 10.5, + 5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_3", - "from": [5, 0, 5.25], - "to": [5.75, 0.25, 12], + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [5.75, 5.25, 5, 5.5], "texture": "#0"}, - "east": {"uv": [5.5, 5.25, 5.75, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 11.75, 5.75, 12], "texture": "#0"}, - "west": {"uv": [5, 5.25, 5.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.25, 5.75, 12], "texture": "#0"}, - "down": {"uv": [5, 12, 5.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 11.75, + 5.75, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.75, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 12, + 5.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_4", - "from": [10.5, 0, 5.25], - "to": [11.25, 0.25, 12.25], + "from": [ + 10.5, + 0, + 5.25 + ], + "to": [ + 11.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.25, 5.25, 10.5, 5.5], "texture": "#0"}, - "east": {"uv": [11, 5.25, 11.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 12, 11.25, 12.25], "texture": "#0"}, - "west": {"uv": [10.5, 5.25, 10.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.25, 11.25, 12.25], "texture": "#0"}, - "down": {"uv": [10.5, 12.25, 11.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 5.25, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 5.25, + 11.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 12, + 11.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.25, + 10.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.25, + 11.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 12.25, + 11.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_5", - "from": [4.25, 0, 5.5], - "to": [5, 0.25, 12], + "from": [ + 4.25, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [5, 5.5, 4.25, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 11.75, 5, 12], "texture": "#0"}, - "west": {"uv": [4.25, 5.5, 4.5, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5.5, 5, 12], "texture": "#0"}, - "down": {"uv": [4.25, 12, 5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5.5, + 4.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 11.75, + 5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5.5, + 4.5, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5.5, + 5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 12, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_6", - "from": [11.25, 0, 5.5], - "to": [12, 0.25, 12.25], + "from": [ + 11.25, + 0, + 5.5 + ], + "to": [ + 12, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12, 5.5, 11.25, 5.75], "texture": "#0"}, - "east": {"uv": [11.75, 5.5, 12, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 12, 12, 12.25], "texture": "#0"}, - "west": {"uv": [11.25, 5.5, 11.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 5.5, 12, 12.25], "texture": "#0"}, - "down": {"uv": [11.25, 12.25, 12, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.5, + 11.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.5, + 12, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 12, + 12, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 5.5, + 11.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 5.5, + 12, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 12.25, + 12, + 5.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_7", - "from": [3.5, 0, 5.75], - "to": [4.25, 0.25, 11.75], + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 4.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [4.25, 5.75, 3.5, 6], "texture": "#0"}, - "east": {"uv": [4, 5.75, 4.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 11.5, 4.25, 11.75], "texture": "#0"}, - "west": {"uv": [3.5, 5.75, 3.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.75, 4.25, 11.75], "texture": "#0"}, - "down": {"uv": [3.5, 11.75, 4.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.75, + 4.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 11.5, + 4.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 4.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 11.75, + 4.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_8", - "from": [12, 0, 5.75], - "to": [12.5, 0.25, 12], + "from": [ + 12, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12, 6], "texture": "#0"}, - "east": {"uv": [12.25, 5.75, 12.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 11.75, 12.5, 12], "texture": "#0"}, - "west": {"uv": [12, 5.75, 12.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5.75, 12.5, 12], "texture": "#0"}, - "down": {"uv": [12, 12, 12.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.75, + 12, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 11.75, + 12.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5.75, + 12.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5.75, + 12.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 12, + 12.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_9", - "from": [3, 0, 6], - "to": [3.5, 0.25, 11.75], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [3.5, 6, 3, 6.25], "texture": "#0"}, - "east": {"uv": [3.25, 6, 3.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 11.5, 3.5, 11.75], "texture": "#0"}, - "west": {"uv": [3, 6, 3.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6, 3.5, 11.75], "texture": "#0"}, - "down": {"uv": [3, 11.75, 3.5, 6], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 11.5, + 3.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 3.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 11.75, + 3.5, + 6 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_10", - "from": [12.5, 0, 6], - "to": [13, 0.25, 8], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 13, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13, 6, 12.5, 6.25], "texture": "#0"}, - "east": {"uv": [12.75, 6, 13, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 7.75, 13, 8], "texture": "#0"}, - "west": {"uv": [12.5, 6, 12.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6, 13, 8], "texture": "#0"}, - "down": {"uv": [12.5, 8, 13, 6], "texture": "#0"} + "north": { + "uv": [ + 13, + 6, + 12.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 6, + 13, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 7.75, + 13, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6, + 13, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8, + 13, + 6 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_11", - "from": [2.75, 0, 6.25], - "to": [3, 0.25, 11.75], + "from": [ + 2.75, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [3, 6.25, 2.75, 6.5], "texture": "#0"}, - "east": {"uv": [2.75, 6.25, 3, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 11.5, 3, 11.75], "texture": "#0"}, - "west": {"uv": [2.75, 6.25, 3, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6.25, 3, 11.75], "texture": "#0"}, - "down": {"uv": [2.75, 11.75, 3, 6.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.25, + 2.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 11.5, + 3, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6.25, + 3, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6.25, + 3, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 11.75, + 3, + 6.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_12", - "from": [13, 0, 6.25], - "to": [13.5, 0.25, 8], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13.5, 6.25, 13, 6.5], "texture": "#0"}, - "east": {"uv": [13.25, 6.25, 13.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7.75, 13.5, 8], "texture": "#0"}, - "west": {"uv": [13, 6.25, 13.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.25, 13.5, 8], "texture": "#0"}, - "down": {"uv": [13, 8, 13.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6.25, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.25, + 13.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7.75, + 13.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8, + 13.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_13", - "from": [2.5, 0, 6.5], - "to": [2.75, 0.25, 11.75], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 2.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [2.75, 6.5, 2.5, 6.75], "texture": "#0"}, - "east": {"uv": [2.5, 6.5, 2.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 11.5, 2.75, 11.75], "texture": "#0"}, - "west": {"uv": [2.5, 6.5, 2.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.5, 2.75, 11.75], "texture": "#0"}, - "down": {"uv": [2.5, 11.75, 2.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 6.5, + 2.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.5, + 2.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 11.5, + 2.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 2.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 11.75, + 2.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_14", - "from": [13.5, 0, 6.5], - "to": [14, 0.25, 7.5], + "from": [ + 13.5, + 0, + 6.5 + ], + "to": [ + 14, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14, 6.5, 13.5, 6.75], "texture": "#0"}, - "east": {"uv": [13.75, 6.5, 14, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.25, 14, 7.5], "texture": "#0"}, - "west": {"uv": [13.5, 6.5, 13.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.5, 14, 7.5], "texture": "#0"}, - "down": {"uv": [13.5, 7.5, 14, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 6.5, + 13.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.5, + 14, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.25, + 14, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.5, + 13.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.5, + 14, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.5, + 14, + 6.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_15", - "from": [2.25, 0, 6.75], - "to": [2.5, 0.25, 7.25], + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [2.5, 6.75, 2.25, 7], "texture": "#0"}, - "east": {"uv": [2.25, 6.75, 2.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7, 2.5, 7.25], "texture": "#0"}, - "west": {"uv": [2.25, 6.75, 2.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.75, 2.5, 7.25], "texture": "#0"}, - "down": {"uv": [2.25, 7.25, 2.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6.75, + 2.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7, + 2.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 2.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7.25, + 2.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_16", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 7.25], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7, 14.25, 7.25], "texture": "#0"}, - "west": {"uv": [14, 6.75, 14.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.75, 14.25, 7.25], "texture": "#0"}, - "down": {"uv": [14, 7.25, 14.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.25, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_17", - "from": [13.5, 0, 7.5], - "to": [13.75, 0.25, 7.75], + "from": [ + 13.5, + 0, + 7.5 + ], + "to": [ + 13.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#0"}, - "east": {"uv": [13.5, 7.5, 13.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "west": {"uv": [13.5, 7.5, 13.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "down": {"uv": [13.5, 7.75, 13.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7.5, + 13.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.75, + 13.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_18", - "from": [14.25, 0, 7.5], - "to": [14.75, 0.25, 11.25], + "from": [ + 14.25, + 0, + 7.5 + ], + "to": [ + 14.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.25, 7.75], "texture": "#0"}, - "east": {"uv": [14.5, 7.5, 14.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 11, 14.75, 11.25], "texture": "#0"}, - "west": {"uv": [14.25, 7.5, 14.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.5, 14.75, 11.25], "texture": "#0"}, - "down": {"uv": [14.25, 11.25, 14.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 11, + 14.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.5, + 14.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.5, + 14.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 11.25, + 14.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_19", - "from": [2.25, 0, 7.75], - "to": [2.5, 0.25, 11.75], + "from": [ + 2.25, + 0, + 7.75 + ], + "to": [ + 2.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [2.5, 7.75, 2.25, 8], "texture": "#0"}, - "east": {"uv": [2.25, 7.75, 2.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 11.5, 2.5, 11.75], "texture": "#0"}, - "west": {"uv": [2.25, 7.75, 2.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7.75, 2.5, 11.75], "texture": "#0"}, - "down": {"uv": [2.25, 11.75, 2.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 7.75, + 2.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.75, + 2.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 11.5, + 2.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7.75, + 2.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.75, + 2.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 11.75, + 2.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_20", - "from": [13.75, 0, 7.75], - "to": [14.25, 0.25, 11], + "from": [ + 13.75, + 0, + 7.75 + ], + "to": [ + 14.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.25, 7.75, 13.75, 8], "texture": "#0"}, - "east": {"uv": [14, 7.75, 14.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.75, 14.25, 11], "texture": "#0"}, - "west": {"uv": [13.75, 7.75, 14, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7.75, 14.25, 11], "texture": "#0"}, - "down": {"uv": [13.75, 11, 14.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.75, + 14.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7.75, + 14, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 11, + 14.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_21", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 11], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 11 + ], "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#0"}, - "east": {"uv": [14.75, 7.75, 15, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10.75, 15, 11], "texture": "#0"}, - "west": {"uv": [14.75, 7.75, 15, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.75, 15, 11], "texture": "#0"}, - "down": {"uv": [14.75, 11, 15, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10.75, + 15, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 11, + 15, + 7.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_22", - "from": [2, 0, 8], - "to": [2.25, 0.25, 11.5], + "from": [ + 2, + 0, + 8 + ], + "to": [ + 2.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [2.25, 8, 2, 8.25], "texture": "#0"}, - "east": {"uv": [2, 8, 2.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 11.25, 2.25, 11.5], "texture": "#0"}, - "west": {"uv": [2, 8, 2.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8, 2.25, 11.5], "texture": "#0"}, - "down": {"uv": [2, 11.5, 2.25, 8], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8, + 2.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 11.25, + 2.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8, + 2.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8, + 2.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 11.5, + 2.25, + 8 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_23", - "from": [13.5, 0, 8], - "to": [13.75, 0.25, 10.75], + "from": [ + 13.5, + 0, + 8 + ], + "to": [ + 13.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [13.75, 8, 13.5, 8.25], "texture": "#0"}, - "east": {"uv": [13.5, 8, 13.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 10.5, 13.75, 10.75], "texture": "#0"}, - "west": {"uv": [13.5, 8, 13.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8, 13.75, 10.75], "texture": "#0"}, - "down": {"uv": [13.5, 10.75, 13.75, 8], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8, + 13.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 10.5, + 13.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8, + 13.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8, + 13.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 10.75, + 13.75, + 8 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_24", - "from": [15, 0, 8], - "to": [15.25, 0.25, 10.75], + "from": [ + 15, + 0, + 8 + ], + "to": [ + 15.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15.25, 8, 15, 8.25], "texture": "#0"}, - "east": {"uv": [15, 8, 15.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10.5, 15.25, 10.75], "texture": "#0"}, - "west": {"uv": [15, 8, 15.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8, 15.25, 10.75], "texture": "#0"}, - "down": {"uv": [15, 10.75, 15.25, 8], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8, + 15.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10.5, + 15.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8, + 15.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8, + 15.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.75, + 15.25, + 8 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_25", - "from": [1.75, 0, 8.25], - "to": [2, 0.25, 11.5], + "from": [ + 1.75, + 0, + 8.25 + ], + "to": [ + 2, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [2, 8.25, 1.75, 8.5], "texture": "#0"}, - "east": {"uv": [1.75, 8.25, 2, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 11.25, 2, 11.5], "texture": "#0"}, - "west": {"uv": [1.75, 8.25, 2, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.25, 2, 11.5], "texture": "#0"}, - "down": {"uv": [1.75, 11.5, 2, 8.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 8.25, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.25, + 2, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 11.25, + 2, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.25, + 2, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.25, + 2, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 11.5, + 2, + 8.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_26", - "from": [12.5, 0, 8.25], - "to": [13.5, 0.25, 10.5], + "from": [ + 12.5, + 0, + 8.25 + ], + "to": [ + 13.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [13.5, 8.25, 12.5, 8.5], "texture": "#0"}, - "east": {"uv": [13.25, 8.25, 13.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 10.25, 13.5, 10.5], "texture": "#0"}, - "west": {"uv": [12.5, 8.25, 12.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.25, 13.5, 10.5], "texture": "#0"}, - "down": {"uv": [12.5, 10.5, 13.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 8.25, + 13.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 10.25, + 13.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.25, + 12.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.25, + 13.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 10.5, + 13.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_27", - "from": [15.25, 0, 8.25], - "to": [15.5, 0.25, 10.5], + "from": [ + 15.25, + 0, + 8.25 + ], + "to": [ + 15.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.5, 8.25, 15.25, 8.5], "texture": "#0"}, - "east": {"uv": [15.25, 8.25, 15.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 10.25, 15.5, 10.5], "texture": "#0"}, - "west": {"uv": [15.25, 8.25, 15.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.25, 15.5, 10.5], "texture": "#0"}, - "down": {"uv": [15.25, 10.5, 15.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 10.25, + 15.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 10.5, + 15.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_28", - "from": [1.5, 0, 8.5], - "to": [1.75, 0.25, 11.25], + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 1.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [1.75, 8.5, 1.5, 8.75], "texture": "#0"}, - "east": {"uv": [1.5, 8.5, 1.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 11, 1.75, 11.25], "texture": "#0"}, - "west": {"uv": [1.5, 8.5, 1.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.5, 1.75, 11.25], "texture": "#0"}, - "down": {"uv": [1.5, 11.25, 1.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 11, + 1.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 1.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 11.25, + 1.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_29", - "from": [1.25, 0, 8.75], - "to": [1.5, 0.25, 11.25], + "from": [ + 1.25, + 0, + 8.75 + ], + "to": [ + 1.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [1.5, 8.75, 1.25, 9], "texture": "#0"}, - "east": {"uv": [1.25, 8.75, 1.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 11, 1.5, 11.25], "texture": "#0"}, - "west": {"uv": [1.25, 8.75, 1.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.75, 1.5, 11.25], "texture": "#0"}, - "down": {"uv": [1.25, 11.25, 1.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.75, + 1.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 11, + 1.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.75, + 1.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.75, + 1.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 11.25, + 1.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_30", - "from": [15.5, 0, 8.75], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 8.75 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 8.75, 15.5, 9], "texture": "#0"}, - "east": {"uv": [15.5, 8.75, 15.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#0"}, - "west": {"uv": [15.5, 8.75, 15.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 8.75, 15.75, 10], "texture": "#0"}, - "down": {"uv": [15.5, 10, 15.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 8.75, + 15.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 8.75, + 15.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_31", - "from": [1, 0, 9], - "to": [1.25, 0.25, 11], + "from": [ + 1, + 0, + 9 + ], + "to": [ + 1.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [1.25, 9, 1, 9.25], "texture": "#0"}, - "east": {"uv": [1, 9, 1.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 10.75, 1.25, 11], "texture": "#0"}, - "west": {"uv": [1, 9, 1.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 9, 1.25, 11], "texture": "#0"}, - "down": {"uv": [1, 11, 1.25, 9], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 9, + 1, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9, + 1.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10.75, + 1.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9, + 1.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 1.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 11, + 1.25, + 9 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_32", - "from": [0.75, 0, 9.25], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 9.25 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 9.25, 0.75, 9.5], "texture": "#0"}, - "east": {"uv": [0.75, 9.25, 1, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#0"}, - "west": {"uv": [0.75, 9.25, 1, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 9.25, 1, 9.75], "texture": "#0"}, - "down": {"uv": [0.75, 9.75, 1, 9.25], "texture": "#0"} + "north": { + "uv": [ + 1, + 9.25, + 0.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 9.25, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 9.25, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 9.25, + 1, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 9.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_33", - "from": [0.75, 0, 10], - "to": [1, 0.25, 10.75], + "from": [ + 0.75, + 0, + 10 + ], + "to": [ + 1, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [1, 10, 0.75, 10.25], "texture": "#0"}, - "east": {"uv": [0.75, 10, 1, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 10.5, 1, 10.75], "texture": "#0"}, - "west": {"uv": [0.75, 10, 1, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 10, 1, 10.75], "texture": "#0"}, - "down": {"uv": [0.75, 10.75, 1, 10], "texture": "#0"} + "north": { + "uv": [ + 1, + 10, + 0.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 10, + 1, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.5, + 1, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 10, + 1, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 10, + 1, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 10.75, + 1, + 10 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_34", - "from": [0.5, 0, 10.25], - "to": [0.75, 0.25, 10.5], + "from": [ + 0.5, + 0, + 10.25 + ], + "to": [ + 0.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [0.75, 10.25, 0.5, 10.5], "texture": "#0"}, - "east": {"uv": [0.5, 10.25, 0.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 10.25, 0.75, 10.5], "texture": "#0"}, - "west": {"uv": [0.5, 10.25, 0.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 10.25, 0.75, 10.5], "texture": "#0"}, - "down": {"uv": [0.5, 10.5, 0.75, 10.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 10.25, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10.25, + 0.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 10.25, + 0.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 10.25, + 0.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10.25, + 0.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_35", - "from": [12.5, 0, 10.75], - "to": [13.25, 0.25, 12], + "from": [ + 12.5, + 0, + 10.75 + ], + "to": [ + 13.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [13.25, 10.75, 12.5, 11], "texture": "#0"}, - "east": {"uv": [13, 10.75, 13.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 11.75, 13.25, 12], "texture": "#0"}, - "west": {"uv": [12.5, 10.75, 12.75, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 10.75, 13.25, 12], "texture": "#0"}, - "down": {"uv": [12.5, 12, 13.25, 10.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 10.75, + 12.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 10.75, + 13.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 11.75, + 13.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 10.75, + 12.75, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 10.75, + 13.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 12, + 13.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_36", - "from": [13.25, 0, 11], - "to": [13.5, 0.25, 11.75], + "from": [ + 13.25, + 0, + 11 + ], + "to": [ + 13.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [13.5, 11, 13.25, 11.25], "texture": "#0"}, - "east": {"uv": [13.25, 11, 13.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 11.5, 13.5, 11.75], "texture": "#0"}, - "west": {"uv": [13.25, 11, 13.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 11, 13.5, 11.75], "texture": "#0"}, - "down": {"uv": [13.25, 11.75, 13.5, 11], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 11, + 13.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 11, + 13.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 11.5, + 13.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 11, + 13.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 11, + 13.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 11.75, + 13.5, + 11 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_37", - "from": [5.75, 0, 11.5], - "to": [8, 0.25, 12], + "from": [ + 5.75, + 0, + 11.5 + ], + "to": [ + 8, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8, 11.5, 5.75, 11.75], "texture": "#0"}, - "east": {"uv": [7.75, 11.5, 8, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.75, 8, 12], "texture": "#0"}, - "west": {"uv": [5.75, 11.5, 6, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11.5, 8, 12], "texture": "#0"}, - "down": {"uv": [5.75, 12, 8, 11.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 11.5, + 5.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 11.5, + 8, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.75, + 8, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11.5, + 6, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11.5, + 8, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 12, + 8, + 11.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_38", - "from": [9.75, 0, 11.5], - "to": [10.5, 0.25, 11.75], + "from": [ + 9.75, + 0, + 11.5 + ], + "to": [ + 10.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.5, 11.5, 9.75, 11.75], "texture": "#0"}, - "east": {"uv": [10.25, 11.5, 10.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 11.5, 10.5, 11.75], "texture": "#0"}, - "west": {"uv": [9.75, 11.5, 10, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 11.5, 10.5, 11.75], "texture": "#0"}, - "down": {"uv": [9.75, 11.75, 10.5, 11.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 11.5, + 9.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 11.5, + 10.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 11.5, + 10.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 11.5, + 10.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 11.75, + 10.5, + 11.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_39", - "from": [4, 0, 11.75], - "to": [4.25, 0.25, 12], + "from": [ + 4, + 0, + 11.75 + ], + "to": [ + 4.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [4.25, 11.75, 4, 12], "texture": "#0"}, - "east": {"uv": [4, 11.75, 4.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 11.75, 4.25, 12], "texture": "#0"}, - "west": {"uv": [4, 11.75, 4.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 11.75, 4.25, 12], "texture": "#0"}, - "down": {"uv": [4, 12, 4.25, 11.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 11.75, + 4, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 12, + 4.25, + 11.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_40", - "from": [8, 0, 11.75], - "to": [8.25, 0.25, 13], + "from": [ + 8, + 0, + 11.75 + ], + "to": [ + 8.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [8.25, 11.75, 8, 12], "texture": "#0"}, - "east": {"uv": [8, 11.75, 8.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 12.75, 8.25, 13], "texture": "#0"}, - "west": {"uv": [8, 11.75, 8.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 11.75, 8.25, 13], "texture": "#0"}, - "down": {"uv": [8, 13, 8.25, 11.75], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 11.75, + 8, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 11.75, + 8.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 12.75, + 8.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11.75, + 8.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 11.75, + 8.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 13, + 8.25, + 11.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_41", - "from": [10, 0, 11.75], - "to": [10.5, 0.25, 12], + "from": [ + 10, + 0, + 11.75 + ], + "to": [ + 10.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [10.5, 11.75, 10, 12], "texture": "#0"}, - "east": {"uv": [10.25, 11.75, 10.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 11.75, 10.5, 12], "texture": "#0"}, - "west": {"uv": [10, 11.75, 10.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 11.75, 10.5, 12], "texture": "#0"}, - "down": {"uv": [10, 12, 10.5, 11.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 11.75, + 10, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 11.75, + 10.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 11.75, + 10.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 11.75, + 10.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 11.75, + 10.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 12, + 10.5, + 11.75 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_42", - "from": [6.5, 0, 12], - "to": [8, 0.25, 12.25], + "from": [ + 6.5, + 0, + 12 + ], + "to": [ + 8, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8, 12, 6.5, 12.25], "texture": "#0"}, - "east": {"uv": [7.75, 12, 8, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 12, 8, 12.25], "texture": "#0"}, - "west": {"uv": [6.5, 12, 6.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 12, 8, 12.25], "texture": "#0"}, - "down": {"uv": [6.5, 12.25, 8, 12], "texture": "#0"} + "north": { + "uv": [ + 8, + 12, + 6.5, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 12, + 8, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12, + 8, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 12, + 6.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 12, + 8, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 12.25, + 8, + 12 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_43", - "from": [8.25, 0, 12], - "to": [8.5, 0.25, 13], + "from": [ + 8.25, + 0, + 12 + ], + "to": [ + 8.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [8.5, 12, 8.25, 12.25], "texture": "#0"}, - "east": {"uv": [8.25, 12, 8.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 12.75, 8.5, 13], "texture": "#0"}, - "west": {"uv": [8.25, 12, 8.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 12, 8.5, 13], "texture": "#0"}, - "down": {"uv": [8.25, 13, 8.5, 12], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 12, + 8.25, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 12, + 8.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 12.75, + 8.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 12, + 8.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 12, + 8.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 13, + 8.5, + 12 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_44", - "from": [12, 0, 12], - "to": [12.25, 0.25, 12.25], + "from": [ + 12, + 0, + 12 + ], + "to": [ + 12.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12.25, 12, 12, 12.25], "texture": "#0"}, - "east": {"uv": [12, 12, 12.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 12, 12.25, 12.25], "texture": "#0"}, - "west": {"uv": [12, 12, 12.25, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 12, 12.25, 12.25], "texture": "#0"}, - "down": {"uv": [12, 12.25, 12.25, 12], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 12, + 12, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 12, + 12.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 12, + 12.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 12, + 12.25, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 12, + 12.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 12.25, + 12.25, + 12 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_45", - "from": [7, 0, 12.25], - "to": [8, 0.25, 12.5], + "from": [ + 7, + 0, + 12.25 + ], + "to": [ + 8, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [8, 12.25, 7, 12.5], "texture": "#0"}, - "east": {"uv": [7.75, 12.25, 8, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 12.25, 8, 12.5], "texture": "#0"}, - "west": {"uv": [7, 12.25, 7.25, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 12.25, 8, 12.5], "texture": "#0"}, - "down": {"uv": [7, 12.5, 8, 12.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 12.25, + 7, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 12.25, + 8, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12.25, + 8, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 12.25, + 7.25, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 12.25, + 8, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 12.5, + 8, + 12.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_46", - "from": [8.5, 0, 12.25], - "to": [8.75, 0.25, 13.25], + "from": [ + 8.5, + 0, + 12.25 + ], + "to": [ + 8.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [8.75, 12.25, 8.5, 12.5], "texture": "#0"}, - "east": {"uv": [8.5, 12.25, 8.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 13, 8.75, 13.25], "texture": "#0"}, - "west": {"uv": [8.5, 12.25, 8.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 12.25, 8.75, 13.25], "texture": "#0"}, - "down": {"uv": [8.5, 13.25, 8.75, 12.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 12.25, + 8.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 12.25, + 8.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 13, + 8.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 12.25, + 8.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 12.25, + 8.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 13.25, + 8.75, + 12.25 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_47", - "from": [7.5, 0, 12.5], - "to": [8, 0.25, 12.75], + "from": [ + 7.5, + 0, + 12.5 + ], + "to": [ + 8, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [8, 12.5, 7.5, 12.75], "texture": "#0"}, - "east": {"uv": [7.75, 12.5, 8, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 12.5, 8, 12.75], "texture": "#0"}, - "west": {"uv": [7.5, 12.5, 7.75, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 12.5, 8, 12.75], "texture": "#0"}, - "down": {"uv": [7.5, 12.75, 8, 12.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 12.5, + 7.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 12.5, + 8, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 12.5, + 8, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 12.5, + 7.75, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 12.5, + 8, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 12.75, + 8, + 12.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_48", - "from": [8.75, 0, 12.5], - "to": [9, 0.25, 13.25], + "from": [ + 8.75, + 0, + 12.5 + ], + "to": [ + 9, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [9, 12.5, 8.75, 12.75], "texture": "#0"}, - "east": {"uv": [8.75, 12.5, 9, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 13, 9, 13.25], "texture": "#0"}, - "west": {"uv": [8.75, 12.5, 9, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 12.5, 9, 13.25], "texture": "#0"}, - "down": {"uv": [8.75, 13.25, 9, 12.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 12.5, + 8.75, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 12.5, + 9, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 13, + 9, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 12.5, + 9, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 12.5, + 9, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 13.25, + 9, + 12.5 + ], + "texture": "#0" + } } }, { "name": "napoleonfish_49", - "from": [9, 0, 12.75], - "to": [9.25, 0.25, 13], + "from": [ + 9, + 0, + 12.75 + ], + "to": [ + 9.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.25, 12.75, 9, 13], "texture": "#0"}, - "east": {"uv": [9, 12.75, 9.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 12.75, 9.25, 13], "texture": "#0"}, - "west": {"uv": [9, 12.75, 9.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 12.75, 9.25, 13], "texture": "#0"}, - "down": {"uv": [9, 13, 9.25, 12.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 12.75, + 9, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 13, + 9.25, + 12.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 6.5, 15.25], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 6.5, + 15.25 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 6.5, 15.25], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 6.5, + 15.25 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 6.5, 15.25], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 6.5, + 15.25 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 6.5, 15.25], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 6.5, + 15.25 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 13.25, 15.25], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 13.25, + 15.25 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 13, 21], - "scale": [1.89, 1.89, 1.89] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 13, + 21 + ], + "scale": [ + 1.89, + 1.89, + 1.89 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "napoleonfish", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/neontetra.json b/pack/assets/minecraft/models/fish/neontetra.json index b4718286..68ed5219 100644 --- a/pack/assets/minecraft/models/fish/neontetra.json +++ b/pack/assets/minecraft/models/fish/neontetra.json @@ -2,747 +2,3975 @@ "__name": "ネオンテトラ", "credit": "Made with Blockbench", "textures": { - "0": "fish/neontetra", - "particle": "fish/neontetra" + "0": "item/fish/neontetra", + "particle": "item/fish/neontetra" }, "elements": [ { "name": "neontetra_0", - "from": [8.5, 0, 4.25], - "to": [9.25, 0.25, 5.5], + "from": [ + 8.5, + 0, + 4.25 + ], + "to": [ + 9.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [9.25, 4.25, 8.5, 4.5], "texture": "#0"}, - "east": {"uv": [9, 4.25, 9.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "west": {"uv": [8.5, 4.25, 8.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.25, 9.25, 5.5], "texture": "#0"}, - "down": {"uv": [8.5, 5.5, 9.25, 4.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.25, + 9.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.25, + 8.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 9.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_1", - "from": [8, 0, 4.5], - "to": [8.5, 0.25, 9.5], + "from": [ + 8, + 0, + 4.5 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 4.5, 8, 4.75], "texture": "#0"}, - "east": {"uv": [8.25, 4.5, 8.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.25, 8.5, 9.5], "texture": "#0"}, - "west": {"uv": [8, 4.5, 8.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 4.5, 8.5, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 8.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4.5, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.5, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.5, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_2", - "from": [9.25, 0, 4.5], - "to": [9.5, 0.25, 5.25], + "from": [ + 9.25, + 0, + 4.5 + ], + "to": [ + 9.5, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [9.5, 4.5, 9.25, 4.75], "texture": "#0"}, - "east": {"uv": [9.25, 4.5, 9.5, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5, 9.5, 5.25], "texture": "#0"}, - "west": {"uv": [9.25, 4.5, 9.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 4.5, 9.5, 5.25], "texture": "#0"}, - "down": {"uv": [9.25, 5.25, 9.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 4.5, + 9.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4.5, + 9.5, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 4.5, + 9.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5.25, + 9.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_3", - "from": [7.5, 0, 4.75], - "to": [8, 0.25, 9.75], + "from": [ + 7.5, + 0, + 4.75 + ], + "to": [ + 8, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8, 4.75, 7.5, 5], "texture": "#0"}, - "east": {"uv": [7.75, 4.75, 8, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.5, 8, 9.75], "texture": "#0"}, - "west": {"uv": [7.5, 4.75, 7.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.75, 8, 9.75], "texture": "#0"}, - "down": {"uv": [7.5, 9.75, 8, 4.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 4.75, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.75, + 8, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.75, + 7.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.75, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.75, + 8, + 4.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_4", - "from": [7.25, 0, 5], - "to": [7.5, 0.25, 11], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.5, 5, 7.25, 5.25], "texture": "#0"}, - "east": {"uv": [7.25, 5, 7.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 10.75, 7.5, 11], "texture": "#0"}, - "west": {"uv": [7.25, 5, 7.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5, 7.5, 11], "texture": "#0"}, - "down": {"uv": [7.25, 11, 7.5, 5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11, + 7.5, + 5 + ], + "texture": "#0" + } } }, { "name": "neontetra_5", - "from": [14.25, 0, 5], - "to": [15, 0.25, 6.25], + "from": [ + 14.25, + 0, + 5 + ], + "to": [ + 15, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15, 5, 14.25, 5.25], "texture": "#0"}, - "east": {"uv": [14.75, 5, 15, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6, 15, 6.25], "texture": "#0"}, - "west": {"uv": [14.25, 5, 14.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 5, 15, 6.25], "texture": "#0"}, - "down": {"uv": [14.25, 6.25, 15, 5], "texture": "#0"} + "north": { + "uv": [ + 15, + 5, + 14.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 5, + 15, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6, + 15, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 5, + 14.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 5, + 15, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.25, + 15, + 5 + ], + "texture": "#0" + } } }, { "name": "neontetra_6", - "from": [7, 0, 5.25], - "to": [7.25, 0.25, 11], + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.25, 5.25, 7, 5.5], "texture": "#0"}, - "east": {"uv": [7, 5.25, 7.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10.75, 7.25, 11], "texture": "#0"}, - "west": {"uv": [7, 5.25, 7.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.25, 7.25, 11], "texture": "#0"}, - "down": {"uv": [7, 11, 7.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.25, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11, + 7.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_7", - "from": [14, 0, 5.25], - "to": [14.25, 0.25, 7], + "from": [ + 14, + 0, + 5.25 + ], + "to": [ + 14.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [14.25, 5.25, 14, 5.5], "texture": "#0"}, - "east": {"uv": [14, 5.25, 14.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 6.75, 14.25, 7], "texture": "#0"}, - "west": {"uv": [14, 5.25, 14.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5.25, 14.25, 7], "texture": "#0"}, - "down": {"uv": [14, 7, 14.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 5.25, + 14, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 5.25, + 14.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.25, + 14.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5.25, + 14.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7, + 14.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_8", - "from": [15, 0, 5.25], - "to": [15.25, 0.25, 5.75], + "from": [ + 15, + 0, + 5.25 + ], + "to": [ + 15.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [15.25, 5.25, 15, 5.5], "texture": "#0"}, - "east": {"uv": [15, 5.25, 15.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 5.5, 15.25, 5.75], "texture": "#0"}, - "west": {"uv": [15, 5.25, 15.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 5.25, 15.25, 5.75], "texture": "#0"}, - "down": {"uv": [15, 5.75, 15.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 5.25, + 15, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 5.25, + 15.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 5.5, + 15.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 5.25, + 15.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 5.25, + 15.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 5.75, + 15.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_9", - "from": [6.5, 0, 5.5], - "to": [7, 0.25, 10.75], + "from": [ + 6.5, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7, 5.5, 6.5, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.5, 7, 10.75], "texture": "#0"}, - "west": {"uv": [6.5, 5.5, 6.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.5, 7, 10.75], "texture": "#0"}, - "down": {"uv": [6.5, 10.75, 7, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5.5, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 6.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.75, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_10", - "from": [8.5, 0, 5.5], - "to": [9, 0.25, 5.75], + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [9, 5.5, 8.5, 5.75], "texture": "#0"}, - "east": {"uv": [8.75, 5.5, 9, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.5, 9, 5.75], "texture": "#0"}, - "west": {"uv": [8.5, 5.5, 8.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.5, 9, 5.75], "texture": "#0"}, - "down": {"uv": [8.5, 5.75, 9, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 9, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.75, + 9, + 5.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_11", - "from": [13.5, 0, 5.5], - "to": [14, 0.25, 7.25], + "from": [ + 13.5, + 0, + 5.5 + ], + "to": [ + 14, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14, 5.5, 13.5, 5.75], "texture": "#0"}, - "east": {"uv": [13.75, 5.5, 14, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7, 14, 7.25], "texture": "#0"}, - "west": {"uv": [13.5, 5.5, 13.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 5.5, 14, 7.25], "texture": "#0"}, - "down": {"uv": [13.5, 7.25, 14, 5.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 5.5, + 13.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 5.5, + 14, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 5.5, + 13.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 5.5, + 14, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.25, + 14, + 5.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_12", - "from": [4.5, 0, 5.75], - "to": [6.5, 0.25, 10], + "from": [ + 4.5, + 0, + 5.75 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 5.75, 4.5, 6], "texture": "#0"}, - "east": {"uv": [6.25, 5.75, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [4.5, 5.75, 4.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.75, 6.5, 10], "texture": "#0"}, - "down": {"uv": [4.5, 10, 6.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 5.75, + 4.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.75, + 4.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10, + 6.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_13", - "from": [8.5, 0, 5.75], - "to": [8.75, 0.25, 9.5], + "from": [ + 8.5, + 0, + 5.75 + ], + "to": [ + 8.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.75, 5.75, 8.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5.75, 8.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 9.25, 8.75, 9.5], "texture": "#0"}, - "west": {"uv": [8.5, 5.75, 8.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.75, 8.75, 9.5], "texture": "#0"}, - "down": {"uv": [8.5, 9.5, 8.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.25, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.75, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.5, + 8.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_14", - "from": [13.25, 0, 5.75], - "to": [13.5, 0.25, 9.5], + "from": [ + 13.25, + 0, + 5.75 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 5.75, 13.25, 6], "texture": "#0"}, - "east": {"uv": [13.25, 5.75, 13.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9.25, 13.5, 9.5], "texture": "#0"}, - "west": {"uv": [13.25, 5.75, 13.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 5.75, 13.5, 9.5], "texture": "#0"}, - "down": {"uv": [13.25, 9.5, 13.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 5.75, + 13.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 5.75, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 5.75, + 13.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 5.75, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.5, + 13.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_15", - "from": [3.5, 0, 6], - "to": [4.5, 0.25, 9.75], + "from": [ + 3.5, + 0, + 6 + ], + "to": [ + 4.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.5, 6, 3.5, 6.25], "texture": "#0"}, - "east": {"uv": [4.25, 6, 4.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.5, 4.5, 9.75], "texture": "#0"}, - "west": {"uv": [3.5, 6, 3.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6, 4.5, 9.75], "texture": "#0"}, - "down": {"uv": [3.5, 9.75, 4.5, 6], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 6, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6, + 4.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 4.5, + 6 + ], + "texture": "#0" + } } }, { "name": "neontetra_16", - "from": [13, 0, 6], - "to": [13.25, 0.25, 9.5], + "from": [ + 13, + 0, + 6 + ], + "to": [ + 13.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.25, 6, 13, 6.25], "texture": "#0"}, - "east": {"uv": [13, 6, 13.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9.25, 13.25, 9.5], "texture": "#0"}, - "west": {"uv": [13, 6, 13.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6, 13.25, 9.5], "texture": "#0"}, - "down": {"uv": [13, 9.5, 13.25, 6], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6, + 13, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 13.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6, + 13.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.25, + 6 + ], + "texture": "#0" + } } }, { "name": "neontetra_17", - "from": [3, 0, 6.25], - "to": [3.5, 0.25, 9.75], + "from": [ + 3, + 0, + 6.25 + ], + "to": [ + 3.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.5, 6.25, 3, 6.5], "texture": "#0"}, - "east": {"uv": [3.25, 6.25, 3.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9.5, 3.5, 9.75], "texture": "#0"}, - "west": {"uv": [3, 6.25, 3.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6.25, 3.5, 9.75], "texture": "#0"}, - "down": {"uv": [3, 9.75, 3.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.25, + 3.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.25, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6.25, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_18", - "from": [8.75, 0, 6.25], - "to": [9.25, 0.25, 10], + "from": [ + 8.75, + 0, + 6.25 + ], + "to": [ + 9.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.25, 6.25, 8.75, 6.5], "texture": "#0"}, - "east": {"uv": [9, 6.25, 9.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.75, 9.25, 10], "texture": "#0"}, - "west": {"uv": [8.75, 6.25, 9, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 6.25, 9.25, 10], "texture": "#0"}, - "down": {"uv": [8.75, 10, 9.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 6.25, + 8.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.25, + 9.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 6.25, + 9, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 6.25, + 9.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_19", - "from": [12.75, 0, 6.25], - "to": [13, 0.25, 9.25], + "from": [ + 12.75, + 0, + 6.25 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 6.25, 12.75, 6.5], "texture": "#0"}, - "east": {"uv": [12.75, 6.25, 13, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 9, 13, 9.25], "texture": "#0"}, - "west": {"uv": [12.75, 6.25, 13, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.25, 13, 9.25], "texture": "#0"}, - "down": {"uv": [12.75, 9.25, 13, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13, + 6.25, + 12.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 6.25, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.25, + 13, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.25, + 13, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9.25, + 13, + 6.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_20", - "from": [14.25, 0, 6.25], - "to": [14.75, 0.25, 6.5], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.25, 6.5], "texture": "#0"}, - "east": {"uv": [14.5, 6.25, 14.75, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.25, 14.75, 6.5], "texture": "#0"}, - "west": {"uv": [14.25, 6.25, 14.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.25, 14.75, 6.5], "texture": "#0"}, - "down": {"uv": [14.25, 6.5, 14.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.5, + 14.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_21", - "from": [2, 0, 6.5], - "to": [3, 0.25, 9.25], + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 6.5, 2, 6.75], "texture": "#0"}, - "east": {"uv": [2.75, 6.5, 3, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9, 3, 9.25], "texture": "#0"}, - "west": {"uv": [2, 6.5, 2.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.5, 3, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.25, 3, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.5, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.5, + 3, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.25, + 3, + 6.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_22", - "from": [9.25, 0, 6.5], - "to": [10, 0.25, 10.5], + "from": [ + 9.25, + 0, + 6.5 + ], + "to": [ + 10, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10, 6.5, 9.25, 6.75], "texture": "#0"}, - "east": {"uv": [9.75, 6.5, 10, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.25, 10, 10.5], "texture": "#0"}, - "west": {"uv": [9.25, 6.5, 9.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 6.5, 10, 10.5], "texture": "#0"}, - "down": {"uv": [9.25, 10.5, 10, 6.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 6.5, + 9.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.5, + 10, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 6.5, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.5, + 10, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 10, + 6.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_23", - "from": [12.25, 0, 6.5], - "to": [12.75, 0.25, 9], + "from": [ + 12.25, + 0, + 6.5 + ], + "to": [ + 12.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.75, 6.5, 12.25, 6.75], "texture": "#0"}, - "east": {"uv": [12.5, 6.5, 12.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8.75, 12.75, 9], "texture": "#0"}, - "west": {"uv": [12.25, 6.5, 12.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6.5, 12.75, 9], "texture": "#0"}, - "down": {"uv": [12.25, 9, 12.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 6.5, + 12.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 6.5, + 12.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6.5, + 12.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6.5, + 12.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 9, + 12.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_24", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 6.75], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#0"}, - "east": {"uv": [14.25, 6.5, 14.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.5, 14.5, 6.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.5, 14.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.5, 14.5, 6.75], "texture": "#0"}, - "down": {"uv": [14.25, 6.75, 14.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.75, + 14.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_25", - "from": [1.5, 0, 6.75], - "to": [2, 0.25, 9], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.75, 6.75, 2, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.75, 2, 9], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 2, 9], "texture": "#0"}, - "down": {"uv": [1.5, 9, 2, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 2, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9, + 2, + 6.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_26", - "from": [10, 0, 6.75], - "to": [10.75, 0.25, 9.5], + "from": [ + 10, + 0, + 6.75 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.75, 6.75, 10, 7], "texture": "#0"}, - "east": {"uv": [10.5, 6.75, 10.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.25, 10.75, 9.5], "texture": "#0"}, - "west": {"uv": [10, 6.75, 10.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.75, 10.75, 9.5], "texture": "#0"}, - "down": {"uv": [10, 9.5, 10.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 6.75, + 10, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.75, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.25, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.75, + 10.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.75, + 10.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 10.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_27", - "from": [12, 0, 6.75], - "to": [12.25, 0.25, 8.75], + "from": [ + 12, + 0, + 6.75 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 6.75, 12, 7], "texture": "#0"}, - "east": {"uv": [12, 6.75, 12.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.5, 12.25, 8.75], "texture": "#0"}, - "west": {"uv": [12, 6.75, 12.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.75, 12.25, 8.75], "texture": "#0"}, - "down": {"uv": [12, 8.75, 12.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 6.75, + 12, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.75, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.75, + 12.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.75, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.75, + 12.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_28", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "neontetra_29", - "from": [10.75, 0, 7], - "to": [12, 0.25, 8.5], + "from": [ + 10.75, + 0, + 7 + ], + "to": [ + 12, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12, 7, 10.75, 7.25], "texture": "#0"}, - "east": {"uv": [11.75, 7, 12, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.25, 12, 8.5], "texture": "#0"}, - "west": {"uv": [10.75, 7, 11, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 7, 12, 8.5], "texture": "#0"}, - "down": {"uv": [10.75, 8.5, 12, 7], "texture": "#0"} + "north": { + "uv": [ + 12, + 7, + 10.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7, + 12, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 7, + 11, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7, + 12, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.5, + 12, + 7 + ], + "texture": "#0" + } } }, { "name": "neontetra_30", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 1.25, 8.5], "texture": "#0"}, - "down": {"uv": [1, 8.5, 1.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_31", - "from": [13.5, 0, 7.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 7.25, 13.5, 7.5], "texture": "#0"}, - "east": {"uv": [13.5, 7.25, 13.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#0"}, - "west": {"uv": [13.5, 7.25, 13.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 7.25, 13.75, 9.5], "texture": "#0"}, - "down": {"uv": [13.5, 9.5, 13.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.5, + 13.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_32", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 8.25], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 8.25], "texture": "#0"}, - "down": {"uv": [0.75, 8.25, 1, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_33", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 8], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#0"}, - "east": {"uv": [0.5, 7.75, 0.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#0"}, - "west": {"uv": [0.5, 7.75, 0.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#0"}, - "down": {"uv": [0.5, 8, 0.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_34", - "from": [13.75, 0, 8], - "to": [14, 0.25, 9.75], + "from": [ + 13.75, + 0, + 8 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 8, 13.75, 8.25], "texture": "#0"}, - "east": {"uv": [13.75, 8, 14, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.5, 14, 9.75], "texture": "#0"}, - "west": {"uv": [13.75, 8, 14, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8, 14, 9.75], "texture": "#0"}, - "down": {"uv": [13.75, 9.75, 14, 8], "texture": "#0"} + "north": { + "uv": [ + 14, + 8, + 13.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8, + 14, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14, + 8 + ], + "texture": "#0" + } } }, { "name": "neontetra_35", - "from": [14, 0, 8.25], - "to": [14.25, 0.25, 10], + "from": [ + 14, + 0, + 8.25 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 8.25, 14, 8.5], "texture": "#0"}, - "east": {"uv": [14, 8.25, 14.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.75, 14.25, 10], "texture": "#0"}, - "west": {"uv": [14, 8.25, 14.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 8.25, 14.25, 10], "texture": "#0"}, - "down": {"uv": [14, 10, 14.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 8.25, + 14, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 8.25, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 8.25, + 14.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8.25, + 14.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10, + 14.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_36", - "from": [10.75, 0, 8.5], - "to": [11.25, 0.25, 8.75], + "from": [ + 10.75, + 0, + 8.5 + ], + "to": [ + 11.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [11.25, 8.5, 10.75, 8.75], "texture": "#0"}, - "east": {"uv": [11, 8.5, 11.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 8.5, 11.25, 8.75], "texture": "#0"}, - "west": {"uv": [10.75, 8.5, 11, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.5, 11.25, 8.75], "texture": "#0"}, - "down": {"uv": [10.75, 8.75, 11.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 8.5, + 10.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.5, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.5, + 11.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 11.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_37", - "from": [14.25, 0, 8.5], - "to": [14.5, 0.25, 10], + "from": [ + 14.25, + 0, + 8.5 + ], + "to": [ + 14.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.5, 8.5, 14.25, 8.75], "texture": "#0"}, - "east": {"uv": [14.25, 8.5, 14.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.75, 14.5, 10], "texture": "#0"}, - "west": {"uv": [14.25, 8.5, 14.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.5, 14.5, 10], "texture": "#0"}, - "down": {"uv": [14.25, 10, 14.5, 8.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8.5, + 14.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 14.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.5, + 14.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 10, + 14.5, + 8.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_38", - "from": [10.75, 0, 8.75], - "to": [11, 0.25, 9.25], + "from": [ + 10.75, + 0, + 8.75 + ], + "to": [ + 11, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11, 8.75, 10.75, 9], "texture": "#0"}, - "east": {"uv": [10.75, 8.75, 11, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9, 11, 9.25], "texture": "#0"}, - "west": {"uv": [10.75, 8.75, 11, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 8.75, 11, 9.25], "texture": "#0"}, - "down": {"uv": [10.75, 9.25, 11, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 8.75, + 10.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.75, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 8.75, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 8.75, + 11, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11, + 8.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_39", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#0"}, - "east": {"uv": [14.5, 8.75, 14.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#0"}, - "west": {"uv": [14.5, 8.75, 14.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.75, 14.75, 10], "texture": "#0"}, - "down": {"uv": [14.5, 10, 14.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_40", - "from": [1.75, 0, 9], - "to": [2, 0.25, 9.25], + "from": [ + 1.75, + 0, + 9 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 9, 1.75, 9.25], "texture": "#0"}, - "east": {"uv": [1.75, 9, 2, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9, 2, 9.25], "texture": "#0"}, - "west": {"uv": [1.75, 9, 2, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9, 2, 9.25], "texture": "#0"}, - "down": {"uv": [1.75, 9.25, 2, 9], "texture": "#0"} + "north": { + "uv": [ + 2, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2, + 9 + ], + "texture": "#0" + } } }, { "name": "neontetra_41", - "from": [2.25, 0, 9.25], - "to": [3, 0.25, 9.5], + "from": [ + 2.25, + 0, + 9.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 9.25, 2.25, 9.5], "texture": "#0"}, - "east": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.25, 3, 9.5], "texture": "#0"}, - "west": {"uv": [2.25, 9.25, 2.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.25, 3, 9.5], "texture": "#0"}, - "down": {"uv": [2.25, 9.5, 3, 9.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.25, + 2.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.25, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.5, + 3, + 9.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_42", - "from": [14.75, 0, 9.25], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 9.25 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 9.25, 14.75, 9.5], "texture": "#0"}, - "east": {"uv": [14.75, 9.25, 15, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#0"}, - "west": {"uv": [14.75, 9.25, 15, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 9.25, 15, 9.75], "texture": "#0"}, - "down": {"uv": [14.75, 9.75, 15, 9.25], "texture": "#0"} + "north": { + "uv": [ + 15, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9.25, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 9.25, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 9.25, + 15, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 9.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_43", - "from": [8, 0, 9.5], - "to": [8.25, 0.25, 9.75], + "from": [ + 8, + 0, + 9.5 + ], + "to": [ + 8.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.25, 9.5, 8, 9.75], "texture": "#0"}, - "east": {"uv": [8, 9.5, 8.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.5, 8.25, 9.75], "texture": "#0"}, - "west": {"uv": [8, 9.5, 8.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 9.5, 8.25, 9.75], "texture": "#0"}, - "down": {"uv": [8, 9.75, 8.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.75, + 8.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_44", - "from": [10, 0, 9.5], - "to": [10.5, 0.25, 10.75], + "from": [ + 10, + 0, + 9.5 + ], + "to": [ + 10.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.5, 9.5, 10, 9.75], "texture": "#0"}, - "east": {"uv": [10.25, 9.5, 10.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.5, 10.5, 10.75], "texture": "#0"}, - "west": {"uv": [10, 9.5, 10.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.5, 10.5, 10.75], "texture": "#0"}, - "down": {"uv": [10, 10.75, 10.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.5, + 10.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.5, + 10.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.75, + 10.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_45", - "from": [7.5, 0, 9.75], - "to": [7.75, 0.25, 11], + "from": [ + 7.5, + 0, + 9.75 + ], + "to": [ + 7.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.75, 9.75, 7.5, 10], "texture": "#0"}, - "east": {"uv": [7.5, 9.75, 7.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.75, 7.75, 11], "texture": "#0"}, - "west": {"uv": [7.5, 9.75, 7.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 9.75, 7.75, 11], "texture": "#0"}, - "down": {"uv": [7.5, 11, 7.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.75, + 7.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.75, + 7.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.75, + 7.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 11, + 7.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_46", - "from": [6, 0, 10], - "to": [6.5, 0.25, 10.25], + "from": [ + 6, + 0, + 10 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 10, 6, 10.25], "texture": "#0"}, - "east": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [6, 10, 6.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 10, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [6, 10.25, 6.5, 10], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.5, + 10 + ], + "texture": "#0" + } } }, { "name": "neontetra_47", - "from": [9, 0, 10], - "to": [9.25, 0.25, 10.25], + "from": [ + 9, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 10, 9, 10.25], "texture": "#0"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "west": {"uv": [9, 10, 9.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10, 9.25, 10.25], "texture": "#0"}, - "down": {"uv": [9, 10.25, 9.25, 10], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.25, + 9.25, + 10 + ], + "texture": "#0" + } } }, { "name": "neontetra_48", - "from": [6.25, 0, 10.25], - "to": [6.5, 0.25, 10.5], + "from": [ + 6.25, + 0, + 10.25 + ], + "to": [ + 6.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.5, 10.25, 6.25, 10.5], "texture": "#0"}, - "east": {"uv": [6.25, 10.25, 6.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10.25, 6.5, 10.5], "texture": "#0"}, - "west": {"uv": [6.25, 10.25, 6.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10.25, 6.5, 10.5], "texture": "#0"}, - "down": {"uv": [6.25, 10.5, 6.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10.25, + 6.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.5, + 6.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_49", - "from": [7.75, 0, 10.25], - "to": [8, 0.25, 10.75], + "from": [ + 7.75, + 0, + 10.25 + ], + "to": [ + 8, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8, 10.25, 7.75, 10.5], "texture": "#0"}, - "east": {"uv": [7.75, 10.25, 8, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.5, 8, 10.75], "texture": "#0"}, - "west": {"uv": [7.75, 10.25, 8, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 10.25, 8, 10.75], "texture": "#0"}, - "down": {"uv": [7.75, 10.75, 8, 10.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 10.25, + 7.75, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 10.25, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 10.25, + 8, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 10.25, + 8, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.75, + 8, + 10.25 + ], + "texture": "#0" + } } }, { "name": "neontetra_50", - "from": [9.5, 0, 10.5], - "to": [10, 0.25, 10.75], + "from": [ + 9.5, + 0, + 10.5 + ], + "to": [ + 10, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10, 10.5, 9.5, 10.75], "texture": "#0"}, - "east": {"uv": [9.75, 10.5, 10, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.5, 10, 10.75], "texture": "#0"}, - "west": {"uv": [9.5, 10.5, 9.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10.5, 10, 10.75], "texture": "#0"}, - "down": {"uv": [9.5, 10.75, 10, 10.5], "texture": "#0"} + "north": { + "uv": [ + 10, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 10.5, + 10, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.75, + 10, + 10.5 + ], + "texture": "#0" + } } }, { "name": "neontetra_51", - "from": [6.75, 0, 10.75], - "to": [7, 0.25, 11], + "from": [ + 6.75, + 0, + 10.75 + ], + "to": [ + 7, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7, 10.75, 6.75, 11], "texture": "#0"}, - "east": {"uv": [6.75, 10.75, 7, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.75, 7, 11], "texture": "#0"}, - "west": {"uv": [6.75, 10.75, 7, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 10.75, 7, 11], "texture": "#0"}, - "down": {"uv": [6.75, 11, 7, 10.75], "texture": "#0"} + "north": { + "uv": [ + 7, + 10.75, + 6.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 10.75, + 7, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 11, + 7, + 10.75 + ], + "texture": "#0" + } } }, { "name": "neontetra_52", - "from": [9.75, 0, 10.75], - "to": [10.25, 0.25, 11], + "from": [ + 9.75, + 0, + 10.75 + ], + "to": [ + 10.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.25, 10.75, 9.75, 11], "texture": "#0"}, - "east": {"uv": [10, 10.75, 10.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#0"}, - "west": {"uv": [9.75, 10.75, 10, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#0"}, - "down": {"uv": [9.75, 11, 10.25, 10.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 10.75, + 9.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 10.75, + 10.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 10.75, + 10, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 11, + 10.25, + 10.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "neontetra", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/nisikigoi.json b/pack/assets/minecraft/models/fish/nisikigoi.json index f8fb7830..c68f5369 100644 --- a/pack/assets/minecraft/models/fish/nisikigoi.json +++ b/pack/assets/minecraft/models/fish/nisikigoi.json @@ -2,668 +2,3534 @@ "__name": "ニシキゴイ", "credit": "Made with Blockbench", "textures": { - "0": "fish/nisikigoi", - "particle": "fish/nisikigoi" + "0": "item/fish/nisikigoi", + "particle": "item/fish/nisikigoi" }, "elements": [ { "name": "nisikigoi_0", - "from": [6.25, 0, 4.25], - "to": [6.75, 0.25, 11.25], + "from": [ + 6.25, + 0, + 4.25 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 4.25, 6.25, 4.5], "texture": "#0"}, - "east": {"uv": [6.5, 4.25, 6.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11, 6.75, 11.25], "texture": "#0"}, - "west": {"uv": [6.25, 4.25, 6.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 4.25, 6.75, 11.25], "texture": "#0"}, - "down": {"uv": [6.25, 11.25, 6.75, 4.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 4.25, + 6.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4.25, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4.25, + 6.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.25, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 11.25, + 6.75, + 4.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_1", - "from": [6, 0, 4.5], - "to": [6.25, 0.25, 11], + "from": [ + 6, + 0, + 4.5 + ], + "to": [ + 6.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.25, 4.5, 6, 4.75], "texture": "#0"}, - "east": {"uv": [6, 4.5, 6.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 10.75, 6.25, 11], "texture": "#0"}, - "west": {"uv": [6, 4.5, 6.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4.5, 6.25, 11], "texture": "#0"}, - "down": {"uv": [6, 11, 6.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 4.5, + 6, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.75, + 6.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.5, + 6.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11, + 6.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_2", - "from": [6.75, 0, 4.5], - "to": [7, 0.25, 11.5], + "from": [ + 6.75, + 0, + 4.5 + ], + "to": [ + 7, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7, 4.5, 6.75, 4.75], "texture": "#0"}, - "east": {"uv": [6.75, 4.5, 7, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 11.25, 7, 11.5], "texture": "#0"}, - "west": {"uv": [6.75, 4.5, 7, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.5, 7, 11.5], "texture": "#0"}, - "down": {"uv": [6.75, 11.5, 7, 4.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 4.5, + 6.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 11.25, + 7, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.5, + 7, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 11.5, + 7, + 4.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_3", - "from": [5.75, 0, 4.75], - "to": [6, 0.25, 10.75], + "from": [ + 5.75, + 0, + 4.75 + ], + "to": [ + 6, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6, 4.75, 5.75, 5], "texture": "#0"}, - "east": {"uv": [5.75, 4.75, 6, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#0"}, - "west": {"uv": [5.75, 4.75, 6, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.75, 6, 10.75], "texture": "#0"}, - "down": {"uv": [5.75, 10.75, 6, 4.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 4.75, + 5.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.75, + 6, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 6, + 4.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_4", - "from": [5.5, 0, 5], - "to": [5.75, 0.25, 10.5], + "from": [ + 5.5, + 0, + 5 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 5, 5.5, 5.25], "texture": "#0"}, - "east": {"uv": [5.5, 5, 5.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10.25, 5.75, 10.5], "texture": "#0"}, - "west": {"uv": [5.5, 5, 5.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 5, 5.75, 10.5], "texture": "#0"}, - "down": {"uv": [5.5, 10.5, 5.75, 5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5, + 5.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 5, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 5.75, + 5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_5", - "from": [7, 0, 5], - "to": [7.5, 0.25, 11.25], + "from": [ + 7, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.5, 5, 7, 5.25], "texture": "#0"}, - "east": {"uv": [7.25, 5, 7.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11, 7.5, 11.25], "texture": "#0"}, - "west": {"uv": [7, 5, 7.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5, 7.5, 11.25], "texture": "#0"}, - "down": {"uv": [7, 11.25, 7.5, 5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 5, + 7, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11, + 7.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5, + 7.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5, + 7.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.25, + 7.5, + 5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_6", - "from": [5, 0, 5.25], - "to": [5.5, 0.25, 10.5], + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 5.25, 5, 5.5], "texture": "#0"}, - "east": {"uv": [5.25, 5.25, 5.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.25, 5.5, 10.5], "texture": "#0"}, - "west": {"uv": [5, 5.25, 5.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 5.25, 5.5, 10.5], "texture": "#0"}, - "down": {"uv": [5, 10.5, 5.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.25, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_7", - "from": [7.5, 0, 5.25], - "to": [8.75, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 5.25, 7.5, 5.5], "texture": "#0"}, - "east": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [7.5, 5.25, 7.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.25, 8.75, 10.25], "texture": "#0"}, - "down": {"uv": [7.5, 10.25, 8.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 8.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_8", - "from": [4, 0, 5.5], - "to": [5, 0.25, 10.5], + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 5.5, 4, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.25, 5, 10.5], "texture": "#0"}, - "west": {"uv": [4, 5.5, 4.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5.5, 5, 10.5], "texture": "#0"}, - "down": {"uv": [4, 10.5, 5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5.5, + 4, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.25, + 5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5.5, + 5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 10.5, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_9", - "from": [8.75, 0, 5.5], - "to": [9.75, 0.25, 10], + "from": [ + 8.75, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 5.5, 8.75, 5.75], "texture": "#0"}, - "east": {"uv": [9.5, 5.5, 9.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 9.75, 9.75, 10], "texture": "#0"}, - "west": {"uv": [8.75, 5.5, 9, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5.5, 9.75, 10], "texture": "#0"}, - "down": {"uv": [8.75, 10, 9.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 5.5, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 9, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 9.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_10", - "from": [3.5, 0, 5.75], - "to": [4, 0.25, 10.5], + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [4, 5.75, 3.5, 6], "texture": "#0"}, - "east": {"uv": [3.75, 5.75, 4, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.25, 4, 10.5], "texture": "#0"}, - "west": {"uv": [3.5, 5.75, 3.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.75, 4, 10.5], "texture": "#0"}, - "down": {"uv": [3.5, 10.5, 4, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.25, + 4, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 4, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_11", - "from": [9.75, 0, 5.75], - "to": [10.25, 0.25, 10.25], + "from": [ + 9.75, + 0, + 5.75 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.25, 5.75, 9.75, 6], "texture": "#0"}, - "east": {"uv": [10, 5.75, 10.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10, 10.25, 10.25], "texture": "#0"}, - "west": {"uv": [9.75, 5.75, 10, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 5.75, 10.25, 10.25], "texture": "#0"}, - "down": {"uv": [9.75, 10.25, 10.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 5.75, + 9.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.75, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 5.75, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 5.75, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_12", - "from": [3, 0, 6], - "to": [3.5, 0.25, 10.5], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.5, 6, 3, 6.25], "texture": "#0"}, - "east": {"uv": [3.25, 6, 3.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.25, 3.5, 10.5], "texture": "#0"}, - "west": {"uv": [3, 6, 3.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 6, 3.5, 10.5], "texture": "#0"}, - "down": {"uv": [3, 10.5, 3.5, 6], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.5, + 6 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_13", - "from": [10.25, 0, 6], - "to": [10.75, 0.25, 10.75], + "from": [ + 10.25, + 0, + 6 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 6, 10.25, 6.25], "texture": "#0"}, - "east": {"uv": [10.5, 6, 10.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10.5, 10.75, 10.75], "texture": "#0"}, - "west": {"uv": [10.25, 6, 10.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 6, 10.75, 10.75], "texture": "#0"}, - "down": {"uv": [10.25, 10.75, 10.75, 6], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10.5, + 10.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 6, + 10.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 6, + 10.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.75, + 10.75, + 6 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_14", - "from": [2.5, 0, 6.25], - "to": [3, 0.25, 10.5], + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3, 6.25, 2.5, 6.5], "texture": "#0"}, - "east": {"uv": [2.75, 6.25, 3, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10.25, 3, 10.5], "texture": "#0"}, - "west": {"uv": [2.5, 6.25, 2.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 6.25, 3, 10.5], "texture": "#0"}, - "down": {"uv": [2.5, 10.5, 3, 6.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.25, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.25, + 3, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 3, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.5, + 3, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_15", - "from": [10.75, 0, 6.25], - "to": [11, 0.25, 10.75], + "from": [ + 10.75, + 0, + 6.25 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 6.25, 10.75, 6.5], "texture": "#0"}, - "east": {"uv": [10.75, 6.25, 11, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10.5, 11, 10.75], "texture": "#0"}, - "west": {"uv": [10.75, 6.25, 11, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 6.25, 11, 10.75], "texture": "#0"}, - "down": {"uv": [10.75, 10.75, 11, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 6.25, + 10.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 6.25, + 11, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11, + 6.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_16", - "from": [2, 0, 6.5], - "to": [2.5, 0.25, 10.25], + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 6.5, 2, 6.75], "texture": "#0"}, - "east": {"uv": [2.25, 6.5, 2.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10, 2.5, 10.25], "texture": "#0"}, - "west": {"uv": [2, 6.5, 2.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.5, 2.5, 10.25], "texture": "#0"}, - "down": {"uv": [2, 10.25, 2.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 6.5, + 2, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10, + 2.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_17", - "from": [11, 0, 6.5], - "to": [11.25, 0.25, 10.75], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.25, 6.5, 11, 6.75], "texture": "#0"}, - "east": {"uv": [11, 6.5, 11.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.5, 11.25, 10.75], "texture": "#0"}, - "west": {"uv": [11, 6.5, 11.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.5, 11.25, 10.75], "texture": "#0"}, - "down": {"uv": [11, 10.75, 11.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.5, + 11, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.5, + 11.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.75, + 11.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_18", - "from": [14.25, 0, 6.5], - "to": [15.5, 0.25, 7.75], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.5, 6.5, 14.25, 6.75], "texture": "#0"}, - "east": {"uv": [15.25, 6.5, 15.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7.5, 15.5, 7.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.5, 14.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.5, 15.5, 7.75], "texture": "#0"}, - "down": {"uv": [14.25, 7.75, 15.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 15.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 15.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_19", - "from": [1.5, 0, 6.75], - "to": [2, 0.25, 10], + "from": [ + 1.5, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 6.75, 1.5, 7], "texture": "#0"}, - "east": {"uv": [1.75, 6.75, 2, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9.75, 2, 10], "texture": "#0"}, - "west": {"uv": [1.5, 6.75, 1.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.75, 2, 10], "texture": "#0"}, - "down": {"uv": [1.5, 10, 2, 6.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.75, + 1.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 2, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.75, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.75, + 2, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 10, + 2, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_20", - "from": [13.5, 0, 6.75], - "to": [14.25, 0.25, 10], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 6.75, 13.5, 7], "texture": "#0"}, - "east": {"uv": [14, 6.75, 14.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9.75, 14.25, 10], "texture": "#0"}, - "west": {"uv": [13.5, 6.75, 13.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.75, 14.25, 10], "texture": "#0"}, - "down": {"uv": [13.5, 10, 14.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.75, + 13.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 14.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 10, + 14.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_21", - "from": [15.5, 0, 6.75], - "to": [15.75, 0.25, 7.5], + "from": [ + 15.5, + 0, + 6.75 + ], + "to": [ + 15.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.75, 6.75, 15.5, 7], "texture": "#0"}, - "east": {"uv": [15.5, 6.75, 15.75, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 7.25, 15.75, 7.5], "texture": "#0"}, - "west": {"uv": [15.5, 6.75, 15.75, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 6.75, 15.75, 7.5], "texture": "#0"}, - "down": {"uv": [15.5, 7.5, 15.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 6.75, + 15.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 7.25, + 15.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 7.5, + 15.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_22", - "from": [1.25, 0, 7], - "to": [1.5, 0.25, 10], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9.75, 1.5, 10], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 10], "texture": "#0"}, - "down": {"uv": [1.25, 10, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9.75, + 1.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 10, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_23", - "from": [13, 0, 7], - "to": [13.5, 0.25, 9.5], + "from": [ + 13, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 7, 13, 7.25], "texture": "#0"}, - "east": {"uv": [13.25, 7, 13.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 9.25, 13.5, 9.5], "texture": "#0"}, - "west": {"uv": [13, 7, 13.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7, 13.5, 9.5], "texture": "#0"}, - "down": {"uv": [13, 9.5, 13.5, 7], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 7, + 13, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.5, + 7 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_24", - "from": [1, 0, 7.25], - "to": [1.25, 0.25, 10], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.25, 7.25, 1, 7.5], "texture": "#0"}, - "east": {"uv": [1, 7.25, 1.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 9.75, 1.25, 10], "texture": "#0"}, - "west": {"uv": [1, 7.25, 1.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7.25, 1.25, 10], "texture": "#0"}, - "down": {"uv": [1, 10, 1.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7.25, + 1, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 10, + 1.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_25", - "from": [11.25, 0, 7.25], - "to": [13, 0.25, 9.5], + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 7.25, 11.25, 7.5], "texture": "#0"}, - "east": {"uv": [12.75, 7.25, 13, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9.25, 13, 9.5], "texture": "#0"}, - "west": {"uv": [11.25, 7.25, 11.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 7.25, 13, 9.5], "texture": "#0"}, - "down": {"uv": [11.25, 9.5, 13, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13, + 7.25, + 11.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.25, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 13, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 13, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 13, + 7.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_26", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#0"}, - "east": {"uv": [0.75, 7.5, 1, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#0"}, - "west": {"uv": [0.75, 7.5, 1, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.5, 1, 9.75], "texture": "#0"}, - "down": {"uv": [0.75, 9.75, 1, 7.5], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 7.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_27", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#0"}, - "east": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#0"}, - "west": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 7.75, 0.75, 9.5], "texture": "#0"}, - "down": {"uv": [0.5, 9.5, 0.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_28", - "from": [14.25, 0, 7.75], - "to": [15, 0.25, 8.25], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15, 7.75, 14.25, 8], "texture": "#0"}, - "east": {"uv": [14.75, 7.75, 15, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 8, 15, 8.25], "texture": "#0"}, - "west": {"uv": [14.25, 7.75, 14.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.75, 15, 8.25], "texture": "#0"}, - "down": {"uv": [14.25, 8.25, 15, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 7.75, + 14.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 15, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 8.25, + 15, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_29", - "from": [15, 0, 7.75], - "to": [15.25, 0.25, 8], + "from": [ + 15, + 0, + 7.75 + ], + "to": [ + 15.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.25, 7.75, 15, 8], "texture": "#0"}, - "east": {"uv": [15, 7.75, 15.25, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 7.75, 15.25, 8], "texture": "#0"}, - "west": {"uv": [15, 7.75, 15.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 7.75, 15.25, 8], "texture": "#0"}, - "down": {"uv": [15, 8, 15.25, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 7.75, + 15, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 8, + 15.25, + 7.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_30", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 9.25], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#0"}, - "east": {"uv": [0.25, 8, 0.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#0"}, - "west": {"uv": [0.25, 8, 0.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 8, 0.5, 9.25], "texture": "#0"}, - "down": {"uv": [0.25, 9.25, 0.5, 8], "texture": "#0"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 9.25, + 0.5, + 8 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_31", - "from": [0, 0, 8.25], - "to": [0.25, 0.25, 9], + "from": [ + 0, + 0, + 8.25 + ], + "to": [ + 0.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.25, 8.25, 0, 8.5], "texture": "#0"}, - "east": {"uv": [0, 8.25, 0.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 8.75, 0.25, 9], "texture": "#0"}, - "west": {"uv": [0, 8.25, 0.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 8.25, 0.25, 9], "texture": "#0"}, - "down": {"uv": [0, 9, 0.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 0.25, + 8.25, + 0, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 9, + 0.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_32", - "from": [14.25, 0, 8.25], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.25, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.25, 8.5], "texture": "#0"}, - "east": {"uv": [14.5, 8.25, 14.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 10, 14.75, 10.25], "texture": "#0"}, - "west": {"uv": [14.25, 8.25, 14.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8.25, 14.75, 10.25], "texture": "#0"}, - "down": {"uv": [14.25, 10.25, 14.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8.25, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8.25, + 14.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_33", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#0"}, - "east": {"uv": [14.75, 8.5, 15, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#0"}, - "west": {"uv": [14.75, 8.5, 15, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.5, 15, 10.25], "texture": "#0"}, - "down": {"uv": [14.75, 10.25, 15, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 8.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_34", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#0"}, - "east": {"uv": [15, 8.75, 15.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#0"}, - "west": {"uv": [15, 8.75, 15.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.75, 15.25, 10.25], "texture": "#0"}, - "down": {"uv": [15, 10.25, 15.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_35", - "from": [15.25, 0, 9], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 9 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 9, 15.25, 9.25], "texture": "#0"}, - "east": {"uv": [15.25, 9, 15.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#0"}, - "west": {"uv": [15.25, 9, 15.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 9, 15.5, 10.25], "texture": "#0"}, - "down": {"uv": [15.25, 10.25, 15.5, 9], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 9, + 15.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 9 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_36", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#0"}, - "east": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#0"}, - "west": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 9.25, 15.75, 10], "texture": "#0"}, - "down": {"uv": [15.5, 10, 15.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_37", - "from": [11.25, 0, 9.5], - "to": [11.5, 0.25, 10.75], + "from": [ + 11.25, + 0, + 9.5 + ], + "to": [ + 11.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.5, 9.5, 11.25, 9.75], "texture": "#0"}, - "east": {"uv": [11.25, 9.5, 11.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10.5, 11.5, 10.75], "texture": "#0"}, - "west": {"uv": [11.25, 9.5, 11.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9.5, 11.5, 10.75], "texture": "#0"}, - "down": {"uv": [11.25, 10.75, 11.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10.5, + 11.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9.5, + 11.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10.75, + 11.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_38", - "from": [13.25, 0, 9.5], - "to": [13.5, 0.25, 9.75], + "from": [ + 13.25, + 0, + 9.5 + ], + "to": [ + 13.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.5, 9.5, 13.25, 9.75], "texture": "#0"}, - "east": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#0"}, - "west": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#0"}, - "down": {"uv": [13.25, 9.75, 13.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 9.5, + 13.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.75, + 13.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_39", - "from": [11.5, 0, 9.75], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 9.75, 11.5, 10], "texture": "#0"}, - "east": {"uv": [11.5, 9.75, 11.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#0"}, - "west": {"uv": [11.5, 9.75, 11.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9.75, 11.75, 10.5], "texture": "#0"}, - "down": {"uv": [11.5, 10.5, 11.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9.75, + 11.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_40", - "from": [1.75, 0, 10], - "to": [2, 0.25, 10.25], + "from": [ + 1.75, + 0, + 10 + ], + "to": [ + 2, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2, 10, 1.75, 10.25], "texture": "#0"}, - "east": {"uv": [1.75, 10, 2, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 10, 2, 10.25], "texture": "#0"}, - "west": {"uv": [1.75, 10, 2, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 10, 2, 10.25], "texture": "#0"}, - "down": {"uv": [1.75, 10.25, 2, 10], "texture": "#0"} + "north": { + "uv": [ + 2, + 10, + 1.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 10.25, + 2, + 10 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_41", - "from": [8.75, 0, 10], - "to": [9.25, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 10, 8.75, 10.25], "texture": "#0"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#0"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#0"}, - "down": {"uv": [8.75, 10.25, 9.25, 10], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_42", - "from": [14, 0, 10], - "to": [14.25, 0.25, 10.25], + "from": [ + 14, + 0, + 10 + ], + "to": [ + 14.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.25, 10, 14, 10.25], "texture": "#0"}, - "east": {"uv": [14, 10, 14.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 10, 14.25, 10.25], "texture": "#0"}, - "west": {"uv": [14, 10, 14.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 10, 14.25, 10.25], "texture": "#0"}, - "down": {"uv": [14, 10.25, 14.25, 10], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 10, + 14, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 10, + 14.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10.25, + 14.25, + 10 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_43", - "from": [7.5, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 7.5, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 7.5, 10.5], "texture": "#0"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10.25, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [7.5, 10.5, 8.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.25, + 7.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 8.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_44", - "from": [10, 0, 10.25], - "to": [10.25, 0.25, 10.5], + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 10.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.25, 10.25, 10, 10.5], "texture": "#0"}, - "east": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#0"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#0"}, - "down": {"uv": [10, 10.5, 10.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_45", - "from": [6.5, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.5, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.5, 11.5], "texture": "#0"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#0"}, - "west": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 11.25, 6.75, 11.5], "texture": "#0"}, - "down": {"uv": [6.5, 11.5, 6.75, 11.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.25 + ], + "texture": "#0" + } } }, { "name": "nisikigoi_46", - "from": [7, 0, 11.25], - "to": [7.25, 0.25, 11.5], + "from": [ + 7, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 11.25, 7, 11.5], "texture": "#0"}, - "east": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#0"}, - "west": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#0"}, - "down": {"uv": [7, 11.5, 7.25, 11.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 11.25, + 7, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.5, + 7.25, + 11.25 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.75, 6], - "scale": [0.77, 0.77, 0.77] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.75, + 6 + ], + "scale": [ + 0.77, + 0.77, + 0.77 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.75, 6], - "scale": [0.77, 0.77, 0.77] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.75, + 6 + ], + "scale": [ + 0.77, + 0.77, + 0.77 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.75, 6], - "scale": [0.77, 0.77, 0.77] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.75, + 6 + ], + "scale": [ + 0.77, + 0.77, + 0.77 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 1.75, 6], - "scale": [0.77, 0.77, 0.77] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 1.75, + 6 + ], + "scale": [ + 0.77, + 0.77, + 0.77 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0, 4], - "scale": [0.72, 0.72, 0.72] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 4 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] }, "gui": { - "rotation": [90, 0, 0] + "rotation": [ + 90, + 0, + 0 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 9.75, 15], - "scale": [1.19, 1.19, 1.19] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 9.75, + 15 + ], + "scale": [ + 1.19, + 1.19, + 1.19 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "nisikigoi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/nokogirizame.json b/pack/assets/minecraft/models/fish/nokogirizame.json index 144065f7..a85143db 100644 --- a/pack/assets/minecraft/models/fish/nokogirizame.json +++ b/pack/assets/minecraft/models/fish/nokogirizame.json @@ -2,527 +2,2752 @@ "__name": "ノコギリザメ", "credit": "Made with Blockbench", "textures": { - "1": "fish/nokogirizame", - "particle": "fish/nokogirizame" + "1": "item/fish/nokogirizame", + "particle": "item/fish/nokogirizame" }, "elements": [ { "name": "nokogirizame_0", - "from": [8.5, 0, 6.5], - "to": [8.75, 0.25, 8.75], + "from": [ + 8.5, + 0, + 6.5 + ], + "to": [ + 8.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8.75, 6.5, 8.5, 6.75], "texture": "#1"}, - "east": {"uv": [8.5, 6.5, 8.75, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 8.5, 8.75, 8.75], "texture": "#1"}, - "west": {"uv": [8.5, 6.5, 8.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 6.5, 8.75, 8.75], "texture": "#1"}, - "down": {"uv": [8.5, 8.75, 8.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 6.5, + 8.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.75, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.75, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 8.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 6.5, + 8.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 8.75, + 8.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_1", - "from": [6.5, 0, 6.75], - "to": [7, 0.25, 9.75], + "from": [ + 6.5, + 0, + 6.75 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 6.75, 6.5, 7], "texture": "#1"}, - "east": {"uv": [6.75, 6.75, 7, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 7, 9.75], "texture": "#1"}, - "west": {"uv": [6.5, 6.75, 6.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 6.75, 7, 9.75], "texture": "#1"}, - "down": {"uv": [6.5, 9.75, 7, 6.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 6.75, + 6.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 6.75, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 7, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 6.75, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 6.75, + 7, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 7, + 6.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_2", - "from": [8.25, 0, 6.75], - "to": [8.5, 0.25, 8.75], + "from": [ + 8.25, + 0, + 6.75 + ], + "to": [ + 8.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8.5, 6.75, 8.25, 7], "texture": "#1"}, - "east": {"uv": [8.25, 6.75, 8.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 8.5, 8.5, 8.75], "texture": "#1"}, - "west": {"uv": [8.25, 6.75, 8.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 6.75, 8.5, 8.75], "texture": "#1"}, - "down": {"uv": [8.25, 8.75, 8.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 6.75, + 8.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6.75, + 8.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 8.5, + 8.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.75, + 8.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 6.75, + 8.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 8.75, + 8.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_3", - "from": [8.75, 0, 6.75], - "to": [9, 0.25, 8.5], + "from": [ + 8.75, + 0, + 6.75 + ], + "to": [ + 9, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [9, 6.75, 8.75, 7], "texture": "#1"}, - "east": {"uv": [8.75, 6.75, 9, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 8.25, 9, 8.5], "texture": "#1"}, - "west": {"uv": [8.75, 6.75, 9, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 6.75, 9, 8.5], "texture": "#1"}, - "down": {"uv": [8.75, 8.5, 9, 6.75], "texture": "#1"} + "north": { + "uv": [ + 9, + 6.75, + 8.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 6.75, + 9, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 8.25, + 9, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 9, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 6.75, + 9, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 8.5, + 9, + 6.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_4", - "from": [11.5, 0, 6.75], - "to": [11.75, 0.25, 8.25], + "from": [ + 11.5, + 0, + 6.75 + ], + "to": [ + 11.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.75, 6.75, 11.5, 7], "texture": "#1"}, - "east": {"uv": [11.5, 6.75, 11.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#1"}, - "west": {"uv": [11.5, 6.75, 11.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 6.75, 11.75, 8.25], "texture": "#1"}, - "down": {"uv": [11.5, 8.25, 11.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 6.75, + 11.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 6.75, + 11.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 6.75, + 11.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 6.75, + 11.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 8.25, + 11.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_5", - "from": [5.25, 0, 7], - "to": [6.5, 0.25, 8.5], + "from": [ + 5.25, + 0, + 7 + ], + "to": [ + 6.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [6.5, 7, 5.25, 7.25], "texture": "#1"}, - "east": {"uv": [6.25, 7, 6.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 8.25, 6.5, 8.5], "texture": "#1"}, - "west": {"uv": [5.25, 7, 5.5, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 7, 6.5, 8.5], "texture": "#1"}, - "down": {"uv": [5.25, 8.5, 6.5, 7], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 7, + 5.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 7, + 6.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 8.25, + 6.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 7, + 5.5, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 7, + 6.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 6.5, + 7 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_6", - "from": [7, 0, 7], - "to": [8.25, 0.25, 8.75], + "from": [ + 7, + 0, + 7 + ], + "to": [ + 8.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [8.25, 7, 7, 7.25], "texture": "#1"}, - "east": {"uv": [8, 7, 8.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 8.5, 8.25, 8.75], "texture": "#1"}, - "west": {"uv": [7, 7, 7.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 7, 8.25, 8.75], "texture": "#1"}, - "down": {"uv": [7, 8.75, 8.25, 7], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 7, + 7, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 7, + 8.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.5, + 8.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 7, + 7.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 7, + 8.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.75, + 8.25, + 7 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_7", - "from": [11.25, 0, 7], - "to": [11.5, 0.25, 8.25], + "from": [ + 11.25, + 0, + 7 + ], + "to": [ + 11.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.5, 7, 11.25, 7.25], "texture": "#1"}, - "east": {"uv": [11.25, 7, 11.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 8, 11.5, 8.25], "texture": "#1"}, - "west": {"uv": [11.25, 7, 11.5, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 7, 11.5, 8.25], "texture": "#1"}, - "down": {"uv": [11.25, 8.25, 11.5, 7], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 7, + 11.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 7, + 11.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 8, + 11.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 7, + 11.5, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 7, + 11.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 8.25, + 11.5, + 7 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_8", - "from": [11.75, 0, 7], - "to": [12, 0.25, 8.25], + "from": [ + 11.75, + 0, + 7 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 7, 11.75, 7.25], "texture": "#1"}, - "east": {"uv": [11.75, 7, 12, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 8, 12, 8.25], "texture": "#1"}, - "west": {"uv": [11.75, 7, 12, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 7, 12, 8.25], "texture": "#1"}, - "down": {"uv": [11.75, 8.25, 12, 7], "texture": "#1"} + "north": { + "uv": [ + 12, + 7, + 11.75, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 7, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 7, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 7, + 12, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 12, + 7 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_9", - "from": [14.25, 0, 7], - "to": [15.25, 0.25, 7.75], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.25, 7, 14.25, 7.25], "texture": "#1"}, - "east": {"uv": [15, 7, 15.25, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 7.5, 15.25, 7.75], "texture": "#1"}, - "west": {"uv": [14.25, 7, 14.5, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7, 15.25, 7.75], "texture": "#1"}, - "down": {"uv": [14.25, 7.75, 15.25, 7], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 7, + 14.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 7, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 15.25, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7, + 15.25, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 15.25, + 7 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_10", - "from": [4, 0, 7.25], - "to": [5.25, 0.25, 8.25], + "from": [ + 4, + 0, + 7.25 + ], + "to": [ + 5.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [5.25, 7.25, 4, 7.5], "texture": "#1"}, - "east": {"uv": [5, 7.25, 5.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 8, 5.25, 8.25], "texture": "#1"}, - "west": {"uv": [4, 7.25, 4.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 7.25, 5.25, 8.25], "texture": "#1"}, - "down": {"uv": [4, 8.25, 5.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 7.25, + 4, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 7.25, + 5.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 8, + 5.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 7.25, + 4.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 7.25, + 5.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 8.25, + 5.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_11", - "from": [9, 0, 7.25], - "to": [11.25, 0.25, 8.25], + "from": [ + 9, + 0, + 7.25 + ], + "to": [ + 11.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.25, 7.25, 9, 7.5], "texture": "#1"}, - "east": {"uv": [11, 7.25, 11.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 8, 11.25, 8.25], "texture": "#1"}, - "west": {"uv": [9, 7.25, 9.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 7.25, 11.25, 8.25], "texture": "#1"}, - "down": {"uv": [9, 8.25, 11.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 7.25, + 9, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 7.25, + 11.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 8, + 11.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 7.25, + 9.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 7.25, + 11.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 8.25, + 11.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_12", - "from": [13.25, 0, 7.25], - "to": [14.25, 0.25, 8], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 14.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.25, 7.25, 13.25, 7.5], "texture": "#1"}, - "east": {"uv": [14, 7.25, 14.25, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 7.75, 14.25, 8], "texture": "#1"}, - "west": {"uv": [13.25, 7.25, 13.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 7.25, 14.25, 8], "texture": "#1"}, - "down": {"uv": [13.25, 8, 14.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 7.25, + 13.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 7.25, + 14.25, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 7.75, + 14.25, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 14.25, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 8, + 14.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_13", - "from": [15.25, 0, 7.25], - "to": [15.5, 0.25, 7.5], + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 7.25, 15.25, 7.5], "texture": "#1"}, - "east": {"uv": [15.25, 7.25, 15.5, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#1"}, - "west": {"uv": [15.25, 7.25, 15.5, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 7.25, 15.5, 7.5], "texture": "#1"}, - "down": {"uv": [15.25, 7.5, 15.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_14", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 8], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#1"}, - "east": {"uv": [0.75, 7.5, 1, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#1"}, - "west": {"uv": [0.75, 7.5, 1, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.5, 1, 8], "texture": "#1"}, - "down": {"uv": [0.75, 8, 1, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_15", - "from": [1.25, 0, 7.5], - "to": [1.5, 0.25, 8], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.5, 7.5, 1.25, 7.75], "texture": "#1"}, - "east": {"uv": [1.25, 7.5, 1.5, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 7.75, 1.5, 8], "texture": "#1"}, - "west": {"uv": [1.25, 7.5, 1.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 7.5, 1.5, 8], "texture": "#1"}, - "down": {"uv": [1.25, 8, 1.5, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.5, + 1.25, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 7.75, + 1.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 8, + 1.5, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_16", - "from": [1.75, 0, 7.5], - "to": [2, 0.25, 8], + "from": [ + 1.75, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2, 7.5, 1.75, 7.75], "texture": "#1"}, - "east": {"uv": [1.75, 7.5, 2, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 7.75, 2, 8], "texture": "#1"}, - "west": {"uv": [1.75, 7.5, 2, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7.5, 2, 8], "texture": "#1"}, - "down": {"uv": [1.75, 8, 2, 7.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 7.5, + 1.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 2, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7.5, + 2, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 8, + 2, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_17", - "from": [2.25, 0, 7.5], - "to": [2.5, 0.25, 8], + "from": [ + 2.25, + 0, + 7.5 + ], + "to": [ + 2.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2.5, 7.5, 2.25, 7.75], "texture": "#1"}, - "east": {"uv": [2.25, 7.5, 2.5, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 7.75, 2.5, 8], "texture": "#1"}, - "west": {"uv": [2.25, 7.5, 2.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 7.5, 2.5, 8], "texture": "#1"}, - "down": {"uv": [2.25, 8, 2.5, 7.5], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 7.5, + 2.25, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 8, + 2.5, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_18", - "from": [2.75, 0, 7.5], - "to": [4, 0.25, 8.25], + "from": [ + 2.75, + 0, + 7.5 + ], + "to": [ + 4, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [4, 7.5, 2.75, 7.75], "texture": "#1"}, - "east": {"uv": [3.75, 7.5, 4, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 8, 4, 8.25], "texture": "#1"}, - "west": {"uv": [2.75, 7.5, 3, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 7.5, 4, 8.25], "texture": "#1"}, - "down": {"uv": [2.75, 8.25, 4, 7.5], "texture": "#1"} + "north": { + "uv": [ + 4, + 7.5, + 2.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 7.5, + 4, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 8, + 4, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 7.5, + 3, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 7.5, + 4, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 8.25, + 4, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_19", - "from": [12, 0, 7.5], - "to": [13.25, 0.25, 8.25], + "from": [ + 12, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.25, 7.5, 12, 7.75], "texture": "#1"}, - "east": {"uv": [13, 7.5, 13.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 8, 13.25, 8.25], "texture": "#1"}, - "west": {"uv": [12, 7.5, 12.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 7.5, 13.25, 8.25], "texture": "#1"}, - "down": {"uv": [12, 8.25, 13.25, 7.5], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 7.5, + 12, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 8, + 13.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 7.5, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 7.5, + 13.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 8.25, + 13.25, + 7.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_20", - "from": [0.25, 0, 7.75], - "to": [0.75, 0.25, 8], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.25, 8], "texture": "#1"}, - "east": {"uv": [0.5, 7.75, 0.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 7.75, 0.75, 8], "texture": "#1"}, - "west": {"uv": [0.25, 7.75, 0.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7.75, 0.75, 8], "texture": "#1"}, - "down": {"uv": [0.25, 8, 0.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 7.75, + 0.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8, + 0.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_21", - "from": [1, 0, 7.75], - "to": [1.25, 0.25, 8.25], + "from": [ + 1, + 0, + 7.75 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 7.75, 1, 8], "texture": "#1"}, - "east": {"uv": [1, 7.75, 1.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#1"}, - "west": {"uv": [1, 7.75, 1.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.75, 1.25, 8.25], "texture": "#1"}, - "down": {"uv": [1, 8.25, 1.25, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 7.75, + 1, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 7.75, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.75, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_22", - "from": [1.5, 0, 7.75], - "to": [1.75, 0.25, 8.25], + "from": [ + 1.5, + 0, + 7.75 + ], + "to": [ + 1.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.75, 7.75, 1.5, 8], "texture": "#1"}, - "east": {"uv": [1.5, 7.75, 1.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8, 1.75, 8.25], "texture": "#1"}, - "west": {"uv": [1.5, 7.75, 1.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7.75, 1.75, 8.25], "texture": "#1"}, - "down": {"uv": [1.5, 8.25, 1.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7.75, + 1.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8, + 1.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 8.25, + 1.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_23", - "from": [2, 0, 7.75], - "to": [2.25, 0.25, 8.25], + "from": [ + 2, + 0, + 7.75 + ], + "to": [ + 2.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2.25, 7.75, 2, 8], "texture": "#1"}, - "east": {"uv": [2, 7.75, 2.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 8, 2.25, 8.25], "texture": "#1"}, - "west": {"uv": [2, 7.75, 2.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 7.75, 2.25, 8.25], "texture": "#1"}, - "down": {"uv": [2, 8.25, 2.25, 7.75], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7.75, + 2, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.75, + 2.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7.75, + 2.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 8.25, + 2.25, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_24", - "from": [2.5, 0, 7.75], - "to": [2.75, 0.25, 8.25], + "from": [ + 2.5, + 0, + 7.75 + ], + "to": [ + 2.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [2.75, 7.75, 2.5, 8], "texture": "#1"}, - "east": {"uv": [2.5, 7.75, 2.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 8, 2.75, 8.25], "texture": "#1"}, - "west": {"uv": [2.5, 7.75, 2.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 7.75, 2.75, 8.25], "texture": "#1"}, - "down": {"uv": [2.5, 8.25, 2.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 2.75, + 7.75, + 2.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 7.75, + 2.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 8.25, + 2.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_25", - "from": [14.25, 0, 7.75], - "to": [14.75, 0.25, 8], + "from": [ + 14.25, + 0, + 7.75 + ], + "to": [ + 14.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.75, 7.75, 14.25, 8], "texture": "#1"}, - "east": {"uv": [14.5, 7.75, 14.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 7.75, 14.75, 8], "texture": "#1"}, - "west": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7.75, 14.75, 8], "texture": "#1"}, - "down": {"uv": [14.25, 8, 14.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 7.75, + 14.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 7.75, + 14.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7.75, + 14.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 8, + 14.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_26", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.25], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#1"}, - "east": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#1"}, - "west": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#1"}, - "down": {"uv": [0.5, 8.25, 0.75, 8], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_27", - "from": [13.25, 0, 8], - "to": [14, 0.25, 8.25], + "from": [ + 13.25, + 0, + 8 + ], + "to": [ + 14, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14, 8, 13.25, 8.25], "texture": "#1"}, - "east": {"uv": [13.75, 8, 14, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 8, 14, 8.25], "texture": "#1"}, - "west": {"uv": [13.25, 8, 13.5, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 8, 14, 8.25], "texture": "#1"}, - "down": {"uv": [13.25, 8.25, 14, 8], "texture": "#1"} + "north": { + "uv": [ + 14, + 8, + 13.25, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 8, + 14, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 8, + 14, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 8, + 13.5, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 8, + 14, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 8.25, + 14, + 8 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_28", - "from": [4.25, 0, 8.25], - "to": [5.25, 0.25, 8.5], + "from": [ + 4.25, + 0, + 8.25 + ], + "to": [ + 5.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [5.25, 8.25, 4.25, 8.5], "texture": "#1"}, - "east": {"uv": [5, 8.25, 5.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 8.25, 5.25, 8.5], "texture": "#1"}, - "west": {"uv": [4.25, 8.25, 4.5, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 8.25, 5.25, 8.5], "texture": "#1"}, - "down": {"uv": [4.25, 8.5, 5.25, 8.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 8.25, + 4.25, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 8.25, + 5.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 8.25, + 5.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 8.25, + 4.5, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 8.25, + 5.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 8.5, + 5.25, + 8.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_29", - "from": [9, 0, 8.25], - "to": [10, 0.25, 9], + "from": [ + 9, + 0, + 8.25 + ], + "to": [ + 10, + 0.25, + 9 + ], "faces": { - "north": {"uv": [10, 8.25, 9, 8.5], "texture": "#1"}, - "east": {"uv": [9.75, 8.25, 10, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 8.75, 10, 9], "texture": "#1"}, - "west": {"uv": [9, 8.25, 9.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 8.25, 10, 9], "texture": "#1"}, - "down": {"uv": [9, 9, 10, 8.25], "texture": "#1"} + "north": { + "uv": [ + 10, + 8.25, + 9, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 8.25, + 10, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 8.75, + 10, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 8.25, + 9.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 8.25, + 10, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 9, + 10, + 8.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_30", - "from": [6, 0, 8.5], - "to": [6.5, 0.25, 9], + "from": [ + 6, + 0, + 8.5 + ], + "to": [ + 6.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [6.5, 8.5, 6, 8.75], "texture": "#1"}, - "east": {"uv": [6.25, 8.5, 6.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 8.75, 6.5, 9], "texture": "#1"}, - "west": {"uv": [6, 8.5, 6.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 8.5, 6.5, 9], "texture": "#1"}, - "down": {"uv": [6, 9, 6.5, 8.5], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 8.5, + 6, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 8.5, + 6.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 8.75, + 6.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 8.5, + 6.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 8.5, + 6.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 9, + 6.5, + 8.5 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_31", - "from": [7, 0, 8.75], - "to": [7.25, 0.25, 9.75], + "from": [ + 7, + 0, + 8.75 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.25, 8.75, 7, 9], "texture": "#1"}, - "east": {"uv": [7, 8.75, 7.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#1"}, - "west": {"uv": [7, 8.75, 7.25, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 8.75, 7.25, 9.75], "texture": "#1"}, - "down": {"uv": [7, 9.75, 7.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 8.75, + 7, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 8.75, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 8.75, + 7.25, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 8.75, + 7.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 9.75, + 7.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_32", - "from": [6.25, 0, 9], - "to": [6.5, 0.25, 9.25], + "from": [ + 6.25, + 0, + 9 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.5, 9, 6.25, 9.25], "texture": "#1"}, - "east": {"uv": [6.25, 9, 6.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 9, 6.5, 9.25], "texture": "#1"}, - "west": {"uv": [6.25, 9, 6.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 9, 6.5, 9.25], "texture": "#1"}, - "down": {"uv": [6.25, 9.25, 6.5, 9], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 9, + 6.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 9, + 6.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 9.25, + 6.5, + 9 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_33", - "from": [9.25, 0, 9], - "to": [10, 0.25, 9.25], + "from": [ + 9.25, + 0, + 9 + ], + "to": [ + 10, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10, 9, 9.25, 9.25], "texture": "#1"}, - "east": {"uv": [9.75, 9, 10, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 9, 10, 9.25], "texture": "#1"}, - "west": {"uv": [9.25, 9, 9.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 9, 10, 9.25], "texture": "#1"}, - "down": {"uv": [9.25, 9.25, 10, 9], "texture": "#1"} + "north": { + "uv": [ + 10, + 9, + 9.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 9, + 10, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 9, + 10, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 9, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 9, + 10, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 10, + 9 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_34", - "from": [9.5, 0, 9.25], - "to": [9.75, 0.25, 9.5], + "from": [ + 9.5, + 0, + 9.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 9.25, 9.5, 9.5], "texture": "#1"}, - "east": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#1"}, - "west": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#1"}, - "down": {"uv": [9.5, 9.5, 9.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 9.25, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "nokogirizame_35", - "from": [6.75, 0, 9.75], - "to": [7, 0.25, 10], + "from": [ + 6.75, + 0, + 9.75 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 9.75, 6.75, 10], "texture": "#1"}, - "east": {"uv": [6.75, 9.75, 7, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#1"}, - "west": {"uv": [6.75, 9.75, 7, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 9.75, 7, 10], "texture": "#1"}, - "down": {"uv": [6.75, 10, 7, 9.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 9.75, + 6.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 9.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 6, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 6, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 6, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 6, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 6, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 6, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 6, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 6, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 6, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 6, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-5.75, 15, 26.25], - "scale": [3.26, 3.26, 3.26] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -5.75, + 15, + 26.25 + ], + "scale": [ + 3.26, + 3.26, + 3.26 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "nokogirizame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/oikawa.json b/pack/assets/minecraft/models/fish/oikawa.json index 4de0bf2a..f51fa489 100644 --- a/pack/assets/minecraft/models/fish/oikawa.json +++ b/pack/assets/minecraft/models/fish/oikawa.json @@ -2,667 +2,3529 @@ "__name": "オイカワ", "credit": "Made with Blockbench", "textures": { - "0": "fish/oikawa", - "particle": "fish/oikawa" + "0": "item/fish/oikawa", + "particle": "item/fish/oikawa" }, "elements": [ { "name": "oikawa_0", - "from": [8.25, 0, 4.75], - "to": [9, 0.25, 9], + "from": [ + 8.25, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9, 4.75, 8.25, 5], "texture": "#0"}, - "east": {"uv": [8.75, 4.75, 9, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 8.75, 9, 9], "texture": "#0"}, - "west": {"uv": [8.25, 4.75, 8.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4.75, 9, 9], "texture": "#0"}, - "down": {"uv": [8.25, 9, 9, 4.75], "texture": "#0"} + "north": { + "uv": [ + 9, + 4.75, + 8.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.75, + 9, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4.75, + 8.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4.75, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 9, + 4.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_1", - "from": [7.75, 0, 5], - "to": [8.25, 0.25, 9.75], + "from": [ + 7.75, + 0, + 5 + ], + "to": [ + 8.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.25, 5, 7.75, 5.25], "texture": "#0"}, - "east": {"uv": [8, 5, 8.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.5, 8.25, 9.75], "texture": "#0"}, - "west": {"uv": [7.75, 5, 8, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 5, 8.25, 9.75], "texture": "#0"}, - "down": {"uv": [7.75, 9.75, 8.25, 5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5, + 8.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5, + 8, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9.75, + 8.25, + 5 + ], + "texture": "#0" + } } }, { "name": "oikawa_2", - "from": [9, 0, 5], - "to": [9.25, 0.25, 9.25], + "from": [ + 9, + 0, + 5 + ], + "to": [ + 9.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.25, 5, 9, 5.25], "texture": "#0"}, - "east": {"uv": [9, 5, 9.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9, 9.25, 9.25], "texture": "#0"}, - "west": {"uv": [9, 5, 9.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 5, 9.25, 9.25], "texture": "#0"}, - "down": {"uv": [9, 9.25, 9.25, 5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5, + 9.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.25, + 9.25, + 5 + ], + "texture": "#0" + } } }, { "name": "oikawa_3", - "from": [7.5, 0, 5.25], - "to": [7.75, 0.25, 10], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 7.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.75, 5.25, 7.5, 5.5], "texture": "#0"}, - "east": {"uv": [7.5, 5.25, 7.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.75, 7.75, 10], "texture": "#0"}, - "west": {"uv": [7.5, 5.25, 7.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.25, 7.75, 10], "texture": "#0"}, - "down": {"uv": [7.5, 10, 7.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10, + 7.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_4", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 9.75], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#0"}, - "west": {"uv": [6.75, 5.5, 7, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.5, 7, 9.75], "texture": "#0"}, - "down": {"uv": [6.75, 9.75, 7, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_5", - "from": [7.25, 0, 5.5], - "to": [7.5, 0.25, 10], + "from": [ + 7.25, + 0, + 5.5 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 5.5, 7.25, 5.75], "texture": "#0"}, - "east": {"uv": [7.25, 5.5, 7.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.75, 7.5, 10], "texture": "#0"}, - "west": {"uv": [7.25, 5.5, 7.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5.5, 7.5, 10], "texture": "#0"}, - "down": {"uv": [7.25, 10, 7.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 5.5, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 5.5, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5.5, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.5, + 7.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_6", - "from": [9.25, 0, 5.5], - "to": [9.5, 0.25, 9.5], + "from": [ + 9.25, + 0, + 5.5 + ], + "to": [ + 9.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.5, 5.5, 9.25, 5.75], "texture": "#0"}, - "east": {"uv": [9.25, 5.5, 9.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 9.25, 9.5, 9.5], "texture": "#0"}, - "west": {"uv": [9.25, 5.5, 9.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.5, 9.5, 9.5], "texture": "#0"}, - "down": {"uv": [9.25, 9.5, 9.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.5, + 9.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.5, + 9.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.5, + 9.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.5, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9.5, + 9.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_7", - "from": [5.25, 0, 5.75], - "to": [5.5, 0.25, 10.25], + "from": [ + 5.25, + 0, + 5.75 + ], + "to": [ + 5.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.5, 5.75, 5.25, 6], "texture": "#0"}, - "east": {"uv": [5.25, 5.75, 5.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10, 5.5, 10.25], "texture": "#0"}, - "west": {"uv": [5.25, 5.75, 5.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 5.75, 5.5, 10.25], "texture": "#0"}, - "down": {"uv": [5.25, 10.25, 5.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 5.75, + 5.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5.75, + 5.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5.75, + 5.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 5.75, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.25, + 5.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_8", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#0"}, - "east": {"uv": [6.5, 5.75, 6.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#0"}, - "west": {"uv": [6.5, 5.75, 6.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.75, 6.75, 9.75], "texture": "#0"}, - "down": {"uv": [6.5, 9.75, 6.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_9", - "from": [7, 0, 5.75], - "to": [7.25, 0.25, 9.75], + "from": [ + 7, + 0, + 5.75 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.25, 5.75, 7, 6], "texture": "#0"}, - "east": {"uv": [7, 5.75, 7.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#0"}, - "west": {"uv": [7, 5.75, 7.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.75, 7.25, 9.75], "texture": "#0"}, - "down": {"uv": [7, 9.75, 7.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.75, + 7, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.75, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.75, + 7.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.75, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 9.75, + 7.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_10", - "from": [13.25, 0, 5.75], - "to": [13.75, 0.25, 7.25], + "from": [ + 13.25, + 0, + 5.75 + ], + "to": [ + 13.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [13.75, 5.75, 13.25, 6], "texture": "#0"}, - "east": {"uv": [13.5, 5.75, 13.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7, 13.75, 7.25], "texture": "#0"}, - "west": {"uv": [13.25, 5.75, 13.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 5.75, 13.75, 7.25], "texture": "#0"}, - "down": {"uv": [13.25, 7.25, 13.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 5.75, + 13.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 5.75, + 13.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 5.75, + 13.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 5.75, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.25, + 13.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_11", - "from": [4.5, 0, 6], - "to": [5.25, 0.25, 9.75], + "from": [ + 4.5, + 0, + 6 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.25, 6, 4.5, 6.25], "texture": "#0"}, - "east": {"uv": [5, 6, 5.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 9.5, 5.25, 9.75], "texture": "#0"}, - "west": {"uv": [4.5, 6, 4.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 6, 5.25, 9.75], "texture": "#0"}, - "down": {"uv": [4.5, 9.75, 5.25, 6], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 6, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6, + 4.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 6, + 5.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9.75, + 5.25, + 6 + ], + "texture": "#0" + } } }, { "name": "oikawa_12", - "from": [5.5, 0, 6], - "to": [6.5, 0.25, 10], + "from": [ + 5.5, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 6, 5.5, 6.25], "texture": "#0"}, - "east": {"uv": [6.25, 6, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [5.5, 6, 5.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6, 6.5, 10], "texture": "#0"}, - "down": {"uv": [5.5, 10, 6.5, 6], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 6, + 5.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6, + 5.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10, + 6.5, + 6 + ], + "texture": "#0" + } } }, { "name": "oikawa_13", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 9.75], + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#0"}, - "east": {"uv": [9.5, 6, 9.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.5, 9.75, 9.75], "texture": "#0"}, - "west": {"uv": [9.5, 6, 9.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6, 9.75, 9.75], "texture": "#0"}, - "down": {"uv": [9.5, 9.75, 9.75, 6], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.75, + 9.75, + 6 + ], + "texture": "#0" + } } }, { "name": "oikawa_14", - "from": [12.5, 0, 6], - "to": [13.25, 0.25, 8.75], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 6, 12.5, 6.25], "texture": "#0"}, - "east": {"uv": [13, 6, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [12.5, 6, 12.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [12.5, 8.75, 13.25, 6], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6, + 12.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.75, + 13.25, + 6 + ], + "texture": "#0" + } } }, { "name": "oikawa_15", - "from": [13.75, 0, 6], - "to": [14, 0.25, 7], + "from": [ + 13.75, + 0, + 6 + ], + "to": [ + 14, + 0.25, + 7 + ], "faces": { - "north": {"uv": [14, 6, 13.75, 6.25], "texture": "#0"}, - "east": {"uv": [13.75, 6, 14, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 6.75, 14, 7], "texture": "#0"}, - "west": {"uv": [13.75, 6, 14, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 6, 14, 7], "texture": "#0"}, - "down": {"uv": [13.75, 7, 14, 6], "texture": "#0"} + "north": { + "uv": [ + 14, + 6, + 13.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6, + 14, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 6.75, + 14, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 6, + 14, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6, + 14, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 7, + 14, + 6 + ], + "texture": "#0" + } } }, { "name": "oikawa_16", - "from": [3.75, 0, 6.25], - "to": [4.5, 0.25, 9.5], + "from": [ + 3.75, + 0, + 6.25 + ], + "to": [ + 4.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.5, 6.25, 3.75, 6.5], "texture": "#0"}, - "east": {"uv": [4.25, 6.25, 4.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 9.25, 4.5, 9.5], "texture": "#0"}, - "west": {"uv": [3.75, 6.25, 4, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 6.25, 4.5, 9.5], "texture": "#0"}, - "down": {"uv": [3.75, 9.5, 4.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 6.25, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 6.25, + 4.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.25, + 4, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.25, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.5, + 4.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_17", - "from": [9.75, 0, 6.25], - "to": [10, 0.25, 9.75], + "from": [ + 9.75, + 0, + 6.25 + ], + "to": [ + 10, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10, 6.25, 9.75, 6.5], "texture": "#0"}, - "east": {"uv": [9.75, 6.25, 10, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 6.25, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 6.25, 10, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10, 6.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 6.25, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 6.25, + 10, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 6.25, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 6.25, + 10, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10, + 6.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_18", - "from": [12, 0, 6.25], - "to": [12.5, 0.25, 8.5], + "from": [ + 12, + 0, + 6.25 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.5, 6.25, 12, 6.5], "texture": "#0"}, - "east": {"uv": [12.25, 6.25, 12.5, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.25, 12.5, 8.5], "texture": "#0"}, - "west": {"uv": [12, 6.25, 12.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.25, 12.5, 8.5], "texture": "#0"}, - "down": {"uv": [12, 8.5, 12.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.25, + 12, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.25, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.25, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.5, + 12.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_19", - "from": [3.5, 0, 6.5], - "to": [3.75, 0.25, 9.5], + "from": [ + 3.5, + 0, + 6.5 + ], + "to": [ + 3.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.75, 6.5, 3.5, 6.75], "texture": "#0"}, - "east": {"uv": [3.5, 6.5, 3.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.25, 3.75, 9.5], "texture": "#0"}, - "west": {"uv": [3.5, 6.5, 3.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.5, 3.75, 9.5], "texture": "#0"}, - "down": {"uv": [3.5, 9.5, 3.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.25, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.5, + 3.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_20", - "from": [10, 0, 6.5], - "to": [11, 0.25, 8.25], + "from": [ + 10, + 0, + 6.5 + ], + "to": [ + 11, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11, 6.5, 10, 6.75], "texture": "#0"}, - "east": {"uv": [10.75, 6.5, 11, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 8, 11, 8.25], "texture": "#0"}, - "west": {"uv": [10, 6.5, 10.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 6.5, 11, 8.25], "texture": "#0"}, - "down": {"uv": [10, 8.25, 11, 6.5], "texture": "#0"} + "north": { + "uv": [ + 11, + 6.5, + 10, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.5, + 11, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 11, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.5, + 10.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 6.5, + 11, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8.25, + 11, + 6.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_21", - "from": [11.75, 0, 6.5], - "to": [12, 0.25, 8.5], + "from": [ + 11.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12, 6.5, 11.75, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 8.25, 12, 8.5], "texture": "#0"}, - "west": {"uv": [11.75, 6.5, 12, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 6.5, 12, 8.5], "texture": "#0"}, - "down": {"uv": [11.75, 8.5, 12, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.5, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 6.5, + 12, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 6.5, + 12, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 8.5, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_22", - "from": [3.25, 0, 6.75], - "to": [3.5, 0.25, 9.25], + "from": [ + 3.25, + 0, + 6.75 + ], + "to": [ + 3.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.5, 6.75, 3.25, 7], "texture": "#0"}, - "east": {"uv": [3.25, 6.75, 3.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 9, 3.5, 9.25], "texture": "#0"}, - "west": {"uv": [3.25, 6.75, 3.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.75, 3.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.25, 9.25, 3.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6.75, + 3.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.75, + 3.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.75, + 3.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.75, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9.25, + 3.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_23", - "from": [11, 0, 6.75], - "to": [11.75, 0.25, 8], + "from": [ + 11, + 0, + 6.75 + ], + "to": [ + 11.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [11.75, 6.75, 11, 7], "texture": "#0"}, - "east": {"uv": [11.5, 6.75, 11.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 7.75, 11.75, 8], "texture": "#0"}, - "west": {"uv": [11, 6.75, 11.25, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.75, 11.75, 8], "texture": "#0"}, - "down": {"uv": [11, 8, 11.75, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6.75, + 11.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 7.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.75, + 11.25, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.75, + 11.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 8, + 11.75, + 6.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_24", - "from": [2.75, 0, 7], - "to": [3.25, 0.25, 9], + "from": [ + 2.75, + 0, + 7 + ], + "to": [ + 3.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [3.25, 7, 2.75, 7.25], "texture": "#0"}, - "east": {"uv": [3, 7, 3.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 8.75, 3.25, 9], "texture": "#0"}, - "west": {"uv": [2.75, 7, 3, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 7, 3.25, 9], "texture": "#0"}, - "down": {"uv": [2.75, 9, 3.25, 7], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 7, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7, + 3.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.75, + 3.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7, + 3, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7, + 3.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9, + 3.25, + 7 + ], + "texture": "#0" + } } }, { "name": "oikawa_25", - "from": [2.5, 0, 7.25], - "to": [2.75, 0.25, 9], + "from": [ + 2.5, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.75, 7.25, 2.5, 7.5], "texture": "#0"}, - "east": {"uv": [2.5, 7.25, 2.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 8.75, 2.75, 9], "texture": "#0"}, - "west": {"uv": [2.5, 7.25, 2.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 7.25, 2.75, 9], "texture": "#0"}, - "down": {"uv": [2.5, 9, 2.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 7.25, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 2.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 7.25, + 2.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.25, + 2.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9, + 2.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_26", - "from": [13.25, 0, 7.25], - "to": [13.5, 0.25, 7.5], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [13.5, 7.25, 13.25, 7.5], "texture": "#0"}, - "east": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#0"}, - "west": {"uv": [13.25, 7.25, 13.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [13.25, 7.5, 13.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 7.25, + 13.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.5, + 13.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_27", - "from": [2.25, 0, 7.5], - "to": [2.5, 0.25, 8], + "from": [ + 2.25, + 0, + 7.5 + ], + "to": [ + 2.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [2.5, 7.5, 2.25, 7.75], "texture": "#0"}, - "east": {"uv": [2.25, 7.5, 2.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 7.75, 2.5, 8], "texture": "#0"}, - "west": {"uv": [2.25, 7.5, 2.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 7.5, 2.5, 8], "texture": "#0"}, - "down": {"uv": [2.25, 8, 2.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 7.5, + 2.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 7.75, + 2.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.5, + 2.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 8, + 2.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_28", - "from": [13.25, 0, 7.75], - "to": [13.5, 0.25, 9.25], + "from": [ + 13.25, + 0, + 7.75 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 7.75, 13.25, 8], "texture": "#0"}, - "east": {"uv": [13.25, 7.75, 13.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#0"}, - "west": {"uv": [13.25, 7.75, 13.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 7.75, 13.5, 9.25], "texture": "#0"}, - "down": {"uv": [13.25, 9.25, 13.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 7.75, + 13.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_29", - "from": [11.5, 0, 8], - "to": [11.75, 0.25, 8.25], + "from": [ + 11.5, + 0, + 8 + ], + "to": [ + 11.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [11.75, 8, 11.5, 8.25], "texture": "#0"}, - "east": {"uv": [11.5, 8, 11.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#0"}, - "west": {"uv": [11.5, 8, 11.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 8, 11.75, 8.25], "texture": "#0"}, - "down": {"uv": [11.5, 8.25, 11.75, 8], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 8, + 11.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 8, + 11.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8 + ], + "texture": "#0" + } } }, { "name": "oikawa_30", - "from": [13.5, 0, 8], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.5, + 0, + 8 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 8, 13.5, 8.25], "texture": "#0"}, - "east": {"uv": [13.5, 8, 13.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 13.75, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 8, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 8, 13.75, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 13.75, 8], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 8, + 13.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 8, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 8, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 13.75, + 8 + ], + "texture": "#0" + } } }, { "name": "oikawa_31", - "from": [10, 0, 8.25], - "to": [10.5, 0.25, 10], + "from": [ + 10, + 0, + 8.25 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 8.25, 10, 8.5], "texture": "#0"}, - "east": {"uv": [10.25, 8.25, 10.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.75, 10.5, 10], "texture": "#0"}, - "west": {"uv": [10, 8.25, 10.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 8.25, 10.5, 10], "texture": "#0"}, - "down": {"uv": [10, 10, 10.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 8.25, + 10, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 8.25, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8.25, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8.25, + 10.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10, + 10.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_32", - "from": [13.75, 0, 8.25], - "to": [14, 0.25, 9], + "from": [ + 13.75, + 0, + 8.25 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 8.25, 13.75, 8.5], "texture": "#0"}, - "east": {"uv": [13.75, 8.25, 14, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 8.75, 14, 9], "texture": "#0"}, - "west": {"uv": [13.75, 8.25, 14, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 8.25, 14, 9], "texture": "#0"}, - "down": {"uv": [13.75, 9, 14, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 8.25, + 14, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 8.25, + 14, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 8.25, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9, + 14, + 8.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_33", - "from": [10.5, 0, 8.5], - "to": [11, 0.25, 10.25], + "from": [ + 10.5, + 0, + 8.5 + ], + "to": [ + 11, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11, 8.5, 10.5, 8.75], "texture": "#0"}, - "east": {"uv": [10.75, 8.5, 11, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10, 11, 10.25], "texture": "#0"}, - "west": {"uv": [10.5, 8.5, 10.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 8.5, 11, 10.25], "texture": "#0"}, - "down": {"uv": [10.5, 10.25, 11, 8.5], "texture": "#0"} + "north": { + "uv": [ + 11, + 8.5, + 10.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 8.5, + 11, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10, + 11, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8.5, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8.5, + 11, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 11, + 8.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_34", - "from": [11, 0, 8.75], - "to": [11.25, 0.25, 10.5], + "from": [ + 11, + 0, + 8.75 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 8.75, 11, 9], "texture": "#0"}, - "east": {"uv": [11, 8.75, 11.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.25, 11.25, 10.5], "texture": "#0"}, - "west": {"uv": [11, 8.75, 11.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 8.75, 11.25, 10.5], "texture": "#0"}, - "down": {"uv": [11, 10.5, 11.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 8.75, + 11, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 8.75, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8.75, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8.75, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_35", - "from": [12.75, 0, 8.75], - "to": [13.25, 0.25, 9], + "from": [ + 12.75, + 0, + 8.75 + ], + "to": [ + 13.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.25, 8.75, 12.75, 9], "texture": "#0"}, - "east": {"uv": [13, 8.75, 13.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8.75, 13.25, 9], "texture": "#0"}, - "west": {"uv": [12.75, 8.75, 13, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 8.75, 13.25, 9], "texture": "#0"}, - "down": {"uv": [12.75, 9, 13.25, 8.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8.75, + 13.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8.75, + 13.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 8.75, + 13, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 8.75, + 13.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 9, + 13.25, + 8.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_36", - "from": [3, 0, 9], - "to": [3.25, 0.25, 9.25], + "from": [ + 3, + 0, + 9 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 9, 3, 9.25], "texture": "#0"}, - "east": {"uv": [3, 9, 3.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 9, 3.25, 9.25], "texture": "#0"}, - "west": {"uv": [3, 9, 3.25, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9, 3.25, 9.25], "texture": "#0"}, - "down": {"uv": [3, 9.25, 3.25, 9], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9.25, + 3.25, + 9 + ], + "texture": "#0" + } } }, { "name": "oikawa_37", - "from": [8.25, 0, 9], - "to": [8.75, 0.25, 9.25], + "from": [ + 8.25, + 0, + 9 + ], + "to": [ + 8.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.75, 9, 8.25, 9.25], "texture": "#0"}, - "east": {"uv": [8.5, 9, 8.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9, 8.75, 9.25], "texture": "#0"}, - "west": {"uv": [8.25, 9, 8.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9, 8.75, 9.25], "texture": "#0"}, - "down": {"uv": [8.25, 9.25, 8.75, 9], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 9, + 8.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 9, + 8.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9, + 8.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.25, + 8.75, + 9 + ], + "texture": "#0" + } } }, { "name": "oikawa_38", - "from": [11.25, 0, 9], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 9 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 9, 11.25, 9.25], "texture": "#0"}, - "east": {"uv": [11.25, 9, 11.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#0"}, - "west": {"uv": [11.25, 9, 11.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 9, 11.5, 10.5], "texture": "#0"}, - "down": {"uv": [11.25, 10.5, 11.5, 9], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 9, + 11.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 9, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 9, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 9, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 9 + ], + "texture": "#0" + } } }, { "name": "oikawa_39", - "from": [8.25, 0, 9.25], - "to": [8.5, 0.25, 9.5], + "from": [ + 8.25, + 0, + 9.25 + ], + "to": [ + 8.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.5, 9.25, 8.25, 9.5], "texture": "#0"}, - "east": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#0"}, - "west": {"uv": [8.25, 9.25, 8.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.25, 8.5, 9.5], "texture": "#0"}, - "down": {"uv": [8.25, 9.5, 8.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 9.25, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_40", - "from": [11.5, 0, 9.25], - "to": [11.75, 0.25, 10.25], + "from": [ + 11.5, + 0, + 9.25 + ], + "to": [ + 11.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.75, 9.25, 11.5, 9.5], "texture": "#0"}, - "east": {"uv": [11.5, 9.25, 11.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10, 11.75, 10.25], "texture": "#0"}, - "west": {"uv": [11.5, 9.25, 11.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9.25, 11.75, 10.25], "texture": "#0"}, - "down": {"uv": [11.5, 10.25, 11.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9.25, + 11.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.25, + 11.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9.25, + 11.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9.25, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.25, + 11.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "oikawa_41", - "from": [4.25, 0, 9.5], - "to": [4.5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 4.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.5, 9.5, 4.25, 9.75], "texture": "#0"}, - "east": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#0"}, - "west": {"uv": [4.25, 9.5, 4.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.5, 4.5, 9.75], "texture": "#0"}, - "down": {"uv": [4.25, 9.75, 4.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 9.5, + 4.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 4.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_42", - "from": [11.75, 0, 9.5], - "to": [12, 0.25, 10], + "from": [ + 11.75, + 0, + 9.5 + ], + "to": [ + 12, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12, 9.5, 11.75, 9.75], "texture": "#0"}, - "east": {"uv": [11.75, 9.5, 12, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9.75, 12, 10], "texture": "#0"}, - "west": {"uv": [11.75, 9.5, 12, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 9.5, 12, 10], "texture": "#0"}, - "down": {"uv": [11.75, 10, 12, 9.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 9.5, + 11.75, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 9.5, + 12, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9.75, + 12, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 9.5, + 12, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 9.5, + 12, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10, + 12, + 9.5 + ], + "texture": "#0" + } } }, { "name": "oikawa_43", - "from": [5, 0, 9.75], - "to": [5.25, 0.25, 10], + "from": [ + 5, + 0, + 9.75 + ], + "to": [ + 5.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.25, 9.75, 5, 10], "texture": "#0"}, - "east": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"}, - "west": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"}, - "down": {"uv": [5, 10, 5.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 9.75, + 5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.75, + 5.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10, + 5.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_44", - "from": [7.75, 0, 9.75], - "to": [8, 0.25, 10], + "from": [ + 7.75, + 0, + 9.75 + ], + "to": [ + 8, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8, 9.75, 7.75, 10], "texture": "#0"}, - "east": {"uv": [7.75, 9.75, 8, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 9.75, 8, 10], "texture": "#0"}, - "west": {"uv": [7.75, 9.75, 8, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.75, 8, 10], "texture": "#0"}, - "down": {"uv": [7.75, 10, 8, 9.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10, + 8, + 9.75 + ], + "texture": "#0" + } } }, { "name": "oikawa_45", - "from": [5.5, 0, 10], - "to": [6, 0.25, 10.25], + "from": [ + 5.5, + 0, + 10 + ], + "to": [ + 6, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6, 10, 5.5, 10.25], "texture": "#0"}, - "east": {"uv": [5.75, 10, 6, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10, 6, 10.25], "texture": "#0"}, - "west": {"uv": [5.5, 10, 5.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10, 6, 10.25], "texture": "#0"}, - "down": {"uv": [5.5, 10.25, 6, 10], "texture": "#0"} + "north": { + "uv": [ + 6, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.25, + 6, + 10 + ], + "texture": "#0" + } } }, { "name": "oikawa_46", - "from": [10.25, 0, 10], - "to": [10.5, 0.25, 10.25], + "from": [ + 10.25, + 0, + 10 + ], + "to": [ + 10.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.5, 10, 10.25, 10.25], "texture": "#0"}, - "east": {"uv": [10.25, 10, 10.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10, 10.5, 10.25], "texture": "#0"}, - "west": {"uv": [10.25, 10, 10.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 10, 10.5, 10.25], "texture": "#0"}, - "down": {"uv": [10.25, 10.25, 10.5, 10], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 10, + 10.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 10, + 10.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.25, 3.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.25, + 3.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.25, 3.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.25, + 3.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "firstperson_righthand": { - "rotation": [90, -33.75, 0], - "translation": [0.75, 2.5, 5.25], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + -33.75, + 0 + ], + "translation": [ + 0.75, + 2.5, + 5.25 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "firstperson_lefthand": { - "rotation": [90, -42, -180.5], - "translation": [1, 2.75, 0], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + -42, + -180.5 + ], + "translation": [ + 1, + 2.75, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0, 3], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 3 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] } }, "groups": [ { "name": "oikawa", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ooiwana.json b/pack/assets/minecraft/models/fish/ooiwana.json index 3ac1e9cd..ee0c944f 100644 --- a/pack/assets/minecraft/models/fish/ooiwana.json +++ b/pack/assets/minecraft/models/fish/ooiwana.json @@ -2,605 +2,3184 @@ "__name": "オオイワナ", "credit": "Made with Blockbench", "textures": { - "3": "fish/ooiwana", - "particle": "fish/nokogirizame" + "3": "item/fish/ooiwana", + "particle": "item/fish/nokogirizame" }, "elements": [ { "name": "ooiwana_0", - "from": [7.73333, 0, 4.26667], - "to": [8.26667, 0.26667, 10.4], + "from": [ + 7.73333, + 0, + 4.26667 + ], + "to": [ + 8.26667, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [8.26667, 4.26667, 7.73333, 4.53333], "texture": "#3"}, - "east": {"uv": [8, 4.26667, 8.26667, 10.4], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.73333, 10.13333, 8.26667, 10.4], "texture": "#3"}, - "west": {"uv": [7.73333, 4.26667, 8, 10.4], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.73333, 4.26667, 8.26667, 10.4], "texture": "#3"}, - "down": {"uv": [7.73333, 10.4, 8.26667, 4.26667], "texture": "#3"} + "north": { + "uv": [ + 8.26667, + 4.26667, + 7.73333, + 4.53333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8, + 4.26667, + 8.26667, + 10.4 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.73333, + 10.13333, + 8.26667, + 10.4 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.73333, + 4.26667, + 8, + 10.4 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.73333, + 4.26667, + 8.26667, + 10.4 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.73333, + 10.4, + 8.26667, + 4.26667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_1", - "from": [7.46667, 0, 4.53333], - "to": [7.73333, 0.26667, 10.13333], + "from": [ + 7.46667, + 0, + 4.53333 + ], + "to": [ + 7.73333, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [7.73333, 4.53333, 7.46667, 4.8], "texture": "#3"}, - "east": {"uv": [7.46667, 4.53333, 7.73333, 10.13333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.46667, 9.86667, 7.73333, 10.13333], "texture": "#3"}, - "west": {"uv": [7.46667, 4.53333, 7.73333, 10.13333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.46667, 4.53333, 7.73333, 10.13333], "texture": "#3"}, - "down": {"uv": [7.46667, 10.13333, 7.73333, 4.53333], "texture": "#3"} + "north": { + "uv": [ + 7.73333, + 4.53333, + 7.46667, + 4.8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.46667, + 4.53333, + 7.73333, + 10.13333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.46667, + 9.86667, + 7.73333, + 10.13333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.46667, + 4.53333, + 7.73333, + 10.13333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.46667, + 4.53333, + 7.73333, + 10.13333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.46667, + 10.13333, + 7.73333, + 4.53333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_2", - "from": [8.26667, 0, 4.53333], - "to": [8.53333, 0.26667, 10.93333], + "from": [ + 8.26667, + 0, + 4.53333 + ], + "to": [ + 8.53333, + 0.26667, + 10.93333 + ], "faces": { - "north": {"uv": [8.53333, 4.53333, 8.26667, 4.8], "texture": "#3"}, - "east": {"uv": [8.26667, 4.53333, 8.53333, 10.93333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.26667, 10.66667, 8.53333, 10.93333], "texture": "#3"}, - "west": {"uv": [8.26667, 4.53333, 8.53333, 10.93333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.26667, 4.53333, 8.53333, 10.93333], "texture": "#3"}, - "down": {"uv": [8.26667, 10.93333, 8.53333, 4.53333], "texture": "#3"} + "north": { + "uv": [ + 8.53333, + 4.53333, + 8.26667, + 4.8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.26667, + 4.53333, + 8.53333, + 10.93333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.26667, + 10.66667, + 8.53333, + 10.93333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.26667, + 4.53333, + 8.53333, + 10.93333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.26667, + 4.53333, + 8.53333, + 10.93333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.26667, + 10.93333, + 8.53333, + 4.53333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_3", - "from": [7.2, 0, 4.8], - "to": [7.46667, 0.26667, 9.6], + "from": [ + 7.2, + 0, + 4.8 + ], + "to": [ + 7.46667, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [7.46667, 4.8, 7.2, 5.06667], "texture": "#3"}, - "east": {"uv": [7.2, 4.8, 7.46667, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.2, 9.33333, 7.46667, 9.6], "texture": "#3"}, - "west": {"uv": [7.2, 4.8, 7.46667, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.2, 4.8, 7.46667, 9.6], "texture": "#3"}, - "down": {"uv": [7.2, 9.6, 7.46667, 4.8], "texture": "#3"} + "north": { + "uv": [ + 7.46667, + 4.8, + 7.2, + 5.06667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.2, + 4.8, + 7.46667, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.2, + 9.33333, + 7.46667, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.2, + 4.8, + 7.46667, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.2, + 4.8, + 7.46667, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.2, + 9.6, + 7.46667, + 4.8 + ], + "texture": "#3" + } } }, { "name": "ooiwana_4", - "from": [6.93333, 0, 5.06667], - "to": [7.2, 0.26667, 9.6], + "from": [ + 6.93333, + 0, + 5.06667 + ], + "to": [ + 7.2, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [7.2, 5.06667, 6.93333, 5.33333], "texture": "#3"}, - "east": {"uv": [6.93333, 5.06667, 7.2, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.93333, 9.33333, 7.2, 9.6], "texture": "#3"}, - "west": {"uv": [6.93333, 5.06667, 7.2, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.93333, 5.06667, 7.2, 9.6], "texture": "#3"}, - "down": {"uv": [6.93333, 9.6, 7.2, 5.06667], "texture": "#3"} + "north": { + "uv": [ + 7.2, + 5.06667, + 6.93333, + 5.33333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.93333, + 5.06667, + 7.2, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.93333, + 9.33333, + 7.2, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.93333, + 5.06667, + 7.2, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.93333, + 5.06667, + 7.2, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.93333, + 9.6, + 7.2, + 5.06667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_5", - "from": [8.53333, 0, 5.06667], - "to": [8.8, 0.26667, 10.93333], + "from": [ + 8.53333, + 0, + 5.06667 + ], + "to": [ + 8.8, + 0.26667, + 10.93333 + ], "faces": { - "north": {"uv": [8.8, 5.06667, 8.53333, 5.33333], "texture": "#3"}, - "east": {"uv": [8.53333, 5.06667, 8.8, 10.93333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.53333, 10.66667, 8.8, 10.93333], "texture": "#3"}, - "west": {"uv": [8.53333, 5.06667, 8.8, 10.93333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.53333, 5.06667, 8.8, 10.93333], "texture": "#3"}, - "down": {"uv": [8.53333, 10.93333, 8.8, 5.06667], "texture": "#3"} + "north": { + "uv": [ + 8.8, + 5.06667, + 8.53333, + 5.33333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.53333, + 5.06667, + 8.8, + 10.93333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.53333, + 10.66667, + 8.8, + 10.93333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.53333, + 5.06667, + 8.8, + 10.93333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.53333, + 5.06667, + 8.8, + 10.93333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.53333, + 10.93333, + 8.8, + 5.06667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_6", - "from": [6.4, 0, 5.33333], - "to": [6.93333, 0.26667, 9.6], + "from": [ + 6.4, + 0, + 5.33333 + ], + "to": [ + 6.93333, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [6.93333, 5.33333, 6.4, 5.6], "texture": "#3"}, - "east": {"uv": [6.66667, 5.33333, 6.93333, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.4, 9.33333, 6.93333, 9.6], "texture": "#3"}, - "west": {"uv": [6.4, 5.33333, 6.66667, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.4, 5.33333, 6.93333, 9.6], "texture": "#3"}, - "down": {"uv": [6.4, 9.6, 6.93333, 5.33333], "texture": "#3"} + "north": { + "uv": [ + 6.93333, + 5.33333, + 6.4, + 5.6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.66667, + 5.33333, + 6.93333, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.4, + 9.33333, + 6.93333, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.4, + 5.33333, + 6.66667, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.4, + 5.33333, + 6.93333, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.4, + 9.6, + 6.93333, + 5.33333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_7", - "from": [6.13333, 0, 5.6], - "to": [6.4, 0.26667, 9.6], + "from": [ + 6.13333, + 0, + 5.6 + ], + "to": [ + 6.4, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [6.4, 5.6, 6.13333, 5.86667], "texture": "#3"}, - "east": {"uv": [6.13333, 5.6, 6.4, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.13333, 9.33333, 6.4, 9.6], "texture": "#3"}, - "west": {"uv": [6.13333, 5.6, 6.4, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.13333, 5.6, 6.4, 9.6], "texture": "#3"}, - "down": {"uv": [6.13333, 9.6, 6.4, 5.6], "texture": "#3"} + "north": { + "uv": [ + 6.4, + 5.6, + 6.13333, + 5.86667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.13333, + 5.6, + 6.4, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.13333, + 9.33333, + 6.4, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.13333, + 5.6, + 6.4, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.13333, + 5.6, + 6.4, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.13333, + 9.6, + 6.4, + 5.6 + ], + "texture": "#3" + } } }, { "name": "ooiwana_8", - "from": [8.8, 0, 5.6], - "to": [9.06667, 0.26667, 10.66667], + "from": [ + 8.8, + 0, + 5.6 + ], + "to": [ + 9.06667, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [9.06667, 5.6, 8.8, 5.86667], "texture": "#3"}, - "east": {"uv": [8.8, 5.6, 9.06667, 10.66667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.8, 10.4, 9.06667, 10.66667], "texture": "#3"}, - "west": {"uv": [8.8, 5.6, 9.06667, 10.66667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.8, 5.6, 9.06667, 10.66667], "texture": "#3"}, - "down": {"uv": [8.8, 10.66667, 9.06667, 5.6], "texture": "#3"} + "north": { + "uv": [ + 9.06667, + 5.6, + 8.8, + 5.86667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.8, + 5.6, + 9.06667, + 10.66667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.8, + 10.4, + 9.06667, + 10.66667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.8, + 5.6, + 9.06667, + 10.66667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.8, + 5.6, + 9.06667, + 10.66667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.8, + 10.66667, + 9.06667, + 5.6 + ], + "texture": "#3" + } } }, { "name": "ooiwana_9", - "from": [14.93333, 0, 5.6], - "to": [15.73333, 0.26667, 7.2], + "from": [ + 14.93333, + 0, + 5.6 + ], + "to": [ + 15.73333, + 0.26667, + 7.2 + ], "faces": { - "north": {"uv": [15.73333, 5.6, 14.93333, 5.86667], "texture": "#3"}, - "east": {"uv": [15.46667, 5.6, 15.73333, 7.2], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.93333, 6.93333, 15.73333, 7.2], "texture": "#3"}, - "west": {"uv": [14.93333, 5.6, 15.2, 7.2], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.93333, 5.6, 15.73333, 7.2], "texture": "#3"}, - "down": {"uv": [14.93333, 7.2, 15.73333, 5.6], "texture": "#3"} + "north": { + "uv": [ + 15.73333, + 5.6, + 14.93333, + 5.86667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.46667, + 5.6, + 15.73333, + 7.2 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.93333, + 6.93333, + 15.73333, + 7.2 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.93333, + 5.6, + 15.2, + 7.2 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.93333, + 5.6, + 15.73333, + 7.2 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.93333, + 7.2, + 15.73333, + 5.6 + ], + "texture": "#3" + } } }, { "name": "ooiwana_10", - "from": [4, 0, 5.86667], - "to": [6.13333, 0.26667, 9.6], + "from": [ + 4, + 0, + 5.86667 + ], + "to": [ + 6.13333, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [6.13333, 5.86667, 4, 6.13333], "texture": "#3"}, - "east": {"uv": [5.86667, 5.86667, 6.13333, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4, 9.33333, 6.13333, 9.6], "texture": "#3"}, - "west": {"uv": [4, 5.86667, 4.26667, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4, 5.86667, 6.13333, 9.6], "texture": "#3"}, - "down": {"uv": [4, 9.6, 6.13333, 5.86667], "texture": "#3"} + "north": { + "uv": [ + 6.13333, + 5.86667, + 4, + 6.13333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.86667, + 5.86667, + 6.13333, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4, + 9.33333, + 6.13333, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4, + 5.86667, + 4.26667, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4, + 5.86667, + 6.13333, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4, + 9.6, + 6.13333, + 5.86667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_11", - "from": [14.4, 0, 5.86667], - "to": [14.93333, 0.26667, 9.33333], + "from": [ + 14.4, + 0, + 5.86667 + ], + "to": [ + 14.93333, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [14.93333, 5.86667, 14.4, 6.13333], "texture": "#3"}, - "east": {"uv": [14.66667, 5.86667, 14.93333, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.4, 9.06667, 14.93333, 9.33333], "texture": "#3"}, - "west": {"uv": [14.4, 5.86667, 14.66667, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.4, 5.86667, 14.93333, 9.33333], "texture": "#3"}, - "down": {"uv": [14.4, 9.33333, 14.93333, 5.86667], "texture": "#3"} + "north": { + "uv": [ + 14.93333, + 5.86667, + 14.4, + 6.13333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.66667, + 5.86667, + 14.93333, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.4, + 9.06667, + 14.93333, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.4, + 5.86667, + 14.66667, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.4, + 5.86667, + 14.93333, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.4, + 9.33333, + 14.93333, + 5.86667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_12", - "from": [15.73333, 0, 5.86667], - "to": [16, 0.26667, 6.93333], + "from": [ + 15.73333, + 0, + 5.86667 + ], + "to": [ + 16, + 0.26667, + 6.93333 + ], "faces": { - "north": {"uv": [16, 5.86667, 15.73333, 6.13333], "texture": "#3"}, - "east": {"uv": [15.73333, 5.86667, 16, 6.93333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.73333, 6.66667, 16, 6.93333], "texture": "#3"}, - "west": {"uv": [15.73333, 5.86667, 16, 6.93333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.73333, 5.86667, 16, 6.93333], "texture": "#3"}, - "down": {"uv": [15.73333, 6.93333, 16, 5.86667], "texture": "#3"} + "north": { + "uv": [ + 16, + 5.86667, + 15.73333, + 6.13333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.73333, + 5.86667, + 16, + 6.93333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.73333, + 6.66667, + 16, + 6.93333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.73333, + 5.86667, + 16, + 6.93333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.73333, + 5.86667, + 16, + 6.93333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.73333, + 6.93333, + 16, + 5.86667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_13", - "from": [2.66667, 0, 6.13333], - "to": [4, 0.26667, 9.33333], + "from": [ + 2.66667, + 0, + 6.13333 + ], + "to": [ + 4, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [4, 6.13333, 2.66667, 6.4], "texture": "#3"}, - "east": {"uv": [3.73333, 6.13333, 4, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.66667, 9.06667, 4, 9.33333], "texture": "#3"}, - "west": {"uv": [2.66667, 6.13333, 2.93333, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.66667, 6.13333, 4, 9.33333], "texture": "#3"}, - "down": {"uv": [2.66667, 9.33333, 4, 6.13333], "texture": "#3"} + "north": { + "uv": [ + 4, + 6.13333, + 2.66667, + 6.4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.73333, + 6.13333, + 4, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.66667, + 9.06667, + 4, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.66667, + 6.13333, + 2.93333, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.66667, + 6.13333, + 4, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.66667, + 9.33333, + 4, + 6.13333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_14", - "from": [9.06667, 0, 6.13333], - "to": [10.13333, 0.26667, 9.33333], + "from": [ + 9.06667, + 0, + 6.13333 + ], + "to": [ + 10.13333, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [10.13333, 6.13333, 9.06667, 6.4], "texture": "#3"}, - "east": {"uv": [9.86667, 6.13333, 10.13333, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.06667, 9.06667, 10.13333, 9.33333], "texture": "#3"}, - "west": {"uv": [9.06667, 6.13333, 9.33333, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.06667, 6.13333, 10.13333, 9.33333], "texture": "#3"}, - "down": {"uv": [9.06667, 9.33333, 10.13333, 6.13333], "texture": "#3"} + "north": { + "uv": [ + 10.13333, + 6.13333, + 9.06667, + 6.4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.86667, + 6.13333, + 10.13333, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.06667, + 9.06667, + 10.13333, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.06667, + 6.13333, + 9.33333, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.06667, + 6.13333, + 10.13333, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.06667, + 9.33333, + 10.13333, + 6.13333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_15", - "from": [12, 0, 6.13333], - "to": [12.26667, 0.26667, 9.06667], + "from": [ + 12, + 0, + 6.13333 + ], + "to": [ + 12.26667, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [12.26667, 6.13333, 12, 6.4], "texture": "#3"}, - "east": {"uv": [12, 6.13333, 12.26667, 9.06667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12, 8.8, 12.26667, 9.06667], "texture": "#3"}, - "west": {"uv": [12, 6.13333, 12.26667, 9.06667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12, 6.13333, 12.26667, 9.06667], "texture": "#3"}, - "down": {"uv": [12, 9.06667, 12.26667, 6.13333], "texture": "#3"} + "north": { + "uv": [ + 12.26667, + 6.13333, + 12, + 6.4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12, + 6.13333, + 12.26667, + 9.06667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12, + 8.8, + 12.26667, + 9.06667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12, + 6.13333, + 12.26667, + 9.06667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12, + 6.13333, + 12.26667, + 9.06667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12, + 9.06667, + 12.26667, + 6.13333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_16", - "from": [14.13333, 0, 6.13333], - "to": [14.4, 0.26667, 9.33333], + "from": [ + 14.13333, + 0, + 6.13333 + ], + "to": [ + 14.4, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [14.4, 6.13333, 14.13333, 6.4], "texture": "#3"}, - "east": {"uv": [14.13333, 6.13333, 14.4, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.13333, 9.06667, 14.4, 9.33333], "texture": "#3"}, - "west": {"uv": [14.13333, 6.13333, 14.4, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.13333, 6.13333, 14.4, 9.33333], "texture": "#3"}, - "down": {"uv": [14.13333, 9.33333, 14.4, 6.13333], "texture": "#3"} + "north": { + "uv": [ + 14.4, + 6.13333, + 14.13333, + 6.4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.13333, + 6.13333, + 14.4, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.13333, + 9.06667, + 14.4, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.13333, + 6.13333, + 14.4, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.13333, + 6.13333, + 14.4, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.13333, + 9.33333, + 14.4, + 6.13333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_17", - "from": [1.86667, 0, 6.4], - "to": [2.66667, 0.26667, 9.33333], + "from": [ + 1.86667, + 0, + 6.4 + ], + "to": [ + 2.66667, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [2.66667, 6.4, 1.86667, 6.66667], "texture": "#3"}, - "east": {"uv": [2.4, 6.4, 2.66667, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.86667, 9.06667, 2.66667, 9.33333], "texture": "#3"}, - "west": {"uv": [1.86667, 6.4, 2.13333, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.86667, 6.4, 2.66667, 9.33333], "texture": "#3"}, - "down": {"uv": [1.86667, 9.33333, 2.66667, 6.4], "texture": "#3"} + "north": { + "uv": [ + 2.66667, + 6.4, + 1.86667, + 6.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.4, + 6.4, + 2.66667, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.86667, + 9.06667, + 2.66667, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.86667, + 6.4, + 2.13333, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.86667, + 6.4, + 2.66667, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.86667, + 9.33333, + 2.66667, + 6.4 + ], + "texture": "#3" + } } }, { "name": "ooiwana_18", - "from": [10.13333, 0, 6.4], - "to": [11.2, 0.26667, 9.6], + "from": [ + 10.13333, + 0, + 6.4 + ], + "to": [ + 11.2, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [11.2, 6.4, 10.13333, 6.66667], "texture": "#3"}, - "east": {"uv": [10.93333, 6.4, 11.2, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.13333, 9.33333, 11.2, 9.6], "texture": "#3"}, - "west": {"uv": [10.13333, 6.4, 10.4, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.13333, 6.4, 11.2, 9.6], "texture": "#3"}, - "down": {"uv": [10.13333, 9.6, 11.2, 6.4], "texture": "#3"} + "north": { + "uv": [ + 11.2, + 6.4, + 10.13333, + 6.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.93333, + 6.4, + 11.2, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.13333, + 9.33333, + 11.2, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.13333, + 6.4, + 10.4, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.13333, + 6.4, + 11.2, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.13333, + 9.6, + 11.2, + 6.4 + ], + "texture": "#3" + } } }, { "name": "ooiwana_19", - "from": [11.73333, 0, 6.4], - "to": [12, 0.26667, 9.86667], + "from": [ + 11.73333, + 0, + 6.4 + ], + "to": [ + 12, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [12, 6.4, 11.73333, 6.66667], "texture": "#3"}, - "east": {"uv": [11.73333, 6.4, 12, 9.86667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.73333, 9.6, 12, 9.86667], "texture": "#3"}, - "west": {"uv": [11.73333, 6.4, 12, 9.86667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.73333, 6.4, 12, 9.86667], "texture": "#3"}, - "down": {"uv": [11.73333, 9.86667, 12, 6.4], "texture": "#3"} + "north": { + "uv": [ + 12, + 6.4, + 11.73333, + 6.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.73333, + 6.4, + 12, + 9.86667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.73333, + 9.6, + 12, + 9.86667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.73333, + 6.4, + 12, + 9.86667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.73333, + 6.4, + 12, + 9.86667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.73333, + 9.86667, + 12, + 6.4 + ], + "texture": "#3" + } } }, { "name": "ooiwana_20", - "from": [12.26667, 0, 6.4], - "to": [12.53333, 0.26667, 8.53333], + "from": [ + 12.26667, + 0, + 6.4 + ], + "to": [ + 12.53333, + 0.26667, + 8.53333 + ], "faces": { - "north": {"uv": [12.53333, 6.4, 12.26667, 6.66667], "texture": "#3"}, - "east": {"uv": [12.26667, 6.4, 12.53333, 8.53333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.26667, 8.26667, 12.53333, 8.53333], "texture": "#3"}, - "west": {"uv": [12.26667, 6.4, 12.53333, 8.53333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.26667, 6.4, 12.53333, 8.53333], "texture": "#3"}, - "down": {"uv": [12.26667, 8.53333, 12.53333, 6.4], "texture": "#3"} + "north": { + "uv": [ + 12.53333, + 6.4, + 12.26667, + 6.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.26667, + 6.4, + 12.53333, + 8.53333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.26667, + 8.26667, + 12.53333, + 8.53333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.26667, + 6.4, + 12.53333, + 8.53333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.26667, + 6.4, + 12.53333, + 8.53333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.26667, + 8.53333, + 12.53333, + 6.4 + ], + "texture": "#3" + } } }, { "name": "ooiwana_21", - "from": [13.86667, 0, 6.4], - "to": [14.13333, 0.26667, 9.06667], + "from": [ + 13.86667, + 0, + 6.4 + ], + "to": [ + 14.13333, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [14.13333, 6.4, 13.86667, 6.66667], "texture": "#3"}, - "east": {"uv": [13.86667, 6.4, 14.13333, 9.06667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.86667, 8.8, 14.13333, 9.06667], "texture": "#3"}, - "west": {"uv": [13.86667, 6.4, 14.13333, 9.06667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.86667, 6.4, 14.13333, 9.06667], "texture": "#3"}, - "down": {"uv": [13.86667, 9.06667, 14.13333, 6.4], "texture": "#3"} + "north": { + "uv": [ + 14.13333, + 6.4, + 13.86667, + 6.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.86667, + 6.4, + 14.13333, + 9.06667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.86667, + 8.8, + 14.13333, + 9.06667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.86667, + 6.4, + 14.13333, + 9.06667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.86667, + 6.4, + 14.13333, + 9.06667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.86667, + 9.06667, + 14.13333, + 6.4 + ], + "texture": "#3" + } } }, { "name": "ooiwana_22", - "from": [1.33333, 0, 6.66667], - "to": [1.86667, 0.26667, 9.06667], + "from": [ + 1.33333, + 0, + 6.66667 + ], + "to": [ + 1.86667, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [1.86667, 6.66667, 1.33333, 6.93333], "texture": "#3"}, - "east": {"uv": [1.6, 6.66667, 1.86667, 9.06667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.33333, 8.8, 1.86667, 9.06667], "texture": "#3"}, - "west": {"uv": [1.33333, 6.66667, 1.6, 9.06667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.33333, 6.66667, 1.86667, 9.06667], "texture": "#3"}, - "down": {"uv": [1.33333, 9.06667, 1.86667, 6.66667], "texture": "#3"} + "north": { + "uv": [ + 1.86667, + 6.66667, + 1.33333, + 6.93333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.6, + 6.66667, + 1.86667, + 9.06667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.33333, + 8.8, + 1.86667, + 9.06667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.33333, + 6.66667, + 1.6, + 9.06667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.33333, + 6.66667, + 1.86667, + 9.06667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.33333, + 9.06667, + 1.86667, + 6.66667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_23", - "from": [11.2, 0, 6.66667], - "to": [11.73333, 0.26667, 10.13333], + "from": [ + 11.2, + 0, + 6.66667 + ], + "to": [ + 11.73333, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [11.73333, 6.66667, 11.2, 6.93333], "texture": "#3"}, - "east": {"uv": [11.46667, 6.66667, 11.73333, 10.13333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.2, 9.86667, 11.73333, 10.13333], "texture": "#3"}, - "west": {"uv": [11.2, 6.66667, 11.46667, 10.13333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.2, 6.66667, 11.73333, 10.13333], "texture": "#3"}, - "down": {"uv": [11.2, 10.13333, 11.73333, 6.66667], "texture": "#3"} + "north": { + "uv": [ + 11.73333, + 6.66667, + 11.2, + 6.93333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.46667, + 6.66667, + 11.73333, + 10.13333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.2, + 9.86667, + 11.73333, + 10.13333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.2, + 6.66667, + 11.46667, + 10.13333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.2, + 6.66667, + 11.73333, + 10.13333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.2, + 10.13333, + 11.73333, + 6.66667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_24", - "from": [12.53333, 0, 6.66667], - "to": [12.8, 0.26667, 8.53333], + "from": [ + 12.53333, + 0, + 6.66667 + ], + "to": [ + 12.8, + 0.26667, + 8.53333 + ], "faces": { - "north": {"uv": [12.8, 6.66667, 12.53333, 6.93333], "texture": "#3"}, - "east": {"uv": [12.53333, 6.66667, 12.8, 8.53333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.53333, 8.26667, 12.8, 8.53333], "texture": "#3"}, - "west": {"uv": [12.53333, 6.66667, 12.8, 8.53333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.53333, 6.66667, 12.8, 8.53333], "texture": "#3"}, - "down": {"uv": [12.53333, 8.53333, 12.8, 6.66667], "texture": "#3"} + "north": { + "uv": [ + 12.8, + 6.66667, + 12.53333, + 6.93333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.53333, + 6.66667, + 12.8, + 8.53333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.53333, + 8.26667, + 12.8, + 8.53333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.53333, + 6.66667, + 12.8, + 8.53333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.53333, + 6.66667, + 12.8, + 8.53333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.53333, + 8.53333, + 12.8, + 6.66667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_25", - "from": [13.6, 0, 6.66667], - "to": [13.86667, 0.26667, 8.8], + "from": [ + 13.6, + 0, + 6.66667 + ], + "to": [ + 13.86667, + 0.26667, + 8.8 + ], "faces": { - "north": {"uv": [13.86667, 6.66667, 13.6, 6.93333], "texture": "#3"}, - "east": {"uv": [13.6, 6.66667, 13.86667, 8.8], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.6, 8.53333, 13.86667, 8.8], "texture": "#3"}, - "west": {"uv": [13.6, 6.66667, 13.86667, 8.8], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.6, 6.66667, 13.86667, 8.8], "texture": "#3"}, - "down": {"uv": [13.6, 8.8, 13.86667, 6.66667], "texture": "#3"} + "north": { + "uv": [ + 13.86667, + 6.66667, + 13.6, + 6.93333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.6, + 6.66667, + 13.86667, + 8.8 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.6, + 8.53333, + 13.86667, + 8.8 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.6, + 6.66667, + 13.86667, + 8.8 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.6, + 6.66667, + 13.86667, + 8.8 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.6, + 8.8, + 13.86667, + 6.66667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_26", - "from": [0.8, 0, 6.93333], - "to": [1.33333, 0.26667, 9.06667], + "from": [ + 0.8, + 0, + 6.93333 + ], + "to": [ + 1.33333, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [1.33333, 6.93333, 0.8, 7.2], "texture": "#3"}, - "east": {"uv": [1.06667, 6.93333, 1.33333, 9.06667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.8, 8.8, 1.33333, 9.06667], "texture": "#3"}, - "west": {"uv": [0.8, 6.93333, 1.06667, 9.06667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.8, 6.93333, 1.33333, 9.06667], "texture": "#3"}, - "down": {"uv": [0.8, 9.06667, 1.33333, 6.93333], "texture": "#3"} + "north": { + "uv": [ + 1.33333, + 6.93333, + 0.8, + 7.2 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.06667, + 6.93333, + 1.33333, + 9.06667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.8, + 8.8, + 1.33333, + 9.06667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.8, + 6.93333, + 1.06667, + 9.06667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.8, + 6.93333, + 1.33333, + 9.06667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.8, + 9.06667, + 1.33333, + 6.93333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_27", - "from": [12.8, 0, 6.93333], - "to": [13.6, 0.26667, 8.53333], + "from": [ + 12.8, + 0, + 6.93333 + ], + "to": [ + 13.6, + 0.26667, + 8.53333 + ], "faces": { - "north": {"uv": [13.6, 6.93333, 12.8, 7.2], "texture": "#3"}, - "east": {"uv": [13.33333, 6.93333, 13.6, 8.53333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.8, 8.26667, 13.6, 8.53333], "texture": "#3"}, - "west": {"uv": [12.8, 6.93333, 13.06667, 8.53333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.8, 6.93333, 13.6, 8.53333], "texture": "#3"}, - "down": {"uv": [12.8, 8.53333, 13.6, 6.93333], "texture": "#3"} + "north": { + "uv": [ + 13.6, + 6.93333, + 12.8, + 7.2 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.33333, + 6.93333, + 13.6, + 8.53333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.8, + 8.26667, + 13.6, + 8.53333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.8, + 6.93333, + 13.06667, + 8.53333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.8, + 6.93333, + 13.6, + 8.53333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.8, + 8.53333, + 13.6, + 6.93333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_28", - "from": [0.53333, 0, 7.2], - "to": [0.8, 0.26667, 8.53333], + "from": [ + 0.53333, + 0, + 7.2 + ], + "to": [ + 0.8, + 0.26667, + 8.53333 + ], "faces": { - "north": {"uv": [0.8, 7.2, 0.53333, 7.46667], "texture": "#3"}, - "east": {"uv": [0.53333, 7.2, 0.8, 8.53333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.53333, 8.26667, 0.8, 8.53333], "texture": "#3"}, - "west": {"uv": [0.53333, 7.2, 0.8, 8.53333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.53333, 7.2, 0.8, 8.53333], "texture": "#3"}, - "down": {"uv": [0.53333, 8.53333, 0.8, 7.2], "texture": "#3"} + "north": { + "uv": [ + 0.8, + 7.2, + 0.53333, + 7.46667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.53333, + 7.2, + 0.8, + 8.53333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.53333, + 8.26667, + 0.8, + 8.53333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.53333, + 7.2, + 0.8, + 8.53333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.53333, + 7.2, + 0.8, + 8.53333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.53333, + 8.53333, + 0.8, + 7.2 + ], + "texture": "#3" + } } }, { "name": "ooiwana_29", - "from": [14.93333, 0, 7.2], - "to": [15.46667, 0.26667, 9.6], + "from": [ + 14.93333, + 0, + 7.2 + ], + "to": [ + 15.46667, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [15.46667, 7.2, 14.93333, 7.46667], "texture": "#3"}, - "east": {"uv": [15.2, 7.2, 15.46667, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.93333, 9.33333, 15.46667, 9.6], "texture": "#3"}, - "west": {"uv": [14.93333, 7.2, 15.2, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.93333, 7.2, 15.46667, 9.6], "texture": "#3"}, - "down": {"uv": [14.93333, 9.6, 15.46667, 7.2], "texture": "#3"} + "north": { + "uv": [ + 15.46667, + 7.2, + 14.93333, + 7.46667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.2, + 7.2, + 15.46667, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.93333, + 9.33333, + 15.46667, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.93333, + 7.2, + 15.2, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.93333, + 7.2, + 15.46667, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.93333, + 9.6, + 15.46667, + 7.2 + ], + "texture": "#3" + } } }, { "name": "ooiwana_30", - "from": [0.26667, 0, 7.46667], - "to": [0.53333, 0.26667, 7.73333], + "from": [ + 0.26667, + 0, + 7.46667 + ], + "to": [ + 0.53333, + 0.26667, + 7.73333 + ], "faces": { - "north": {"uv": [0.53333, 7.46667, 0.26667, 7.73333], "texture": "#3"}, - "east": {"uv": [0.26667, 7.46667, 0.53333, 7.73333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.26667, 7.46667, 0.53333, 7.73333], "texture": "#3"}, - "west": {"uv": [0.26667, 7.46667, 0.53333, 7.73333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.26667, 7.46667, 0.53333, 7.73333], "texture": "#3"}, - "down": {"uv": [0.26667, 7.73333, 0.53333, 7.46667], "texture": "#3"} + "north": { + "uv": [ + 0.53333, + 7.46667, + 0.26667, + 7.73333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.26667, + 7.46667, + 0.53333, + 7.73333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.26667, + 7.46667, + 0.53333, + 7.73333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.26667, + 7.46667, + 0.53333, + 7.73333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.26667, + 7.46667, + 0.53333, + 7.73333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.26667, + 7.73333, + 0.53333, + 7.46667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_31", - "from": [0.26667, 0, 8.26667], - "to": [0.53333, 0.26667, 8.8], + "from": [ + 0.26667, + 0, + 8.26667 + ], + "to": [ + 0.53333, + 0.26667, + 8.8 + ], "faces": { - "north": {"uv": [0.53333, 8.26667, 0.26667, 8.53333], "texture": "#3"}, - "east": {"uv": [0.26667, 8.26667, 0.53333, 8.8], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.26667, 8.53333, 0.53333, 8.8], "texture": "#3"}, - "west": {"uv": [0.26667, 8.26667, 0.53333, 8.8], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.26667, 8.26667, 0.53333, 8.8], "texture": "#3"}, - "down": {"uv": [0.26667, 8.8, 0.53333, 8.26667], "texture": "#3"} + "north": { + "uv": [ + 0.53333, + 8.26667, + 0.26667, + 8.53333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.8 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.26667, + 8.53333, + 0.53333, + 8.8 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.8 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.26667, + 8.26667, + 0.53333, + 8.8 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.26667, + 8.8, + 0.53333, + 8.26667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_32", - "from": [15.46667, 0, 8.26667], - "to": [15.73333, 0.26667, 9.6], + "from": [ + 15.46667, + 0, + 8.26667 + ], + "to": [ + 15.73333, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [15.73333, 8.26667, 15.46667, 8.53333], "texture": "#3"}, - "east": {"uv": [15.46667, 8.26667, 15.73333, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.46667, 9.33333, 15.73333, 9.6], "texture": "#3"}, - "west": {"uv": [15.46667, 8.26667, 15.73333, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.46667, 8.26667, 15.73333, 9.6], "texture": "#3"}, - "down": {"uv": [15.46667, 9.6, 15.73333, 8.26667], "texture": "#3"} + "north": { + "uv": [ + 15.73333, + 8.26667, + 15.46667, + 8.53333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.46667, + 8.26667, + 15.73333, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.46667, + 9.33333, + 15.73333, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.46667, + 8.26667, + 15.73333, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.46667, + 8.26667, + 15.73333, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.46667, + 9.6, + 15.73333, + 8.26667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_33", - "from": [15.73333, 0, 8.53333], - "to": [16, 0.26667, 9.33333], + "from": [ + 15.73333, + 0, + 8.53333 + ], + "to": [ + 16, + 0.26667, + 9.33333 + ], "faces": { - "north": {"uv": [16, 8.53333, 15.73333, 8.8], "texture": "#3"}, - "east": {"uv": [15.73333, 8.53333, 16, 9.33333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.73333, 9.06667, 16, 9.33333], "texture": "#3"}, - "west": {"uv": [15.73333, 8.53333, 16, 9.33333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.73333, 8.53333, 16, 9.33333], "texture": "#3"}, - "down": {"uv": [15.73333, 9.33333, 16, 8.53333], "texture": "#3"} + "north": { + "uv": [ + 16, + 8.53333, + 15.73333, + 8.8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.73333, + 8.53333, + 16, + 9.33333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.73333, + 9.06667, + 16, + 9.33333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.73333, + 8.53333, + 16, + 9.33333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.73333, + 8.53333, + 16, + 9.33333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.73333, + 9.33333, + 16, + 8.53333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_34", - "from": [0.53333, 0, 8.8], - "to": [0.8, 0.26667, 9.06667], + "from": [ + 0.53333, + 0, + 8.8 + ], + "to": [ + 0.8, + 0.26667, + 9.06667 + ], "faces": { - "north": {"uv": [0.8, 8.8, 0.53333, 9.06667], "texture": "#3"}, - "east": {"uv": [0.53333, 8.8, 0.8, 9.06667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.53333, 8.8, 0.8, 9.06667], "texture": "#3"}, - "west": {"uv": [0.53333, 8.8, 0.8, 9.06667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.53333, 8.8, 0.8, 9.06667], "texture": "#3"}, - "down": {"uv": [0.53333, 9.06667, 0.8, 8.8], "texture": "#3"} + "north": { + "uv": [ + 0.8, + 8.8, + 0.53333, + 9.06667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.53333, + 8.8, + 0.8, + 9.06667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.53333, + 8.8, + 0.8, + 9.06667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.53333, + 8.8, + 0.8, + 9.06667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.53333, + 8.8, + 0.8, + 9.06667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.53333, + 9.06667, + 0.8, + 8.8 + ], + "texture": "#3" + } } }, { "name": "ooiwana_35", - "from": [3.2, 0, 9.33333], - "to": [4, 0.26667, 9.6], + "from": [ + 3.2, + 0, + 9.33333 + ], + "to": [ + 4, + 0.26667, + 9.6 + ], "faces": { - "north": {"uv": [4, 9.33333, 3.2, 9.6], "texture": "#3"}, - "east": {"uv": [3.73333, 9.33333, 4, 9.6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3.2, 9.33333, 4, 9.6], "texture": "#3"}, - "west": {"uv": [3.2, 9.33333, 3.46667, 9.6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3.2, 9.33333, 4, 9.6], "texture": "#3"}, - "down": {"uv": [3.2, 9.6, 4, 9.33333], "texture": "#3"} + "north": { + "uv": [ + 4, + 9.33333, + 3.2, + 9.6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.73333, + 9.33333, + 4, + 9.6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3.2, + 9.33333, + 4, + 9.6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3.2, + 9.33333, + 3.46667, + 9.6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3.2, + 9.33333, + 4, + 9.6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3.2, + 9.6, + 4, + 9.33333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_36", - "from": [4.26667, 0, 9.6], - "to": [5.33333, 0.26667, 9.86667], + "from": [ + 4.26667, + 0, + 9.6 + ], + "to": [ + 5.33333, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [5.33333, 9.6, 4.26667, 9.86667], "texture": "#3"}, - "east": {"uv": [5.06667, 9.6, 5.33333, 9.86667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.26667, 9.6, 5.33333, 9.86667], "texture": "#3"}, - "west": {"uv": [4.26667, 9.6, 4.53333, 9.86667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.26667, 9.6, 5.33333, 9.86667], "texture": "#3"}, - "down": {"uv": [4.26667, 9.86667, 5.33333, 9.6], "texture": "#3"} + "north": { + "uv": [ + 5.33333, + 9.6, + 4.26667, + 9.86667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.06667, + 9.6, + 5.33333, + 9.86667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.26667, + 9.6, + 5.33333, + 9.86667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.26667, + 9.6, + 4.53333, + 9.86667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.26667, + 9.6, + 5.33333, + 9.86667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.26667, + 9.86667, + 5.33333, + 9.6 + ], + "texture": "#3" + } } }, { "name": "ooiwana_37", - "from": [10.4, 0, 9.6], - "to": [11.2, 0.26667, 9.86667], + "from": [ + 10.4, + 0, + 9.6 + ], + "to": [ + 11.2, + 0.26667, + 9.86667 + ], "faces": { - "north": {"uv": [11.2, 9.6, 10.4, 9.86667], "texture": "#3"}, - "east": {"uv": [10.93333, 9.6, 11.2, 9.86667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.4, 9.6, 11.2, 9.86667], "texture": "#3"}, - "west": {"uv": [10.4, 9.6, 10.66667, 9.86667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.4, 9.6, 11.2, 9.86667], "texture": "#3"}, - "down": {"uv": [10.4, 9.86667, 11.2, 9.6], "texture": "#3"} + "north": { + "uv": [ + 11.2, + 9.6, + 10.4, + 9.86667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.93333, + 9.6, + 11.2, + 9.86667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.4, + 9.6, + 11.2, + 9.86667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.4, + 9.6, + 10.66667, + 9.86667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.4, + 9.6, + 11.2, + 9.86667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.4, + 9.86667, + 11.2, + 9.6 + ], + "texture": "#3" + } } }, { "name": "ooiwana_38", - "from": [4.53333, 0, 9.86667], - "to": [5.06667, 0.26667, 10.13333], + "from": [ + 4.53333, + 0, + 9.86667 + ], + "to": [ + 5.06667, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [5.06667, 9.86667, 4.53333, 10.13333], "texture": "#3"}, - "east": {"uv": [4.8, 9.86667, 5.06667, 10.13333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.53333, 9.86667, 5.06667, 10.13333], "texture": "#3"}, - "west": {"uv": [4.53333, 9.86667, 4.8, 10.13333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.53333, 9.86667, 5.06667, 10.13333], "texture": "#3"}, - "down": {"uv": [4.53333, 10.13333, 5.06667, 9.86667], "texture": "#3"} + "north": { + "uv": [ + 5.06667, + 9.86667, + 4.53333, + 10.13333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 4.8, + 9.86667, + 5.06667, + 10.13333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.53333, + 9.86667, + 5.06667, + 10.13333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.53333, + 9.86667, + 4.8, + 10.13333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.53333, + 9.86667, + 5.06667, + 10.13333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.53333, + 10.13333, + 5.06667, + 9.86667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_39", - "from": [10.66667, 0, 9.86667], - "to": [11.2, 0.26667, 10.13333], + "from": [ + 10.66667, + 0, + 9.86667 + ], + "to": [ + 11.2, + 0.26667, + 10.13333 + ], "faces": { - "north": {"uv": [11.2, 9.86667, 10.66667, 10.13333], "texture": "#3"}, - "east": {"uv": [10.93333, 9.86667, 11.2, 10.13333], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.66667, 9.86667, 11.2, 10.13333], "texture": "#3"}, - "west": {"uv": [10.66667, 9.86667, 10.93333, 10.13333], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.66667, 9.86667, 11.2, 10.13333], "texture": "#3"}, - "down": {"uv": [10.66667, 10.13333, 11.2, 9.86667], "texture": "#3"} + "north": { + "uv": [ + 11.2, + 9.86667, + 10.66667, + 10.13333 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.93333, + 9.86667, + 11.2, + 10.13333 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.66667, + 9.86667, + 11.2, + 10.13333 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.66667, + 9.86667, + 10.93333, + 10.13333 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.66667, + 9.86667, + 11.2, + 10.13333 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.66667, + 10.13333, + 11.2, + 9.86667 + ], + "texture": "#3" + } } }, { "name": "ooiwana_40", - "from": [11.2, 0, 10.13333], - "to": [11.46667, 0.26667, 10.4], + "from": [ + 11.2, + 0, + 10.13333 + ], + "to": [ + 11.46667, + 0.26667, + 10.4 + ], "faces": { - "north": {"uv": [11.46667, 10.13333, 11.2, 10.4], "texture": "#3"}, - "east": {"uv": [11.2, 10.13333, 11.46667, 10.4], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.2, 10.13333, 11.46667, 10.4], "texture": "#3"}, - "west": {"uv": [11.2, 10.13333, 11.46667, 10.4], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.2, 10.13333, 11.46667, 10.4], "texture": "#3"}, - "down": {"uv": [11.2, 10.4, 11.46667, 10.13333], "texture": "#3"} + "north": { + "uv": [ + 11.46667, + 10.13333, + 11.2, + 10.4 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.2, + 10.13333, + 11.46667, + 10.4 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.2, + 10.13333, + 11.46667, + 10.4 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.2, + 10.13333, + 11.46667, + 10.4 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.2, + 10.13333, + 11.46667, + 10.4 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.2, + 10.4, + 11.46667, + 10.13333 + ], + "texture": "#3" + } } }, { "name": "ooiwana_41", - "from": [8, 0, 10.4], - "to": [8.26667, 0.26667, 10.66667], + "from": [ + 8, + 0, + 10.4 + ], + "to": [ + 8.26667, + 0.26667, + 10.66667 + ], "faces": { - "north": {"uv": [8.26667, 10.4, 8, 10.66667], "texture": "#3"}, - "east": {"uv": [8, 10.4, 8.26667, 10.66667], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8, 10.4, 8.26667, 10.66667], "texture": "#3"}, - "west": {"uv": [8, 10.4, 8.26667, 10.66667], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8, 10.4, 8.26667, 10.66667], "texture": "#3"}, - "down": {"uv": [8, 10.66667, 8.26667, 10.4], "texture": "#3"} + "north": { + "uv": [ + 8.26667, + 10.4, + 8, + 10.66667 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8, + 10.4, + 8.26667, + 10.66667 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8, + 10.4, + 8.26667, + 10.66667 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8, + 10.4, + 8.26667, + 10.66667 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8, + 10.4, + 8.26667, + 10.66667 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8, + 10.66667, + 8.26667, + 10.4 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 9.75, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 9.75, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "ooiwana", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/otamajakusi.json b/pack/assets/minecraft/models/fish/otamajakusi.json index 5d70735c..44559e9e 100644 --- a/pack/assets/minecraft/models/fish/otamajakusi.json +++ b/pack/assets/minecraft/models/fish/otamajakusi.json @@ -2,371 +2,1888 @@ "__name": "オタマジャクシ", "credit": "Made with Blockbench", "textures": { - "1": "fish/otamajakusi", - "particle": "fish/nisikigoi" + "1": "item/fish/otamajakusi", + "particle": "item/fish/nisikigoi" }, "elements": [ { "name": "otamajakusi_0", - "from": [2.5, 0, 5.25], - "to": [5.25, 0.25, 9.25], + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 5.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [5.25, 5.25, 2.5, 5.5], "texture": "#1"}, - "east": {"uv": [5, 5.25, 5.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9, 5.25, 9.25], "texture": "#1"}, - "west": {"uv": [2.5, 5.25, 2.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 5.25, 5.25, 9.25], "texture": "#1"}, - "down": {"uv": [2.5, 9.25, 5.25, 5.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 5.25, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 5.25, + 5.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9, + 5.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 5.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 5.25, + 5.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_1", - "from": [5.5, 0, 5.25], - "to": [10.5, 0.25, 9.25], + "from": [ + 5.5, + 0, + 5.25 + ], + "to": [ + 10.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.5, 5.25, 5.5, 5.5], "texture": "#1"}, - "east": {"uv": [10.25, 5.25, 10.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 9, 10.5, 9.25], "texture": "#1"}, - "west": {"uv": [5.5, 5.25, 5.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 5.25, 10.5, 9.25], "texture": "#1"}, - "down": {"uv": [5.5, 9.25, 10.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 5.25, + 5.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 5.25, + 10.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 9, + 10.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 5.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 5.25, + 10.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 9.25, + 10.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_2", - "from": [2.25, 0, 5.5], - "to": [2.5, 0.25, 9.25], + "from": [ + 2.25, + 0, + 5.5 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 5.5, 2.25, 5.75], "texture": "#1"}, - "east": {"uv": [2.25, 5.5, 2.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9, 2.5, 9.25], "texture": "#1"}, - "west": {"uv": [2.25, 5.5, 2.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 5.5, 2.5, 9.25], "texture": "#1"}, - "down": {"uv": [2.25, 9.25, 2.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 5.5, + 2.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 5.5, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 5.5, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_3", - "from": [5.25, 0, 5.5], - "to": [5.5, 0.25, 9.5], + "from": [ + 5.25, + 0, + 5.5 + ], + "to": [ + 5.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.5, 5.5, 5.25, 5.75], "texture": "#1"}, - "east": {"uv": [5.25, 5.5, 5.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 9.25, 5.5, 9.5], "texture": "#1"}, - "west": {"uv": [5.25, 5.5, 5.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 5.5, 5.5, 9.5], "texture": "#1"}, - "down": {"uv": [5.25, 9.5, 5.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 9.25, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 5.5, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 9.5, + 5.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_4", - "from": [10.5, 0, 5.5], - "to": [12, 0.25, 9.25], + "from": [ + 10.5, + 0, + 5.5 + ], + "to": [ + 12, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12, 5.5, 10.5, 5.75], "texture": "#1"}, - "east": {"uv": [11.75, 5.5, 12, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 9, 12, 9.25], "texture": "#1"}, - "west": {"uv": [10.5, 5.5, 10.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 5.5, 12, 9.25], "texture": "#1"}, - "down": {"uv": [10.5, 9.25, 12, 5.5], "texture": "#1"} + "north": { + "uv": [ + 12, + 5.5, + 10.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 5.5, + 12, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 9, + 12, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 5.5, + 10.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 5.5, + 12, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9.25, + 12, + 5.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_5", - "from": [1.5, 0, 5.75], - "to": [2.25, 0.25, 8.75], + "from": [ + 1.5, + 0, + 5.75 + ], + "to": [ + 2.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2.25, 5.75, 1.5, 6], "texture": "#1"}, - "east": {"uv": [2, 5.75, 2.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8.5, 2.25, 8.75], "texture": "#1"}, - "west": {"uv": [1.5, 5.75, 1.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 5.75, 2.25, 8.75], "texture": "#1"}, - "down": {"uv": [1.5, 8.75, 2.25, 5.75], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 5.75, + 1.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 5.75, + 2.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.5, + 2.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 5.75, + 1.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 5.75, + 2.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 8.75, + 2.25, + 5.75 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_6", - "from": [12, 0, 5.75], - "to": [12.5, 0.25, 9.25], + "from": [ + 12, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12, 6], "texture": "#1"}, - "east": {"uv": [12.25, 5.75, 12.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 9, 12.5, 9.25], "texture": "#1"}, - "west": {"uv": [12, 5.75, 12.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 5.75, 12.5, 9.25], "texture": "#1"}, - "down": {"uv": [12, 9.25, 12.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 5.75, + 12, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 9, + 12.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 5.75, + 12.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 5.75, + 12.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 9.25, + 12.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_7", - "from": [1.25, 0, 6], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 6 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 6, 1.25, 6.25], "texture": "#1"}, - "east": {"uv": [1.25, 6, 1.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#1"}, - "west": {"uv": [1.25, 6, 1.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 6, 1.5, 8.75], "texture": "#1"}, - "down": {"uv": [1.25, 8.75, 1.5, 6], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 6, + 1.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 6, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 6, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 6, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 6 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_8", - "from": [12.5, 0, 6], - "to": [13, 0.25, 9.25], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 13, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13, 6, 12.5, 6.25], "texture": "#1"}, - "east": {"uv": [12.75, 6, 13, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.5, 9, 13, 9.25], "texture": "#1"}, - "west": {"uv": [12.5, 6, 12.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.5, 6, 13, 9.25], "texture": "#1"}, - "down": {"uv": [12.5, 9.25, 13, 6], "texture": "#1"} + "north": { + "uv": [ + 13, + 6, + 12.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 6, + 13, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 9, + 13, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.5, + 6, + 13, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 9.25, + 13, + 6 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_9", - "from": [0.75, 0, 6.25], - "to": [1.25, 0.25, 8.25], + "from": [ + 0.75, + 0, + 6.25 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 6.25, 0.75, 6.5], "texture": "#1"}, - "east": {"uv": [1, 6.25, 1.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 8, 1.25, 8.25], "texture": "#1"}, - "west": {"uv": [0.75, 6.25, 1, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 6.25, 1.25, 8.25], "texture": "#1"}, - "down": {"uv": [0.75, 8.25, 1.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 6.25, + 0.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 6.25, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 6.25, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 6.25, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_10", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 9.25], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#1"}, - "east": {"uv": [13, 6.25, 13.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 9, 13.25, 9.25], "texture": "#1"}, - "west": {"uv": [13, 6.25, 13.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6.25, 13.25, 9.25], "texture": "#1"}, - "down": {"uv": [13, 9.25, 13.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 9, + 13.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 9.25, + 13.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_11", - "from": [0.5, 0, 6.5], - "to": [0.75, 0.25, 8], + "from": [ + 0.5, + 0, + 6.5 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 6.5, 0.5, 6.75], "texture": "#1"}, - "east": {"uv": [0.5, 6.5, 0.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#1"}, - "west": {"uv": [0.5, 6.5, 0.75, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 6.5, 0.75, 8], "texture": "#1"}, - "down": {"uv": [0.5, 8, 0.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 6.5, + 0.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 6.5, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 6.5, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 6.5, + 0.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_12", - "from": [13.25, 0, 6.5], - "to": [13.75, 0.25, 9], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 6.5, 13.25, 6.75], "texture": "#1"}, - "east": {"uv": [13.5, 6.5, 13.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 8.75, 13.75, 9], "texture": "#1"}, - "west": {"uv": [13.25, 6.5, 13.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 6.5, 13.75, 9], "texture": "#1"}, - "down": {"uv": [13.25, 9, 13.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 6.5, + 13.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 6.5, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 13.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 9, + 13.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_13", - "from": [13.75, 0, 6.75], - "to": [14.25, 0.25, 8.75], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 6.75, 13.75, 7], "texture": "#1"}, - "east": {"uv": [14, 6.75, 14.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 8.5, 14.25, 8.75], "texture": "#1"}, - "west": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 6.75, 14.25, 8.75], "texture": "#1"}, - "down": {"uv": [13.75, 8.75, 14.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 6.75, + 13.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_14", - "from": [0.25, 0, 7], - "to": [0.5, 0.25, 7.75], + "from": [ + 0.25, + 0, + 7 + ], + "to": [ + 0.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.5, 7, 0.25, 7.25], "texture": "#1"}, - "east": {"uv": [0.25, 7, 0.5, 7.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 7.5, 0.5, 7.75], "texture": "#1"}, - "west": {"uv": [0.25, 7, 0.5, 7.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 7, 0.5, 7.75], "texture": "#1"}, - "down": {"uv": [0.25, 7.75, 0.5, 7], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 7, + 0.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 7, + 0.5, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7, + 0.5, + 7.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 7, + 0.5, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 7.75, + 0.5, + 7 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_15", - "from": [14.25, 0, 7], - "to": [14.5, 0.25, 8.75], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.5, 7, 14.25, 7.25], "texture": "#1"}, - "east": {"uv": [14.25, 7, 14.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 8.5, 14.5, 8.75], "texture": "#1"}, - "west": {"uv": [14.25, 7, 14.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 7, 14.5, 8.75], "texture": "#1"}, - "down": {"uv": [14.25, 8.75, 14.5, 7], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 7, + 14.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.5, + 7 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_16", - "from": [14.5, 0, 7.25], - "to": [15.25, 0.25, 8.25], + "from": [ + 14.5, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.25, 7.25, 14.5, 7.5], "texture": "#1"}, - "east": {"uv": [15, 7.25, 15.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 8, 15.25, 8.25], "texture": "#1"}, - "west": {"uv": [14.5, 7.25, 14.75, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 7.25, 15.25, 8.25], "texture": "#1"}, - "down": {"uv": [14.5, 8.25, 15.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 7.25, + 14.5, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 8, + 15.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 7.25, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 7.25, + 15.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 15.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_17", - "from": [15.25, 0, 7.5], - "to": [15.5, 0.25, 8.25], + "from": [ + 15.25, + 0, + 7.5 + ], + "to": [ + 15.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15.5, 7.5, 15.25, 7.75], "texture": "#1"}, - "east": {"uv": [15.25, 7.5, 15.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 8, 15.5, 8.25], "texture": "#1"}, - "west": {"uv": [15.25, 7.5, 15.5, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 7.5, 15.5, 8.25], "texture": "#1"}, - "down": {"uv": [15.25, 8.25, 15.5, 7.5], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 7.5, + 15.25, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 8, + 15.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 7.5, + 15.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 8.25, + 15.5, + 7.5 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_18", - "from": [15.5, 0, 7.75], - "to": [15.75, 0.25, 8], + "from": [ + 15.5, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15.5, 8], "texture": "#1"}, - "east": {"uv": [15.5, 7.75, 15.75, 8], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 7.75, 15.75, 8], "texture": "#1"}, - "west": {"uv": [15.5, 7.75, 15.75, 8], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 7.75, 15.75, 8], "texture": "#1"}, - "down": {"uv": [15.5, 8, 15.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 7.75, + 15.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 8, + 15.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_19", - "from": [1, 0, 8.25], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 8.25 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 8.25, 1, 8.5], "texture": "#1"}, - "east": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#1"}, - "west": {"uv": [1, 8.25, 1.25, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#1"}, - "down": {"uv": [1, 8.5, 1.25, 8.25], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8.25, + 1, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 8.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_20", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 8.5], + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#1"}, - "east": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#1"}, - "west": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#1"}, - "down": {"uv": [14.5, 8.5, 14.75, 8.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_21", - "from": [1.75, 0, 8.75], - "to": [2.25, 0.25, 9], + "from": [ + 1.75, + 0, + 8.75 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 8.75, 1.75, 9], "texture": "#1"}, - "east": {"uv": [2, 8.75, 2.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 8.75, 2.25, 9], "texture": "#1"}, - "west": {"uv": [1.75, 8.75, 2, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 8.75, 2.25, 9], "texture": "#1"}, - "down": {"uv": [1.75, 9, 2.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 8.75, + 1.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 8.75, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 8.75, + 2.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 8.75, + 2.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9, + 2.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_22", - "from": [2.75, 0, 9.25], - "to": [4.5, 0.25, 9.5], + "from": [ + 2.75, + 0, + 9.25 + ], + "to": [ + 4.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.5, 9.25, 2.75, 9.5], "texture": "#1"}, - "east": {"uv": [4.25, 9.25, 4.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 9.25, 4.5, 9.5], "texture": "#1"}, - "west": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 9.25, 4.5, 9.5], "texture": "#1"}, - "down": {"uv": [2.75, 9.5, 4.5, 9.25], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 9.25, + 2.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 9.25, + 4.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 4.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 9.25, + 4.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 4.5, + 9.25 + ], + "texture": "#1" + } } }, { "name": "otamajakusi_23", - "from": [5.5, 0, 9.25], - "to": [9, 0.25, 9.5], + "from": [ + 5.5, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 9.25, 5.5, 9.5], "texture": "#1"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 9.25, 9, 9.5], "texture": "#1"}, - "west": {"uv": [5.5, 9.25, 5.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 9.25, 9, 9.5], "texture": "#1"}, - "down": {"uv": [5.5, 9.5, 9, 9.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 9.25, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 9.25, + 5.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 9.5, + 9, + 9.25 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 0.75, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 0.75, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 0.75, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 0.75, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, 0.75, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + 0.75, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [3, 0.75, 2.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 3, + 0.75, + 2.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0, 4], - "scale": [0.18, 0.18, 0.18] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 4 + ], + "scale": [ + 0.18, + 0.18, + 0.18 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 3], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 3 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-0.25, -2, -4.5], - "scale": [0.26, 0.26, 0.26] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -0.25, + -2, + -4.5 + ], + "scale": [ + 0.26, + 0.26, + 0.26 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 3], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 3 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] } }, "groups": [ { "name": "otamajakusi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/paiku.json b/pack/assets/minecraft/models/fish/paiku.json index bbbd9b0b..4e11819c 100644 --- a/pack/assets/minecraft/models/fish/paiku.json +++ b/pack/assets/minecraft/models/fish/paiku.json @@ -2,565 +2,2967 @@ "__name": "パイク", "credit": "Made with Blockbench", "textures": { - "4": "fish/paiku" + "4": "item/fish/paiku" }, "elements": [ { "name": "paiku_0", - "from": [11.5, 0, 5.5], - "to": [12.25, 0.25, 9.75], + "from": [ + 11.5, + 0, + 5.5 + ], + "to": [ + 12.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.25, 5.5, 11.5, 5.75], "texture": "#4"}, - "east": {"uv": [12, 5.5, 12.25, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.5, 9.5, 12.25, 9.75], "texture": "#4"}, - "west": {"uv": [11.5, 5.5, 11.75, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.5, 5.5, 12.25, 9.75], "texture": "#4"}, - "down": {"uv": [11.5, 9.75, 12.25, 5.5], "texture": "#4"} + "north": { + "uv": [ + 12.25, + 5.5, + 11.5, + 5.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12, + 5.5, + 12.25, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.5, + 9.5, + 12.25, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.5, + 5.5, + 11.75, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.5, + 5.5, + 12.25, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.5, + 9.75, + 12.25, + 5.5 + ], + "texture": "#4" + } } }, { "name": "paiku_1", - "from": [11.25, 0, 5.75], - "to": [11.5, 0.25, 9.5], + "from": [ + 11.25, + 0, + 5.75 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.5, 5.75, 11.25, 6], "texture": "#4"}, - "east": {"uv": [11.25, 5.75, 11.5, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.25, 9.25, 11.5, 9.5], "texture": "#4"}, - "west": {"uv": [11.25, 5.75, 11.5, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.25, 5.75, 11.5, 9.5], "texture": "#4"}, - "down": {"uv": [11.25, 9.5, 11.5, 5.75], "texture": "#4"} + "north": { + "uv": [ + 11.5, + 5.75, + 11.25, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.25, + 5.75, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.25, + 5.75, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.25, + 5.75, + 11.5, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 11.5, + 5.75 + ], + "texture": "#4" + } } }, { "name": "paiku_2", - "from": [12.25, 0, 5.75], - "to": [12.5, 0.25, 10], + "from": [ + 12.25, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12.25, 6], "texture": "#4"}, - "east": {"uv": [12.25, 5.75, 12.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.25, 9.75, 12.5, 10], "texture": "#4"}, - "west": {"uv": [12.25, 5.75, 12.5, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.25, 5.75, 12.5, 10], "texture": "#4"}, - "down": {"uv": [12.25, 10, 12.5, 5.75], "texture": "#4"} + "north": { + "uv": [ + 12.5, + 5.75, + 12.25, + 6 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.25, + 9.75, + 12.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.25, + 10, + 12.5, + 5.75 + ], + "texture": "#4" + } } }, { "name": "paiku_3", - "from": [11, 0, 6], - "to": [11.25, 0.25, 9.25], + "from": [ + 11, + 0, + 6 + ], + "to": [ + 11.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.25, 6, 11, 6.25], "texture": "#4"}, - "east": {"uv": [11, 6, 11.25, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11, 9, 11.25, 9.25], "texture": "#4"}, - "west": {"uv": [11, 6, 11.25, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11, 6, 11.25, 9.25], "texture": "#4"}, - "down": {"uv": [11, 9.25, 11.25, 6], "texture": "#4"} + "north": { + "uv": [ + 11.25, + 6, + 11, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11, + 6, + 11.25, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11, + 6, + 11.25, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11, + 6, + 11.25, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11, + 9.25, + 11.25, + 6 + ], + "texture": "#4" + } } }, { "name": "paiku_4", - "from": [12.5, 0, 6], - "to": [12.75, 0.25, 6.75], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [12.75, 6, 12.5, 6.25], "texture": "#4"}, - "east": {"uv": [12.5, 6, 12.75, 6.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.5, 6.5, 12.75, 6.75], "texture": "#4"}, - "west": {"uv": [12.5, 6, 12.75, 6.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.5, 6, 12.75, 6.75], "texture": "#4"}, - "down": {"uv": [12.5, 6.75, 12.75, 6], "texture": "#4"} + "north": { + "uv": [ + 12.75, + 6, + 12.5, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 6.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.5, + 6.5, + 12.75, + 6.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 6.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.5, + 6, + 12.75, + 6.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.5, + 6.75, + 12.75, + 6 + ], + "texture": "#4" + } } }, { "name": "paiku_5", - "from": [15, 0, 6], - "to": [15.5, 0.25, 7.5], + "from": [ + 15, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 6, 15, 6.25], "texture": "#4"}, - "east": {"uv": [15.25, 6, 15.5, 7.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 7.25, 15.5, 7.5], "texture": "#4"}, - "west": {"uv": [15, 6, 15.25, 7.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15, 6, 15.5, 7.5], "texture": "#4"}, - "down": {"uv": [15, 7.5, 15.5, 6], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 6, + 15, + 6.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15, + 7.25, + 15.5, + 7.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15, + 6, + 15.25, + 7.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15, + 6, + 15.5, + 7.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15, + 7.5, + 15.5, + 6 + ], + "texture": "#4" + } } }, { "name": "paiku_6", - "from": [10.75, 0, 6.25], - "to": [11, 0.25, 9.25], + "from": [ + 10.75, + 0, + 6.25 + ], + "to": [ + 11, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11, 6.25, 10.75, 6.5], "texture": "#4"}, - "east": {"uv": [10.75, 6.25, 11, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [10.75, 9, 11, 9.25], "texture": "#4"}, - "west": {"uv": [10.75, 6.25, 11, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [10.75, 6.25, 11, 9.25], "texture": "#4"}, - "down": {"uv": [10.75, 9.25, 11, 6.25], "texture": "#4"} + "north": { + "uv": [ + 11, + 6.25, + 10.75, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10.75, + 6.25, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 10.75, + 6.25, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 10.75, + 6.25, + 11, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11, + 6.25 + ], + "texture": "#4" + } } }, { "name": "paiku_7", - "from": [14.5, 0, 6.25], - "to": [15, 0.25, 9.25], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 6.25, 14.5, 6.5], "texture": "#4"}, - "east": {"uv": [14.75, 6.25, 15, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.5, 9, 15, 9.25], "texture": "#4"}, - "west": {"uv": [14.5, 6.25, 14.75, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.5, 6.25, 15, 9.25], "texture": "#4"}, - "down": {"uv": [14.5, 9.25, 15, 6.25], "texture": "#4"} + "north": { + "uv": [ + 15, + 6.25, + 14.5, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.5, + 9, + 15, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 15, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 15, + 6.25 + ], + "texture": "#4" + } } }, { "name": "paiku_8", - "from": [15.5, 0, 6.25], - "to": [15.75, 0.25, 7.25], + "from": [ + 15.5, + 0, + 6.25 + ], + "to": [ + 15.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.75, 6.25, 15.5, 6.5], "texture": "#4"}, - "east": {"uv": [15.5, 6.25, 15.75, 7.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.5, 7, 15.75, 7.25], "texture": "#4"}, - "west": {"uv": [15.5, 6.25, 15.75, 7.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.5, 6.25, 15.75, 7.25], "texture": "#4"}, - "down": {"uv": [15.5, 7.25, 15.75, 6.25], "texture": "#4"} + "north": { + "uv": [ + 15.75, + 6.25, + 15.5, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.5, + 6.25, + 15.75, + 7.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.5, + 7, + 15.75, + 7.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.5, + 6.25, + 15.75, + 7.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.5, + 6.25, + 15.75, + 7.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.5, + 7.25, + 15.75, + 6.25 + ], + "texture": "#4" + } } }, { "name": "paiku_9", - "from": [5.5, 0, 6.5], - "to": [9.25, 0.25, 9.5], + "from": [ + 5.5, + 0, + 6.5 + ], + "to": [ + 9.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.25, 6.5, 5.5, 6.75], "texture": "#4"}, - "east": {"uv": [9, 6.5, 9.25, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.5, 9.25, 9.25, 9.5], "texture": "#4"}, - "west": {"uv": [5.5, 6.5, 5.75, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.5, 6.5, 9.25, 9.5], "texture": "#4"}, - "down": {"uv": [5.5, 9.5, 9.25, 6.5], "texture": "#4"} + "north": { + "uv": [ + 9.25, + 6.5, + 5.5, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.25, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.5, + 9.25, + 9.25, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.5, + 6.5, + 5.75, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.5, + 6.5, + 9.25, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.5, + 9.5, + 9.25, + 6.5 + ], + "texture": "#4" + } } }, { "name": "paiku_10", - "from": [9.25, 0, 6.5], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.25, + 0, + 6.5 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 6.5, 9.25, 6.75], "texture": "#4"}, - "east": {"uv": [10.5, 6.5, 10.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9.25, 9, 10.75, 9.25], "texture": "#4"}, - "west": {"uv": [9.25, 6.5, 9.5, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9.25, 6.5, 10.75, 9.25], "texture": "#4"}, - "down": {"uv": [9.25, 9.25, 10.75, 6.5], "texture": "#4"} + "north": { + "uv": [ + 10.75, + 6.5, + 9.25, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 10.5, + 6.5, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9.25, + 9, + 10.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9.25, + 6.5, + 9.5, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9.25, + 6.5, + 10.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9.25, + 9.25, + 10.75, + 6.5 + ], + "texture": "#4" + } } }, { "name": "paiku_11", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 9], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#4"}, - "east": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.25, 8.75, 14.5, 9], "texture": "#4"}, - "west": {"uv": [14.25, 6.5, 14.5, 9], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.25, 6.5, 14.5, 9], "texture": "#4"}, - "down": {"uv": [14.25, 9, 14.5, 6.5], "texture": "#4"} + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.25, + 9, + 14.5, + 6.5 + ], + "texture": "#4" + } } }, { "name": "paiku_12", - "from": [4, 0, 6.75], - "to": [5.5, 0.25, 9.5], + "from": [ + 4, + 0, + 6.75 + ], + "to": [ + 5.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.5, 6.75, 4, 7], "texture": "#4"}, - "east": {"uv": [5.25, 6.75, 5.5, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 9.25, 5.5, 9.5], "texture": "#4"}, - "west": {"uv": [4, 6.75, 4.25, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4, 6.75, 5.5, 9.5], "texture": "#4"}, - "down": {"uv": [4, 9.5, 5.5, 6.75], "texture": "#4"} + "north": { + "uv": [ + 5.5, + 6.75, + 4, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.25, + 6.75, + 5.5, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4, + 9.25, + 5.5, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4, + 6.75, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4, + 6.75, + 5.5, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4, + 9.5, + 5.5, + 6.75 + ], + "texture": "#4" + } } }, { "name": "paiku_13", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 9], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#4"}, - "east": {"uv": [14, 6.75, 14.25, 9], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14, 8.75, 14.25, 9], "texture": "#4"}, - "west": {"uv": [14, 6.75, 14.25, 9], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14, 6.75, 14.25, 9], "texture": "#4"}, - "down": {"uv": [14, 9, 14.25, 6.75], "texture": "#4"} + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 9 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14, + 9, + 14.25, + 6.75 + ], + "texture": "#4" + } } }, { "name": "paiku_14", - "from": [2.75, 0, 7], - "to": [4, 0.25, 9.25], + "from": [ + 2.75, + 0, + 7 + ], + "to": [ + 4, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4, 7, 2.75, 7.25], "texture": "#4"}, - "east": {"uv": [3.75, 7, 4, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2.75, 9, 4, 9.25], "texture": "#4"}, - "west": {"uv": [2.75, 7, 3, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2.75, 7, 4, 9.25], "texture": "#4"}, - "down": {"uv": [2.75, 9.25, 4, 7], "texture": "#4"} + "north": { + "uv": [ + 4, + 7, + 2.75, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 3.75, + 7, + 4, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2.75, + 9, + 4, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2.75, + 7, + 3, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2.75, + 7, + 4, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2.75, + 9.25, + 4, + 7 + ], + "texture": "#4" + } } }, { "name": "paiku_15", - "from": [13.75, 0, 7], - "to": [14, 0.25, 8.75], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#4"}, - "east": {"uv": [13.75, 7, 14, 8.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#4"}, - "west": {"uv": [13.75, 7, 14, 8.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [13.75, 7, 14, 8.75], "texture": "#4"}, - "down": {"uv": [13.75, 8.75, 14, 7], "texture": "#4"} + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 8.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14, + 7 + ], + "texture": "#4" + } } }, { "name": "paiku_16", - "from": [2, 0, 7.25], - "to": [2.75, 0.25, 9.25], + "from": [ + 2, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.75, 7.25, 2, 7.5], "texture": "#4"}, - "east": {"uv": [2.5, 7.25, 2.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 9, 2.75, 9.25], "texture": "#4"}, - "west": {"uv": [2, 7.25, 2.25, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2, 7.25, 2.75, 9.25], "texture": "#4"}, - "down": {"uv": [2, 9.25, 2.75, 7.25], "texture": "#4"} + "north": { + "uv": [ + 2.75, + 7.25, + 2, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2, + 9, + 2.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2, + 7.25, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2, + 7.25, + 2.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.75, + 7.25 + ], + "texture": "#4" + } } }, { "name": "paiku_17", - "from": [12.5, 0, 7.25], - "to": [13.75, 0.25, 8.5], + "from": [ + 12.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.75, 7.25, 12.5, 7.5], "texture": "#4"}, - "east": {"uv": [13.5, 7.25, 13.75, 8.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.5, 8.25, 13.75, 8.5], "texture": "#4"}, - "west": {"uv": [12.5, 7.25, 12.75, 8.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.5, 7.25, 13.75, 8.5], "texture": "#4"}, - "down": {"uv": [12.5, 8.5, 13.75, 7.25], "texture": "#4"} + "north": { + "uv": [ + 13.75, + 7.25, + 12.5, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 8.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.5, + 8.25, + 13.75, + 8.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.5, + 7.25, + 12.75, + 8.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.5, + 7.25, + 13.75, + 8.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.5, + 8.5, + 13.75, + 7.25 + ], + "texture": "#4" + } } }, { "name": "paiku_18", - "from": [1.75, 0, 7.5], - "to": [2, 0.25, 9.25], + "from": [ + 1.75, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 7.5, 1.75, 7.75], "texture": "#4"}, - "east": {"uv": [1.75, 7.5, 2, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.75, 9, 2, 9.25], "texture": "#4"}, - "west": {"uv": [1.75, 7.5, 2, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.75, 7.5, 2, 9.25], "texture": "#4"}, - "down": {"uv": [1.75, 9.25, 2, 7.5], "texture": "#4"} + "north": { + "uv": [ + 2, + 7.5, + 1.75, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.75, + 7.5, + 2, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2, + 7.5 + ], + "texture": "#4" + } } }, { "name": "paiku_19", - "from": [15, 0, 7.5], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 7.5, 15, 7.75], "texture": "#4"}, - "east": {"uv": [15, 7.5, 15.25, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#4"}, - "west": {"uv": [15, 7.5, 15.25, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15, 7.5, 15.25, 9.5], "texture": "#4"}, - "down": {"uv": [15, 9.5, 15.25, 7.5], "texture": "#4"} + "north": { + "uv": [ + 15.25, + 7.5, + 15, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15, + 7.5, + 15.25, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 7.5 + ], + "texture": "#4" + } } }, { "name": "paiku_20", - "from": [0.75, 0, 7.75], - "to": [1.75, 0.25, 9], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7.75, 0.75, 8], "texture": "#4"}, - "east": {"uv": [1.5, 7.75, 1.75, 9], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.75, 8.75, 1.75, 9], "texture": "#4"}, - "west": {"uv": [0.75, 7.75, 1, 9], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.75, 7.75, 1.75, 9], "texture": "#4"}, - "down": {"uv": [0.75, 9, 1.75, 7.75], "texture": "#4"} + "north": { + "uv": [ + 1.75, + 7.75, + 0.75, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.5, + 7.75, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1.75, + 9 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 9 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1.75, + 9 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.75, + 9, + 1.75, + 7.75 + ], + "texture": "#4" + } } }, { "name": "paiku_21", - "from": [0.5, 0, 8], - "to": [0.75, 0.25, 8.75], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.75, 8, 0.5, 8.25], "texture": "#4"}, - "east": {"uv": [0.5, 8, 0.75, 8.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.5, 8.5, 0.75, 8.75], "texture": "#4"}, - "west": {"uv": [0.5, 8, 0.75, 8.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.5, 8, 0.75, 8.75], "texture": "#4"}, - "down": {"uv": [0.5, 8.75, 0.75, 8], "texture": "#4"} + "north": { + "uv": [ + 0.75, + 8, + 0.5, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.75, + 8.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.5, + 8.75, + 0.75, + 8 + ], + "texture": "#4" + } } }, { "name": "paiku_22", - "from": [15.25, 0, 8], - "to": [15.5, 0.25, 9.5], + "from": [ + 15.25, + 0, + 8 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 8, 15.25, 8.25], "texture": "#4"}, - "east": {"uv": [15.25, 8, 15.5, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.25, 9.25, 15.5, 9.5], "texture": "#4"}, - "west": {"uv": [15.25, 8, 15.5, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.25, 8, 15.5, 9.5], "texture": "#4"}, - "down": {"uv": [15.25, 9.5, 15.5, 8], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 8, + 15.25, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.25, + 8, + 15.5, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.25, + 9.5, + 15.5, + 8 + ], + "texture": "#4" + } } }, { "name": "paiku_23", - "from": [0.25, 0, 8.25], - "to": [0.5, 0.25, 8.5], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.5, 8.25, 0.25, 8.5], "texture": "#4"}, - "east": {"uv": [0.25, 8.25, 0.5, 8.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#4"}, - "west": {"uv": [0.25, 8.25, 0.5, 8.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#4"}, - "down": {"uv": [0.25, 8.5, 0.5, 8.25], "texture": "#4"} + "north": { + "uv": [ + 0.5, + 8.25, + 0.25, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.25 + ], + "texture": "#4" + } } }, { "name": "paiku_24", - "from": [15.5, 0, 8.5], - "to": [15.75, 0.25, 9.25], + "from": [ + 15.5, + 0, + 8.5 + ], + "to": [ + 15.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.75, 8.5, 15.5, 8.75], "texture": "#4"}, - "east": {"uv": [15.5, 8.5, 15.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.5, 9, 15.75, 9.25], "texture": "#4"}, - "west": {"uv": [15.5, 8.5, 15.75, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.5, 8.5, 15.75, 9.25], "texture": "#4"}, - "down": {"uv": [15.5, 9.25, 15.75, 8.5], "texture": "#4"} + "north": { + "uv": [ + 15.75, + 8.5, + 15.5, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.5, + 9, + 15.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.5, + 8.5, + 15.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.5, + 9.25, + 15.75, + 8.5 + ], + "texture": "#4" + } } }, { "name": "paiku_25", - "from": [12.5, 0, 8.75], - "to": [12.75, 0.25, 9.75], + "from": [ + 12.5, + 0, + 8.75 + ], + "to": [ + 12.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.75, 8.75, 12.5, 9], "texture": "#4"}, - "east": {"uv": [12.5, 8.75, 12.75, 9.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.5, 9.5, 12.75, 9.75], "texture": "#4"}, - "west": {"uv": [12.5, 8.75, 12.75, 9.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.5, 8.75, 12.75, 9.75], "texture": "#4"}, - "down": {"uv": [12.5, 9.75, 12.75, 8.75], "texture": "#4"} + "north": { + "uv": [ + 12.75, + 8.75, + 12.5, + 9 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.5, + 9.5, + 12.75, + 9.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.5, + 9.75, + 12.75, + 8.75 + ], + "texture": "#4" + } } }, { "name": "paiku_26", - "from": [1.5, 0, 9], - "to": [1.75, 0.25, 9.25], + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 1.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.75, 9, 1.5, 9.25], "texture": "#4"}, - "east": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#4"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.5, 9, 1.75, 9.25], "texture": "#4"}, - "down": {"uv": [1.5, 9.25, 1.75, 9], "texture": "#4"} + "north": { + "uv": [ + 1.75, + 9, + 1.5, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 1.75, + 9 + ], + "texture": "#4" + } } }, { "name": "paiku_27", - "from": [12.75, 0, 9], - "to": [13, 0.25, 9.5], + "from": [ + 12.75, + 0, + 9 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 9, 12.75, 9.25], "texture": "#4"}, - "east": {"uv": [12.75, 9, 13, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12.75, 9.25, 13, 9.5], "texture": "#4"}, - "west": {"uv": [12.75, 9, 13, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12.75, 9, 13, 9.5], "texture": "#4"}, - "down": {"uv": [12.75, 9.5, 13, 9], "texture": "#4"} + "north": { + "uv": [ + 13, + 9, + 12.75, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12.75, + 9, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12.75, + 9.25, + 13, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12.75, + 9, + 13, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12.75, + 9, + 13, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12.75, + 9.5, + 13, + 9 + ], + "texture": "#4" + } } }, { "name": "paiku_28", - "from": [14.75, 0, 9.25], - "to": [15, 0.25, 9.5], + "from": [ + 14.75, + 0, + 9.25 + ], + "to": [ + 15, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15, 9.25, 14.75, 9.5], "texture": "#4"}, - "east": {"uv": [14.75, 9.25, 15, 9.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#4"}, - "west": {"uv": [14.75, 9.25, 15, 9.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#4"}, - "down": {"uv": [14.75, 9.5, 15, 9.25], "texture": "#4"} + "north": { + "uv": [ + 15, + 9.25, + 14.75, + 9.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 14.75, + 9.5, + 15, + 9.25 + ], + "texture": "#4" + } } }, { "name": "paiku_29", - "from": [4.25, 0, 9.5], - "to": [5.75, 0.25, 10.25], + "from": [ + 4.25, + 0, + 9.5 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.75, 9.5, 4.25, 9.75], "texture": "#4"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.25, 10, 5.75, 10.25], "texture": "#4"}, - "west": {"uv": [4.25, 9.5, 4.5, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.25, 9.5, 5.75, 10.25], "texture": "#4"}, - "down": {"uv": [4.25, 10.25, 5.75, 9.5], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 9.5, + 4.25, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.25, + 10, + 5.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.25, + 9.5, + 4.5, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.25, + 9.5, + 5.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.25, + 10.25, + 5.75, + 9.5 + ], + "texture": "#4" + } } }, { "name": "paiku_30", - "from": [8.25, 0, 9.5], - "to": [9.5, 0.25, 10], + "from": [ + 8.25, + 0, + 9.5 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 9.5, 8.25, 9.75], "texture": "#4"}, - "east": {"uv": [9.25, 9.5, 9.5, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.25, 9.75, 9.5, 10], "texture": "#4"}, - "west": {"uv": [8.25, 9.5, 8.5, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.25, 9.5, 9.5, 10], "texture": "#4"}, - "down": {"uv": [8.25, 10, 9.5, 9.5], "texture": "#4"} + "north": { + "uv": [ + 9.5, + 9.5, + 8.25, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.25, + 9.5, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 9.5, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.25, + 9.5, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 9.5, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.25, + 10, + 9.5, + 9.5 + ], + "texture": "#4" + } } }, { "name": "paiku_31", - "from": [11.75, 0, 9.75], - "to": [12.25, 0.25, 10], + "from": [ + 11.75, + 0, + 9.75 + ], + "to": [ + 12.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.25, 9.75, 11.75, 10], "texture": "#4"}, - "east": {"uv": [12, 9.75, 12.25, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [11.75, 9.75, 12.25, 10], "texture": "#4"}, - "west": {"uv": [11.75, 9.75, 12, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [11.75, 9.75, 12.25, 10], "texture": "#4"}, - "down": {"uv": [11.75, 10, 12.25, 9.75], "texture": "#4"} + "north": { + "uv": [ + 12.25, + 9.75, + 11.75, + 10 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12, + 9.75, + 12.25, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 11.75, + 9.75, + 12.25, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 11.75, + 9.75, + 12, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 11.75, + 9.75, + 12.25, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 11.75, + 10, + 12.25, + 9.75 + ], + "texture": "#4" + } } }, { "name": "paiku_32", - "from": [8.5, 0, 10], - "to": [9.5, 0.25, 10.25], + "from": [ + 8.5, + 0, + 10 + ], + "to": [ + 9.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.5, 10, 8.5, 10.25], "texture": "#4"}, - "east": {"uv": [9.25, 10, 9.5, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.5, 10, 9.5, 10.25], "texture": "#4"}, - "west": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.5, 10, 9.5, 10.25], "texture": "#4"}, - "down": {"uv": [8.5, 10.25, 9.5, 10], "texture": "#4"} + "north": { + "uv": [ + 9.5, + 10, + 8.5, + 10.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.5, + 10, + 9.5, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.5, + 10, + 9.5, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 9.5, + 10 + ], + "texture": "#4" + } } }, { "name": "paiku_33", - "from": [12, 0, 10], - "to": [12.25, 0.25, 10.25], + "from": [ + 12, + 0, + 10 + ], + "to": [ + 12.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.25, 10, 12, 10.25], "texture": "#4"}, - "east": {"uv": [12, 10, 12.25, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12, 10, 12.25, 10.25], "texture": "#4"}, - "west": {"uv": [12, 10, 12.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12, 10, 12.25, 10.25], "texture": "#4"}, - "down": {"uv": [12, 10.25, 12.25, 10], "texture": "#4"} + "north": { + "uv": [ + 12.25, + 10, + 12, + 10.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12, + 10.25, + 12.25, + 10 + ], + "texture": "#4" + } } }, { "name": "paiku_34", - "from": [4.5, 0, 10.25], - "to": [5.75, 0.25, 10.5], + "from": [ + 4.5, + 0, + 10.25 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 10.25, 4.5, 10.5], "texture": "#4"}, - "east": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.5, 10.25, 5.75, 10.5], "texture": "#4"}, - "west": {"uv": [4.5, 10.25, 4.75, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.5, 10.25, 5.75, 10.5], "texture": "#4"}, - "down": {"uv": [4.5, 10.5, 5.75, 10.25], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 10.25, + 4.5, + 10.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.5, + 10.5, + 5.75, + 10.25 + ], + "texture": "#4" + } } }, { "name": "paiku_35", - "from": [8.75, 0, 10.25], - "to": [9.5, 0.25, 10.5], + "from": [ + 8.75, + 0, + 10.25 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.5, 10.25, 8.75, 10.5], "texture": "#4"}, - "east": {"uv": [9.25, 10.25, 9.5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [8.75, 10.25, 9.5, 10.5], "texture": "#4"}, - "west": {"uv": [8.75, 10.25, 9, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [8.75, 10.25, 9.5, 10.5], "texture": "#4"}, - "down": {"uv": [8.75, 10.5, 9.5, 10.25], "texture": "#4"} + "north": { + "uv": [ + 9.5, + 10.25, + 8.75, + 10.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 8.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 8.75, + 10.25, + 9, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 8.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 8.75, + 10.5, + 9.5, + 10.25 + ], + "texture": "#4" + } } }, { "name": "paiku_36", - "from": [4.75, 0, 10.5], - "to": [5.5, 0.25, 10.75], + "from": [ + 4.75, + 0, + 10.5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.5, 10.5, 4.75, 10.75], "texture": "#4"}, - "east": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.75, 10.5, 5.5, 10.75], "texture": "#4"}, - "west": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.75, 10.5, 5.5, 10.75], "texture": "#4"}, - "down": {"uv": [4.75, 10.75, 5.5, 10.5], "texture": "#4"} + "north": { + "uv": [ + 5.5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5.5, + 10.5 + ], + "texture": "#4" + } } }, { "name": "paiku_37", - "from": [9, 0, 10.5], - "to": [9.25, 0.25, 10.75], + "from": [ + 9, + 0, + 10.5 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 10.5, 9, 10.75], "texture": "#4"}, - "east": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#4"}, - "west": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#4"}, - "down": {"uv": [9, 10.75, 9.25, 10.5], "texture": "#4"} + "north": { + "uv": [ + 9.25, + 10.5, + 9, + 10.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.25, + 10.5 + ], + "texture": "#4" + } } }, { "name": "paiku_38", - "from": [5, 0, 10.75], - "to": [5.25, 0.25, 11], + "from": [ + 5, + 0, + 10.75 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 10.75, 5, 11], "texture": "#4"}, - "east": {"uv": [5, 10.75, 5.25, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5, 10.75, 5.25, 11], "texture": "#4"}, - "west": {"uv": [5, 10.75, 5.25, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5, 10.75, 5.25, 11], "texture": "#4"}, - "down": {"uv": [5, 11, 5.25, 10.75], "texture": "#4"} + "north": { + "uv": [ + 5.25, + 10.75, + 5, + 11 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5, + 11, + 5.25, + 10.75 + ], + "texture": "#4" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 2, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 2, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.25, 9.75, 8.25], - "scale": [0.92, 0.92, 0.92] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.25, + 9.75, + 8.25 + ], + "scale": [ + 0.92, + 0.92, + 0.92 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "paiku", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/piranha.json b/pack/assets/minecraft/models/fish/piranha.json index ab0f8622..f32abeed 100644 --- a/pack/assets/minecraft/models/fish/piranha.json +++ b/pack/assets/minecraft/models/fish/piranha.json @@ -2,786 +2,4191 @@ "__name": "ピラニア", "credit": "Made with Blockbench", "textures": { - "0": "fish/piranha", - "particle": "fish/piranha" + "0": "item/fish/piranha", + "particle": "item/fish/piranha" }, "elements": [ { "name": "piranha_0", - "from": [8.25, 0, 3], - "to": [9, 0.25, 10.75], + "from": [ + 8.25, + 0, + 3 + ], + "to": [ + 9, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9, 3, 8.25, 3.25], "texture": "#0"}, - "east": {"uv": [8.75, 3, 9, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.5, 9, 10.75], "texture": "#0"}, - "west": {"uv": [8.25, 3, 8.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 3, 9, 10.75], "texture": "#0"}, - "down": {"uv": [8.25, 10.75, 9, 3], "texture": "#0"} + "north": { + "uv": [ + 9, + 3, + 8.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 3, + 9, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 3, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 3, + 9, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 9, + 3 + ], + "texture": "#0" + } } }, { "name": "piranha_1", - "from": [8, 0, 3.25], - "to": [8.25, 0.25, 11.25], + "from": [ + 8, + 0, + 3.25 + ], + "to": [ + 8.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.25, 3.25, 8, 3.5], "texture": "#0"}, - "east": {"uv": [8, 3.25, 8.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 11, 8.25, 11.25], "texture": "#0"}, - "west": {"uv": [8, 3.25, 8.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 3.25, 8.25, 11.25], "texture": "#0"}, - "down": {"uv": [8, 11.25, 8.25, 3.25], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 3.25, + 8, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3.25, + 8.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 11, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3.25, + 8.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 3.25, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 11.25, + 8.25, + 3.25 + ], + "texture": "#0" + } } }, { "name": "piranha_2", - "from": [9, 0, 3.25], - "to": [9.5, 0.25, 10.75], + "from": [ + 9, + 0, + 3.25 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 3.25, 9, 3.5], "texture": "#0"}, - "east": {"uv": [9.25, 3.25, 9.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.5, 9.5, 10.75], "texture": "#0"}, - "west": {"uv": [9, 3.25, 9.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 3.25, 9.5, 10.75], "texture": "#0"}, - "down": {"uv": [9, 10.75, 9.5, 3.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 3.25, + 9, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 3.25, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3.25, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3.25, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.5, + 3.25 + ], + "texture": "#0" + } } }, { "name": "piranha_3", - "from": [7.75, 0, 3.5], - "to": [8, 0.25, 11.5], + "from": [ + 7.75, + 0, + 3.5 + ], + "to": [ + 8, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [8, 3.5, 7.75, 3.75], "texture": "#0"}, - "east": {"uv": [7.75, 3.5, 8, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 11.25, 8, 11.5], "texture": "#0"}, - "west": {"uv": [7.75, 3.5, 8, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 3.5, 8, 11.5], "texture": "#0"}, - "down": {"uv": [7.75, 11.5, 8, 3.5], "texture": "#0"} + "north": { + "uv": [ + 8, + 3.5, + 7.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3.5, + 8, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 11.25, + 8, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 3.5, + 8, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 3.5, + 8, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 11.5, + 8, + 3.5 + ], + "texture": "#0" + } } }, { "name": "piranha_4", - "from": [9.5, 0, 3.5], - "to": [9.75, 0.25, 11.25], + "from": [ + 9.5, + 0, + 3.5 + ], + "to": [ + 9.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.75, 3.5, 9.5, 3.75], "texture": "#0"}, - "east": {"uv": [9.5, 3.5, 9.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 11, 9.75, 11.25], "texture": "#0"}, - "west": {"uv": [9.5, 3.5, 9.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 3.5, 9.75, 11.25], "texture": "#0"}, - "down": {"uv": [9.5, 11.25, 9.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 3.5, + 9.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 9.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 11, + 9.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3.5, + 9.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.5, + 9.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 11.25, + 9.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "piranha_5", - "from": [5.25, 0, 3.75], - "to": [7.25, 0.25, 11], + "from": [ + 5.25, + 0, + 3.75 + ], + "to": [ + 7.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.25, 3.75, 5.25, 4], "texture": "#0"}, - "east": {"uv": [7, 3.75, 7.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 10.75, 7.25, 11], "texture": "#0"}, - "west": {"uv": [5.25, 3.75, 5.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 3.75, 7.25, 11], "texture": "#0"}, - "down": {"uv": [5.25, 11, 7.25, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 3.75, + 5.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.75, + 7.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 10.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3.75, + 5.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 3.75, + 7.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 11, + 7.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "piranha_6", - "from": [7.5, 0, 3.75], - "to": [7.75, 0.25, 11.5], + "from": [ + 7.5, + 0, + 3.75 + ], + "to": [ + 7.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.75, 3.75, 7.5, 4], "texture": "#0"}, - "east": {"uv": [7.5, 3.75, 7.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 11.25, 7.75, 11.5], "texture": "#0"}, - "west": {"uv": [7.5, 3.75, 7.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 3.75, 7.75, 11.5], "texture": "#0"}, - "down": {"uv": [7.5, 11.5, 7.75, 3.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 3.75, + 7.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 3.75, + 7.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 11.25, + 7.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.75, + 7.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.75, + 7.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 11.5, + 7.75, + 3.75 + ], + "texture": "#0" + } } }, { "name": "piranha_7", - "from": [9.75, 0, 3.75], - "to": [10, 0.25, 11.5], + "from": [ + 9.75, + 0, + 3.75 + ], + "to": [ + 10, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10, 3.75, 9.75, 4], "texture": "#0"}, - "east": {"uv": [9.75, 3.75, 10, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 11.25, 10, 11.5], "texture": "#0"}, - "west": {"uv": [9.75, 3.75, 10, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 3.75, 10, 11.5], "texture": "#0"}, - "down": {"uv": [9.75, 11.5, 10, 3.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 3.75, + 9.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 3.75, + 10, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 11.25, + 10, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 3.75, + 10, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 3.75, + 10, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 11.5, + 10, + 3.75 + ], + "texture": "#0" + } } }, { "name": "piranha_8", - "from": [4.5, 0, 4], - "to": [5.25, 0.25, 11], + "from": [ + 4.5, + 0, + 4 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 4, 4.5, 4.25], "texture": "#0"}, - "east": {"uv": [5, 4, 5.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10.75, 5.25, 11], "texture": "#0"}, - "west": {"uv": [4.5, 4, 4.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 4, 5.25, 11], "texture": "#0"}, - "down": {"uv": [4.5, 11, 5.25, 4], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 4, + 4.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 5.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 4, + 5.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 11, + 5.25, + 4 + ], + "texture": "#0" + } } }, { "name": "piranha_9", - "from": [7.25, 0, 4], - "to": [7.5, 0.25, 11.5], + "from": [ + 7.25, + 0, + 4 + ], + "to": [ + 7.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.5, 4, 7.25, 4.25], "texture": "#0"}, - "east": {"uv": [7.25, 4, 7.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 11.25, 7.5, 11.5], "texture": "#0"}, - "west": {"uv": [7.25, 4, 7.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4, 7.5, 11.5], "texture": "#0"}, - "down": {"uv": [7.25, 11.5, 7.5, 4], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 11.25, + 7.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4, + 7.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4, + 7.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11.5, + 7.5, + 4 + ], + "texture": "#0" + } } }, { "name": "piranha_10", - "from": [10, 0, 4], - "to": [10.25, 0.25, 11.75], + "from": [ + 10, + 0, + 4 + ], + "to": [ + 10.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.25, 4, 10, 4.25], "texture": "#0"}, - "east": {"uv": [10, 4, 10.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 11.5, 10.25, 11.75], "texture": "#0"}, - "west": {"uv": [10, 4, 10.25, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 4, 10.25, 11.75], "texture": "#0"}, - "down": {"uv": [10, 11.75, 10.25, 4], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 4, + 10, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 4, + 10.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 11.5, + 10.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 4, + 10.25, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 4, + 10.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 11.75, + 10.25, + 4 + ], + "texture": "#0" + } } }, { "name": "piranha_11", - "from": [4, 0, 4.25], - "to": [4.5, 0.25, 11], + "from": [ + 4, + 0, + 4.25 + ], + "to": [ + 4.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.5, 4.25, 4, 4.5], "texture": "#0"}, - "east": {"uv": [4.25, 4.25, 4.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10.75, 4.5, 11], "texture": "#0"}, - "west": {"uv": [4, 4.25, 4.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4.25, 4.5, 11], "texture": "#0"}, - "down": {"uv": [4, 11, 4.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 4.5, + 4.25, + 4, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.25, + 4.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.75, + 4.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.25, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4.25, + 4.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 11, + 4.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "piranha_12", - "from": [10.25, 0, 4.25], - "to": [10.5, 0.25, 11.75], + "from": [ + 10.25, + 0, + 4.25 + ], + "to": [ + 10.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.5, 4.25, 10.25, 4.5], "texture": "#0"}, - "east": {"uv": [10.25, 4.25, 10.5, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 11.5, 10.5, 11.75], "texture": "#0"}, - "west": {"uv": [10.25, 4.25, 10.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 4.25, 10.5, 11.75], "texture": "#0"}, - "down": {"uv": [10.25, 11.75, 10.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 4.25, + 10.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 4.25, + 10.5, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 11.5, + 10.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 4.25, + 10.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.25, + 10.5, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 11.75, + 10.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "piranha_13", - "from": [3.5, 0, 4.5], - "to": [4, 0.25, 10.75], + "from": [ + 3.5, + 0, + 4.5 + ], + "to": [ + 4, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4, 4.5, 3.5, 4.75], "texture": "#0"}, - "east": {"uv": [3.75, 4.5, 4, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.5, 4, 10.75], "texture": "#0"}, - "west": {"uv": [3.5, 4.5, 3.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 4.5, 4, 10.75], "texture": "#0"}, - "down": {"uv": [3.5, 10.75, 4, 4.5], "texture": "#0"} + "north": { + "uv": [ + 4, + 4.5, + 3.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4.5, + 4, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 4.5, + 3.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 4.5, + 4, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 10.75, + 4, + 4.5 + ], + "texture": "#0" + } } }, { "name": "piranha_14", - "from": [10.5, 0, 4.5], - "to": [10.75, 0.25, 5.5], + "from": [ + 10.5, + 0, + 4.5 + ], + "to": [ + 10.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [10.75, 4.5, 10.5, 4.75], "texture": "#0"}, - "east": {"uv": [10.5, 4.5, 10.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 5.25, 10.75, 5.5], "texture": "#0"}, - "west": {"uv": [10.5, 4.5, 10.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 10.75, 5.5], "texture": "#0"}, - "down": {"uv": [10.5, 5.5, 10.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 4.5, + 10.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 5.25, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4.5, + 10.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 4.5, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.5, + 10.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "piranha_15", - "from": [3, 0, 4.75], - "to": [3.5, 0.25, 10.75], + "from": [ + 3, + 0, + 4.75 + ], + "to": [ + 3.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.5, 4.75, 3, 5], "texture": "#0"}, - "east": {"uv": [3.25, 4.75, 3.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10.5, 3.5, 10.75], "texture": "#0"}, - "west": {"uv": [3, 4.75, 3.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 4.75, 3.5, 10.75], "texture": "#0"}, - "down": {"uv": [3, 10.75, 3.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 4.75, + 3, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 4.75, + 3.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 4.75, + 3.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 4.75, + 3.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10.75, + 3.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "piranha_16", - "from": [10.75, 0, 4.75], - "to": [11, 0.25, 5.25], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [11, 4.75, 10.75, 5], "texture": "#0"}, - "east": {"uv": [10.75, 4.75, 11, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [10.75, 4.75, 11, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 4.75, 11, 5.25], "texture": "#0"}, - "down": {"uv": [10.75, 5.25, 11, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 4.75, + 10.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4.75, + 11, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5, + 11, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 5.25, + 11, + 4.75 + ], + "texture": "#0" + } } }, { "name": "piranha_17", - "from": [2.75, 0, 5], - "to": [3, 0.25, 10.75], + "from": [ + 2.75, + 0, + 5 + ], + "to": [ + 3, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3, 5, 2.75, 5.25], "texture": "#0"}, - "east": {"uv": [2.75, 5, 3, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10.5, 3, 10.75], "texture": "#0"}, - "west": {"uv": [2.75, 5, 3, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5, 3, 10.75], "texture": "#0"}, - "down": {"uv": [2.75, 10.75, 3, 5], "texture": "#0"} + "north": { + "uv": [ + 3, + 5, + 2.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 5, + 3, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5, + 3, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5, + 3, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.75, + 3, + 5 + ], + "texture": "#0" + } } }, { "name": "piranha_18", - "from": [14.25, 0, 5], - "to": [15.25, 0.25, 6.75], + "from": [ + 14.25, + 0, + 5 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 5, 14.25, 5.25], "texture": "#0"}, - "east": {"uv": [15, 5, 15.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.5, 15.25, 6.75], "texture": "#0"}, - "west": {"uv": [14.25, 5, 14.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 5, 15.25, 6.75], "texture": "#0"}, - "down": {"uv": [14.25, 6.75, 15.25, 5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 5, + 14.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 5, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 5, + 14.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.75, + 15.25, + 5 + ], + "texture": "#0" + } } }, { "name": "piranha_19", - "from": [2.5, 0, 5.25], - "to": [2.75, 0.25, 10.5], + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 2.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.75, 5.25, 2.5, 5.5], "texture": "#0"}, - "east": {"uv": [2.5, 5.25, 2.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10.25, 2.75, 10.5], "texture": "#0"}, - "west": {"uv": [2.5, 5.25, 2.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.25, 2.75, 10.5], "texture": "#0"}, - "down": {"uv": [2.5, 10.5, 2.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 5.25, + 2.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.5, + 2.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "piranha_20", - "from": [14, 0, 5.25], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 5.25 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 5.25, 14, 5.5], "texture": "#0"}, - "east": {"uv": [14, 5.25, 14.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#0"}, - "west": {"uv": [14, 5.25, 14.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5.25, 14.25, 9.75], "texture": "#0"}, - "down": {"uv": [14, 9.75, 14.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 5.25, + 14, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 5.25, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.25, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5.25, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "piranha_21", - "from": [15.25, 0, 5.25], - "to": [15.5, 0.25, 6.25], + "from": [ + 15.25, + 0, + 5.25 + ], + "to": [ + 15.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.5, 5.25, 15.25, 5.5], "texture": "#0"}, - "east": {"uv": [15.25, 5.25, 15.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 6, 15.5, 6.25], "texture": "#0"}, - "west": {"uv": [15.25, 5.25, 15.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 5.25, 15.5, 6.25], "texture": "#0"}, - "down": {"uv": [15.25, 6.25, 15.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 5.25, + 15.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 6.25, + 15.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "piranha_22", - "from": [2.25, 0, 5.5], - "to": [2.5, 0.25, 10.5], + "from": [ + 2.25, + 0, + 5.5 + ], + "to": [ + 2.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.5, 5.5, 2.25, 5.75], "texture": "#0"}, - "east": {"uv": [2.25, 5.5, 2.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 10.25, 2.5, 10.5], "texture": "#0"}, - "west": {"uv": [2.25, 5.5, 2.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 5.5, 2.5, 10.5], "texture": "#0"}, - "down": {"uv": [2.25, 10.5, 2.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 5.5, + 2.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10.5, + 2.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "piranha_23", - "from": [12, 0, 5.5], - "to": [12.25, 0.25, 10], + "from": [ + 12, + 0, + 5.5 + ], + "to": [ + 12.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.25, 5.5, 12, 5.75], "texture": "#0"}, - "east": {"uv": [12, 5.5, 12.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 9.75, 12.25, 10], "texture": "#0"}, - "west": {"uv": [12, 5.5, 12.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5.5, 12.25, 10], "texture": "#0"}, - "down": {"uv": [12, 10, 12.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 5.5, + 12, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5.5, + 12.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 9.75, + 12.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5.5, + 12.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5.5, + 12.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 10, + 12.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "piranha_24", - "from": [13.75, 0, 5.5], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 5.5 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 5.5, 13.75, 5.75], "texture": "#0"}, - "east": {"uv": [13.75, 5.5, 14, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#0"}, - "west": {"uv": [13.75, 5.5, 14, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5.5, 14, 9.5], "texture": "#0"}, - "down": {"uv": [13.75, 9.5, 14, 5.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 5.5, + 13.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 5.5, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5.5, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.5, + 14, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 5.5 + ], + "texture": "#0" + } } }, { "name": "piranha_25", - "from": [2, 0, 5.75], - "to": [2.25, 0.25, 10.5], + "from": [ + 2, + 0, + 5.75 + ], + "to": [ + 2.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.25, 5.75, 2, 6], "texture": "#0"}, - "east": {"uv": [2, 5.75, 2.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10.25, 2.25, 10.5], "texture": "#0"}, - "west": {"uv": [2, 5.75, 2.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 5.75, 2.25, 10.5], "texture": "#0"}, - "down": {"uv": [2, 10.5, 2.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 5.75, + 2, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 5.75, + 2.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.25, + 2.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.75, + 2.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.5, + 2.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "piranha_26", - "from": [10.5, 0, 5.75], - "to": [11, 0.25, 11.75], + "from": [ + 10.5, + 0, + 5.75 + ], + "to": [ + 11, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [11, 5.75, 10.5, 6], "texture": "#0"}, - "east": {"uv": [10.75, 5.75, 11, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 11.5, 11, 11.75], "texture": "#0"}, - "west": {"uv": [10.5, 5.75, 10.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 5.75, 11, 11.75], "texture": "#0"}, - "down": {"uv": [10.5, 11.75, 11, 5.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 5.75, + 10.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 5.75, + 11, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 11.5, + 11, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 5.75, + 10.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 5.75, + 11, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 11.75, + 11, + 5.75 + ], + "texture": "#0" + } } }, { "name": "piranha_27", - "from": [11.75, 0, 5.75], - "to": [12, 0.25, 10.25], + "from": [ + 11.75, + 0, + 5.75 + ], + "to": [ + 12, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12, 5.75, 11.75, 6], "texture": "#0"}, - "east": {"uv": [11.75, 5.75, 12, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 10, 12, 10.25], "texture": "#0"}, - "west": {"uv": [11.75, 5.75, 12, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 5.75, 12, 10.25], "texture": "#0"}, - "down": {"uv": [11.75, 10.25, 12, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.75, + 11.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.75, + 12, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 10, + 12, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 5.75, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 5.75, + 12, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12, + 5.75 + ], + "texture": "#0" + } } }, { "name": "piranha_28", - "from": [12.25, 0, 5.75], - "to": [12.5, 0.25, 9.25], + "from": [ + 12.25, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12.25, 6], "texture": "#0"}, - "east": {"uv": [12.25, 5.75, 12.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 9, 12.5, 9.25], "texture": "#0"}, - "west": {"uv": [12.25, 5.75, 12.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 5.75, 12.5, 9.25], "texture": "#0"}, - "down": {"uv": [12.25, 9.25, 12.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 5.75, + 12.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 9.25, + 12.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "piranha_29", - "from": [13.5, 0, 5.75], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.5, + 0, + 5.75 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 5.75, 13.5, 6], "texture": "#0"}, - "east": {"uv": [13.5, 5.75, 13.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 13.75, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 5.75, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 5.75, 13.75, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 13.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 5.75, + 13.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 5.75, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 5.75, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 5.75, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 13.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "piranha_30", - "from": [1.75, 0, 6], - "to": [2, 0.25, 10.5], + "from": [ + 1.75, + 0, + 6 + ], + "to": [ + 2, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2, 6, 1.75, 6.25], "texture": "#0"}, - "east": {"uv": [1.75, 6, 2, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 10.25, 2, 10.5], "texture": "#0"}, - "west": {"uv": [1.75, 6, 2, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6, 2, 10.5], "texture": "#0"}, - "down": {"uv": [1.75, 10.5, 2, 6], "texture": "#0"} + "north": { + "uv": [ + 2, + 6, + 1.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6, + 2, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 10.25, + 2, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6, + 2, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6, + 2, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 10.5, + 2, + 6 + ], + "texture": "#0" + } } }, { "name": "piranha_31", - "from": [11, 0, 6], - "to": [11.75, 0.25, 10.5], + "from": [ + 11, + 0, + 6 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 6, 11, 6.25], "texture": "#0"}, - "east": {"uv": [11.5, 6, 11.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.25, 11.75, 10.5], "texture": "#0"}, - "west": {"uv": [11, 6, 11.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6, 11.75, 10.5], "texture": "#0"}, - "down": {"uv": [11, 10.5, 11.75, 6], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6, + 11, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.75, + 6 + ], + "texture": "#0" + } } }, { "name": "piranha_32", - "from": [12.5, 0, 6], - "to": [12.75, 0.25, 8.25], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12.75, 6, 12.5, 6.25], "texture": "#0"}, - "east": {"uv": [12.5, 6, 12.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8, 12.75, 8.25], "texture": "#0"}, - "west": {"uv": [12.5, 6, 12.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6, 12.75, 8.25], "texture": "#0"}, - "down": {"uv": [12.5, 8.25, 12.75, 6], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 6, + 12.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6, + 12.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.25, + 12.75, + 6 + ], + "texture": "#0" + } } }, { "name": "piranha_33", - "from": [13.25, 0, 6], - "to": [13.5, 0.25, 9], + "from": [ + 13.25, + 0, + 6 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 6, 13.25, 6.25], "texture": "#0"}, - "east": {"uv": [13.25, 6, 13.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 13.5, 9], "texture": "#0"}, - "west": {"uv": [13.25, 6, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6, 13.5, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 13.5, 6], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6, + 13.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6, + 13.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 13.5, + 6 + ], + "texture": "#0" + } } }, { "name": "piranha_34", - "from": [1.5, 0, 6.25], - "to": [1.75, 0.25, 10.5], + "from": [ + 1.5, + 0, + 6.25 + ], + "to": [ + 1.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.75, 6.25, 1.5, 6.5], "texture": "#0"}, - "east": {"uv": [1.5, 6.25, 1.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 10.25, 1.75, 10.5], "texture": "#0"}, - "west": {"uv": [1.5, 6.25, 1.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.25, 1.75, 10.5], "texture": "#0"}, - "down": {"uv": [1.5, 10.5, 1.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 6.25, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 10.25, + 1.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 10.5, + 1.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "piranha_35", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 8.5], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#0"}, - "east": {"uv": [13, 6.25, 13.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.25, 13.25, 8.5], "texture": "#0"}, - "west": {"uv": [13, 6.25, 13.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.25, 13.25, 8.5], "texture": "#0"}, - "down": {"uv": [13, 8.5, 13.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.5, + 13.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "piranha_36", - "from": [1.25, 0, 6.5], - "to": [1.5, 0.25, 8.75], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.5, 6.5, 1.25, 6.75], "texture": "#0"}, - "east": {"uv": [1.25, 6.5, 1.5, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "west": {"uv": [1.25, 6.5, 1.5, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.5, 1.5, 8.75], "texture": "#0"}, - "down": {"uv": [1.25, 8.75, 1.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 6.5, + 1.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 8.75, + 1.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "piranha_37", - "from": [12.75, 0, 6.5], - "to": [13, 0.25, 8.25], + "from": [ + 12.75, + 0, + 6.5 + ], + "to": [ + 13, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13, 6.5, 12.75, 6.75], "texture": "#0"}, - "east": {"uv": [12.75, 6.5, 13, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8, 13, 8.25], "texture": "#0"}, - "west": {"uv": [12.75, 6.5, 13, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.5, 13, 8.25], "texture": "#0"}, - "down": {"uv": [12.75, 8.25, 13, 6.5], "texture": "#0"} + "north": { + "uv": [ + 13, + 6.5, + 12.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 6.5, + 13, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8, + 13, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.5, + 13, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.5, + 13, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.25, + 13, + 6.5 + ], + "texture": "#0" + } } }, { "name": "piranha_38", - "from": [14.25, 0, 6.75], - "to": [15, 0.25, 7.25], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 15, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15, 6.75, 14.25, 7], "texture": "#0"}, - "east": {"uv": [14.75, 6.75, 15, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 7, 15, 7.25], "texture": "#0"}, - "west": {"uv": [14.25, 6.75, 14.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.75, 15, 7.25], "texture": "#0"}, - "down": {"uv": [14.25, 7.25, 15, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.75, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 7, + 15, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 15, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 7.25, + 15, + 6.75 + ], + "texture": "#0" + } } }, { "name": "piranha_39", - "from": [1, 0, 7], - "to": [1.25, 0.25, 8.5], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#0"}, - "east": {"uv": [1, 7, 1.25, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.25, 1.25, 8.5], "texture": "#0"}, - "west": {"uv": [1, 7, 1.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7, 1.25, 8.5], "texture": "#0"}, - "down": {"uv": [1, 8.5, 1.25, 7], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 1.25, + 7 + ], + "texture": "#0" + } } }, { "name": "piranha_40", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 8.25], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#0"}, - "east": {"uv": [0.75, 7.25, 1, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8, 1, 8.25], "texture": "#0"}, - "west": {"uv": [0.75, 7.25, 1, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7.25, 1, 8.25], "texture": "#0"}, - "down": {"uv": [0.75, 8.25, 1, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.25, + 1, + 7.25 + ], + "texture": "#0" + } } }, { "name": "piranha_41", - "from": [14.25, 0, 7.25], - "to": [14.75, 0.25, 10], + "from": [ + 14.25, + 0, + 7.25 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 7.25, 14.25, 7.5], "texture": "#0"}, - "east": {"uv": [14.5, 7.25, 14.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.75, 14.75, 10], "texture": "#0"}, - "west": {"uv": [14.25, 7.25, 14.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 7.25, 14.75, 10], "texture": "#0"}, - "down": {"uv": [14.25, 10, 14.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.25, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 7.25, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 7.25, + 14.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 10, + 14.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "piranha_42", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#0"}, - "east": {"uv": [14.75, 7.75, 15, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#0"}, - "west": {"uv": [14.75, 7.75, 15, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 7.75, 15, 10.25], "texture": "#0"}, - "down": {"uv": [14.75, 10.25, 15, 7.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 7.75 + ], + "texture": "#0" + } } }, { "name": "piranha_43", - "from": [15, 0, 8.25], - "to": [15.25, 0.25, 10], + "from": [ + 15, + 0, + 8.25 + ], + "to": [ + 15.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.25, 8.25, 15, 8.5], "texture": "#0"}, - "east": {"uv": [15, 8.25, 15.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.75, 15.25, 10], "texture": "#0"}, - "west": {"uv": [15, 8.25, 15.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.25, 15.25, 10], "texture": "#0"}, - "down": {"uv": [15, 10, 15.25, 8.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.25, + 15.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.75, + 15.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.25, + 15.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.25, + 15.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10, + 15.25, + 8.25 + ], + "texture": "#0" + } } }, { "name": "piranha_44", - "from": [12.5, 0, 8.5], - "to": [12.75, 0.25, 9], + "from": [ + 12.5, + 0, + 8.5 + ], + "to": [ + 12.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.75, 8.5, 12.5, 8.75], "texture": "#0"}, - "east": {"uv": [12.5, 8.5, 12.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.75, 12.75, 9], "texture": "#0"}, - "west": {"uv": [12.5, 8.5, 12.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.5, 12.75, 9], "texture": "#0"}, - "down": {"uv": [12.5, 9, 12.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 8.5, + 12.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8.5, + 12.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.75, + 12.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.5, + 12.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.5, + 12.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9, + 12.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "piranha_45", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 9.75], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#0"}, - "east": {"uv": [15.25, 8.75, 15.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#0"}, - "west": {"uv": [15.25, 8.75, 15.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.75, 15.5, 9.75], "texture": "#0"}, - "down": {"uv": [15.25, 9.75, 15.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.75, + 15.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "piranha_46", - "from": [0.75, 0, 9], - "to": [1.5, 0.25, 10.25], + "from": [ + 0.75, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.5, 9, 0.75, 9.25], "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 10, 1.5, 10.25], "texture": "#0"}, - "west": {"uv": [0.75, 9, 1, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 9, 1.5, 10.25], "texture": "#0"}, - "down": {"uv": [0.75, 10.25, 1.5, 9], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 9, + 0.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10, + 1.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 9, + 1, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 9, + 1.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 10.25, + 1.5, + 9 + ], + "texture": "#0" + } } }, { "name": "piranha_47", - "from": [0.5, 0, 9.25], - "to": [0.75, 0.25, 10], + "from": [ + 0.5, + 0, + 9.25 + ], + "to": [ + 0.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [0.75, 9.25, 0.5, 9.5], "texture": "#0"}, - "east": {"uv": [0.5, 9.25, 0.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 9.75, 0.75, 10], "texture": "#0"}, - "west": {"uv": [0.5, 9.25, 0.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 9.25, 0.75, 10], "texture": "#0"}, - "down": {"uv": [0.5, 10, 0.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 9.25, + 0.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 0.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.25, + 0.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 10, + 0.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "piranha_48", - "from": [0.25, 0, 9.5], - "to": [0.5, 0.25, 9.75], + "from": [ + 0.25, + 0, + 9.5 + ], + "to": [ + 0.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.5, 9.5, 0.25, 9.75], "texture": "#0"}, - "east": {"uv": [0.25, 9.5, 0.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 9.5, 0.5, 9.75], "texture": "#0"}, - "west": {"uv": [0.25, 9.5, 0.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 9.5, 0.5, 9.75], "texture": "#0"}, - "down": {"uv": [0.25, 9.75, 0.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 0.5, + 9.5, + 0.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 9.75, + 0.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "piranha_49", - "from": [14.5, 0, 10], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.5, + 0, + 10 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 10, 14.5, 10.25], "texture": "#0"}, - "east": {"uv": [14.5, 10, 14.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 10, 14.75, 10.25], "texture": "#0"}, - "west": {"uv": [14.5, 10, 14.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 10, 14.75, 10.25], "texture": "#0"}, - "down": {"uv": [14.5, 10.25, 14.75, 10], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 10, + 14.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10 + ], + "texture": "#0" + } } }, { "name": "piranha_50", - "from": [11, 0, 10.5], - "to": [11.5, 0.25, 11], + "from": [ + 11, + 0, + 10.5 + ], + "to": [ + 11.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.5, 10.5, 11, 10.75], "texture": "#0"}, - "east": {"uv": [11.25, 10.5, 11.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.75, 11.5, 11], "texture": "#0"}, - "west": {"uv": [11, 10.5, 11.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 10.5, 11.5, 11], "texture": "#0"}, - "down": {"uv": [11, 11, 11.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 10.5, + 11, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 10.5, + 11.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.75, + 11.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 10.5, + 11.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 10.5, + 11.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 11, + 11.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "piranha_51", - "from": [3.75, 0, 10.75], - "to": [4, 0.25, 11], + "from": [ + 3.75, + 0, + 10.75 + ], + "to": [ + 4, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4, 10.75, 3.75, 11], "texture": "#0"}, - "east": {"uv": [3.75, 10.75, 4, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.75, 4, 11], "texture": "#0"}, - "west": {"uv": [3.75, 10.75, 4, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10.75, 4, 11], "texture": "#0"}, - "down": {"uv": [3.75, 11, 4, 10.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 11, + 4, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piranha_52", - "from": [8.25, 0, 10.75], - "to": [8.5, 0.25, 11], + "from": [ + 8.25, + 0, + 10.75 + ], + "to": [ + 8.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.5, 10.75, 8.25, 11], "texture": "#0"}, - "east": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "west": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "down": {"uv": [8.25, 11, 8.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11, + 8.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piranha_53", - "from": [9.25, 0, 10.75], - "to": [9.5, 0.25, 11], + "from": [ + 9.25, + 0, + 10.75 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 10.75, 9.25, 11], "texture": "#0"}, - "east": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#0"}, - "west": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#0"}, - "down": {"uv": [9.25, 11, 9.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 10.75, + 9.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piranha_54", - "from": [7, 0, 11], - "to": [7.25, 0.25, 11.25], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 7.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.25, 11, 7, 11.25], "texture": "#0"}, - "east": {"uv": [7, 11, 7.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11, 7.25, 11.25], "texture": "#0"}, - "west": {"uv": [7, 11, 7.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11, 7.25, 11.25], "texture": "#0"}, - "down": {"uv": [7, 11.25, 7.25, 11], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 11, + 7, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.25, + 7.25, + 11 + ], + "texture": "#0" + } } }, { "name": "piranha_55", - "from": [11, 0, 11], - "to": [11.25, 0.25, 11.5], + "from": [ + 11, + 0, + 11 + ], + "to": [ + 11.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11.25, 11, 11, 11.25], "texture": "#0"}, - "east": {"uv": [11, 11, 11.25, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 11.25, 11.25, 11.5], "texture": "#0"}, - "west": {"uv": [11, 11, 11.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 11, 11.25, 11.5], "texture": "#0"}, - "down": {"uv": [11, 11.5, 11.25, 11], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 11, + 11, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 11, + 11.25, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 11.25, + 11.25, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 11, + 11.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 11, + 11.25, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 11.5, + 11.25, + 11 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, -26.75, 0], - "translation": [9.75, -7.25, -1.5], - "scale": [0.53, 0.53, 0.53] + "rotation": [ + 90, + -26.75, + 0 + ], + "translation": [ + 9.75, + -7.25, + -1.5 + ], + "scale": [ + 0.53, + 0.53, + 0.53 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "piranha", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/piraruku.json b/pack/assets/minecraft/models/fish/piraruku.json index 255999f2..9fac6427 100644 --- a/pack/assets/minecraft/models/fish/piraruku.json +++ b/pack/assets/minecraft/models/fish/piraruku.json @@ -2,474 +2,2463 @@ "__name": "ピラルク", "credit": "Made with Blockbench", "textures": { - "0": "fish/piraruku", - "particle": "fish/piraruku" + "0": "item/fish/piraruku", + "particle": "item/fish/piraruku" }, "elements": [ { "name": "piraruku_0", - "from": [9.5, 0, 7], - "to": [12.5, 0.25, 10.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 12.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.5, 7, 9.5, 7.25], "texture": "#0"}, - "east": {"uv": [12.25, 7, 12.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10, 12.5, 10.25], "texture": "#0"}, - "west": {"uv": [9.5, 7, 9.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7, 12.5, 10.25], "texture": "#0"}, - "down": {"uv": [9.5, 10.25, 12.5, 7], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 7, + 9.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 7, + 12.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10, + 12.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7, + 12.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 12.5, + 7 + ], + "texture": "#0" + } } }, { "name": "piraruku_1", - "from": [6.25, 0, 7.25], - "to": [9.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 7.25 + ], + "to": [ + 9.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.5, 7.25, 6.25, 7.5], "texture": "#0"}, - "east": {"uv": [9.25, 7.25, 9.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10, 9.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.25, 7.25, 6.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 7.25, 9.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.25, 10.25, 9.5, 7.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 7.25, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7.25, + 9.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7.25, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7.25, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 9.5, + 7.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_2", - "from": [12.5, 0, 7.25], - "to": [13.75, 0.25, 11], + "from": [ + 12.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [13.75, 7.25, 12.5, 7.5], "texture": "#0"}, - "east": {"uv": [13.5, 7.25, 13.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 10.75, 13.75, 11], "texture": "#0"}, - "west": {"uv": [12.5, 7.25, 12.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 7.25, 13.75, 11], "texture": "#0"}, - "down": {"uv": [12.5, 11, 13.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 7.25, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 10.75, + 13.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 7.25, + 12.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 7.25, + 13.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 11, + 13.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_3", - "from": [5, 0, 7.5], - "to": [6.25, 0.25, 10.25], + "from": [ + 5, + 0, + 7.5 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 7.5, 5, 7.75], "texture": "#0"}, - "east": {"uv": [6, 7.5, 6.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10, 6.25, 10.25], "texture": "#0"}, - "west": {"uv": [5, 7.5, 5.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 7.5, 6.25, 10.25], "texture": "#0"}, - "down": {"uv": [5, 10.25, 6.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 7.5, + 5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.5, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.5, + 5.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.5, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.25, + 6.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_4", - "from": [13.75, 0, 7.5], - "to": [14.5, 0.25, 10.75], + "from": [ + 13.75, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "east": {"uv": [14.25, 7.5, 14.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.5, 14.5, 10.75], "texture": "#0"}, - "west": {"uv": [13.75, 7.5, 14, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 7.5, 14.5, 10.75], "texture": "#0"}, - "down": {"uv": [13.75, 10.75, 14.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.5, + 14.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 7.5, + 14, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 7.5, + 14.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 10.75, + 14.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_5", - "from": [4.25, 0, 7.75], - "to": [5, 0.25, 11], + "from": [ + 4.25, + 0, + 7.75 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 7.75, 4.25, 8], "texture": "#0"}, - "east": {"uv": [4.75, 7.75, 5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.75, 5, 11], "texture": "#0"}, - "west": {"uv": [4.25, 7.75, 4.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 7.75, 5, 11], "texture": "#0"}, - "down": {"uv": [4.25, 11, 5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 7.75, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7.75, + 5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.75, + 5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 7.75, + 4.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 7.75, + 5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11, + 5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_6", - "from": [14.5, 0, 7.75], - "to": [14.75, 0.25, 10.5], + "from": [ + 14.5, + 0, + 7.75 + ], + "to": [ + 14.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.75, 7.75, 14.5, 8], "texture": "#0"}, - "east": {"uv": [14.5, 7.75, 14.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 10.25, 14.75, 10.5], "texture": "#0"}, - "west": {"uv": [14.5, 7.75, 14.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.75, 14.75, 10.5], "texture": "#0"}, - "down": {"uv": [14.5, 10.5, 14.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.75, + 14.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10.5, + 14.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_7", - "from": [3.75, 0, 8], - "to": [4.25, 0.25, 11.25], + "from": [ + 3.75, + 0, + 8 + ], + "to": [ + 4.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.25, 8, 3.75, 8.25], "texture": "#0"}, - "east": {"uv": [4, 8, 4.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 11, 4.25, 11.25], "texture": "#0"}, - "west": {"uv": [3.75, 8, 4, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 8, 4.25, 11.25], "texture": "#0"}, - "down": {"uv": [3.75, 11.25, 4.25, 8], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 8, + 3.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 4.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 11, + 4.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 8, + 4, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8, + 4.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 11.25, + 4.25, + 8 + ], + "texture": "#0" + } } }, { "name": "piraruku_8", - "from": [14.75, 0, 8], - "to": [15, 0.25, 8.5], + "from": [ + 14.75, + 0, + 8 + ], + "to": [ + 15, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [15, 8, 14.75, 8.25], "texture": "#0"}, - "east": {"uv": [14.75, 8, 15, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 8.25, 15, 8.5], "texture": "#0"}, - "west": {"uv": [14.75, 8, 15, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8, 15, 8.5], "texture": "#0"}, - "down": {"uv": [14.75, 8.5, 15, 8], "texture": "#0"} + "north": { + "uv": [ + 15, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 8.25, + 15, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 8.5, + 15, + 8 + ], + "texture": "#0" + } } }, { "name": "piraruku_9", - "from": [3.25, 0, 8.25], - "to": [3.75, 0.25, 10.75], + "from": [ + 3.25, + 0, + 8.25 + ], + "to": [ + 3.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.75, 8.25, 3.25, 8.5], "texture": "#0"}, - "east": {"uv": [3.5, 8.25, 3.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.5, 3.75, 10.75], "texture": "#0"}, - "west": {"uv": [3.25, 8.25, 3.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 8.25, 3.75, 10.75], "texture": "#0"}, - "down": {"uv": [3.25, 10.75, 3.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 8.25, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8.25, + 3.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.5, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.25, + 3.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.25, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.75, + 3.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_10", - "from": [15.25, 0, 8.25], - "to": [15.5, 0.25, 10.5], + "from": [ + 15.25, + 0, + 8.25 + ], + "to": [ + 15.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.5, 8.25, 15.25, 8.5], "texture": "#0"}, - "east": {"uv": [15.25, 8.25, 15.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 10.25, 15.5, 10.5], "texture": "#0"}, - "west": {"uv": [15.25, 8.25, 15.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.25, 15.5, 10.5], "texture": "#0"}, - "down": {"uv": [15.25, 10.5, 15.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 8.25, + 15.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 10.25, + 15.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 10.5, + 15.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_11", - "from": [2.75, 0, 8.5], - "to": [3.25, 0.25, 10.5], + "from": [ + 2.75, + 0, + 8.5 + ], + "to": [ + 3.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.25, 8.5, 2.75, 8.75], "texture": "#0"}, - "east": {"uv": [3, 8.5, 3.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10.25, 3.25, 10.5], "texture": "#0"}, - "west": {"uv": [2.75, 8.5, 3, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 8.5, 3.25, 10.5], "texture": "#0"}, - "down": {"uv": [2.75, 10.5, 3.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 8.5, + 2.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 8.5, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.5, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.5, + 3.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_12", - "from": [15, 0, 8.5], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 8.5 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 8.5, 15, 8.75], "texture": "#0"}, - "east": {"uv": [15, 8.5, 15.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#0"}, - "west": {"uv": [15, 8.5, 15.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8.5, 15.25, 10.25], "texture": "#0"}, - "down": {"uv": [15, 10.25, 15.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8.5, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8.5, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.5, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_13", - "from": [15.5, 0, 8.5], - "to": [15.75, 0.25, 10.25], + "from": [ + 15.5, + 0, + 8.5 + ], + "to": [ + 15.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.75, 8.5, 15.5, 8.75], "texture": "#0"}, - "east": {"uv": [15.5, 8.5, 15.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 10, 15.75, 10.25], "texture": "#0"}, - "west": {"uv": [15.5, 8.5, 15.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 8.5, 15.75, 10.25], "texture": "#0"}, - "down": {"uv": [15.5, 10.25, 15.75, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 8.5, + 15.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 8.5, + 15.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 8.5, + 15.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 8.5, + 15.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 10.25, + 15.75, + 8.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_14", - "from": [2.5, 0, 8.75], - "to": [2.75, 0.25, 10.5], + "from": [ + 2.5, + 0, + 8.75 + ], + "to": [ + 2.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.75, 8.75, 2.5, 9], "texture": "#0"}, - "east": {"uv": [2.5, 8.75, 2.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10.25, 2.75, 10.5], "texture": "#0"}, - "west": {"uv": [2.5, 8.75, 2.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.75, 2.75, 10.5], "texture": "#0"}, - "down": {"uv": [2.5, 10.5, 2.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8.75, + 2.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.75, + 2.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.75, + 2.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10.5, + 2.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_15", - "from": [14.75, 0, 8.75], - "to": [15, 0.25, 10], + "from": [ + 14.75, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15, 8.75, 14.75, 9], "texture": "#0"}, - "east": {"uv": [14.75, 8.75, 15, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.75, 15, 10], "texture": "#0"}, - "west": {"uv": [14.75, 8.75, 15, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.75, 15, 10], "texture": "#0"}, - "down": {"uv": [14.75, 10, 15, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.75, + 15, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.75, + 15, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.75, + 15, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10, + 15, + 8.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_16", - "from": [15.75, 0, 8.75], - "to": [16, 0.25, 10], + "from": [ + 15.75, + 0, + 8.75 + ], + "to": [ + 16, + 0.25, + 10 + ], "faces": { - "north": {"uv": [16, 8.75, 15.75, 9], "texture": "#0"}, - "east": {"uv": [15.75, 8.75, 16, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.75, 9.75, 16, 10], "texture": "#0"}, - "west": {"uv": [15.75, 8.75, 16, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.75, 8.75, 16, 10], "texture": "#0"}, - "down": {"uv": [15.75, 10, 16, 8.75], "texture": "#0"} + "north": { + "uv": [ + 16, + 8.75, + 15.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.75, + 8.75, + 16, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.75, + 8.75, + 16, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.75, + 8.75, + 16, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.75, + 10, + 16, + 8.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_17", - "from": [2, 0, 9], - "to": [2.5, 0.25, 10.5], + "from": [ + 2, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.5, 9, 2, 9.25], "texture": "#0"}, - "east": {"uv": [2.25, 9, 2.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10.25, 2.5, 10.5], "texture": "#0"}, - "west": {"uv": [2, 9, 2.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9, 2.5, 10.5], "texture": "#0"}, - "down": {"uv": [2, 10.5, 2.5, 9], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.25, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9, + 2.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.5, + 2.5, + 9 + ], + "texture": "#0" + } } }, { "name": "piraruku_18", - "from": [1.25, 0, 9.25], - "to": [2, 0.25, 10.5], + "from": [ + 1.25, + 0, + 9.25 + ], + "to": [ + 2, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2, 9.25, 1.25, 9.5], "texture": "#0"}, - "east": {"uv": [1.75, 9.25, 2, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 10.25, 2, 10.5], "texture": "#0"}, - "west": {"uv": [1.25, 9.25, 1.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9.25, 2, 10.5], "texture": "#0"}, - "down": {"uv": [1.25, 10.5, 2, 9.25], "texture": "#0"} + "north": { + "uv": [ + 2, + 9.25, + 1.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 2, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 2, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9.25, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 2, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 2, + 9.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_19", - "from": [0.5, 0, 9.5], - "to": [1.25, 0.25, 10.25], + "from": [ + 0.5, + 0, + 9.5 + ], + "to": [ + 1.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.25, 9.5, 0.5, 9.75], "texture": "#0"}, - "east": {"uv": [1, 9.5, 1.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 10, 1.25, 10.25], "texture": "#0"}, - "west": {"uv": [0.5, 9.5, 0.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 9.5, 1.25, 10.25], "texture": "#0"}, - "down": {"uv": [0.5, 10.25, 1.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9.5, + 1.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 10, + 1.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 9.5, + 0.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 1.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 10.25, + 1.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_20", - "from": [0.25, 0, 9.75], - "to": [0.5, 0.25, 10], + "from": [ + 0.25, + 0, + 9.75 + ], + "to": [ + 0.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [0.5, 9.75, 0.25, 10], "texture": "#0"}, - "east": {"uv": [0.25, 9.75, 0.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 9.75, 0.5, 10], "texture": "#0"}, - "west": {"uv": [0.25, 9.75, 0.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 9.75, 0.5, 10], "texture": "#0"}, - "down": {"uv": [0.25, 10, 0.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 0.5, + 9.75, + 0.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 9.75, + 0.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 9.75, + 0.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 9.75, + 0.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 9.75, + 0.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 10, + 0.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_21", - "from": [1, 0, 10.25], - "to": [1.25, 0.25, 10.5], + "from": [ + 1, + 0, + 10.25 + ], + "to": [ + 1.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.25, 10.25, 1, 10.5], "texture": "#0"}, - "east": {"uv": [1, 10.25, 1.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 10.25, 1.25, 10.5], "texture": "#0"}, - "west": {"uv": [1, 10.25, 1.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 10.25, 1.25, 10.5], "texture": "#0"}, - "down": {"uv": [1, 10.5, 1.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 10.25, + 1, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.25, + 1.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10.25, + 1.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 10.25, + 1.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 10.25, + 1.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 10.5, + 1.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_22", - "from": [5, 0, 10.25], - "to": [5.25, 0.25, 10.75], + "from": [ + 5, + 0, + 10.25 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 10.25, 5, 10.5], "texture": "#0"}, - "east": {"uv": [5, 10.25, 5.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.5, 5.25, 10.75], "texture": "#0"}, - "west": {"uv": [5, 10.25, 5.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.25, 5.25, 10.75], "texture": "#0"}, - "down": {"uv": [5, 10.75, 5.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 10.25, + 5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10.25, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.25, + 5.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.25, + 5.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 10.75, + 5.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_23", - "from": [8.25, 0, 10.25], - "to": [9.5, 0.25, 10.75], + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 10.25, 8.25, 10.5], "texture": "#0"}, - "east": {"uv": [9.25, 10.25, 9.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.5, 9.5, 10.75], "texture": "#0"}, - "west": {"uv": [8.25, 10.25, 8.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.25, 9.5, 10.75], "texture": "#0"}, - "down": {"uv": [8.25, 10.75, 9.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 9.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_24", - "from": [10, 0, 10.25], - "to": [12.5, 0.25, 10.5], + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 12.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.5, 10.25, 10, 10.5], "texture": "#0"}, - "east": {"uv": [12.25, 10.25, 12.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 10.25, 12.5, 10.5], "texture": "#0"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 10.25, 12.5, 10.5], "texture": "#0"}, - "down": {"uv": [10, 10.5, 12.5, 10.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 10.25, + 10, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 10.25, + 12.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10.25, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10.25, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10.5, + 12.5, + 10.25 + ], + "texture": "#0" + } } }, { "name": "piraruku_25", - "from": [10.25, 0, 10.5], - "to": [12.5, 0.25, 10.75], + "from": [ + 10.25, + 0, + 10.5 + ], + "to": [ + 12.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12.5, 10.5, 10.25, 10.75], "texture": "#0"}, - "east": {"uv": [12.25, 10.5, 12.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10.5, 12.5, 10.75], "texture": "#0"}, - "west": {"uv": [10.25, 10.5, 10.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 10.5, 12.5, 10.75], "texture": "#0"}, - "down": {"uv": [10.25, 10.75, 12.5, 10.5], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 10.5, + 10.25, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 10.5, + 12.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10.5, + 12.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 10.5, + 10.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 10.5, + 12.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.75, + 12.5, + 10.5 + ], + "texture": "#0" + } } }, { "name": "piraruku_26", - "from": [3.5, 0, 10.75], - "to": [3.75, 0.25, 11], + "from": [ + 3.5, + 0, + 10.75 + ], + "to": [ + 3.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.75, 10.75, 3.5, 11], "texture": "#0"}, - "east": {"uv": [3.5, 10.75, 3.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 10.75, 3.75, 11], "texture": "#0"}, - "west": {"uv": [3.5, 10.75, 3.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 10.75, 3.75, 11], "texture": "#0"}, - "down": {"uv": [3.5, 11, 3.75, 10.75], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 10.75, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10.75, + 3.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 11, + 3.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_27", - "from": [8.5, 0, 10.75], - "to": [9.5, 0.25, 11], + "from": [ + 8.5, + 0, + 10.75 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 10.75, 8.5, 11], "texture": "#0"}, - "east": {"uv": [9.25, 10.75, 9.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.75, 9.5, 11], "texture": "#0"}, - "west": {"uv": [8.5, 10.75, 8.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10.75, 9.5, 11], "texture": "#0"}, - "down": {"uv": [8.5, 11, 9.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.75, + 8.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.75, + 9.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 11, + 9.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_28", - "from": [10.75, 0, 10.75], - "to": [12.5, 0.25, 11], + "from": [ + 10.75, + 0, + 10.75 + ], + "to": [ + 12.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [12.5, 10.75, 10.75, 11], "texture": "#0"}, - "east": {"uv": [12.25, 10.75, 12.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 10.75, 12.5, 11], "texture": "#0"}, - "west": {"uv": [10.75, 10.75, 11, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 10.75, 12.5, 11], "texture": "#0"}, - "down": {"uv": [10.75, 11, 12.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 10.75, + 10.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 10.75, + 12.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 10.75, + 12.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 10.75, + 11, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 10.75, + 12.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 11, + 12.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_29", - "from": [13.75, 0, 10.75], - "to": [14.25, 0.25, 11], + "from": [ + 13.75, + 0, + 10.75 + ], + "to": [ + 14.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.25, 10.75, 13.75, 11], "texture": "#0"}, - "east": {"uv": [14, 10.75, 14.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 10.75, 14.25, 11], "texture": "#0"}, - "west": {"uv": [13.75, 10.75, 14, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 10.75, 14.25, 11], "texture": "#0"}, - "down": {"uv": [13.75, 11, 14.25, 10.75], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 10.75, + 13.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 10.75, + 14.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 10.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 10.75, + 14, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 10.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 11, + 14.25, + 10.75 + ], + "texture": "#0" + } } }, { "name": "piraruku_30", - "from": [4.25, 0, 11], - "to": [4.75, 0.25, 11.25], + "from": [ + 4.25, + 0, + 11 + ], + "to": [ + 4.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.75, 11, 4.25, 11.25], "texture": "#0"}, - "east": {"uv": [4.5, 11, 4.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 11, 4.75, 11.25], "texture": "#0"}, - "west": {"uv": [4.25, 11, 4.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 11, 4.75, 11.25], "texture": "#0"}, - "down": {"uv": [4.25, 11.25, 4.75, 11], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 11, + 4.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 4.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 11, + 4.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 11, + 4.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11.25, + 4.75, + 11 + ], + "texture": "#0" + } } }, { "name": "piraruku_31", - "from": [8.75, 0, 11], - "to": [9.25, 0.25, 11.25], + "from": [ + 8.75, + 0, + 11 + ], + "to": [ + 9.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.25, 11, 8.75, 11.25], "texture": "#0"}, - "east": {"uv": [9, 11, 9.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11, 9.25, 11.25], "texture": "#0"}, - "west": {"uv": [8.75, 11, 9, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 11, 9.25, 11.25], "texture": "#0"}, - "down": {"uv": [8.75, 11.25, 9.25, 11], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11, + 9.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 11, + 9.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11.25, + 9.25, + 11 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13.25], - "scale": [1.6, 1.6, 1.6] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13.25 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "piraruku", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/raigyo.json b/pack/assets/minecraft/models/fish/raigyo.json index e78960e3..c1855375 100644 --- a/pack/assets/minecraft/models/fish/raigyo.json +++ b/pack/assets/minecraft/models/fish/raigyo.json @@ -2,501 +2,2608 @@ "__name": "ライギョ", "credit": "Made with Blockbench", "textures": { - "1": "fish/raigyo", - "particle": "fish/raigyo" + "1": "item/fish/raigyo", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "raigyo_0", - "from": [6.5, 0, 5.25], - "to": [9.5, 0.25, 9.75], + "from": [ + 6.5, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.5, 5.25, 6.5, 5.5], "texture": "#1"}, - "east": {"uv": [9.25, 5.25, 9.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 9.5, 9.75], "texture": "#1"}, - "west": {"uv": [6.5, 5.25, 6.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 5.25, 9.5, 9.75], "texture": "#1"}, - "down": {"uv": [6.5, 9.75, 9.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 5.25, + 6.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 9.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 5.25, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 5.25, + 9.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 9.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_1", - "from": [5.75, 0, 5.5], - "to": [6.5, 0.25, 9.25], + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.5, 5.5, 5.75, 5.75], "texture": "#1"}, - "east": {"uv": [6.25, 5.5, 6.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 9, 6.5, 9.25], "texture": "#1"}, - "west": {"uv": [5.75, 5.5, 6, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 5.5, 6.5, 9.25], "texture": "#1"}, - "down": {"uv": [5.75, 9.25, 6.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 5.5, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 9, + 6.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 9.25, + 6.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "raigyo_2", - "from": [9.5, 0, 5.5], - "to": [11.5, 0.25, 10.25], + "from": [ + 9.5, + 0, + 5.5 + ], + "to": [ + 11.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.5, 5.5, 9.5, 5.75], "texture": "#1"}, - "east": {"uv": [11.25, 5.5, 11.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 10, 11.5, 10.25], "texture": "#1"}, - "west": {"uv": [9.5, 5.5, 9.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 5.5, 11.5, 10.25], "texture": "#1"}, - "down": {"uv": [9.5, 10.25, 11.5, 5.5], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 5.5, + 9.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 5.5, + 11.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10, + 11.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 5.5, + 9.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 5.5, + 11.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 10.25, + 11.5, + 5.5 + ], + "texture": "#1" + } } }, { "name": "raigyo_3", - "from": [5.5, 0, 5.75], - "to": [5.75, 0.25, 9.75], + "from": [ + 5.5, + 0, + 5.75 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.75, 5.75, 5.5, 6], "texture": "#1"}, - "east": {"uv": [5.5, 5.75, 5.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 9.5, 5.75, 9.75], "texture": "#1"}, - "west": {"uv": [5.5, 5.75, 5.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 5.75, 5.75, 9.75], "texture": "#1"}, - "down": {"uv": [5.5, 9.75, 5.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 5.75, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5.75, + 5.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 5.75, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 9.75, + 5.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_4", - "from": [11.5, 0, 5.75], - "to": [13, 0.25, 10], + "from": [ + 11.5, + 0, + 5.75 + ], + "to": [ + 13, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13, 5.75, 11.5, 6], "texture": "#1"}, - "east": {"uv": [12.75, 5.75, 13, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 9.75, 13, 10], "texture": "#1"}, - "west": {"uv": [11.5, 5.75, 11.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 5.75, 13, 10], "texture": "#1"}, - "down": {"uv": [11.5, 10, 13, 5.75], "texture": "#1"} + "north": { + "uv": [ + 13, + 5.75, + 11.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 5.75, + 13, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 9.75, + 13, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 5.75, + 11.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 5.75, + 13, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 10, + 13, + 5.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_5", - "from": [5.25, 0, 6], - "to": [5.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 6 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 6, 5.25, 6.25], "texture": "#1"}, - "east": {"uv": [5.25, 6, 5.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#1"}, - "west": {"uv": [5.25, 6, 5.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 6, 5.5, 9.75], "texture": "#1"}, - "down": {"uv": [5.25, 9.75, 5.5, 6], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 6, + 5.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 6, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 6, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 6, + 5.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 6 + ], + "texture": "#1" + } } }, { "name": "raigyo_6", - "from": [13, 0, 6], - "to": [13.5, 0.25, 6.75], + "from": [ + 13, + 0, + 6 + ], + "to": [ + 13.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [13.5, 6, 13, 6.25], "texture": "#1"}, - "east": {"uv": [13.25, 6, 13.5, 6.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 6.5, 13.5, 6.75], "texture": "#1"}, - "west": {"uv": [13, 6, 13.25, 6.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6, 13.5, 6.75], "texture": "#1"}, - "down": {"uv": [13, 6.75, 13.5, 6], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 6, + 13, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 6, + 13.5, + 6.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 6.5, + 13.5, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6, + 13.25, + 6.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6, + 13.5, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 6.75, + 13.5, + 6 + ], + "texture": "#1" + } } }, { "name": "raigyo_7", - "from": [5, 0, 6.25], - "to": [5.25, 0.25, 9.5], + "from": [ + 5, + 0, + 6.25 + ], + "to": [ + 5.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5.25, 6.25, 5, 6.5], "texture": "#1"}, - "east": {"uv": [5, 6.25, 5.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 9.25, 5.25, 9.5], "texture": "#1"}, - "west": {"uv": [5, 6.25, 5.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 6.25, 5.25, 9.5], "texture": "#1"}, - "down": {"uv": [5, 9.5, 5.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 6.25, + 5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 6.25, + 5.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 6.25, + 5.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 9.5, + 5.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_8", - "from": [13.5, 0, 6.25], - "to": [13.75, 0.25, 6.5], + "from": [ + 13.5, + 0, + 6.25 + ], + "to": [ + 13.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [13.75, 6.25, 13.5, 6.5], "texture": "#1"}, - "east": {"uv": [13.5, 6.25, 13.75, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 6.25, 13.75, 6.5], "texture": "#1"}, - "west": {"uv": [13.5, 6.25, 13.75, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 6.25, 13.75, 6.5], "texture": "#1"}, - "down": {"uv": [13.5, 6.5, 13.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 13.75, + 6.25, + 13.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 6.25, + 13.75, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 6.25, + 13.75, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 6.25, + 13.75, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 6.25, + 13.75, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 6.5, + 13.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_9", - "from": [4.25, 0, 6.5], - "to": [5, 0.25, 9.5], + "from": [ + 4.25, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [5, 6.5, 4.25, 6.75], "texture": "#1"}, - "east": {"uv": [4.75, 6.5, 5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 9.25, 5, 9.5], "texture": "#1"}, - "west": {"uv": [4.25, 6.5, 4.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 6.5, 5, 9.5], "texture": "#1"}, - "down": {"uv": [4.25, 9.5, 5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 5, + 6.5, + 4.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 6.5, + 4.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 6.5, + 5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 9.5, + 5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "raigyo_10", - "from": [3.25, 0, 6.75], - "to": [4.25, 0.25, 9.25], + "from": [ + 3.25, + 0, + 6.75 + ], + "to": [ + 4.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [4.25, 6.75, 3.25, 7], "texture": "#1"}, - "east": {"uv": [4, 6.75, 4.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 9, 4.25, 9.25], "texture": "#1"}, - "west": {"uv": [3.25, 6.75, 3.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 6.75, 4.25, 9.25], "texture": "#1"}, - "down": {"uv": [3.25, 9.25, 4.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 6.75, + 3.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 6.75, + 4.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 9, + 4.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 6.75, + 3.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 6.75, + 4.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 9.25, + 4.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_11", - "from": [13, 0, 6.75], - "to": [13.25, 0.25, 10], + "from": [ + 13, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.25, 6.75, 13, 7], "texture": "#1"}, - "east": {"uv": [13, 6.75, 13.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 9.75, 13.25, 10], "texture": "#1"}, - "west": {"uv": [13, 6.75, 13.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6.75, 13.25, 10], "texture": "#1"}, - "down": {"uv": [13, 10, 13.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 6.75, + 13, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6.75, + 13.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6.75, + 13.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 10, + 13.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_12", - "from": [14.25, 0, 6.75], - "to": [15.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.5, 6.75, 14.25, 7], "texture": "#1"}, - "east": {"uv": [15.25, 6.75, 15.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.25, 9, 15.5, 9.25], "texture": "#1"}, - "west": {"uv": [14.25, 6.75, 14.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.25, 6.75, 15.5, 9.25], "texture": "#1"}, - "down": {"uv": [14.25, 9.25, 15.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 6.75, + 14.25, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 6.75, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.25, + 9, + 15.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 15.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 15.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_13", - "from": [2.5, 0, 7], - "to": [3.25, 0.25, 9.25], + "from": [ + 2.5, + 0, + 7 + ], + "to": [ + 3.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3.25, 7, 2.5, 7.25], "texture": "#1"}, - "east": {"uv": [3, 7, 3.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.5, 9, 3.25, 9.25], "texture": "#1"}, - "west": {"uv": [2.5, 7, 2.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.5, 7, 3.25, 9.25], "texture": "#1"}, - "down": {"uv": [2.5, 9.25, 3.25, 7], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 7, + 2.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 7, + 3.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9, + 3.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 7, + 2.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 7, + 3.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.25, + 3.25, + 7 + ], + "texture": "#1" + } } }, { "name": "raigyo_14", - "from": [13.25, 0, 7], - "to": [14.25, 0.25, 8.75], + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 7, 13.25, 7.25], "texture": "#1"}, - "east": {"uv": [14, 7, 14.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 8.5, 14.25, 8.75], "texture": "#1"}, - "west": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 7, 14.25, 8.75], "texture": "#1"}, - "down": {"uv": [13.25, 8.75, 14.25, 7], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 7, + 13.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 14.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 7, + 14.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 14.25, + 7 + ], + "texture": "#1" + } } }, { "name": "raigyo_15", - "from": [15.5, 0, 7], - "to": [15.75, 0.25, 9.25], + "from": [ + 15.5, + 0, + 7 + ], + "to": [ + 15.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.75, 7, 15.5, 7.25], "texture": "#1"}, - "east": {"uv": [15.5, 7, 15.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 9, 15.75, 9.25], "texture": "#1"}, - "west": {"uv": [15.5, 7, 15.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 7, 15.75, 9.25], "texture": "#1"}, - "down": {"uv": [15.5, 9.25, 15.75, 7], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 7, + 15.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 7, + 15.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 9, + 15.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 7, + 15.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 7, + 15.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 9.25, + 15.75, + 7 + ], + "texture": "#1" + } } }, { "name": "raigyo_16", - "from": [2, 0, 7.25], - "to": [2.5, 0.25, 9.25], + "from": [ + 2, + 0, + 7.25 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 7.25, 2, 7.5], "texture": "#1"}, - "east": {"uv": [2.25, 7.25, 2.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 9, 2.5, 9.25], "texture": "#1"}, - "west": {"uv": [2, 7.25, 2.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 7.25, 2.5, 9.25], "texture": "#1"}, - "down": {"uv": [2, 9.25, 2.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 2.5, + 7.25, + 2, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 7.25, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7.25, + 2.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7.25, + 2.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 9.25, + 2.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_17", - "from": [15.75, 0, 7.25], - "to": [16, 0.25, 9], + "from": [ + 15.75, + 0, + 7.25 + ], + "to": [ + 16, + 0.25, + 9 + ], "faces": { - "north": {"uv": [16, 7.25, 15.75, 7.5], "texture": "#1"}, - "east": {"uv": [15.75, 7.25, 16, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.75, 8.75, 16, 9], "texture": "#1"}, - "west": {"uv": [15.75, 7.25, 16, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.75, 7.25, 16, 9], "texture": "#1"}, - "down": {"uv": [15.75, 9, 16, 7.25], "texture": "#1"} + "north": { + "uv": [ + 16, + 7.25, + 15.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.75, + 7.25, + 16, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.75, + 8.75, + 16, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.75, + 7.25, + 16, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.75, + 7.25, + 16, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.75, + 9, + 16, + 7.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_18", - "from": [0.75, 0, 7.5], - "to": [2, 0.25, 8.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 2, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2, 7.5, 0.75, 7.75], "texture": "#1"}, - "east": {"uv": [1.75, 7.5, 2, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 8.5, 2, 8.75], "texture": "#1"}, - "west": {"uv": [0.75, 7.5, 1, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 7.5, 2, 8.75], "texture": "#1"}, - "down": {"uv": [0.75, 8.75, 2, 7.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 7.5, + 0.75, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 7.5, + 2, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 2, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 2, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 2, + 7.5 + ], + "texture": "#1" + } } }, { "name": "raigyo_19", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 8.75], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#1"}, - "east": {"uv": [0.5, 7.75, 0.75, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 8.5, 0.75, 8.75], "texture": "#1"}, - "west": {"uv": [0.5, 7.75, 0.75, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.75, 0.75, 8.75], "texture": "#1"}, - "down": {"uv": [0.5, 8.75, 0.75, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 8.75, + 0.75, + 7.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_20", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 8.5], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#1"}, - "east": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#1"}, - "west": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 8, 0.5, 8.5], "texture": "#1"}, - "down": {"uv": [0.25, 8.5, 0.5, 8], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8 + ], + "texture": "#1" + } } }, { "name": "raigyo_21", - "from": [1, 0, 8.75], - "to": [2, 0.25, 9], + "from": [ + 1, + 0, + 8.75 + ], + "to": [ + 2, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2, 8.75, 1, 9], "texture": "#1"}, - "east": {"uv": [1.75, 8.75, 2, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.75, 2, 9], "texture": "#1"}, - "west": {"uv": [1, 8.75, 1.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8.75, 2, 9], "texture": "#1"}, - "down": {"uv": [1, 9, 2, 8.75], "texture": "#1"} + "north": { + "uv": [ + 2, + 8.75, + 1, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 8.75, + 2, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.75, + 2, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8.75, + 2, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9, + 2, + 8.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_22", - "from": [13.75, 0, 8.75], - "to": [14.25, 0.25, 9], + "from": [ + 13.75, + 0, + 8.75 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 8.75, 13.75, 9], "texture": "#1"}, - "east": {"uv": [14, 8.75, 14.25, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.75, 8.75, 14.25, 9], "texture": "#1"}, - "west": {"uv": [13.75, 8.75, 14, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.75, 8.75, 14.25, 9], "texture": "#1"}, - "down": {"uv": [13.75, 9, 14.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 8.75, + 13.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.75, + 8.75, + 14.25, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.75, + 8.75, + 14, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.75, + 8.75, + 14.25, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.75, + 9, + 14.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_23", - "from": [1.5, 0, 9], - "to": [2, 0.25, 9.25], + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 9, 1.5, 9.25], "texture": "#1"}, - "east": {"uv": [1.75, 9, 2, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9, 2, 9.25], "texture": "#1"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 9, 2, 9.25], "texture": "#1"}, - "down": {"uv": [1.5, 9.25, 2, 9], "texture": "#1"} + "north": { + "uv": [ + 2, + 9, + 1.5, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 9, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2, + 9 + ], + "texture": "#1" + } } }, { "name": "raigyo_24", - "from": [14, 0, 9], - "to": [14.25, 0.25, 9.25], + "from": [ + 14, + 0, + 9 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.25, 9, 14, 9.25], "texture": "#1"}, - "east": {"uv": [14, 9, 14.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9, 14.25, 9.25], "texture": "#1"}, - "west": {"uv": [14, 9, 14.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 9, 14.25, 9.25], "texture": "#1"}, - "down": {"uv": [14, 9.25, 14.25, 9], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 9, + 14, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.25, + 9 + ], + "texture": "#1" + } } }, { "name": "raigyo_25", - "from": [13.25, 0, 9.25], - "to": [13.5, 0.25, 9.75], + "from": [ + 13.25, + 0, + 9.25 + ], + "to": [ + 13.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.5, 9.25, 13.25, 9.5], "texture": "#1"}, - "east": {"uv": [13.25, 9.25, 13.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#1"}, - "west": {"uv": [13.25, 9.25, 13.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 9.25, 13.5, 9.75], "texture": "#1"}, - "down": {"uv": [13.25, 9.75, 13.5, 9.25], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 9.25, + 13.25, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 9.75, + 13.5, + 9.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_26", - "from": [14.5, 0, 9.25], - "to": [15.5, 0.25, 9.5], + "from": [ + 14.5, + 0, + 9.25 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 9.25, 14.5, 9.5], "texture": "#1"}, - "east": {"uv": [15.25, 9.25, 15.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.25, 15.5, 9.5], "texture": "#1"}, - "west": {"uv": [14.5, 9.25, 14.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 9.25, 15.5, 9.5], "texture": "#1"}, - "down": {"uv": [14.5, 9.5, 15.5, 9.25], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 9.25, + 14.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 15.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 9.25, + 15.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 15.5, + 9.25 + ], + "texture": "#1" + } } }, { "name": "raigyo_27", - "from": [5.75, 0, 9.5], - "to": [6.5, 0.25, 9.75], + "from": [ + 5.75, + 0, + 9.5 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 9.5, 5.75, 9.75], "texture": "#1"}, - "east": {"uv": [6.25, 9.5, 6.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 9.5, 6.5, 9.75], "texture": "#1"}, - "west": {"uv": [5.75, 9.5, 6, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 9.5, 6.5, 9.75], "texture": "#1"}, - "down": {"uv": [5.75, 9.75, 6.5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 9.5, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 9.75, + 6.5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "raigyo_28", - "from": [6, 0, 9.75], - "to": [7.5, 0.25, 10], + "from": [ + 6, + 0, + 9.75 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 9.75, 6, 10], "texture": "#1"}, - "east": {"uv": [7.25, 9.75, 7.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 9.75, 7.5, 10], "texture": "#1"}, - "west": {"uv": [6, 9.75, 6.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 9.75, 7.5, 10], "texture": "#1"}, - "down": {"uv": [6, 10, 7.5, 9.75], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 9.75, + 6, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 9.75, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 9.75, + 7.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.75, + 7.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 10, + 7.5, + 9.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_29", - "from": [8, 0, 9.75], - "to": [9.5, 0.25, 10], + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 9.75, 8, 10], "texture": "#1"}, - "east": {"uv": [9.25, 9.75, 9.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9.75, 9.5, 10], "texture": "#1"}, - "west": {"uv": [8, 9.75, 8.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 9.75, 9.5, 10], "texture": "#1"}, - "down": {"uv": [8, 10, 9.5, 9.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 9.75, + 8, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 9.75, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9.75, + 9.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9.75, + 9.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 9.5, + 9.75 + ], + "texture": "#1" + } } }, { "name": "raigyo_30", - "from": [6.25, 0, 10], - "to": [7.75, 0.25, 10.25], + "from": [ + 6.25, + 0, + 10 + ], + "to": [ + 7.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.75, 10, 6.25, 10.25], "texture": "#1"}, - "east": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 10, 7.75, 10.25], "texture": "#1"}, - "west": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 10, 7.75, 10.25], "texture": "#1"}, - "down": {"uv": [6.25, 10.25, 7.75, 10], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 10, + 6.25, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 10, + 7.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 10, + 7.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 7.75, + 10 + ], + "texture": "#1" + } } }, { "name": "raigyo_31", - "from": [8.25, 0, 10], - "to": [9.5, 0.25, 10.25], + "from": [ + 8.25, + 0, + 10 + ], + "to": [ + 9.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.5, 10, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [9.25, 10, 9.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 10, 9.5, 10.25], "texture": "#1"}, - "west": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 10, 9.5, 10.25], "texture": "#1"}, - "down": {"uv": [8.25, 10.25, 9.5, 10], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 10, + 8.25, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 10, + 9.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 10, + 9.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 10.25, + 9.5, + 10 + ], + "texture": "#1" + } } }, { "name": "raigyo_32", - "from": [11.5, 0, 10], - "to": [12.25, 0.25, 10.25], + "from": [ + 11.5, + 0, + 10 + ], + "to": [ + 12.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.25, 10, 11.5, 10.25], "texture": "#1"}, - "east": {"uv": [12, 10, 12.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 10, 12.25, 10.25], "texture": "#1"}, - "west": {"uv": [11.5, 10, 11.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 10, 12.25, 10.25], "texture": "#1"}, - "down": {"uv": [11.5, 10.25, 12.25, 10], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 10, + 11.5, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 10, + 12.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 10, + 12.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 10.25, + 12.25, + 10 + ], + "texture": "#1" + } } }, { "name": "raigyo_33", - "from": [6.5, 0, 10.25], - "to": [7.5, 0.25, 10.5], + "from": [ + 6.5, + 0, + 10.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 10.25, 6.5, 10.5], "texture": "#1"}, - "east": {"uv": [7.25, 10.25, 7.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 10.25, 7.5, 10.5], "texture": "#1"}, - "west": {"uv": [6.5, 10.25, 6.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 10.25, 7.5, 10.5], "texture": "#1"}, - "down": {"uv": [6.5, 10.5, 7.5, 10.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 10.25, + 6.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 7.5, + 10.25 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 9, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 9, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 9, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 9, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 9, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 9, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 9, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 9, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 16.75, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 16.75, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-3.25, 16.75, 28.5], - "scale": [3.31, 3.31, 3.31] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -3.25, + 16.75, + 28.5 + ], + "scale": [ + 3.31, + 3.31, + 3.31 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "raigyo", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/rainbowfish.json b/pack/assets/minecraft/models/fish/rainbowfish.json index 3281cf1a..8fc9d91b 100644 --- a/pack/assets/minecraft/models/fish/rainbowfish.json +++ b/pack/assets/minecraft/models/fish/rainbowfish.json @@ -2,630 +2,3327 @@ "__name": "レインボーフィッシュ", "credit": "Made with Blockbench", "textures": { - "0": "fish/rainbowfish", - "particle": "fish/rainbowfish" + "0": "item/fish/rainbowfish", + "particle": "item/fish/rainbowfish" }, "elements": [ { "name": "rainbowfish_0", - "from": [7.5, 0, 4.5], - "to": [8.5, 0.25, 10.5], + "from": [ + 7.5, + 0, + 4.5 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 4.5, 7.5, 4.75], "texture": "#0"}, - "east": {"uv": [8.25, 4.5, 8.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10.25, 8.5, 10.5], "texture": "#0"}, - "west": {"uv": [7.5, 4.5, 7.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 4.5, 8.5, 10.5], "texture": "#0"}, - "down": {"uv": [7.5, 10.5, 8.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4.5, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.5, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 8.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_1", - "from": [6.75, 0, 4.75], - "to": [7.5, 0.25, 10.75], + "from": [ + 6.75, + 0, + 4.75 + ], + "to": [ + 7.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [7.5, 4.75, 6.75, 5], "texture": "#0"}, - "east": {"uv": [7.25, 4.75, 7.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 10.5, 7.5, 10.75], "texture": "#0"}, - "west": {"uv": [6.75, 4.75, 7, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 4.75, 7.5, 10.75], "texture": "#0"}, - "down": {"uv": [6.75, 10.75, 7.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4.75, + 7.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 10.5, + 7.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.75, + 7, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 4.75, + 7.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10.75, + 7.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_2", - "from": [8.5, 0, 4.75], - "to": [11, 0.25, 10.25], + "from": [ + 8.5, + 0, + 4.75 + ], + "to": [ + 11, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11, 4.75, 8.5, 5], "texture": "#0"}, - "east": {"uv": [10.75, 4.75, 11, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10, 11, 10.25], "texture": "#0"}, - "west": {"uv": [8.5, 4.75, 8.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4.75, 11, 10.25], "texture": "#0"}, - "down": {"uv": [8.5, 10.25, 11, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 4.75, + 8.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 4.75, + 11, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 11, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4.75, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4.75, + 11, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 11, + 4.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_3", - "from": [14.25, 0, 4.75], - "to": [15.25, 0.25, 6.75], + "from": [ + 14.25, + 0, + 4.75 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 4.75, 14.25, 5], "texture": "#0"}, - "east": {"uv": [15, 4.75, 15.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 6.5, 15.25, 6.75], "texture": "#0"}, - "west": {"uv": [14.25, 4.75, 14.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 4.75, 15.25, 6.75], "texture": "#0"}, - "down": {"uv": [14.25, 6.75, 15.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 4.75, + 14.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 4.75, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 6.5, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 4.75, + 14.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 4.75, + 15.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 6.75, + 15.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_4", - "from": [6.5, 0, 5], - "to": [6.75, 0.25, 10.5], + "from": [ + 6.5, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 5, 6.5, 5.25], "texture": "#0"}, - "east": {"uv": [6.5, 5, 6.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#0"}, - "west": {"uv": [6.5, 5, 6.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5, 6.75, 10.5], "texture": "#0"}, - "down": {"uv": [6.5, 10.5, 6.75, 5], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5, + 6.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6.75, + 5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_5", - "from": [11, 0, 5], - "to": [11.75, 0.25, 6], + "from": [ + 11, + 0, + 5 + ], + "to": [ + 11.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11.75, 5, 11, 5.25], "texture": "#0"}, - "east": {"uv": [11.5, 5, 11.75, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 5.75, 11.75, 6], "texture": "#0"}, - "west": {"uv": [11, 5, 11.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 5, 11.75, 6], "texture": "#0"}, - "down": {"uv": [11, 6, 11.75, 5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 5, + 11, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 5, + 11.75, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.75, + 11.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5, + 11.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5, + 11.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6, + 11.75, + 5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_6", - "from": [13.75, 0, 5], - "to": [14.25, 0.25, 9.5], + "from": [ + 13.75, + 0, + 5 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 5, 13.75, 5.25], "texture": "#0"}, - "east": {"uv": [14, 5, 14.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.25, 14.25, 9.5], "texture": "#0"}, - "west": {"uv": [13.75, 5, 14, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5, 14.25, 9.5], "texture": "#0"}, - "down": {"uv": [13.75, 9.5, 14.25, 5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 5, + 13.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 5, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14.25, + 5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_7", - "from": [15.25, 0, 5], - "to": [15.5, 0.25, 6], + "from": [ + 15.25, + 0, + 5 + ], + "to": [ + 15.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.5, 5, 15.25, 5.25], "texture": "#0"}, - "east": {"uv": [15.25, 5, 15.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 5.75, 15.5, 6], "texture": "#0"}, - "west": {"uv": [15.25, 5, 15.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 5, 15.5, 6], "texture": "#0"}, - "down": {"uv": [15.25, 6, 15.5, 5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 5, + 15.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 5, + 15.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 5, + 15.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 5, + 15.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 6, + 15.5, + 5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_8", - "from": [5.75, 0, 5.25], - "to": [6.5, 0.25, 9.25], + "from": [ + 5.75, + 0, + 5.25 + ], + "to": [ + 6.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6.5, 5.25, 5.75, 5.5], "texture": "#0"}, - "east": {"uv": [6.25, 5.25, 6.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9, 6.5, 9.25], "texture": "#0"}, - "west": {"uv": [5.75, 5.25, 6, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 5.25, 6.5, 9.25], "texture": "#0"}, - "down": {"uv": [5.75, 9.25, 6.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 6.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.25, + 6, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5.25, + 6.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.25, + 6.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_9", - "from": [11.75, 0, 5.25], - "to": [12, 0.25, 5.75], + "from": [ + 11.75, + 0, + 5.25 + ], + "to": [ + 12, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [12, 5.25, 11.75, 5.5], "texture": "#0"}, - "east": {"uv": [11.75, 5.25, 12, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 5.5, 12, 5.75], "texture": "#0"}, - "west": {"uv": [11.75, 5.25, 12, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 5.25, 12, 5.75], "texture": "#0"}, - "down": {"uv": [11.75, 5.75, 12, 5.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.25, + 11.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.25, + 12, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 5.5, + 12, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 5.25, + 12, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 5.25, + 12, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 5.75, + 12, + 5.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_10", - "from": [13.25, 0, 5.25], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.25, + 0, + 5.25 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 5.25, 13.25, 5.5], "texture": "#0"}, - "east": {"uv": [13.5, 5.25, 13.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9, 13.75, 9.25], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 13.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 5.25, 13.75, 9.25], "texture": "#0"}, - "down": {"uv": [13.25, 9.25, 13.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 5.25, + 13.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 5.25, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 5.25, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 5.25, + 13.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_11", - "from": [4.25, 0, 5.5], - "to": [5.75, 0.25, 10.25], + "from": [ + 4.25, + 0, + 5.5 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.75, 5.5, 4.25, 5.75], "texture": "#0"}, - "east": {"uv": [5.5, 5.5, 5.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10, 5.75, 10.25], "texture": "#0"}, - "west": {"uv": [4.25, 5.5, 4.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 5.5, 5.75, 10.25], "texture": "#0"}, - "down": {"uv": [4.25, 10.25, 5.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 5.5, + 4.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5.5, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 5.5, + 4.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 5.5, + 5.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10.25, + 5.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_12", - "from": [13, 0, 5.5], - "to": [13.25, 0.25, 9], + "from": [ + 13, + 0, + 5.5 + ], + "to": [ + 13.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.25, 5.5, 13, 5.75], "texture": "#0"}, - "east": {"uv": [13, 5.5, 13.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.75, 13.25, 9], "texture": "#0"}, - "west": {"uv": [13, 5.5, 13.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 5.5, 13.25, 9], "texture": "#0"}, - "down": {"uv": [13, 9, 13.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 5.5, + 13, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 5.5, + 13.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.75, + 13.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5.5, + 13.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 5.5, + 13.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 9, + 13.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_13", - "from": [3.5, 0, 5.75], - "to": [4.25, 0.25, 9.5], + "from": [ + 3.5, + 0, + 5.75 + ], + "to": [ + 4.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4.25, 5.75, 3.5, 6], "texture": "#0"}, - "east": {"uv": [4, 5.75, 4.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.25, 4.25, 9.5], "texture": "#0"}, - "west": {"uv": [3.5, 5.75, 3.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 5.75, 4.25, 9.5], "texture": "#0"}, - "down": {"uv": [3.5, 9.5, 4.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 5.75, + 3.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5.75, + 4.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.25, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 3.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.5, + 4.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_14", - "from": [12.75, 0, 5.75], - "to": [13, 0.25, 8.75], + "from": [ + 12.75, + 0, + 5.75 + ], + "to": [ + 13, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13, 5.75, 12.75, 6], "texture": "#0"}, - "east": {"uv": [12.75, 5.75, 13, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 8.5, 13, 8.75], "texture": "#0"}, - "west": {"uv": [12.75, 5.75, 13, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 5.75, 13, 8.75], "texture": "#0"}, - "down": {"uv": [12.75, 8.75, 13, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 5.75, + 12.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 5.75, + 13, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 5.75, + 13, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 5.75, + 13, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 8.75, + 13, + 5.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_15", - "from": [2.75, 0, 6], - "to": [3.5, 0.25, 9.5], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.5, 6, 2.75, 6.25], "texture": "#0"}, - "east": {"uv": [3.25, 6, 3.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 9.25, 3.5, 9.5], "texture": "#0"}, - "west": {"uv": [2.75, 6, 3, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6, 3.5, 9.5], "texture": "#0"}, - "down": {"uv": [2.75, 9.5, 3.5, 6], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 3.5, + 6 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_16", - "from": [11, 0, 6], - "to": [11.5, 0.25, 6.25], + "from": [ + 11, + 0, + 6 + ], + "to": [ + 11.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.5, 6, 11, 6.25], "texture": "#0"}, - "east": {"uv": [11.25, 6, 11.5, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 6, 11.5, 6.25], "texture": "#0"}, - "west": {"uv": [11, 6, 11.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6, 11.5, 6.25], "texture": "#0"}, - "down": {"uv": [11, 6.25, 11.5, 6], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6, + 11, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6, + 11.5, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6, + 11.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 11.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 6.25, + 11.5, + 6 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_17", - "from": [12.5, 0, 6], - "to": [12.75, 0.25, 8.5], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.75, 6, 12.5, 6.25], "texture": "#0"}, - "east": {"uv": [12.5, 6, 12.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.25, 12.75, 8.5], "texture": "#0"}, - "west": {"uv": [12.5, 6, 12.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6, 12.75, 8.5], "texture": "#0"}, - "down": {"uv": [12.5, 8.5, 12.75, 6], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 6, + 12.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.25, + 12.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6, + 12.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.5, + 12.75, + 6 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_18", - "from": [2, 0, 6.25], - "to": [2.75, 0.25, 9], + "from": [ + 2, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.75, 6.25, 2, 6.5], "texture": "#0"}, - "east": {"uv": [2.5, 6.25, 2.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8.75, 2.75, 9], "texture": "#0"}, - "west": {"uv": [2, 6.25, 2.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 6.25, 2.75, 9], "texture": "#0"}, - "down": {"uv": [2, 9, 2.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 6.25, + 2, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.75, + 2.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 6.25, + 2.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6.25, + 2.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9, + 2.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_19", - "from": [11, 0, 6.25], - "to": [11.25, 0.25, 10], + "from": [ + 11, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.25, 6.25, 11, 6.5], "texture": "#0"}, - "east": {"uv": [11, 6.25, 11.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 9.75, 11.25, 10], "texture": "#0"}, - "west": {"uv": [11, 6.25, 11.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 6.25, 11.25, 10], "texture": "#0"}, - "down": {"uv": [11, 10, 11.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 6.25, + 11.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6.25, + 11.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10, + 11.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_20", - "from": [12.25, 0, 6.25], - "to": [12.5, 0.25, 8.25], + "from": [ + 12.25, + 0, + 6.25 + ], + "to": [ + 12.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12.5, 6.25, 12.25, 6.5], "texture": "#0"}, - "east": {"uv": [12.25, 6.25, 12.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 8, 12.5, 8.25], "texture": "#0"}, - "west": {"uv": [12.25, 6.25, 12.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 6.25, 12.5, 8.25], "texture": "#0"}, - "down": {"uv": [12.25, 8.25, 12.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 6.25, + 12.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 8, + 12.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 6.25, + 12.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 8.25, + 12.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_21", - "from": [1.5, 0, 6.5], - "to": [2, 0.25, 8.5], + "from": [ + 1.5, + 0, + 6.5 + ], + "to": [ + 2, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [2, 6.5, 1.5, 6.75], "texture": "#0"}, - "east": {"uv": [1.75, 6.5, 2, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 8.25, 2, 8.5], "texture": "#0"}, - "west": {"uv": [1.5, 6.5, 1.75, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.5, 2, 8.5], "texture": "#0"}, - "down": {"uv": [1.5, 8.5, 2, 6.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 2, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 1.75, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.5, + 2, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8.5, + 2, + 6.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_22", - "from": [12, 0, 6.5], - "to": [12.25, 0.25, 8.25], + "from": [ + 12, + 0, + 6.5 + ], + "to": [ + 12.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12.25, 6.5, 12, 6.75], "texture": "#0"}, - "east": {"uv": [12, 6.5, 12.25, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8, 12.25, 8.25], "texture": "#0"}, - "west": {"uv": [12, 6.5, 12.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6.5, 12.25, 8.25], "texture": "#0"}, - "down": {"uv": [12, 8.25, 12.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 6.5, + 12.25, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6.5, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6.5, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.25, + 12.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_23", - "from": [1, 0, 6.75], - "to": [1.5, 0.25, 8.25], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.5, 6.75, 1, 7], "texture": "#0"}, - "east": {"uv": [1.25, 6.75, 1.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8, 1.5, 8.25], "texture": "#0"}, - "west": {"uv": [1, 6.75, 1.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 6.75, 1.5, 8.25], "texture": "#0"}, - "down": {"uv": [1, 8.25, 1.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 6.75, + 1, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.75, + 1.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8, + 1.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_24", - "from": [11.25, 0, 6.75], - "to": [12, 0.25, 8.25], + "from": [ + 11.25, + 0, + 6.75 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 6.75, 11.25, 7], "texture": "#0"}, - "east": {"uv": [11.75, 6.75, 12, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 8, 12, 8.25], "texture": "#0"}, - "west": {"uv": [11.25, 6.75, 11.5, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.75, 12, 8.25], "texture": "#0"}, - "down": {"uv": [11.25, 8.25, 12, 6.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.75, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.75, + 11.5, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.75, + 12, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 8.25, + 12, + 6.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_25", - "from": [14.25, 0, 6.75], - "to": [15, 0.25, 9.75], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 6.75, 14.25, 7], "texture": "#0"}, - "east": {"uv": [14.75, 6.75, 15, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.5, 15, 9.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.75, 14.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.75, 15, 9.75], "texture": "#0"}, - "down": {"uv": [14.25, 9.75, 15, 6.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6.75, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 15, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 15, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 15, + 6.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_26", - "from": [0.75, 0, 7], - "to": [1, 0.25, 8], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#0"}, - "east": {"uv": [0.75, 7, 1, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 7.75, 1, 8], "texture": "#0"}, - "west": {"uv": [0.75, 7, 1, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 7, 1, 8], "texture": "#0"}, - "down": {"uv": [0.75, 8, 1, 7], "texture": "#0"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8, + 1, + 7 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_27", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 7.75], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#0"}, - "east": {"uv": [0.5, 7.25, 0.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 7.5, 0.75, 7.75], "texture": "#0"}, - "west": {"uv": [0.5, 7.25, 0.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 7.25, 0.75, 7.75], "texture": "#0"}, - "down": {"uv": [0.5, 7.75, 0.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 7.75, + 0.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_28", - "from": [15, 0, 8], - "to": [15.25, 0.25, 10], + "from": [ + 15, + 0, + 8 + ], + "to": [ + 15.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.25, 8, 15, 8.25], "texture": "#0"}, - "east": {"uv": [15, 8, 15.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 9.75, 15.25, 10], "texture": "#0"}, - "west": {"uv": [15, 8, 15.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 8, 15.25, 10], "texture": "#0"}, - "down": {"uv": [15, 10, 15.25, 8], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 8, + 15, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 8, + 15.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 9.75, + 15.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8, + 15.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8, + 15.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10, + 15.25, + 8 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_29", - "from": [11.25, 0, 8.25], - "to": [11.75, 0.25, 10], + "from": [ + 11.25, + 0, + 8.25 + ], + "to": [ + 11.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.75, 8.25, 11.25, 8.5], "texture": "#0"}, - "east": {"uv": [11.5, 8.25, 11.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 9.75, 11.75, 10], "texture": "#0"}, - "west": {"uv": [11.25, 8.25, 11.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 8.25, 11.75, 10], "texture": "#0"}, - "down": {"uv": [11.25, 10, 11.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 8.25, + 11.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8.25, + 11.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 9.75, + 11.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 8.25, + 11.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 8.25, + 11.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10, + 11.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_30", - "from": [1.75, 0, 8.5], - "to": [2, 0.25, 8.75], + "from": [ + 1.75, + 0, + 8.5 + ], + "to": [ + 2, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [2, 8.5, 1.75, 8.75], "texture": "#0"}, - "east": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 8.5, 2, 8.75], "texture": "#0"}, - "west": {"uv": [1.75, 8.5, 2, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 8.5, 2, 8.75], "texture": "#0"}, - "down": {"uv": [1.75, 8.75, 2, 8.5], "texture": "#0"} + "north": { + "uv": [ + 2, + 8.5, + 1.75, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.5, + 2, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8.75, + 2, + 8.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_31", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 10], + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#0"}, - "east": {"uv": [11.75, 8.75, 12, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 9.75, 12, 10], "texture": "#0"}, - "west": {"uv": [11.75, 8.75, 12, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 8.75, 12, 10], "texture": "#0"}, - "down": {"uv": [11.75, 10, 12, 8.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 9.75, + 12, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10, + 12, + 8.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_32", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 9.75], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#0"}, - "east": {"uv": [15.25, 8.75, 15.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#0"}, - "west": {"uv": [15.25, 8.75, 15.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 8.75, 15.5, 9.75], "texture": "#0"}, - "down": {"uv": [15.25, 9.75, 15.5, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.75, + 15.5, + 8.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_33", - "from": [2.25, 0, 9], - "to": [2.75, 0.25, 9.25], + "from": [ + 2.25, + 0, + 9 + ], + "to": [ + 2.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.75, 9, 2.25, 9.25], "texture": "#0"}, - "east": {"uv": [2.5, 9, 2.75, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9, 2.75, 9.25], "texture": "#0"}, - "west": {"uv": [2.25, 9, 2.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9, 2.75, 9.25], "texture": "#0"}, - "down": {"uv": [2.25, 9.25, 2.75, 9], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9, + 2.75, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9, + 2.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 2.75, + 9 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_34", - "from": [12, 0, 9], - "to": [12.25, 0.25, 9.75], + "from": [ + 12, + 0, + 9 + ], + "to": [ + 12.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.25, 9, 12, 9.25], "texture": "#0"}, - "east": {"uv": [12, 9, 12.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 9.5, 12.25, 9.75], "texture": "#0"}, - "west": {"uv": [12, 9, 12.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 9, 12.25, 9.75], "texture": "#0"}, - "down": {"uv": [12, 9.75, 12.25, 9], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9, + 12, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9, + 12.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 9.5, + 12.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 9, + 12.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 9, + 12.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 9.75, + 12.25, + 9 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_35", - "from": [6, 0, 9.25], - "to": [6.5, 0.25, 10], + "from": [ + 6, + 0, + 9.25 + ], + "to": [ + 6.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.5, 9.25, 6, 9.5], "texture": "#0"}, - "east": {"uv": [6.25, 9.25, 6.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.75, 6.5, 10], "texture": "#0"}, - "west": {"uv": [6, 9.25, 6.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9.25, 6.5, 10], "texture": "#0"}, - "down": {"uv": [6, 10, 6.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 9.25, + 6, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9.25, + 6.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.75, + 6.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.25, + 6.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9.25, + 6.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10, + 6.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_36", - "from": [13.5, 0, 9.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.5, + 0, + 9.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 9.25, 13.5, 9.5], "texture": "#0"}, - "east": {"uv": [13.5, 9.25, 13.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#0"}, - "west": {"uv": [13.5, 9.25, 13.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#0"}, - "down": {"uv": [13.5, 9.5, 13.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 9.25, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_37", - "from": [14, 0, 9.5], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 9.5 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 9.5, 14, 9.75], "texture": "#0"}, - "east": {"uv": [14, 9.5, 14.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#0"}, - "west": {"uv": [14, 9.5, 14.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#0"}, - "down": {"uv": [14, 9.75, 14.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 9.5, + 14, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_38", - "from": [14.5, 0, 9.75], - "to": [15, 0.25, 10], + "from": [ + 14.5, + 0, + 9.75 + ], + "to": [ + 15, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15, 9.75, 14.5, 10], "texture": "#0"}, - "east": {"uv": [14.75, 9.75, 15, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.75, 15, 10], "texture": "#0"}, - "west": {"uv": [14.5, 9.75, 14.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 9.75, 15, 10], "texture": "#0"}, - "down": {"uv": [14.5, 10, 15, 9.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 9.75, + 14.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 9.75, + 15, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 15, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 9.75, + 15, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10, + 15, + 9.75 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_39", - "from": [6.25, 0, 10], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 10 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 10, 6.25, 10.25], "texture": "#0"}, - "east": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "west": {"uv": [6.25, 10, 6.5, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#0"}, - "down": {"uv": [6.25, 10.25, 6.5, 10], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 10, + 6.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 10 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_40", - "from": [4.5, 0, 10.25], - "to": [5.75, 0.25, 10.5], + "from": [ + 4.5, + 0, + 10.25 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 10.25, 4.5, 10.5], "texture": "#0"}, - "east": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 10.25, 5.75, 10.5], "texture": "#0"}, - "west": {"uv": [4.5, 10.25, 4.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 10.25, 5.75, 10.5], "texture": "#0"}, - "down": {"uv": [4.5, 10.5, 5.75, 10.25], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 10.25, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 10.25, + 4.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 10.5, + 5.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_41", - "from": [8.5, 0, 10.25], - "to": [9.25, 0.25, 10.5], + "from": [ + 8.5, + 0, + 10.25 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.25, 10.25, 8.5, 10.5], "texture": "#0"}, - "east": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10.25, 9.25, 10.5], "texture": "#0"}, - "west": {"uv": [8.5, 10.25, 8.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 10.25, 9.25, 10.5], "texture": "#0"}, - "down": {"uv": [8.5, 10.5, 9.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.25, + 8.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.5, + 9.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_42", - "from": [4.75, 0, 10.5], - "to": [5.75, 0.25, 10.75], + "from": [ + 4.75, + 0, + 10.5 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.75, 10.5, 4.75, 10.75], "texture": "#0"}, - "east": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 10.5, 5.75, 10.75], "texture": "#0"}, - "west": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 10.5, 5.75, 10.75], "texture": "#0"}, - "down": {"uv": [4.75, 10.75, 5.75, 10.5], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 10.5, + 4.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "rainbowfish_43", - "from": [5, 0, 10.75], - "to": [5.5, 0.25, 11], + "from": [ + 5, + 0, + 10.75 + ], + "to": [ + 5.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.5, 10.75, 5, 11], "texture": "#0"}, - "east": {"uv": [5.25, 10.75, 5.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 10.75, 5.5, 11], "texture": "#0"}, - "west": {"uv": [5, 10.75, 5.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 10.75, 5.5, 11], "texture": "#0"}, - "down": {"uv": [5, 11, 5.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 10.75, + 5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.75, + 5.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 10.75, + 5.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 11, + 5.5, + 10.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [81, 0, 6], - "translation": [0.25, 1.25, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 81, + 0, + 6 + ], + "translation": [ + 0.25, + 1.25, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [125, -91, 34], - "translation": [0.25, 9.5, 10], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 125, + -91, + 34 + ], + "translation": [ + 0.25, + 9.5, + 10 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "rainbowfish", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ranchu.json b/pack/assets/minecraft/models/fish/ranchu.json index 2b431dd2..350ccf2c 100644 --- a/pack/assets/minecraft/models/fish/ranchu.json +++ b/pack/assets/minecraft/models/fish/ranchu.json @@ -2,696 +2,3688 @@ "__name": "ランチュウ", "credit": "Made with Blockbench", "textures": { - "2": "fish/ranchu", - "particle": "fish/raigyo" + "2": "item/fish/ranchu", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "ranchu_0", - "from": [5.25, 0, 3.5], - "to": [8.25, 0.25, 11.25], + "from": [ + 5.25, + 0, + 3.5 + ], + "to": [ + 8.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.25, 3.5, 5.25, 3.75], "texture": "#2"}, - "east": {"uv": [8, 3.5, 8.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.25, 11, 8.25, 11.25], "texture": "#2"}, - "west": {"uv": [5.25, 3.5, 5.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.25, 3.5, 8.25, 11.25], "texture": "#2"}, - "down": {"uv": [5.25, 11.25, 8.25, 3.5], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 3.5, + 5.25, + 3.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 3.5, + 8.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.25, + 11, + 8.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.25, + 3.5, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.25, + 3.5, + 8.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 8.25, + 3.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_1", - "from": [5, 0, 3.75], - "to": [5.25, 0.25, 11.25], + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 3.75, 5, 4], "texture": "#2"}, - "east": {"uv": [5, 3.75, 5.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5, 11, 5.25, 11.25], "texture": "#2"}, - "west": {"uv": [5, 3.75, 5.25, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5, 3.75, 5.25, 11.25], "texture": "#2"}, - "down": {"uv": [5, 11.25, 5.25, 3.75], "texture": "#2"} + "north": { + "uv": [ + 5.25, + 3.75, + 5, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 11.25, + 5.25, + 3.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_2", - "from": [8.25, 0, 3.75], - "to": [9, 0.25, 12.75], + "from": [ + 8.25, + 0, + 3.75 + ], + "to": [ + 9, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9, 3.75, 8.25, 4], "texture": "#2"}, - "east": {"uv": [8.75, 3.75, 9, 12.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.25, 12.5, 9, 12.75], "texture": "#2"}, - "west": {"uv": [8.25, 3.75, 8.5, 12.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.25, 3.75, 9, 12.75], "texture": "#2"}, - "down": {"uv": [8.25, 12.75, 9, 3.75], "texture": "#2"} + "north": { + "uv": [ + 9, + 3.75, + 8.25, + 4 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 3.75, + 9, + 12.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.25, + 12.5, + 9, + 12.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.25, + 3.75, + 8.5, + 12.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.25, + 3.75, + 9, + 12.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.25, + 12.75, + 9, + 3.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_3", - "from": [4.5, 0, 4], - "to": [5, 0.25, 11], + "from": [ + 4.5, + 0, + 4 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 4, 4.5, 4.25], "texture": "#2"}, - "east": {"uv": [4.75, 4, 5, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.5, 10.75, 5, 11], "texture": "#2"}, - "west": {"uv": [4.5, 4, 4.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.5, 4, 5, 11], "texture": "#2"}, - "down": {"uv": [4.5, 11, 5, 4], "texture": "#2"} + "north": { + "uv": [ + 5, + 4, + 4.5, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 4, + 5, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 4, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 4, + 5, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 11, + 5, + 4 + ], + "texture": "#2" + } } }, { "name": "ranchu_4", - "from": [9, 0, 4], - "to": [9.25, 0.25, 13.5], + "from": [ + 9, + 0, + 4 + ], + "to": [ + 9.25, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [9.25, 4, 9, 4.25], "texture": "#2"}, - "east": {"uv": [9, 4, 9.25, 13.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9, 13.25, 9.25, 13.5], "texture": "#2"}, - "west": {"uv": [9, 4, 9.25, 13.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9, 4, 9.25, 13.5], "texture": "#2"}, - "down": {"uv": [9, 13.5, 9.25, 4], "texture": "#2"} + "north": { + "uv": [ + 9.25, + 4, + 9, + 4.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 4, + 9.25, + 13.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 13.25, + 9.25, + 13.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 4, + 9.25, + 13.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9, + 4, + 9.25, + 13.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 13.5, + 9.25, + 4 + ], + "texture": "#2" + } } }, { "name": "ranchu_5", - "from": [4, 0, 4.25], - "to": [4.5, 0.25, 11], + "from": [ + 4, + 0, + 4.25 + ], + "to": [ + 4.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.5, 4.25, 4, 4.5], "texture": "#2"}, - "east": {"uv": [4.25, 4.25, 4.5, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4, 10.75, 4.5, 11], "texture": "#2"}, - "west": {"uv": [4, 4.25, 4.25, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4, 4.25, 4.5, 11], "texture": "#2"}, - "down": {"uv": [4, 11, 4.5, 4.25], "texture": "#2"} + "north": { + "uv": [ + 4.5, + 4.25, + 4, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.25, + 4.25, + 4.5, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4, + 10.75, + 4.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 4.25, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 4.25, + 4.5, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 11, + 4.5, + 4.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_6", - "from": [9.25, 0, 4.25], - "to": [9.75, 0.25, 10.75], + "from": [ + 9.25, + 0, + 4.25 + ], + "to": [ + 9.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.75, 4.25, 9.25, 4.5], "texture": "#2"}, - "east": {"uv": [9.5, 4.25, 9.75, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 10.5, 9.75, 10.75], "texture": "#2"}, - "west": {"uv": [9.25, 4.25, 9.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 4.25, 9.75, 10.75], "texture": "#2"}, - "down": {"uv": [9.25, 10.75, 9.75, 4.25], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 4.25, + 9.25, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 4.25, + 9.75, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.75, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 4.25, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 4.25, + 9.75, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.75, + 4.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_7", - "from": [2.25, 0, 4.5], - "to": [4, 0.25, 10.75], + "from": [ + 2.25, + 0, + 4.5 + ], + "to": [ + 4, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4, 4.5, 2.25, 4.75], "texture": "#2"}, - "east": {"uv": [3.75, 4.5, 4, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [2.25, 10.5, 4, 10.75], "texture": "#2"}, - "west": {"uv": [2.25, 4.5, 2.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [2.25, 4.5, 4, 10.75], "texture": "#2"}, - "down": {"uv": [2.25, 10.75, 4, 4.5], "texture": "#2"} + "north": { + "uv": [ + 4, + 4.5, + 2.25, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.75, + 4.5, + 4, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 2.25, + 10.5, + 4, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.25, + 4.5, + 2.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 2.25, + 4.5, + 4, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2.25, + 10.75, + 4, + 4.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_8", - "from": [9.75, 0, 4.5], - "to": [10, 0.25, 10.5], + "from": [ + 9.75, + 0, + 4.5 + ], + "to": [ + 10, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10, 4.5, 9.75, 4.75], "texture": "#2"}, - "east": {"uv": [9.75, 4.5, 10, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 10.25, 10, 10.5], "texture": "#2"}, - "west": {"uv": [9.75, 4.5, 10, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 4.5, 10, 10.5], "texture": "#2"}, - "down": {"uv": [9.75, 10.5, 10, 4.5], "texture": "#2"} + "north": { + "uv": [ + 10, + 4.5, + 9.75, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 4.5, + 10, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 10.25, + 10, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 4.5, + 10, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 4.5, + 10, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 10.5, + 10, + 4.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_9", - "from": [14.25, 0, 4.5], - "to": [15.25, 0.25, 7], + "from": [ + 14.25, + 0, + 4.5 + ], + "to": [ + 15.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.25, 4.5, 14.25, 4.75], "texture": "#2"}, - "east": {"uv": [15, 4.5, 15.25, 7], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 6.75, 15.25, 7], "texture": "#2"}, - "west": {"uv": [14.25, 4.5, 14.5, 7], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 4.5, 15.25, 7], "texture": "#2"}, - "down": {"uv": [14.25, 7, 15.25, 4.5], "texture": "#2"} + "north": { + "uv": [ + 15.25, + 4.5, + 14.25, + 4.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15, + 4.5, + 15.25, + 7 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 6.75, + 15.25, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 4.5, + 14.5, + 7 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 4.5, + 15.25, + 7 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 7, + 15.25, + 4.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_10", - "from": [1.75, 0, 4.75], - "to": [2.25, 0.25, 10.75], + "from": [ + 1.75, + 0, + 4.75 + ], + "to": [ + 2.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.25, 4.75, 1.75, 5], "texture": "#2"}, - "east": {"uv": [2, 4.75, 2.25, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.75, 10.5, 2.25, 10.75], "texture": "#2"}, - "west": {"uv": [1.75, 4.75, 2, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.75, 4.75, 2.25, 10.75], "texture": "#2"}, - "down": {"uv": [1.75, 10.75, 2.25, 4.75], "texture": "#2"} + "north": { + "uv": [ + 2.25, + 4.75, + 1.75, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 4.75, + 2.25, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.75, + 10.5, + 2.25, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.75, + 4.75, + 2, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.75, + 4.75, + 2.25, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.75, + 10.75, + 2.25, + 4.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_11", - "from": [10, 0, 4.75], - "to": [10.5, 0.25, 10.25], + "from": [ + 10, + 0, + 4.75 + ], + "to": [ + 10.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.5, 4.75, 10, 5], "texture": "#2"}, - "east": {"uv": [10.25, 4.75, 10.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 10, 10.5, 10.25], "texture": "#2"}, - "west": {"uv": [10, 4.75, 10.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 4.75, 10.5, 10.25], "texture": "#2"}, - "down": {"uv": [10, 10.25, 10.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 10.5, + 4.75, + 10, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.25, + 4.75, + 10.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 10, + 10.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 4.75, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 4.75, + 10.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_12", - "from": [13.75, 0, 4.75], - "to": [14.25, 0.25, 11.5], + "from": [ + 13.75, + 0, + 4.75 + ], + "to": [ + 14.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [14.25, 4.75, 13.75, 5], "texture": "#2"}, - "east": {"uv": [14, 4.75, 14.25, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.75, 11.25, 14.25, 11.5], "texture": "#2"}, - "west": {"uv": [13.75, 4.75, 14, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.75, 4.75, 14.25, 11.5], "texture": "#2"}, - "down": {"uv": [13.75, 11.5, 14.25, 4.75], "texture": "#2"} + "north": { + "uv": [ + 14.25, + 4.75, + 13.75, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14, + 4.75, + 14.25, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.75, + 11.25, + 14.25, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.75, + 4.75, + 14, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.75, + 4.75, + 14.25, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.75, + 11.5, + 14.25, + 4.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_13", - "from": [15.25, 0, 4.75], - "to": [15.5, 0.25, 6.75], + "from": [ + 15.25, + 0, + 4.75 + ], + "to": [ + 15.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.5, 4.75, 15.25, 5], "texture": "#2"}, - "east": {"uv": [15.25, 4.75, 15.5, 6.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#2"}, - "west": {"uv": [15.25, 4.75, 15.5, 6.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.25, 4.75, 15.5, 6.75], "texture": "#2"}, - "down": {"uv": [15.25, 6.75, 15.5, 4.75], "texture": "#2"} + "north": { + "uv": [ + 15.5, + 4.75, + 15.25, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.25, + 4.75, + 15.5, + 6.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.25, + 4.75, + 15.5, + 6.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.25, + 4.75, + 15.5, + 6.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.25, + 6.75, + 15.5, + 4.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_14", - "from": [1.5, 0, 5], - "to": [1.75, 0.25, 10.5], + "from": [ + 1.5, + 0, + 5 + ], + "to": [ + 1.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.75, 5, 1.5, 5.25], "texture": "#2"}, - "east": {"uv": [1.5, 5, 1.75, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.5, 10.25, 1.75, 10.5], "texture": "#2"}, - "west": {"uv": [1.5, 5, 1.75, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.5, 5, 1.75, 10.5], "texture": "#2"}, - "down": {"uv": [1.5, 10.5, 1.75, 5], "texture": "#2"} + "north": { + "uv": [ + 1.75, + 5, + 1.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 5, + 1.75, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.5, + 10.25, + 1.75, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 5, + 1.75, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 5, + 1.75, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 10.5, + 1.75, + 5 + ], + "texture": "#2" + } } }, { "name": "ranchu_15", - "from": [10.5, 0, 5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 5, 10.5, 5.25], "texture": "#2"}, - "east": {"uv": [10.5, 5, 10.75, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#2"}, - "west": {"uv": [10.5, 5, 10.75, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.5, 5, 10.75, 9.75], "texture": "#2"}, - "down": {"uv": [10.5, 9.75, 10.75, 5], "texture": "#2"} + "north": { + "uv": [ + 10.75, + 5, + 10.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.5, + 5, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 5, + 10.75, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 5 + ], + "texture": "#2" + } } }, { "name": "ranchu_16", - "from": [13.25, 0, 5], - "to": [13.75, 0.25, 11.25], + "from": [ + 13.25, + 0, + 5 + ], + "to": [ + 13.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.75, 5, 13.25, 5.25], "texture": "#2"}, - "east": {"uv": [13.5, 5, 13.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13.25, 11, 13.75, 11.25], "texture": "#2"}, - "west": {"uv": [13.25, 5, 13.5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13.25, 5, 13.75, 11.25], "texture": "#2"}, - "down": {"uv": [13.25, 11.25, 13.75, 5], "texture": "#2"} + "north": { + "uv": [ + 13.75, + 5, + 13.25, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13.5, + 5, + 13.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13.25, + 11, + 13.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13.25, + 5, + 13.5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13.25, + 5, + 13.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13.25, + 11.25, + 13.75, + 5 + ], + "texture": "#2" + } } }, { "name": "ranchu_17", - "from": [15.5, 0, 5], - "to": [15.75, 0.25, 6], + "from": [ + 15.5, + 0, + 5 + ], + "to": [ + 15.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.75, 5, 15.5, 5.25], "texture": "#2"}, - "east": {"uv": [15.5, 5, 15.75, 6], "rotation": 90, "texture": "#2"}, - "south": {"uv": [15.5, 5.75, 15.75, 6], "texture": "#2"}, - "west": {"uv": [15.5, 5, 15.75, 6], "rotation": 270, "texture": "#2"}, - "up": {"uv": [15.5, 5, 15.75, 6], "texture": "#2"}, - "down": {"uv": [15.5, 6, 15.75, 5], "texture": "#2"} + "north": { + "uv": [ + 15.75, + 5, + 15.5, + 5.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 15.5, + 5, + 15.75, + 6 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 15.5, + 5, + 15.75, + 6 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 15.5, + 5, + 15.75, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 15.5, + 6, + 15.75, + 5 + ], + "texture": "#2" + } } }, { "name": "ranchu_18", - "from": [1.25, 0, 5.25], - "to": [1.5, 0.25, 10.5], + "from": [ + 1.25, + 0, + 5.25 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 5.25, 1.25, 5.5], "texture": "#2"}, - "east": {"uv": [1.25, 5.25, 1.5, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1.25, 10.25, 1.5, 10.5], "texture": "#2"}, - "west": {"uv": [1.25, 5.25, 1.5, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1.25, 5.25, 1.5, 10.5], "texture": "#2"}, - "down": {"uv": [1.25, 10.5, 1.5, 5.25], "texture": "#2"} + "north": { + "uv": [ + 1.5, + 5.25, + 1.25, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1.25, + 5.25, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.25, + 5.25, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1.25, + 5.25, + 1.5, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 1.5, + 5.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_19", - "from": [10.75, 0, 5.25], - "to": [11, 0.25, 10], + "from": [ + 10.75, + 0, + 5.25 + ], + "to": [ + 11, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11, 5.25, 10.75, 5.5], "texture": "#2"}, - "east": {"uv": [10.75, 5.25, 11, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10.75, 9.75, 11, 10], "texture": "#2"}, - "west": {"uv": [10.75, 5.25, 11, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10.75, 5.25, 11, 10], "texture": "#2"}, - "down": {"uv": [10.75, 10, 11, 5.25], "texture": "#2"} + "north": { + "uv": [ + 11, + 5.25, + 10.75, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10.75, + 5.25, + 11, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10.75, + 5.25, + 11, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10.75, + 5.25, + 11, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.75, + 10, + 11, + 5.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_20", - "from": [13, 0, 5.25], - "to": [13.25, 0.25, 11.25], + "from": [ + 13, + 0, + 5.25 + ], + "to": [ + 13.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.25, 5.25, 13, 5.5], "texture": "#2"}, - "east": {"uv": [13, 5.25, 13.25, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [13, 11, 13.25, 11.25], "texture": "#2"}, - "west": {"uv": [13, 5.25, 13.25, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [13, 5.25, 13.25, 11.25], "texture": "#2"}, - "down": {"uv": [13, 11.25, 13.25, 5.25], "texture": "#2"} + "north": { + "uv": [ + 13.25, + 5.25, + 13, + 5.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 13, + 5.25, + 13.25, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 13, + 11, + 13.25, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 13, + 5.25, + 13.25, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 13, + 5.25, + 13.25, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 13, + 11.25, + 13.25, + 5.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_21", - "from": [11, 0, 5.5], - "to": [11.25, 0.25, 10], + "from": [ + 11, + 0, + 5.5 + ], + "to": [ + 11.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.25, 5.5, 11, 5.75], "texture": "#2"}, - "east": {"uv": [11, 5.5, 11.25, 10], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11, 9.75, 11.25, 10], "texture": "#2"}, - "west": {"uv": [11, 5.5, 11.25, 10], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11, 5.5, 11.25, 10], "texture": "#2"}, - "down": {"uv": [11, 10, 11.25, 5.5], "texture": "#2"} + "north": { + "uv": [ + 11.25, + 5.5, + 11, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 5.5, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 5.5, + 11.25, + 10 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11, + 5.5, + 11.25, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11, + 10, + 11.25, + 5.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_22", - "from": [12.5, 0, 5.5], - "to": [13, 0.25, 11], + "from": [ + 12.5, + 0, + 5.5 + ], + "to": [ + 13, + 0.25, + 11 + ], "faces": { - "north": {"uv": [13, 5.5, 12.5, 5.75], "texture": "#2"}, - "east": {"uv": [12.75, 5.5, 13, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.5, 10.75, 13, 11], "texture": "#2"}, - "west": {"uv": [12.5, 5.5, 12.75, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.5, 5.5, 13, 11], "texture": "#2"}, - "down": {"uv": [12.5, 11, 13, 5.5], "texture": "#2"} + "north": { + "uv": [ + 13, + 5.5, + 12.5, + 5.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.75, + 5.5, + 13, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.5, + 10.75, + 13, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.5, + 5.5, + 12.75, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.5, + 5.5, + 13, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.5, + 11, + 13, + 5.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_23", - "from": [1, 0, 5.75], - "to": [1.25, 0.25, 10.25], + "from": [ + 1, + 0, + 5.75 + ], + "to": [ + 1.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.25, 5.75, 1, 6], "texture": "#2"}, - "east": {"uv": [1, 5.75, 1.25, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [1, 10, 1.25, 10.25], "texture": "#2"}, - "west": {"uv": [1, 5.75, 1.25, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [1, 5.75, 1.25, 10.25], "texture": "#2"}, - "down": {"uv": [1, 10.25, 1.25, 5.75], "texture": "#2"} + "north": { + "uv": [ + 1.25, + 5.75, + 1, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 5.75, + 1.25, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 10, + 1.25, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 5.75, + 1.25, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 5.75, + 1.25, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 10.25, + 1.25, + 5.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_24", - "from": [11.25, 0, 5.75], - "to": [11.5, 0.25, 10.25], + "from": [ + 11.25, + 0, + 5.75 + ], + "to": [ + 11.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.5, 5.75, 11.25, 6], "texture": "#2"}, - "east": {"uv": [11.25, 5.75, 11.5, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.25, 10, 11.5, 10.25], "texture": "#2"}, - "west": {"uv": [11.25, 5.75, 11.5, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.25, 5.75, 11.5, 10.25], "texture": "#2"}, - "down": {"uv": [11.25, 10.25, 11.5, 5.75], "texture": "#2"} + "north": { + "uv": [ + 11.5, + 5.75, + 11.25, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.25, + 5.75, + 11.5, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.25, + 10, + 11.5, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.25, + 5.75, + 11.5, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.25, + 5.75, + 11.5, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.25, + 10.25, + 11.5, + 5.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_25", - "from": [12.25, 0, 5.75], - "to": [12.5, 0.25, 10.75], + "from": [ + 12.25, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12.25, 6], "texture": "#2"}, - "east": {"uv": [12.25, 5.75, 12.5, 10.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12.25, 10.5, 12.5, 10.75], "texture": "#2"}, - "west": {"uv": [12.25, 5.75, 12.5, 10.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12.25, 5.75, 12.5, 10.75], "texture": "#2"}, - "down": {"uv": [12.25, 10.75, 12.5, 5.75], "texture": "#2"} + "north": { + "uv": [ + 12.5, + 5.75, + 12.25, + 6 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12.25, + 10.5, + 12.5, + 10.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12.25, + 5.75, + 12.5, + 10.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12.25, + 10.75, + 12.5, + 5.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_26", - "from": [12, 0, 6], - "to": [12.25, 0.25, 10.5], + "from": [ + 12, + 0, + 6 + ], + "to": [ + 12.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12.25, 6, 12, 6.25], "texture": "#2"}, - "east": {"uv": [12, 6, 12.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [12, 10.25, 12.25, 10.5], "texture": "#2"}, - "west": {"uv": [12, 6, 12.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [12, 6, 12.25, 10.5], "texture": "#2"}, - "down": {"uv": [12, 10.5, 12.25, 6], "texture": "#2"} + "north": { + "uv": [ + 12.25, + 6, + 12, + 6.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 6, + 12.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 12, + 10.25, + 12.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 6, + 12.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 12, + 6, + 12.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 10.5, + 12.25, + 6 + ], + "texture": "#2" + } } }, { "name": "ranchu_27", - "from": [11.5, 0, 6.25], - "to": [12, 0.25, 10.25], + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 12, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12, 6.25, 11.5, 6.5], "texture": "#2"}, - "east": {"uv": [11.75, 6.25, 12, 10.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.5, 10, 12, 10.25], "texture": "#2"}, - "west": {"uv": [11.5, 6.25, 11.75, 10.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.5, 6.25, 12, 10.25], "texture": "#2"}, - "down": {"uv": [11.5, 10.25, 12, 6.25], "texture": "#2"} + "north": { + "uv": [ + 12, + 6.25, + 11.5, + 6.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 6.25, + 12, + 10.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.5, + 10, + 12, + 10.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 10.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 12, + 10.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 10.25, + 12, + 6.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_28", - "from": [0.75, 0, 6.5], - "to": [1, 0.25, 9.75], + "from": [ + 0.75, + 0, + 6.5 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 6.5, 0.75, 6.75], "texture": "#2"}, - "east": {"uv": [0.75, 6.5, 1, 9.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.75, 9.5, 1, 9.75], "texture": "#2"}, - "west": {"uv": [0.75, 6.5, 1, 9.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.75, 6.5, 1, 9.75], "texture": "#2"}, - "down": {"uv": [0.75, 9.75, 1, 6.5], "texture": "#2"} + "north": { + "uv": [ + 1, + 6.5, + 0.75, + 6.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.75, + 6.5, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.75, + 6.5, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.75, + 6.5, + 1, + 9.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1, + 6.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_29", - "from": [14.25, 0, 7], - "to": [14.75, 0.25, 7.5], + "from": [ + 14.25, + 0, + 7 + ], + "to": [ + 14.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.75, 7, 14.25, 7.25], "texture": "#2"}, - "east": {"uv": [14.5, 7, 14.75, 7.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 7.25, 14.75, 7.5], "texture": "#2"}, - "west": {"uv": [14.25, 7, 14.5, 7.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 7, 14.75, 7.5], "texture": "#2"}, - "down": {"uv": [14.25, 7.5, 14.75, 7], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 7, + 14.25, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 7, + 14.75, + 7.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 7.25, + 14.75, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 7, + 14.5, + 7.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 7, + 14.75, + 7.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 7.5, + 14.75, + 7 + ], + "texture": "#2" + } } }, { "name": "ranchu_30", - "from": [14.75, 0, 7], - "to": [15, 0.25, 7.25], + "from": [ + 14.75, + 0, + 7 + ], + "to": [ + 15, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15, 7, 14.75, 7.25], "texture": "#2"}, - "east": {"uv": [14.75, 7, 15, 7.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 7, 15, 7.25], "texture": "#2"}, - "west": {"uv": [14.75, 7, 15, 7.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 7, 15, 7.25], "texture": "#2"}, - "down": {"uv": [14.75, 7.25, 15, 7], "texture": "#2"} + "north": { + "uv": [ + 15, + 7, + 14.75, + 7.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15, + 7 + ], + "texture": "#2" + } } }, { "name": "ranchu_31", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 8], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#2"}, - "east": {"uv": [0.5, 7.25, 0.75, 8], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 7.75, 0.75, 8], "texture": "#2"}, - "west": {"uv": [0.5, 7.25, 0.75, 8], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 7.25, 0.75, 8], "texture": "#2"}, - "down": {"uv": [0.5, 8, 0.75, 7.25], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.75, + 7.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_32", - "from": [14.25, 0, 7.5], - "to": [14.5, 0.25, 7.75], + "from": [ + 14.25, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.5, 7.5, 14.25, 7.75], "texture": "#2"}, - "east": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 7.5, 14.5, 7.75], "texture": "#2"}, - "west": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 7.5, 14.5, 7.75], "texture": "#2"}, - "down": {"uv": [14.25, 7.75, 14.5, 7.5], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 7.5, + 14.25, + 7.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 14.5, + 7.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_33", - "from": [14.25, 0, 8], - "to": [14.5, 0.25, 11.5], + "from": [ + 14.25, + 0, + 8 + ], + "to": [ + 14.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [14.5, 8, 14.25, 8.25], "texture": "#2"}, - "east": {"uv": [14.25, 8, 14.5, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.25, 11.25, 14.5, 11.5], "texture": "#2"}, - "west": {"uv": [14.25, 8, 14.5, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.25, 8, 14.5, 11.5], "texture": "#2"}, - "down": {"uv": [14.25, 11.5, 14.5, 8], "texture": "#2"} + "north": { + "uv": [ + 14.5, + 8, + 14.25, + 8.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.25, + 8, + 14.5, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.25, + 11.25, + 14.5, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.25, + 8, + 14.5, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.25, + 8, + 14.5, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.25, + 11.5, + 14.5, + 8 + ], + "texture": "#2" + } } }, { "name": "ranchu_34", - "from": [0.5, 0, 8.5], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 8.5 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 8.5, 0.5, 8.75], "texture": "#2"}, - "east": {"uv": [0.5, 8.5, 0.75, 9.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#2"}, - "west": {"uv": [0.5, 8.5, 0.75, 9.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0.5, 8.5, 0.75, 9.5], "texture": "#2"}, - "down": {"uv": [0.5, 9.5, 0.75, 8.5], "texture": "#2"} + "north": { + "uv": [ + 0.75, + 8.5, + 0.5, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 8.5, + 0.75, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 8.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_35", - "from": [14.5, 0, 8.5], - "to": [14.75, 0.25, 11.25], + "from": [ + 14.5, + 0, + 8.5 + ], + "to": [ + 14.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [14.75, 8.5, 14.5, 8.75], "texture": "#2"}, - "east": {"uv": [14.5, 8.5, 14.75, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.5, 11, 14.75, 11.25], "texture": "#2"}, - "west": {"uv": [14.5, 8.5, 14.75, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.5, 8.5, 14.75, 11.25], "texture": "#2"}, - "down": {"uv": [14.5, 11.25, 14.75, 8.5], "texture": "#2"} + "north": { + "uv": [ + 14.75, + 8.5, + 14.5, + 8.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.5, + 11, + 14.75, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.5, + 8.5, + 14.75, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.5, + 11.25, + 14.75, + 8.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_36", - "from": [14.75, 0, 8.75], - "to": [15, 0.25, 11], + "from": [ + 14.75, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 11 + ], "faces": { - "north": {"uv": [15, 8.75, 14.75, 9], "texture": "#2"}, - "east": {"uv": [14.75, 8.75, 15, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [14.75, 10.75, 15, 11], "texture": "#2"}, - "west": {"uv": [14.75, 8.75, 15, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [14.75, 8.75, 15, 11], "texture": "#2"}, - "down": {"uv": [14.75, 11, 15, 8.75], "texture": "#2"} + "north": { + "uv": [ + 15, + 8.75, + 14.75, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 14.75, + 10.75, + 15, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 14.75, + 8.75, + 15, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 14.75, + 8.75, + 15, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 14.75, + 11, + 15, + 8.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_37", - "from": [10, 0, 10.25], - "to": [10.25, 0.25, 10.5], + "from": [ + 10, + 0, + 10.25 + ], + "to": [ + 10.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [10.25, 10.25, 10, 10.5], "texture": "#2"}, - "east": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#2"}, - "west": {"uv": [10, 10.25, 10.25, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 10.25, 10.25, 10.5], "texture": "#2"}, - "down": {"uv": [10, 10.5, 10.25, 10.25], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 10.25, + 10, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 10.25, + 10.25, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10.5, + 10.25, + 10.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_38", - "from": [11.75, 0, 10.25], - "to": [12, 0.25, 10.5], + "from": [ + 11.75, + 0, + 10.25 + ], + "to": [ + 12, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12, 10.25, 11.75, 10.5], "texture": "#2"}, - "east": {"uv": [11.75, 10.25, 12, 10.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [11.75, 10.25, 12, 10.5], "texture": "#2"}, - "west": {"uv": [11.75, 10.25, 12, 10.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [11.75, 10.25, 12, 10.5], "texture": "#2"}, - "down": {"uv": [11.75, 10.5, 12, 10.25], "texture": "#2"} + "north": { + "uv": [ + 12, + 10.25, + 11.75, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 11.75, + 10.5, + 12, + 10.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_39", - "from": [3.25, 0, 10.75], - "to": [4, 0.25, 11], + "from": [ + 3.25, + 0, + 10.75 + ], + "to": [ + 4, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4, 10.75, 3.25, 11], "texture": "#2"}, - "east": {"uv": [3.75, 10.75, 4, 11], "rotation": 90, "texture": "#2"}, - "south": {"uv": [3.25, 10.75, 4, 11], "texture": "#2"}, - "west": {"uv": [3.25, 10.75, 3.5, 11], "rotation": 270, "texture": "#2"}, - "up": {"uv": [3.25, 10.75, 4, 11], "texture": "#2"}, - "down": {"uv": [3.25, 11, 4, 10.75], "texture": "#2"} + "north": { + "uv": [ + 4, + 10.75, + 3.25, + 11 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3.75, + 10.75, + 4, + 11 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 10.75, + 4, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.25, + 10.75, + 3.5, + 11 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 3.25, + 10.75, + 4, + 11 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3.25, + 11, + 4, + 10.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_40", - "from": [4.75, 0, 11], - "to": [5, 0.25, 11.25], + "from": [ + 4.75, + 0, + 11 + ], + "to": [ + 5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5, 11, 4.75, 11.25], "texture": "#2"}, - "east": {"uv": [4.75, 11, 5, 11.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [4.75, 11, 5, 11.25], "texture": "#2"}, - "west": {"uv": [4.75, 11, 5, 11.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [4.75, 11, 5, 11.25], "texture": "#2"}, - "down": {"uv": [4.75, 11.25, 5, 11], "texture": "#2"} + "north": { + "uv": [ + 5, + 11, + 4.75, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4.75, + 11.25, + 5, + 11 + ], + "texture": "#2" + } } }, { "name": "ranchu_41", - "from": [9.25, 0, 11], - "to": [9.75, 0.25, 13.5], + "from": [ + 9.25, + 0, + 11 + ], + "to": [ + 9.75, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [9.75, 11, 9.25, 11.25], "texture": "#2"}, - "east": {"uv": [9.5, 11, 9.75, 13.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.25, 13.25, 9.75, 13.5], "texture": "#2"}, - "west": {"uv": [9.25, 11, 9.5, 13.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.25, 11, 9.75, 13.5], "texture": "#2"}, - "down": {"uv": [9.25, 13.5, 9.75, 11], "texture": "#2"} + "north": { + "uv": [ + 9.75, + 11, + 9.25, + 11.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 11, + 9.75, + 13.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.25, + 13.25, + 9.75, + 13.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.25, + 11, + 9.5, + 13.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.25, + 11, + 9.75, + 13.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.25, + 13.5, + 9.75, + 11 + ], + "texture": "#2" + } } }, { "name": "ranchu_42", - "from": [5.5, 0, 11.25], - "to": [7.25, 0.25, 11.5], + "from": [ + 5.5, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 11.25, 5.5, 11.5], "texture": "#2"}, - "east": {"uv": [7, 11.25, 7.25, 11.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [5.5, 11.25, 7.25, 11.5], "texture": "#2"}, - "west": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [5.5, 11.25, 7.25, 11.5], "texture": "#2"}, - "down": {"uv": [5.5, 11.5, 7.25, 11.25], "texture": "#2"} + "north": { + "uv": [ + 7.25, + 11.25, + 5.5, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 11.25, + 7.25, + 11.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 7.25, + 11.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_43", - "from": [7.75, 0, 11.25], - "to": [8.25, 0.25, 12], + "from": [ + 7.75, + 0, + 11.25 + ], + "to": [ + 8.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.25, 11.25, 7.75, 11.5], "texture": "#2"}, - "east": {"uv": [8, 11.25, 8.25, 12], "rotation": 90, "texture": "#2"}, - "south": {"uv": [7.75, 11.75, 8.25, 12], "texture": "#2"}, - "west": {"uv": [7.75, 11.25, 8, 12], "rotation": 270, "texture": "#2"}, - "up": {"uv": [7.75, 11.25, 8.25, 12], "texture": "#2"}, - "down": {"uv": [7.75, 12, 8.25, 11.25], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 11.25, + 7.75, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 11.25, + 8.25, + 12 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 11.75, + 8.25, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.75, + 11.25, + 8, + 12 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 7.75, + 11.25, + 8.25, + 12 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7.75, + 12, + 8.25, + 11.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_44", - "from": [9.75, 0, 11.25], - "to": [10, 0.25, 13.25], + "from": [ + 9.75, + 0, + 11.25 + ], + "to": [ + 10, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [10, 11.25, 9.75, 11.5], "texture": "#2"}, - "east": {"uv": [9.75, 11.25, 10, 13.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [9.75, 13, 10, 13.25], "texture": "#2"}, - "west": {"uv": [9.75, 11.25, 10, 13.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [9.75, 11.25, 10, 13.25], "texture": "#2"}, - "down": {"uv": [9.75, 13.25, 10, 11.25], "texture": "#2"} + "north": { + "uv": [ + 10, + 11.25, + 9.75, + 11.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9.75, + 11.25, + 10, + 13.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 9.75, + 13, + 10, + 13.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.75, + 11.25, + 10, + 13.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 9.75, + 11.25, + 10, + 13.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9.75, + 13.25, + 10, + 11.25 + ], + "texture": "#2" + } } }, { "name": "ranchu_45", - "from": [10, 0, 11.5], - "to": [10.25, 0.25, 12.5], + "from": [ + 10, + 0, + 11.5 + ], + "to": [ + 10.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10.25, 11.5, 10, 11.75], "texture": "#2"}, - "east": {"uv": [10, 11.5, 10.25, 12.5], "rotation": 90, "texture": "#2"}, - "south": {"uv": [10, 12.25, 10.25, 12.5], "texture": "#2"}, - "west": {"uv": [10, 11.5, 10.25, 12.5], "rotation": 270, "texture": "#2"}, - "up": {"uv": [10, 11.5, 10.25, 12.5], "texture": "#2"}, - "down": {"uv": [10, 12.5, 10.25, 11.5], "texture": "#2"} + "north": { + "uv": [ + 10.25, + 11.5, + 10, + 11.75 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 11.5, + 10.25, + 12.5 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 11.5, + 10.25, + 12.5 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 11.5, + 10.25, + 12.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 12.5, + 10.25, + 11.5 + ], + "texture": "#2" + } } }, { "name": "ranchu_46", - "from": [8, 0, 12], - "to": [8.25, 0.25, 12.25], + "from": [ + 8, + 0, + 12 + ], + "to": [ + 8.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8.25, 12, 8, 12.25], "texture": "#2"}, - "east": {"uv": [8, 12, 8.25, 12.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8, 12, 8.25, 12.25], "texture": "#2"}, - "west": {"uv": [8, 12, 8.25, 12.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8, 12, 8.25, 12.25], "texture": "#2"}, - "down": {"uv": [8, 12.25, 8.25, 12], "texture": "#2"} + "north": { + "uv": [ + 8.25, + 12, + 8, + 12.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 12.25, + 8.25, + 12 + ], + "texture": "#2" + } } }, { "name": "ranchu_47", - "from": [8.5, 0, 12.75], - "to": [9, 0.25, 13], + "from": [ + 8.5, + 0, + 12.75 + ], + "to": [ + 9, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9, 12.75, 8.5, 13], "texture": "#2"}, - "east": {"uv": [8.75, 12.75, 9, 13], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.5, 12.75, 9, 13], "texture": "#2"}, - "west": {"uv": [8.5, 12.75, 8.75, 13], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.5, 12.75, 9, 13], "texture": "#2"}, - "down": {"uv": [8.5, 13, 9, 12.75], "texture": "#2"} + "north": { + "uv": [ + 9, + 12.75, + 8.5, + 13 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 12.75, + 9, + 13 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.5, + 12.75, + 9, + 13 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 12.75, + 8.75, + 13 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 12.75, + 9, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 13, + 9, + 12.75 + ], + "texture": "#2" + } } }, { "name": "ranchu_48", - "from": [8.75, 0, 13], - "to": [9, 0.25, 13.25], + "from": [ + 8.75, + 0, + 13 + ], + "to": [ + 9, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [9, 13, 8.75, 13.25], "texture": "#2"}, - "east": {"uv": [8.75, 13, 9, 13.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [8.75, 13, 9, 13.25], "texture": "#2"}, - "west": {"uv": [8.75, 13, 9, 13.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [8.75, 13, 9, 13.25], "texture": "#2"}, - "down": {"uv": [8.75, 13.25, 9, 13], "texture": "#2"} + "north": { + "uv": [ + 9, + 13, + 8.75, + 13.25 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.75, + 13, + 9, + 13.25 + ], + "rotation": 90, + "texture": "#2" + }, + "south": { + "uv": [ + 8.75, + 13, + 9, + 13.25 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.75, + 13, + 9, + 13.25 + ], + "rotation": 270, + "texture": "#2" + }, + "up": { + "uv": [ + 8.75, + 13, + 9, + 13.25 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8.75, + 13.25, + 9, + 13 + ], + "texture": "#2" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 0.75, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 0.75, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 0.75, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 0.75, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 0.75, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 0.75, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 0.75, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 0.75, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 0.75, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 0.75, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 8.25, 2.75], - "scale": [0.35, 0.35, 0.35] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 8.25, + 2.75 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "ranchu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/rouninaji.json b/pack/assets/minecraft/models/fish/rouninaji.json index dbfe0cea..1be4e681 100644 --- a/pack/assets/minecraft/models/fish/rouninaji.json +++ b/pack/assets/minecraft/models/fish/rouninaji.json @@ -2,865 +2,4624 @@ "__name": "ロウニンアジ", "credit": "Made with Blockbench", "textures": { - "3": "fish/rouninaji", - "particle": "fish/raigyo" + "3": "item/fish/rouninaji", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "rouninaji_0", - "from": [9.25, 0, 4.25], - "to": [10, 0.25, 5], + "from": [ + 9.25, + 0, + 4.25 + ], + "to": [ + 10, + 0.25, + 5 + ], "faces": { - "north": {"uv": [10, 4.25, 9.25, 4.5], "texture": "#3"}, - "east": {"uv": [9.75, 4.25, 10, 5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.25, 4.75, 10, 5], "texture": "#3"}, - "west": {"uv": [9.25, 4.25, 9.5, 5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.25, 4.25, 10, 5], "texture": "#3"}, - "down": {"uv": [9.25, 5, 10, 4.25], "texture": "#3"} + "north": { + "uv": [ + 10, + 4.25, + 9.25, + 4.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.75, + 4.25, + 10, + 5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.25, + 4.75, + 10, + 5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.25, + 4.25, + 9.5, + 5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.25, + 4.25, + 10, + 5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.25, + 5, + 10, + 4.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_1", - "from": [8.5, 0, 4.5], - "to": [9.25, 0.25, 10.75], + "from": [ + 8.5, + 0, + 4.5 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 4.5, 8.5, 4.75], "texture": "#3"}, - "east": {"uv": [9, 4.5, 9.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.5, 10.5, 9.25, 10.75], "texture": "#3"}, - "west": {"uv": [8.5, 4.5, 8.75, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.5, 4.5, 9.25, 10.75], "texture": "#3"}, - "down": {"uv": [8.5, 10.75, 9.25, 4.5], "texture": "#3"} + "north": { + "uv": [ + 9.25, + 4.5, + 8.5, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9, + 4.5, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.5, + 10.5, + 9.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.5, + 4.5, + 8.75, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.5, + 4.5, + 9.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.5, + 10.75, + 9.25, + 4.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_2", - "from": [10, 0, 4.5], - "to": [10.25, 0.25, 4.75], + "from": [ + 10, + 0, + 4.5 + ], + "to": [ + 10.25, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [10.25, 4.5, 10, 4.75], "texture": "#3"}, - "east": {"uv": [10, 4.5, 10.25, 4.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 4.5, 10.25, 4.75], "texture": "#3"}, - "west": {"uv": [10, 4.5, 10.25, 4.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 4.5, 10.25, 4.75], "texture": "#3"}, - "down": {"uv": [10, 4.75, 10.25, 4.5], "texture": "#3"} + "north": { + "uv": [ + 10.25, + 4.5, + 10, + 4.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10, + 4.5, + 10.25, + 4.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 4.5, + 10.25, + 4.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 4.5, + 10.25, + 4.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 4.5, + 10.25, + 4.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 4.75, + 10.25, + 4.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_3", - "from": [8.25, 0, 4.75], - "to": [8.5, 0.25, 10.5], + "from": [ + 8.25, + 0, + 4.75 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 4.75, 8.25, 5], "texture": "#3"}, - "east": {"uv": [8.25, 4.75, 8.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#3"}, - "west": {"uv": [8.25, 4.75, 8.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8.25, 4.75, 8.5, 10.5], "texture": "#3"}, - "down": {"uv": [8.25, 10.5, 8.5, 4.75], "texture": "#3"} + "north": { + "uv": [ + 8.5, + 4.75, + 8.25, + 5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8.25, + 4.75, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8.25, + 4.75, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8.25, + 4.75, + 8.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 4.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_4", - "from": [8, 0, 5], - "to": [8.25, 0.25, 10.5], + "from": [ + 8, + 0, + 5 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.25, 5, 8, 5.25], "texture": "#3"}, - "east": {"uv": [8, 5, 8.25, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#3"}, - "west": {"uv": [8, 5, 8.25, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [8, 5, 8.25, 10.5], "texture": "#3"}, - "down": {"uv": [8, 10.5, 8.25, 5], "texture": "#3"} + "north": { + "uv": [ + 8.25, + 5, + 8, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 8, + 5, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 8, + 5, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 8, + 5, + 8.25, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.25, + 5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_5", - "from": [9.25, 0, 5], - "to": [9.75, 0.25, 5.25], + "from": [ + 9.25, + 0, + 5 + ], + "to": [ + 9.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [9.75, 5, 9.25, 5.25], "texture": "#3"}, - "east": {"uv": [9.5, 5, 9.75, 5.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.25, 5, 9.75, 5.25], "texture": "#3"}, - "west": {"uv": [9.25, 5, 9.5, 5.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.25, 5, 9.75, 5.25], "texture": "#3"}, - "down": {"uv": [9.25, 5.25, 9.75, 5], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 5, + 9.25, + 5.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.75, + 5.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.25, + 5, + 9.75, + 5.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.25, + 5, + 9.5, + 5.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.25, + 5, + 9.75, + 5.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.25, + 5.25, + 9.75, + 5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_6", - "from": [5.25, 0, 5.25], - "to": [7, 0.25, 10.5], + "from": [ + 5.25, + 0, + 5.25 + ], + "to": [ + 7, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7, 5.25, 5.25, 5.5], "texture": "#3"}, - "east": {"uv": [6.75, 5.25, 7, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.25, 10.25, 7, 10.5], "texture": "#3"}, - "west": {"uv": [5.25, 5.25, 5.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.25, 5.25, 7, 10.5], "texture": "#3"}, - "down": {"uv": [5.25, 10.5, 7, 5.25], "texture": "#3"} + "north": { + "uv": [ + 7, + 5.25, + 5.25, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.75, + 5.25, + 7, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 7, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.25, + 5.25, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.25, + 5.25, + 7, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 7, + 5.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_7", - "from": [7.75, 0, 5.25], - "to": [8, 0.25, 10.5], + "from": [ + 7.75, + 0, + 5.25 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 5.25, 7.75, 5.5], "texture": "#3"}, - "east": {"uv": [7.75, 5.25, 8, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#3"}, - "west": {"uv": [7.75, 5.25, 8, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7.75, 5.25, 8, 10.5], "texture": "#3"}, - "down": {"uv": [7.75, 10.5, 8, 5.25], "texture": "#3"} + "north": { + "uv": [ + 8, + 5.25, + 7.75, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.75, + 5.25, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7.75, + 5.25, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7.75, + 5.25, + 8, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8, + 5.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_8", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 11], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#3"}, - "east": {"uv": [9.25, 5.25, 9.5, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.25, 10.75, 9.5, 11], "texture": "#3"}, - "west": {"uv": [9.25, 5.25, 9.5, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.25, 5.25, 9.5, 11], "texture": "#3"}, - "down": {"uv": [9.25, 11, 9.5, 5.25], "texture": "#3"} + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.25, + 11, + 9.5, + 5.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_9", - "from": [4, 0, 5.5], - "to": [5.25, 0.25, 10.75], + "from": [ + 4, + 0, + 5.5 + ], + "to": [ + 5.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.25, 5.5, 4, 5.75], "texture": "#3"}, - "east": {"uv": [5, 5.5, 5.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4, 10.5, 5.25, 10.75], "texture": "#3"}, - "west": {"uv": [4, 5.5, 4.25, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4, 5.5, 5.25, 10.75], "texture": "#3"}, - "down": {"uv": [4, 10.75, 5.25, 5.5], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 5.5, + 4, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 5.5, + 5.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4, + 10.5, + 5.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4, + 5.5, + 4.25, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4, + 5.5, + 5.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4, + 10.75, + 5.25, + 5.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_10", - "from": [7, 0, 5.5], - "to": [7.75, 0.25, 10.5], + "from": [ + 7, + 0, + 5.5 + ], + "to": [ + 7.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.75, 5.5, 7, 5.75], "texture": "#3"}, - "east": {"uv": [7.5, 5.5, 7.75, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [7, 10.25, 7.75, 10.5], "texture": "#3"}, - "west": {"uv": [7, 5.5, 7.25, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [7, 5.5, 7.75, 10.5], "texture": "#3"}, - "down": {"uv": [7, 10.5, 7.75, 5.5], "texture": "#3"} + "north": { + "uv": [ + 7.75, + 5.5, + 7, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 7.5, + 5.5, + 7.75, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 7, + 10.25, + 7.75, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 7, + 5.5, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 7, + 5.5, + 7.75, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 7, + 10.5, + 7.75, + 5.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_11", - "from": [14.75, 0, 5.5], - "to": [15.25, 0.25, 6.25], + "from": [ + 14.75, + 0, + 5.5 + ], + "to": [ + 15.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.25, 5.5, 14.75, 5.75], "texture": "#3"}, - "east": {"uv": [15, 5.5, 15.25, 6.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 6, 15.25, 6.25], "texture": "#3"}, - "west": {"uv": [14.75, 5.5, 15, 6.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 5.5, 15.25, 6.25], "texture": "#3"}, - "down": {"uv": [14.75, 6.25, 15.25, 5.5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 5.5, + 14.75, + 5.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 5.5, + 15.25, + 6.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 6, + 15.25, + 6.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 5.5, + 15, + 6.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 5.5, + 15.25, + 6.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 6.25, + 15.25, + 5.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_12", - "from": [3.25, 0, 5.75], - "to": [4, 0.25, 10.75], + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 4, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [4, 5.75, 3.25, 6], "texture": "#3"}, - "east": {"uv": [3.75, 5.75, 4, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [3.25, 10.5, 4, 10.75], "texture": "#3"}, - "west": {"uv": [3.25, 5.75, 3.5, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [3.25, 5.75, 4, 10.75], "texture": "#3"}, - "down": {"uv": [3.25, 10.75, 4, 5.75], "texture": "#3"} + "north": { + "uv": [ + 4, + 5.75, + 3.25, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 4, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 3.25, + 10.5, + 4, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 4, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 3.25, + 10.75, + 4, + 5.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_13", - "from": [9.5, 0, 5.75], - "to": [9.75, 0.25, 11.25], + "from": [ + 9.5, + 0, + 5.75 + ], + "to": [ + 9.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.75, 5.75, 9.5, 6], "texture": "#3"}, - "east": {"uv": [9.5, 5.75, 9.75, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.5, 11, 9.75, 11.25], "texture": "#3"}, - "west": {"uv": [9.5, 5.75, 9.75, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.5, 5.75, 9.75, 11.25], "texture": "#3"}, - "down": {"uv": [9.5, 11.25, 9.75, 5.75], "texture": "#3"} + "north": { + "uv": [ + 9.75, + 5.75, + 9.5, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.5, + 11, + 9.75, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 9.75, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.5, + 11.25, + 9.75, + 5.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_14", - "from": [14.5, 0, 5.75], - "to": [14.75, 0.25, 7.25], + "from": [ + 14.5, + 0, + 5.75 + ], + "to": [ + 14.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14.75, 5.75, 14.5, 6], "texture": "#3"}, - "east": {"uv": [14.5, 5.75, 14.75, 7.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 7, 14.75, 7.25], "texture": "#3"}, - "west": {"uv": [14.5, 5.75, 14.75, 7.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 5.75, 14.75, 7.25], "texture": "#3"}, - "down": {"uv": [14.5, 7.25, 14.75, 5.75], "texture": "#3"} + "north": { + "uv": [ + 14.75, + 5.75, + 14.5, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.5, + 5.75, + 14.75, + 7.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 5.75, + 14.75, + 7.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 5.75, + 14.75, + 7.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 7.25, + 14.75, + 5.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_15", - "from": [15.25, 0, 5.75], - "to": [15.5, 0.25, 6], + "from": [ + 15.25, + 0, + 5.75 + ], + "to": [ + 15.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.5, 5.75, 15.25, 6], "texture": "#3"}, - "east": {"uv": [15.25, 5.75, 15.5, 6], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 5.75, 15.5, 6], "texture": "#3"}, - "west": {"uv": [15.25, 5.75, 15.5, 6], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 5.75, 15.5, 6], "texture": "#3"}, - "down": {"uv": [15.25, 6, 15.5, 5.75], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 5.75, + 15.25, + 6 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 6, + 15.5, + 5.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_16", - "from": [2.75, 0, 6], - "to": [3.25, 0.25, 10.75], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.25, 6, 2.75, 6.25], "texture": "#3"}, - "east": {"uv": [3, 6, 3.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.75, 10.5, 3.25, 10.75], "texture": "#3"}, - "west": {"uv": [2.75, 6, 3, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.75, 6, 3.25, 10.75], "texture": "#3"}, - "down": {"uv": [2.75, 10.75, 3.25, 6], "texture": "#3"} + "north": { + "uv": [ + 3.25, + 6, + 2.75, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.75, + 10.5, + 3.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.75, + 6, + 3.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.75, + 10.75, + 3.25, + 6 + ], + "texture": "#3" + } } }, { "name": "rouninaji_17", - "from": [9.75, 0, 6], - "to": [10, 0.25, 11.25], + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10, 6, 9.75, 6.25], "texture": "#3"}, - "east": {"uv": [9.75, 6, 10, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9.75, 11, 10, 11.25], "texture": "#3"}, - "west": {"uv": [9.75, 6, 10, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9.75, 6, 10, 11.25], "texture": "#3"}, - "down": {"uv": [9.75, 11.25, 10, 6], "texture": "#3"} + "north": { + "uv": [ + 10, + 6, + 9.75, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9.75, + 6, + 10, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9.75, + 11, + 10, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9.75, + 6, + 10, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9.75, + 11.25, + 10, + 6 + ], + "texture": "#3" + } } }, { "name": "rouninaji_18", - "from": [14.25, 0, 6], - "to": [14.5, 0.25, 7.75], + "from": [ + 14.25, + 0, + 6 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.5, 6, 14.25, 6.25], "texture": "#3"}, - "east": {"uv": [14.25, 6, 14.5, 7.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 7.5, 14.5, 7.75], "texture": "#3"}, - "west": {"uv": [14.25, 6, 14.5, 7.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 6, 14.5, 7.75], "texture": "#3"}, - "down": {"uv": [14.25, 7.75, 14.5, 6], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 6, + 14.25, + 6.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 6, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 6, + 14.5, + 7.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 6, + 14.5, + 7.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 7.75, + 14.5, + 6 + ], + "texture": "#3" + } } }, { "name": "rouninaji_19", - "from": [2.25, 0, 6.25], - "to": [2.75, 0.25, 10.75], + "from": [ + 2.25, + 0, + 6.25 + ], + "to": [ + 2.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.75, 6.25, 2.25, 6.5], "texture": "#3"}, - "east": {"uv": [2.5, 6.25, 2.75, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2.25, 10.5, 2.75, 10.75], "texture": "#3"}, - "west": {"uv": [2.25, 6.25, 2.5, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2.25, 6.25, 2.75, 10.75], "texture": "#3"}, - "down": {"uv": [2.25, 10.75, 2.75, 6.25], "texture": "#3"} + "north": { + "uv": [ + 2.75, + 6.25, + 2.25, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2.25, + 10.5, + 2.75, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2.25, + 6.25, + 2.5, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2.25, + 6.25, + 2.75, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2.25, + 10.75, + 2.75, + 6.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_20", - "from": [10, 0, 6.25], - "to": [10.5, 0.25, 10], + "from": [ + 10, + 0, + 6.25 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 6.25, 10, 6.5], "texture": "#3"}, - "east": {"uv": [10.25, 6.25, 10.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 9.75, 10.5, 10], "texture": "#3"}, - "west": {"uv": [10, 6.25, 10.25, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 6.25, 10.5, 10], "texture": "#3"}, - "down": {"uv": [10, 10, 10.5, 6.25], "texture": "#3"} + "north": { + "uv": [ + 10.5, + 6.25, + 10, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.25, + 6.25, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 6.25, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 6.25, + 10.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 10, + 10.5, + 6.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_21", - "from": [14, 0, 6.25], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 6.25 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 6.25, 14, 6.5], "texture": "#3"}, - "east": {"uv": [14, 6.25, 14.25, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#3"}, - "west": {"uv": [14, 6.25, 14.25, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14, 6.25, 14.25, 9.75], "texture": "#3"}, - "down": {"uv": [14, 9.75, 14.25, 6.25], "texture": "#3"} + "north": { + "uv": [ + 14.25, + 6.25, + 14, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14, + 6.25, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14, + 6.25, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14, + 6.25, + 14.25, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 6.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_22", - "from": [14.75, 0, 6.25], - "to": [15, 0.25, 6.75], + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15, 6.25, 14.75, 6.5], "texture": "#3"}, - "east": {"uv": [14.75, 6.25, 15, 6.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 6.5, 15, 6.75], "texture": "#3"}, - "west": {"uv": [14.75, 6.25, 15, 6.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 6.25, 15, 6.75], "texture": "#3"}, - "down": {"uv": [14.75, 6.75, 15, 6.25], "texture": "#3"} + "north": { + "uv": [ + 15, + 6.25, + 14.75, + 6.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 6.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 6.5, + 15, + 6.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 6.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15, + 6.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 6.75, + 15, + 6.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_23", - "from": [2, 0, 6.5], - "to": [2.25, 0.25, 10.75], + "from": [ + 2, + 0, + 6.5 + ], + "to": [ + 2.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.25, 6.5, 2, 6.75], "texture": "#3"}, - "east": {"uv": [2, 6.5, 2.25, 10.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [2, 10.5, 2.25, 10.75], "texture": "#3"}, - "west": {"uv": [2, 6.5, 2.25, 10.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [2, 6.5, 2.25, 10.75], "texture": "#3"}, - "down": {"uv": [2, 10.75, 2.25, 6.5], "texture": "#3"} + "north": { + "uv": [ + 2.25, + 6.5, + 2, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 2, + 6.5, + 2.25, + 10.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.25, + 10.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 2, + 6.5, + 2.25, + 10.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.25, + 10.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 2, + 10.75, + 2.25, + 6.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_24", - "from": [10.5, 0, 6.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 6.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 6.5, 10.5, 6.75], "texture": "#3"}, - "east": {"uv": [10.5, 6.5, 10.75, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#3"}, - "west": {"uv": [10.5, 6.5, 10.75, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.5, 6.5, 10.75, 9.75], "texture": "#3"}, - "down": {"uv": [10.5, 9.75, 10.75, 6.5], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 6.5, + 10.5, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 6.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.5, + 6.5, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.5, + 6.5, + 10.75, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 6.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_25", - "from": [13.75, 0, 6.5], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 6.5 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 6.5, 13.75, 6.75], "texture": "#3"}, - "east": {"uv": [13.75, 6.5, 14, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#3"}, - "west": {"uv": [13.75, 6.5, 14, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.75, 6.5, 14, 9.5], "texture": "#3"}, - "down": {"uv": [13.75, 9.5, 14, 6.5], "texture": "#3"} + "north": { + "uv": [ + 14, + 6.5, + 13.75, + 6.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.75, + 6.5, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.75, + 6.5, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.75, + 6.5, + 14, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 6.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_26", - "from": [1.75, 0, 6.75], - "to": [2, 0.25, 10.5], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2, 6.75, 1.75, 7], "texture": "#3"}, - "east": {"uv": [1.75, 6.75, 2, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.75, 10.25, 2, 10.5], "texture": "#3"}, - "west": {"uv": [1.75, 6.75, 2, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.75, 6.75, 2, 10.5], "texture": "#3"}, - "down": {"uv": [1.75, 10.5, 2, 6.75], "texture": "#3"} + "north": { + "uv": [ + 2, + 6.75, + 1.75, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.75, + 6.75, + 2, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.75, + 10.25, + 2, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.75, + 10.5, + 2, + 6.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_27", - "from": [10.75, 0, 6.75], - "to": [11.25, 0.25, 9.5], + "from": [ + 10.75, + 0, + 6.75 + ], + "to": [ + 11.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.25, 6.75, 10.75, 7], "texture": "#3"}, - "east": {"uv": [11, 6.75, 11.25, 9.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 9.25, 11.25, 9.5], "texture": "#3"}, - "west": {"uv": [10.75, 6.75, 11, 9.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 6.75, 11.25, 9.5], "texture": "#3"}, - "down": {"uv": [10.75, 9.5, 11.25, 6.75], "texture": "#3"} + "north": { + "uv": [ + 11.25, + 6.75, + 10.75, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11, + 6.75, + 11.25, + 9.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11.25, + 9.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 6.75, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 6.75, + 11.25, + 9.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11.25, + 6.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_28", - "from": [13.5, 0, 6.75], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 6.75, 13.5, 7], "texture": "#3"}, - "east": {"uv": [13.5, 6.75, 13.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.5, 9, 13.75, 9.25], "texture": "#3"}, - "west": {"uv": [13.5, 6.75, 13.75, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.5, 6.75, 13.75, 9.25], "texture": "#3"}, - "down": {"uv": [13.5, 9.25, 13.75, 6.75], "texture": "#3"} + "north": { + "uv": [ + 13.75, + 6.75, + 13.5, + 7 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.5, + 6.75, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 13.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 13.75, + 6.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_29", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 10.5], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#3"}, - "east": {"uv": [1.5, 7, 1.75, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.5, 10.25, 1.75, 10.5], "texture": "#3"}, - "west": {"uv": [1.5, 7, 1.75, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.5, 7, 1.75, 10.5], "texture": "#3"}, - "down": {"uv": [1.5, 10.5, 1.75, 7], "texture": "#3"} + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.5, + 10.25, + 1.75, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.5, + 10.5, + 1.75, + 7 + ], + "texture": "#3" + } } }, { "name": "rouninaji_30", - "from": [11.25, 0, 7], - "to": [11.75, 0.25, 9.25], + "from": [ + 11.25, + 0, + 7 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 7, 11.25, 7.25], "texture": "#3"}, - "east": {"uv": [11.5, 7, 11.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.25, 9, 11.75, 9.25], "texture": "#3"}, - "west": {"uv": [11.25, 7, 11.5, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.25, 7, 11.75, 9.25], "texture": "#3"}, - "down": {"uv": [11.25, 9.25, 11.75, 7], "texture": "#3"} + "north": { + "uv": [ + 11.75, + 7, + 11.25, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.5, + 7, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.25, + 7, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.25, + 7, + 11.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.75, + 7 + ], + "texture": "#3" + } } }, { "name": "rouninaji_31", - "from": [13.25, 0, 7], - "to": [13.5, 0.25, 8.75], + "from": [ + 13.25, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 7, 13.25, 7.25], "texture": "#3"}, - "east": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13.25, 8.5, 13.5, 8.75], "texture": "#3"}, - "west": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13.25, 7, 13.5, 8.75], "texture": "#3"}, - "down": {"uv": [13.25, 8.75, 13.5, 7], "texture": "#3"} + "north": { + "uv": [ + 13.5, + 7, + 13.25, + 7.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13.25, + 8.75, + 13.5, + 7 + ], + "texture": "#3" + } } }, { "name": "rouninaji_32", - "from": [1.25, 0, 7.25], - "to": [1.5, 0.25, 10.25], + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1.25, 7.5], "texture": "#3"}, - "east": {"uv": [1.25, 7.25, 1.5, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1.25, 10, 1.5, 10.25], "texture": "#3"}, - "west": {"uv": [1.25, 7.25, 1.5, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1.25, 7.25, 1.5, 10.25], "texture": "#3"}, - "down": {"uv": [1.25, 10.25, 1.5, 7.25], "texture": "#3"} + "north": { + "uv": [ + 1.5, + 7.25, + 1.25, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1.25, + 10, + 1.5, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1.25, + 10.25, + 1.5, + 7.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_33", - "from": [11.75, 0, 7.25], - "to": [12.25, 0.25, 8.75], + "from": [ + 11.75, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 7.25, 11.75, 7.5], "texture": "#3"}, - "east": {"uv": [12, 7.25, 12.25, 8.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 8.5, 12.25, 8.75], "texture": "#3"}, - "west": {"uv": [11.75, 7.25, 12, 8.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 7.25, 12.25, 8.75], "texture": "#3"}, - "down": {"uv": [11.75, 8.75, 12.25, 7.25], "texture": "#3"} + "north": { + "uv": [ + 12.25, + 7.25, + 11.75, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 8.5, + 12.25, + 8.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 7.25, + 12, + 8.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 7.25, + 12.25, + 8.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 8.75, + 12.25, + 7.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_34", - "from": [13, 0, 7.25], - "to": [13.25, 0.25, 8.5], + "from": [ + 13, + 0, + 7.25 + ], + "to": [ + 13.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.25, 7.25, 13, 7.5], "texture": "#3"}, - "east": {"uv": [13, 7.25, 13.25, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [13, 8.25, 13.25, 8.5], "texture": "#3"}, - "west": {"uv": [13, 7.25, 13.25, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [13, 7.25, 13.25, 8.5], "texture": "#3"}, - "down": {"uv": [13, 8.5, 13.25, 7.25], "texture": "#3"} + "north": { + "uv": [ + 13.25, + 7.25, + 13, + 7.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 13, + 7.25, + 13.25, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 13, + 8.25, + 13.25, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 13, + 7.25, + 13.25, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 13, + 7.25, + 13.25, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 13, + 8.5, + 13.25, + 7.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_35", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 10.25], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#3"}, - "east": {"uv": [1, 7.5, 1.25, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [1, 10, 1.25, 10.25], "texture": "#3"}, - "west": {"uv": [1, 7.5, 1.25, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [1, 7.5, 1.25, 10.25], "texture": "#3"}, - "down": {"uv": [1, 10.25, 1.25, 7.5], "texture": "#3"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 10, + 1.25, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 1, + 10.25, + 1.25, + 7.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_36", - "from": [12.25, 0, 7.5], - "to": [13, 0.25, 8.25], + "from": [ + 12.25, + 0, + 7.5 + ], + "to": [ + 13, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13, 7.5, 12.25, 7.75], "texture": "#3"}, - "east": {"uv": [12.75, 7.5, 13, 8.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.25, 8, 13, 8.25], "texture": "#3"}, - "west": {"uv": [12.25, 7.5, 12.5, 8.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.25, 7.5, 13, 8.25], "texture": "#3"}, - "down": {"uv": [12.25, 8.25, 13, 7.5], "texture": "#3"} + "north": { + "uv": [ + 13, + 7.5, + 12.25, + 7.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.75, + 7.5, + 13, + 8.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.25, + 8, + 13, + 8.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.25, + 7.5, + 12.5, + 8.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.25, + 7.5, + 13, + 8.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.25, + 8.25, + 13, + 7.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_37", - "from": [0.75, 0, 7.75], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 7.75 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7.75, 0.75, 8], "texture": "#3"}, - "east": {"uv": [0.75, 7.75, 1, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#3"}, - "west": {"uv": [0.75, 7.75, 1, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 7.75, 1, 9.25], "texture": "#3"}, - "down": {"uv": [0.75, 9.25, 1, 7.75], "texture": "#3"} + "north": { + "uv": [ + 1, + 7.75, + 0.75, + 8 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 7.75, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 7.75, + 1, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 7.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_38", - "from": [0.5, 0, 8.25], - "to": [0.75, 0.25, 9.25], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 0.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#3"}, - "east": {"uv": [0.5, 8.25, 0.75, 9.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 9, 0.75, 9.25], "texture": "#3"}, - "west": {"uv": [0.5, 8.25, 0.75, 9.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 8.25, 0.75, 9.25], "texture": "#3"}, - "down": {"uv": [0.5, 9.25, 0.75, 8.25], "texture": "#3"} + "north": { + "uv": [ + 0.75, + 8.25, + 0.5, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 9, + 0.75, + 9.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 9.25, + 0.75, + 8.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_39", - "from": [12.25, 0, 8.25], - "to": [12.5, 0.25, 8.5], + "from": [ + 12.25, + 0, + 8.25 + ], + "to": [ + 12.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.5, 8.25, 12.25, 8.5], "texture": "#3"}, - "east": {"uv": [12.25, 8.25, 12.5, 8.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#3"}, - "west": {"uv": [12.25, 8.25, 12.5, 8.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [12.25, 8.25, 12.5, 8.5], "texture": "#3"}, - "down": {"uv": [12.25, 8.5, 12.5, 8.25], "texture": "#3"} + "north": { + "uv": [ + 12.5, + 8.25, + 12.25, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 12.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 12.5, + 8.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_40", - "from": [14.25, 0, 8.25], - "to": [14.5, 0.25, 10], + "from": [ + 14.25, + 0, + 8.25 + ], + "to": [ + 14.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.5, 8.25, 14.25, 8.5], "texture": "#3"}, - "east": {"uv": [14.25, 8.25, 14.5, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.25, 9.75, 14.5, 10], "texture": "#3"}, - "west": {"uv": [14.25, 8.25, 14.5, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.25, 8.25, 14.5, 10], "texture": "#3"}, - "down": {"uv": [14.25, 10, 14.5, 8.25], "texture": "#3"} + "north": { + "uv": [ + 14.5, + 8.25, + 14.25, + 8.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.25, + 8.25, + 14.5, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 14.5, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.25, + 8.25, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.25, + 8.25, + 14.5, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.25, + 10, + 14.5, + 8.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_41", - "from": [0.25, 0, 8.75], - "to": [0.5, 0.25, 9], + "from": [ + 0.25, + 0, + 8.75 + ], + "to": [ + 0.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.5, 8.75, 0.25, 9], "texture": "#3"}, - "east": {"uv": [0.25, 8.75, 0.5, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.25, 8.75, 0.5, 9], "texture": "#3"}, - "west": {"uv": [0.25, 8.75, 0.5, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.25, 8.75, 0.5, 9], "texture": "#3"}, - "down": {"uv": [0.25, 9, 0.5, 8.75], "texture": "#3"} + "north": { + "uv": [ + 0.5, + 8.75, + 0.25, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.25, + 9, + 0.5, + 8.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_42", - "from": [11.75, 0, 8.75], - "to": [12, 0.25, 9], + "from": [ + 11.75, + 0, + 8.75 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 8.75, 11.75, 9], "texture": "#3"}, - "east": {"uv": [11.75, 8.75, 12, 9], "rotation": 90, "texture": "#3"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#3"}, - "west": {"uv": [11.75, 8.75, 12, 9], "rotation": 270, "texture": "#3"}, - "up": {"uv": [11.75, 8.75, 12, 9], "texture": "#3"}, - "down": {"uv": [11.75, 9, 12, 8.75], "texture": "#3"} + "north": { + "uv": [ + 12, + 8.75, + 11.75, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 8.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_43", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#3"}, - "east": {"uv": [14.5, 8.75, 14.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.5, 10, 14.75, 10.25], "texture": "#3"}, - "west": {"uv": [14.5, 8.75, 14.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.5, 8.75, 14.75, 10.25], "texture": "#3"}, - "down": {"uv": [14.5, 10.25, 14.75, 8.75], "texture": "#3"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 14.75, + 8.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_44", - "from": [14.75, 0, 9], - "to": [15, 0.25, 10.5], + "from": [ + 14.75, + 0, + 9 + ], + "to": [ + 15, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15, 9, 14.75, 9.25], "texture": "#3"}, - "east": {"uv": [14.75, 9, 15, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [14.75, 10.25, 15, 10.5], "texture": "#3"}, - "west": {"uv": [14.75, 9, 15, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [14.75, 9, 15, 10.5], "texture": "#3"}, - "down": {"uv": [14.75, 10.5, 15, 9], "texture": "#3"} + "north": { + "uv": [ + 15, + 9, + 14.75, + 9.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 14.75, + 9, + 15, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 14.75, + 10.25, + 15, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 14.75, + 9, + 15, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 14.75, + 9, + 15, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 14.75, + 10.5, + 15, + 9 + ], + "texture": "#3" + } } }, { "name": "rouninaji_45", - "from": [0.25, 0, 9.5], - "to": [1, 0.25, 9.75], + "from": [ + 0.25, + 0, + 9.5 + ], + "to": [ + 1, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1, 9.5, 0.25, 9.75], "texture": "#3"}, - "east": {"uv": [0.75, 9.5, 1, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.25, 9.5, 1, 9.75], "texture": "#3"}, - "west": {"uv": [0.25, 9.5, 0.5, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.25, 9.5, 1, 9.75], "texture": "#3"}, - "down": {"uv": [0.25, 9.75, 1, 9.5], "texture": "#3"} + "north": { + "uv": [ + 1, + 9.5, + 0.25, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 9.5, + 1, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.25, + 9.5, + 1, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.25, + 9.5, + 1, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.25, + 9.75, + 1, + 9.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_46", - "from": [10.75, 0, 9.5], - "to": [11, 0.25, 9.75], + "from": [ + 10.75, + 0, + 9.5 + ], + "to": [ + 11, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11, 9.5, 10.75, 9.75], "texture": "#3"}, - "east": {"uv": [10.75, 9.5, 11, 9.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 9.5, 11, 9.75], "texture": "#3"}, - "west": {"uv": [10.75, 9.5, 11, 9.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 9.5, 11, 9.75], "texture": "#3"}, - "down": {"uv": [10.75, 9.75, 11, 9.5], "texture": "#3"} + "north": { + "uv": [ + 11, + 9.5, + 10.75, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 9.5, + 11, + 9.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 9.75, + 11, + 9.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_47", - "from": [15, 0, 9.5], - "to": [15.25, 0.25, 10.5], + "from": [ + 15, + 0, + 9.5 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 9.5, 15, 9.75], "texture": "#3"}, - "east": {"uv": [15, 9.5, 15.25, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15, 10.25, 15.25, 10.5], "texture": "#3"}, - "west": {"uv": [15, 9.5, 15.25, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15, 9.5, 15.25, 10.5], "texture": "#3"}, - "down": {"uv": [15, 10.5, 15.25, 9.5], "texture": "#3"} + "north": { + "uv": [ + 15.25, + 9.5, + 15, + 9.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15, + 10.25, + 15.25, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15, + 9.5, + 15.25, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15, + 10.5, + 15.25, + 9.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_48", - "from": [0.5, 0, 9.75], - "to": [1, 0.25, 10], + "from": [ + 0.5, + 0, + 9.75 + ], + "to": [ + 1, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1, 9.75, 0.5, 10], "texture": "#3"}, - "east": {"uv": [0.75, 9.75, 1, 10], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.5, 9.75, 1, 10], "texture": "#3"}, - "west": {"uv": [0.5, 9.75, 0.75, 10], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.5, 9.75, 1, 10], "texture": "#3"}, - "down": {"uv": [0.5, 10, 1, 9.75], "texture": "#3"} + "north": { + "uv": [ + 1, + 9.75, + 0.5, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 9.75, + 1, + 10 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 1, + 10 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.5, + 9.75, + 0.75, + 10 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.5, + 9.75, + 1, + 10 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.5, + 10, + 1, + 9.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_49", - "from": [15.25, 0, 9.75], - "to": [15.5, 0.25, 10.5], + "from": [ + 15.25, + 0, + 9.75 + ], + "to": [ + 15.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.5, 9.75, 15.25, 10], "texture": "#3"}, - "east": {"uv": [15.25, 9.75, 15.5, 10.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.25, 10.25, 15.5, 10.5], "texture": "#3"}, - "west": {"uv": [15.25, 9.75, 15.5, 10.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.25, 9.75, 15.5, 10.5], "texture": "#3"}, - "down": {"uv": [15.25, 10.5, 15.5, 9.75], "texture": "#3"} + "north": { + "uv": [ + 15.5, + 9.75, + 15.25, + 10 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.25, + 10.25, + 15.5, + 10.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.25, + 10.5, + 15.5, + 9.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_50", - "from": [0.75, 0, 10], - "to": [1, 0.25, 10.25], + "from": [ + 0.75, + 0, + 10 + ], + "to": [ + 1, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1, 10, 0.75, 10.25], "texture": "#3"}, - "east": {"uv": [0.75, 10, 1, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [0.75, 10, 1, 10.25], "texture": "#3"}, - "west": {"uv": [0.75, 10, 1, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [0.75, 10, 1, 10.25], "texture": "#3"}, - "down": {"uv": [0.75, 10.25, 1, 10], "texture": "#3"} + "north": { + "uv": [ + 1, + 10, + 0.75, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0.75, + 10.25, + 1, + 10 + ], + "texture": "#3" + } } }, { "name": "rouninaji_51", - "from": [10, 0, 10], - "to": [10.25, 0.25, 11.5], + "from": [ + 10, + 0, + 10 + ], + "to": [ + 10.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.25, 10, 10, 10.25], "texture": "#3"}, - "east": {"uv": [10, 10, 10.25, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10, 11.25, 10.25, 11.5], "texture": "#3"}, - "west": {"uv": [10, 10, 10.25, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10, 10, 10.25, 11.5], "texture": "#3"}, - "down": {"uv": [10, 11.5, 10.25, 10], "texture": "#3"} + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10, + 10, + 10.25, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10, + 11.25, + 10.25, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10, + 10, + 10.25, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10, + 10, + 10.25, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10, + 11.5, + 10.25, + 10 + ], + "texture": "#3" + } } }, { "name": "rouninaji_52", - "from": [15.5, 0, 10], - "to": [15.75, 0.25, 10.25], + "from": [ + 15.5, + 0, + 10 + ], + "to": [ + 15.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.75, 10, 15.5, 10.25], "texture": "#3"}, - "east": {"uv": [15.5, 10, 15.75, 10.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [15.5, 10, 15.75, 10.25], "texture": "#3"}, - "west": {"uv": [15.5, 10, 15.75, 10.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [15.5, 10, 15.75, 10.25], "texture": "#3"}, - "down": {"uv": [15.5, 10.25, 15.75, 10], "texture": "#3"} + "north": { + "uv": [ + 15.75, + 10, + 15.5, + 10.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 15.5, + 10.25, + 15.75, + 10 + ], + "texture": "#3" + } } }, { "name": "rouninaji_53", - "from": [5.25, 0, 10.5], - "to": [5.75, 0.25, 11.75], + "from": [ + 5.25, + 0, + 10.5 + ], + "to": [ + 5.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5.75, 10.5, 5.25, 10.75], "texture": "#3"}, - "east": {"uv": [5.5, 10.5, 5.75, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.25, 11.5, 5.75, 11.75], "texture": "#3"}, - "west": {"uv": [5.25, 10.5, 5.5, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.25, 10.5, 5.75, 11.75], "texture": "#3"}, - "down": {"uv": [5.25, 11.75, 5.75, 10.5], "texture": "#3"} + "north": { + "uv": [ + 5.75, + 10.5, + 5.25, + 10.75 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5.5, + 10.5, + 5.75, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.25, + 11.5, + 5.75, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.25, + 10.5, + 5.5, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.25, + 10.5, + 5.75, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.25, + 11.75, + 5.75, + 10.5 + ], + "texture": "#3" + } } }, { "name": "rouninaji_54", - "from": [4.5, 0, 10.75], - "to": [5.25, 0.25, 11], + "from": [ + 4.5, + 0, + 10.75 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 10.75, 4.5, 11], "texture": "#3"}, - "east": {"uv": [5, 10.75, 5.25, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.5, 10.75, 5.25, 11], "texture": "#3"}, - "west": {"uv": [4.5, 10.75, 4.75, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.5, 10.75, 5.25, 11], "texture": "#3"}, - "down": {"uv": [4.5, 11, 5.25, 10.75], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 10.75, + 4.5, + 11 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 5.25, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.5, + 10.75, + 5.25, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.5, + 11, + 5.25, + 10.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_55", - "from": [9, 0, 10.75], - "to": [9.25, 0.25, 11], + "from": [ + 9, + 0, + 10.75 + ], + "to": [ + 9.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.25, 10.75, 9, 11], "texture": "#3"}, - "east": {"uv": [9, 10.75, 9.25, 11], "rotation": 90, "texture": "#3"}, - "south": {"uv": [9, 10.75, 9.25, 11], "texture": "#3"}, - "west": {"uv": [9, 10.75, 9.25, 11], "rotation": 270, "texture": "#3"}, - "up": {"uv": [9, 10.75, 9.25, 11], "texture": "#3"}, - "down": {"uv": [9, 11, 9.25, 10.75], "texture": "#3"} + "north": { + "uv": [ + 9.25, + 10.75, + 9, + 11 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 9, + 11, + 9.25, + 10.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_56", - "from": [10.25, 0, 10.75], - "to": [10.75, 0.25, 11.5], + "from": [ + 10.25, + 0, + 10.75 + ], + "to": [ + 10.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.75, 10.75, 10.25, 11], "texture": "#3"}, - "east": {"uv": [10.5, 10.75, 10.75, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.25, 11.25, 10.75, 11.5], "texture": "#3"}, - "west": {"uv": [10.25, 10.75, 10.5, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.25, 10.75, 10.75, 11.5], "texture": "#3"}, - "down": {"uv": [10.25, 11.5, 10.75, 10.75], "texture": "#3"} + "north": { + "uv": [ + 10.75, + 10.75, + 10.25, + 11 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.5, + 10.75, + 10.75, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.25, + 11.25, + 10.75, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.25, + 10.75, + 10.5, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.25, + 10.75, + 10.75, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.25, + 11.5, + 10.75, + 10.75 + ], + "texture": "#3" + } } }, { "name": "rouninaji_57", - "from": [4.75, 0, 11], - "to": [5.25, 0.25, 11.25], + "from": [ + 4.75, + 0, + 11 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 11, 4.75, 11.25], "texture": "#3"}, - "east": {"uv": [5, 11, 5.25, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [4.75, 11, 5.25, 11.25], "texture": "#3"}, - "west": {"uv": [4.75, 11, 5, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [4.75, 11, 5.25, 11.25], "texture": "#3"}, - "down": {"uv": [4.75, 11.25, 5.25, 11], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 11, + 4.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 4.75, + 11, + 5.25, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 4.75, + 11, + 5.25, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 4.75, + 11.25, + 5.25, + 11 + ], + "texture": "#3" + } } }, { "name": "rouninaji_58", - "from": [5.75, 0, 11], - "to": [6.25, 0.25, 11.75], + "from": [ + 5.75, + 0, + 11 + ], + "to": [ + 6.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6.25, 11, 5.75, 11.25], "texture": "#3"}, - "east": {"uv": [6, 11, 6.25, 11.75], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5.75, 11.5, 6.25, 11.75], "texture": "#3"}, - "west": {"uv": [5.75, 11, 6, 11.75], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5.75, 11, 6.25, 11.75], "texture": "#3"}, - "down": {"uv": [5.75, 11.75, 6.25, 11], "texture": "#3"} + "north": { + "uv": [ + 6.25, + 11, + 5.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6, + 11, + 6.25, + 11.75 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5.75, + 11.5, + 6.25, + 11.75 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5.75, + 11, + 6, + 11.75 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5.75, + 11, + 6.25, + 11.75 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5.75, + 11.75, + 6.25, + 11 + ], + "texture": "#3" + } } }, { "name": "rouninaji_59", - "from": [10.75, 0, 11], - "to": [11, 0.25, 11.25], + "from": [ + 10.75, + 0, + 11 + ], + "to": [ + 11, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11, 11, 10.75, 11.25], "texture": "#3"}, - "east": {"uv": [10.75, 11, 11, 11.25], "rotation": 90, "texture": "#3"}, - "south": {"uv": [10.75, 11, 11, 11.25], "texture": "#3"}, - "west": {"uv": [10.75, 11, 11, 11.25], "rotation": 270, "texture": "#3"}, - "up": {"uv": [10.75, 11, 11, 11.25], "texture": "#3"}, - "down": {"uv": [10.75, 11.25, 11, 11], "texture": "#3"} + "north": { + "uv": [ + 11, + 11, + 10.75, + 11.25 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 10.75, + 11.25, + 11, + 11 + ], + "texture": "#3" + } } }, { "name": "rouninaji_60", - "from": [5, 0, 11.25], - "to": [5.25, 0.25, 11.5], + "from": [ + 5, + 0, + 11.25 + ], + "to": [ + 5.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.25, 11.25, 5, 11.5], "texture": "#3"}, - "east": {"uv": [5, 11.25, 5.25, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [5, 11.25, 5.25, 11.5], "texture": "#3"}, - "west": {"uv": [5, 11.25, 5.25, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [5, 11.25, 5.25, 11.5], "texture": "#3"}, - "down": {"uv": [5, 11.5, 5.25, 11.25], "texture": "#3"} + "north": { + "uv": [ + 5.25, + 11.25, + 5, + 11.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 5, + 11.25, + 5.25, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 5, + 11.25, + 5.25, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 5, + 11.25, + 5.25, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 5, + 11.25, + 5.25, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 5, + 11.5, + 5.25, + 11.25 + ], + "texture": "#3" + } } }, { "name": "rouninaji_61", - "from": [6.25, 0, 11.25], - "to": [6.5, 0.25, 11.5], + "from": [ + 6.25, + 0, + 11.25 + ], + "to": [ + 6.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.5, 11.25, 6.25, 11.5], "texture": "#3"}, - "east": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 90, "texture": "#3"}, - "south": {"uv": [6.25, 11.25, 6.5, 11.5], "texture": "#3"}, - "west": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 270, "texture": "#3"}, - "up": {"uv": [6.25, 11.25, 6.5, 11.5], "texture": "#3"}, - "down": {"uv": [6.25, 11.5, 6.5, 11.25], "texture": "#3"} + "north": { + "uv": [ + 6.5, + 11.25, + 6.25, + 11.5 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 90, + "texture": "#3" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#3" + }, + "up": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.25 + ], + "texture": "#3" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 4.25, 9.5], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 4.25, + 9.5 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 4.25, 9.5], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 4.25, + 9.5 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 4.25, 9.5], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 4.25, + 9.5 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 4.25, 9.5], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 4.25, + 9.5 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 4.25, 9.5], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 4.25, + 9.5 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 11.25, 14], - "scale": [1.17, 1.17, 1.17] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 11.25, + 14 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "rouninaji", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ryugunotukai.json b/pack/assets/minecraft/models/fish/ryugunotukai.json index 996e207e..b89c9859 100644 --- a/pack/assets/minecraft/models/fish/ryugunotukai.json +++ b/pack/assets/minecraft/models/fish/ryugunotukai.json @@ -2,436 +2,2248 @@ "__name": "リュウグウノツカイ", "credit": "Made with Blockbench", "textures": { - "4": "fish/ryuguunotukai", - "particle": "fish/raigyo" + "4": "item/fish/ryuguunotukai", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "ryuguunotukai_0", - "from": [5.75, 0, 6.25], - "to": [7, 0.25, 8], + "from": [ + 5.75, + 0, + 6.25 + ], + "to": [ + 7, + 0.25, + 8 + ], "faces": { - "north": {"uv": [7, 6.25, 5.75, 6.5], "texture": "#4"}, - "east": {"uv": [6.75, 6.25, 7, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.75, 7.75, 7, 8], "texture": "#4"}, - "west": {"uv": [5.75, 6.25, 6, 8], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.75, 6.25, 7, 8], "texture": "#4"}, - "down": {"uv": [5.75, 8, 7, 6.25], "texture": "#4"} + "north": { + "uv": [ + 7, + 6.25, + 5.75, + 6.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.75, + 6.25, + 7, + 8 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.75, + 7.75, + 7, + 8 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.75, + 6.25, + 6, + 8 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.75, + 6.25, + 7, + 8 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.75, + 8, + 7, + 6.25 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_1", - "from": [4.5, 0, 6.5], - "to": [5.75, 0.25, 8.25], + "from": [ + 4.5, + 0, + 6.5 + ], + "to": [ + 5.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [5.75, 6.5, 4.5, 6.75], "texture": "#4"}, - "east": {"uv": [5.5, 6.5, 5.75, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4.5, 8, 5.75, 8.25], "texture": "#4"}, - "west": {"uv": [4.5, 6.5, 4.75, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4.5, 6.5, 5.75, 8.25], "texture": "#4"}, - "down": {"uv": [4.5, 8.25, 5.75, 6.5], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 6.5, + 4.5, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 6.5, + 5.75, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4.5, + 8, + 5.75, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4.5, + 6.5, + 4.75, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4.5, + 6.5, + 5.75, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4.5, + 8.25, + 5.75, + 6.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_2", - "from": [7, 0, 6.5], - "to": [7.25, 0.25, 7.75], + "from": [ + 7, + 0, + 6.5 + ], + "to": [ + 7.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [7.25, 6.5, 7, 6.75], "texture": "#4"}, - "east": {"uv": [7, 6.5, 7.25, 7.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7, 7.5, 7.25, 7.75], "texture": "#4"}, - "west": {"uv": [7, 6.5, 7.25, 7.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7, 6.5, 7.25, 7.75], "texture": "#4"}, - "down": {"uv": [7, 7.75, 7.25, 6.5], "texture": "#4"} + "north": { + "uv": [ + 7.25, + 6.5, + 7, + 6.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7, + 6.5, + 7.25, + 7.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7, + 6.5, + 7.25, + 7.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7, + 6.5, + 7.25, + 7.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7, + 7.75, + 7.25, + 6.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_3", - "from": [3.75, 0, 6.75], - "to": [4.5, 0.25, 8.25], + "from": [ + 3.75, + 0, + 6.75 + ], + "to": [ + 4.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [4.5, 6.75, 3.75, 7], "texture": "#4"}, - "east": {"uv": [4.25, 6.75, 4.5, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3.75, 8, 4.5, 8.25], "texture": "#4"}, - "west": {"uv": [3.75, 6.75, 4, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3.75, 6.75, 4.5, 8.25], "texture": "#4"}, - "down": {"uv": [3.75, 8.25, 4.5, 6.75], "texture": "#4"} + "north": { + "uv": [ + 4.5, + 6.75, + 3.75, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 4.25, + 6.75, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3.75, + 8, + 4.5, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3.75, + 6.75, + 4, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3.75, + 6.75, + 4.5, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3.75, + 8.25, + 4.5, + 6.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_4", - "from": [7.25, 0, 6.75], - "to": [7.75, 0.25, 7.5], + "from": [ + 7.25, + 0, + 6.75 + ], + "to": [ + 7.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [7.75, 6.75, 7.25, 7], "texture": "#4"}, - "east": {"uv": [7.5, 6.75, 7.75, 7.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.25, 7.25, 7.75, 7.5], "texture": "#4"}, - "west": {"uv": [7.25, 6.75, 7.5, 7.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.25, 6.75, 7.75, 7.5], "texture": "#4"}, - "down": {"uv": [7.25, 7.5, 7.75, 6.75], "texture": "#4"} + "north": { + "uv": [ + 7.75, + 6.75, + 7.25, + 7 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.5, + 6.75, + 7.75, + 7.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.25, + 7.25, + 7.75, + 7.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.25, + 6.75, + 7.5, + 7.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.25, + 6.75, + 7.75, + 7.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.25, + 7.5, + 7.75, + 6.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_5", - "from": [3, 0, 7], - "to": [3.75, 0.25, 8.25], + "from": [ + 3, + 0, + 7 + ], + "to": [ + 3.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [3.75, 7, 3, 7.25], "texture": "#4"}, - "east": {"uv": [3.5, 7, 3.75, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3, 8, 3.75, 8.25], "texture": "#4"}, - "west": {"uv": [3, 7, 3.25, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3, 7, 3.75, 8.25], "texture": "#4"}, - "down": {"uv": [3, 8.25, 3.75, 7], "texture": "#4"} + "north": { + "uv": [ + 3.75, + 7, + 3, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 3.5, + 7, + 3.75, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3, + 8, + 3.75, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3, + 7, + 3.25, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3, + 7, + 3.75, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3, + 8.25, + 3.75, + 7 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_6", - "from": [7.75, 0, 7], - "to": [8, 0.25, 7.25], + "from": [ + 7.75, + 0, + 7 + ], + "to": [ + 8, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [8, 7, 7.75, 7.25], "texture": "#4"}, - "east": {"uv": [7.75, 7, 8, 7.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.75, 7, 8, 7.25], "texture": "#4"}, - "west": {"uv": [7.75, 7, 8, 7.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.75, 7, 8, 7.25], "texture": "#4"}, - "down": {"uv": [7.75, 7.25, 8, 7], "texture": "#4"} + "north": { + "uv": [ + 8, + 7, + 7.75, + 7.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.75, + 7.25, + 8, + 7 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_7", - "from": [2.75, 0, 7.25], - "to": [3, 0.25, 11], + "from": [ + 2.75, + 0, + 7.25 + ], + "to": [ + 3, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3, 7.25, 2.75, 7.5], "texture": "#4"}, - "east": {"uv": [2.75, 7.25, 3, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2.75, 10.75, 3, 11], "texture": "#4"}, - "west": {"uv": [2.75, 7.25, 3, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2.75, 7.25, 3, 11], "texture": "#4"}, - "down": {"uv": [2.75, 11, 3, 7.25], "texture": "#4"} + "north": { + "uv": [ + 3, + 7.25, + 2.75, + 7.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.75, + 7.25, + 3, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2.75, + 10.75, + 3, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2.75, + 7.25, + 3, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2.75, + 7.25, + 3, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2.75, + 11, + 3, + 7.25 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_8", - "from": [2.25, 0, 7.5], - "to": [2.75, 0.25, 11], + "from": [ + 2.25, + 0, + 7.5 + ], + "to": [ + 2.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2.75, 7.5, 2.25, 7.75], "texture": "#4"}, - "east": {"uv": [2.5, 7.5, 2.75, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2.25, 10.75, 2.75, 11], "texture": "#4"}, - "west": {"uv": [2.25, 7.5, 2.5, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2.25, 7.5, 2.75, 11], "texture": "#4"}, - "down": {"uv": [2.25, 11, 2.75, 7.5], "texture": "#4"} + "north": { + "uv": [ + 2.75, + 7.5, + 2.25, + 7.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2.5, + 7.5, + 2.75, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2.25, + 10.75, + 2.75, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.5, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2.25, + 7.5, + 2.75, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2.25, + 11, + 2.75, + 7.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_9", - "from": [2, 0, 7.75], - "to": [2.25, 0.25, 10.75], + "from": [ + 2, + 0, + 7.75 + ], + "to": [ + 2.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.25, 7.75, 2, 8], "texture": "#4"}, - "east": {"uv": [2, 7.75, 2.25, 10.75], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 10.5, 2.25, 10.75], "texture": "#4"}, - "west": {"uv": [2, 7.75, 2.25, 10.75], "rotation": 270, "texture": "#4"}, - "up": {"uv": [2, 7.75, 2.25, 10.75], "texture": "#4"}, - "down": {"uv": [2, 10.75, 2.25, 7.75], "texture": "#4"} + "north": { + "uv": [ + 2.25, + 7.75, + 2, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 2, + 7.75, + 2.25, + 10.75 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.25, + 10.75 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.25, + 10.75 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 2, + 7.75, + 2.25, + 10.75 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 2, + 10.75, + 2.25, + 7.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_10", - "from": [1.75, 0, 8], - "to": [2, 0.25, 10.5], + "from": [ + 1.75, + 0, + 8 + ], + "to": [ + 2, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2, 8, 1.75, 8.25], "texture": "#4"}, - "east": {"uv": [1.75, 8, 2, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.75, 10.25, 2, 10.5], "texture": "#4"}, - "west": {"uv": [1.75, 8, 2, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.75, 8, 2, 10.5], "texture": "#4"}, - "down": {"uv": [1.75, 10.5, 2, 8], "texture": "#4"} + "north": { + "uv": [ + 2, + 8, + 1.75, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.75, + 8, + 2, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.75, + 10.25, + 2, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.75, + 8, + 2, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.75, + 8, + 2, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.75, + 10.5, + 2, + 8 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_11", - "from": [5.75, 0, 8], - "to": [6.5, 0.25, 8.25], + "from": [ + 5.75, + 0, + 8 + ], + "to": [ + 6.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [6.5, 8, 5.75, 8.25], "texture": "#4"}, - "east": {"uv": [6.25, 8, 6.5, 8.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.75, 8, 6.5, 8.25], "texture": "#4"}, - "west": {"uv": [5.75, 8, 6, 8.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.75, 8, 6.5, 8.25], "texture": "#4"}, - "down": {"uv": [5.75, 8.25, 6.5, 8], "texture": "#4"} + "north": { + "uv": [ + 6.5, + 8, + 5.75, + 8.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.75, + 8, + 6.5, + 8.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.75, + 8, + 6.5, + 8.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.75, + 8.25, + 6.5, + 8 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_12", - "from": [1.5, 0, 8.25], - "to": [1.75, 0.25, 10.5], + "from": [ + 1.5, + 0, + 8.25 + ], + "to": [ + 1.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.75, 8.25, 1.5, 8.5], "texture": "#4"}, - "east": {"uv": [1.5, 8.25, 1.75, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.5, 10.25, 1.75, 10.5], "texture": "#4"}, - "west": {"uv": [1.5, 8.25, 1.75, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.5, 8.25, 1.75, 10.5], "texture": "#4"}, - "down": {"uv": [1.5, 10.5, 1.75, 8.25], "texture": "#4"} + "north": { + "uv": [ + 1.75, + 8.25, + 1.5, + 8.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.5, + 8.25, + 1.75, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.5, + 10.25, + 1.75, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.5, + 8.25, + 1.75, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.5, + 8.25, + 1.75, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.5, + 10.5, + 1.75, + 8.25 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_13", - "from": [1.25, 0, 8.5], - "to": [1.5, 0.25, 10.5], + "from": [ + 1.25, + 0, + 8.5 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 8.5, 1.25, 8.75], "texture": "#4"}, - "east": {"uv": [1.25, 8.5, 1.5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1.25, 10.25, 1.5, 10.5], "texture": "#4"}, - "west": {"uv": [1.25, 8.5, 1.5, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1.25, 8.5, 1.5, 10.5], "texture": "#4"}, - "down": {"uv": [1.25, 10.5, 1.5, 8.5], "texture": "#4"} + "north": { + "uv": [ + 1.5, + 8.5, + 1.25, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1.25, + 8.5, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1.25, + 8.5, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1.25, + 8.5, + 1.5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 1.5, + 8.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_14", - "from": [3, 0, 8.5], - "to": [5.75, 0.25, 11], + "from": [ + 3, + 0, + 8.5 + ], + "to": [ + 5.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.75, 8.5, 3, 8.75], "texture": "#4"}, - "east": {"uv": [5.5, 8.5, 5.75, 11], "rotation": 90, "texture": "#4"}, - "south": {"uv": [3, 10.75, 5.75, 11], "texture": "#4"}, - "west": {"uv": [3, 8.5, 3.25, 11], "rotation": 270, "texture": "#4"}, - "up": {"uv": [3, 8.5, 5.75, 11], "texture": "#4"}, - "down": {"uv": [3, 11, 5.75, 8.5], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 8.5, + 3, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 5.75, + 11 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 3, + 10.75, + 5.75, + 11 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.25, + 11 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 3, + 8.5, + 5.75, + 11 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 3, + 11, + 5.75, + 8.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_15", - "from": [5.75, 0, 8.5], - "to": [6.75, 0.25, 10.5], + "from": [ + 5.75, + 0, + 8.5 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 8.5, 5.75, 8.75], "texture": "#4"}, - "east": {"uv": [6.5, 8.5, 6.75, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.75, 10.25, 6.75, 10.5], "texture": "#4"}, - "west": {"uv": [5.75, 8.5, 6, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.75, 8.5, 6.75, 10.5], "texture": "#4"}, - "down": {"uv": [5.75, 10.5, 6.75, 8.5], "texture": "#4"} + "north": { + "uv": [ + 6.75, + 8.5, + 5.75, + 8.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.75, + 10.25, + 6.75, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.75, + 8.5, + 6, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.75, + 8.5, + 6.75, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.75, + 10.5, + 6.75, + 8.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_16", - "from": [1, 0, 8.75], - "to": [1.25, 0.25, 10.5], + "from": [ + 1, + 0, + 8.75 + ], + "to": [ + 1.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.25, 8.75, 1, 9], "texture": "#4"}, - "east": {"uv": [1, 8.75, 1.25, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [1, 10.25, 1.25, 10.5], "texture": "#4"}, - "west": {"uv": [1, 8.75, 1.25, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [1, 8.75, 1.25, 10.5], "texture": "#4"}, - "down": {"uv": [1, 10.5, 1.25, 8.75], "texture": "#4"} + "north": { + "uv": [ + 1.25, + 8.75, + 1, + 9 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 1, + 8.75, + 1.25, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 1, + 10.25, + 1.25, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 1, + 8.75, + 1.25, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 1, + 8.75, + 1.25, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 1, + 10.5, + 1.25, + 8.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_17", - "from": [6.75, 0, 8.75], - "to": [9.5, 0.25, 10.5], + "from": [ + 6.75, + 0, + 8.75 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.5, 8.75, 6.75, 9], "texture": "#4"}, - "east": {"uv": [9.25, 8.75, 9.5, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [6.75, 10.25, 9.5, 10.5], "texture": "#4"}, - "west": {"uv": [6.75, 8.75, 7, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [6.75, 8.75, 9.5, 10.5], "texture": "#4"}, - "down": {"uv": [6.75, 10.5, 9.5, 8.75], "texture": "#4"} + "north": { + "uv": [ + 9.5, + 8.75, + 6.75, + 9 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 9.25, + 8.75, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 6.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 6.75, + 8.75, + 7, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 6.75, + 8.75, + 9.5, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 6.75, + 10.5, + 9.5, + 8.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_18", - "from": [0.75, 0, 9], - "to": [1, 0.25, 10.5], + "from": [ + 0.75, + 0, + 9 + ], + "to": [ + 1, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1, 9, 0.75, 9.25], "texture": "#4"}, - "east": {"uv": [0.75, 9, 1, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.75, 10.25, 1, 10.5], "texture": "#4"}, - "west": {"uv": [0.75, 9, 1, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.75, 9, 1, 10.5], "texture": "#4"}, - "down": {"uv": [0.75, 10.5, 1, 9], "texture": "#4"} + "north": { + "uv": [ + 1, + 9, + 0.75, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.75, + 9, + 1, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.75, + 10.25, + 1, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.75, + 9, + 1, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.75, + 9, + 1, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.75, + 10.5, + 1, + 9 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_19", - "from": [9.5, 0, 9], - "to": [12, 0.25, 10.5], + "from": [ + 9.5, + 0, + 9 + ], + "to": [ + 12, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12, 9, 9.5, 9.25], "texture": "#4"}, - "east": {"uv": [11.75, 9, 12, 10.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [9.5, 10.25, 12, 10.5], "texture": "#4"}, - "west": {"uv": [9.5, 9, 9.75, 10.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [9.5, 9, 12, 10.5], "texture": "#4"}, - "down": {"uv": [9.5, 10.5, 12, 9], "texture": "#4"} + "north": { + "uv": [ + 12, + 9, + 9.5, + 9.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 11.75, + 9, + 12, + 10.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 12, + 10.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 9.5, + 9, + 12, + 10.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 12, + 9 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_20", - "from": [12, 0, 9.25], - "to": [13.75, 0.25, 10.25], + "from": [ + 12, + 0, + 9.25 + ], + "to": [ + 13.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.75, 9.25, 12, 9.5], "texture": "#4"}, - "east": {"uv": [13.5, 9.25, 13.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [12, 10, 13.75, 10.25], "texture": "#4"}, - "west": {"uv": [12, 9.25, 12.25, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [12, 9.25, 13.75, 10.25], "texture": "#4"}, - "down": {"uv": [12, 10.25, 13.75, 9.25], "texture": "#4"} + "north": { + "uv": [ + 13.75, + 9.25, + 12, + 9.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 13.5, + 9.25, + 13.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 12, + 10, + 13.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 12, + 9.25, + 12.25, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 12, + 9.25, + 13.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 12, + 10.25, + 13.75, + 9.25 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_21", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10.25], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#4"}, - "east": {"uv": [15.5, 9.25, 15.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.5, 10, 15.75, 10.25], "texture": "#4"}, - "west": {"uv": [15.5, 9.25, 15.75, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.5, 9.25, 15.75, 10.25], "texture": "#4"}, - "down": {"uv": [15.5, 10.25, 15.75, 9.25], "texture": "#4"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.5, + 10.25, + 15.75, + 9.25 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_22", - "from": [0.5, 0, 9.5], - "to": [0.75, 0.25, 10.25], + "from": [ + 0.5, + 0, + 9.5 + ], + "to": [ + 0.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [0.75, 9.5, 0.5, 9.75], "texture": "#4"}, - "east": {"uv": [0.5, 9.5, 0.75, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0.5, 10, 0.75, 10.25], "texture": "#4"}, - "west": {"uv": [0.5, 9.5, 0.75, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [0.5, 9.5, 0.75, 10.25], "texture": "#4"}, - "down": {"uv": [0.5, 10.25, 0.75, 9.5], "texture": "#4"} + "north": { + "uv": [ + 0.75, + 9.5, + 0.5, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0.5, + 9.5, + 0.75, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 0.5, + 10, + 0.75, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0.5, + 9.5, + 0.75, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0.75, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0.5, + 10.25, + 0.75, + 9.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_23", - "from": [13.75, 0, 9.5], - "to": [15.5, 0.25, 10.25], + "from": [ + 13.75, + 0, + 9.5 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 9.5, 13.75, 9.75], "texture": "#4"}, - "east": {"uv": [15.25, 9.5, 15.5, 10.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13.75, 10, 15.5, 10.25], "texture": "#4"}, - "west": {"uv": [13.75, 9.5, 14, 10.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [13.75, 9.5, 15.5, 10.25], "texture": "#4"}, - "down": {"uv": [13.75, 10.25, 15.5, 9.5], "texture": "#4"} + "north": { + "uv": [ + 15.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.25, + 9.5, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 13.75, + 10, + 15.5, + 10.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 13.75, + 9.5, + 14, + 10.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 13.75, + 9.5, + 15.5, + 10.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 13.75, + 10.25, + 15.5, + 9.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_24", - "from": [15.75, 0, 9.5], - "to": [16, 0.25, 10], + "from": [ + 15.75, + 0, + 9.5 + ], + "to": [ + 16, + 0.25, + 10 + ], "faces": { - "north": {"uv": [16, 9.5, 15.75, 9.75], "texture": "#4"}, - "east": {"uv": [15.75, 9.5, 16, 10], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15.75, 9.75, 16, 10], "texture": "#4"}, - "west": {"uv": [15.75, 9.5, 16, 10], "rotation": 270, "texture": "#4"}, - "up": {"uv": [15.75, 9.5, 16, 10], "texture": "#4"}, - "down": {"uv": [15.75, 10, 16, 9.5], "texture": "#4"} + "north": { + "uv": [ + 16, + 9.5, + 15.75, + 9.75 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 15.75, + 9.5, + 16, + 10 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 15.75, + 9.5, + 16, + 10 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 15.75, + 9.5, + 16, + 10 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 15.75, + 10, + 16, + 9.5 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_25", - "from": [5.75, 0, 10.75], - "to": [7.75, 0.25, 11.5], + "from": [ + 5.75, + 0, + 10.75 + ], + "to": [ + 7.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.75, 10.75, 5.75, 11], "texture": "#4"}, - "east": {"uv": [7.5, 10.75, 7.75, 11.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.75, 11.25, 7.75, 11.5], "texture": "#4"}, - "west": {"uv": [5.75, 10.75, 6, 11.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.75, 10.75, 7.75, 11.5], "texture": "#4"}, - "down": {"uv": [5.75, 11.5, 7.75, 10.75], "texture": "#4"} + "north": { + "uv": [ + 7.75, + 10.75, + 5.75, + 11 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.5, + 10.75, + 7.75, + 11.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 7.75, + 11.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.75, + 10.75, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.75, + 10.75, + 7.75, + 11.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 7.75, + 10.75 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_26", - "from": [4, 0, 11], - "to": [5.75, 0.25, 11.25], + "from": [ + 4, + 0, + 11 + ], + "to": [ + 5.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.75, 11, 4, 11.25], "texture": "#4"}, - "east": {"uv": [5.5, 11, 5.75, 11.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 11, 5.75, 11.25], "texture": "#4"}, - "west": {"uv": [4, 11, 4.25, 11.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [4, 11, 5.75, 11.25], "texture": "#4"}, - "down": {"uv": [4, 11.25, 5.75, 11], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 11, + 4, + 11.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 11, + 5.75, + 11.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 4, + 11, + 5.75, + 11.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 4, + 11, + 4.25, + 11.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 4, + 11, + 5.75, + 11.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 4, + 11.25, + 5.75, + 11 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_27", - "from": [7.75, 0, 11], - "to": [8, 0.25, 11.25], + "from": [ + 7.75, + 0, + 11 + ], + "to": [ + 8, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8, 11, 7.75, 11.25], "texture": "#4"}, - "east": {"uv": [7.75, 11, 8, 11.25], "rotation": 90, "texture": "#4"}, - "south": {"uv": [7.75, 11, 8, 11.25], "texture": "#4"}, - "west": {"uv": [7.75, 11, 8, 11.25], "rotation": 270, "texture": "#4"}, - "up": {"uv": [7.75, 11, 8, 11.25], "texture": "#4"}, - "down": {"uv": [7.75, 11.25, 8, 11], "texture": "#4"} + "north": { + "uv": [ + 8, + 11, + 7.75, + 11.25 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 7.75, + 11, + 8, + 11.25 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 7.75, + 11.25, + 8, + 11 + ], + "texture": "#4" + } } }, { "name": "ryuguunotukai_28", - "from": [5.5, 0, 11.25], - "to": [5.75, 0.25, 11.5], + "from": [ + 5.5, + 0, + 11.25 + ], + "to": [ + 5.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.75, 11.25, 5.5, 11.5], "texture": "#4"}, - "east": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 90, "texture": "#4"}, - "south": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#4"}, - "west": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 270, "texture": "#4"}, - "up": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#4"}, - "down": {"uv": [5.5, 11.5, 5.75, 11.25], "texture": "#4"} + "north": { + "uv": [ + 5.75, + 11.25, + 5.5, + 11.5 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 90, + "texture": "#4" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#4" + }, + "up": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 5.75, + 11.25 + ], + "texture": "#4" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 22.5, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 22.5, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 21.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 21.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "ryuguunotukai", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/saba.json b/pack/assets/minecraft/models/fish/saba.json index 1a29115a..3797b317 100644 --- a/pack/assets/minecraft/models/fish/saba.json +++ b/pack/assets/minecraft/models/fish/saba.json @@ -2,644 +2,3400 @@ "__name": "サバ", "credit": "Made with Blockbench", "textures": { - "5": "fish/saba", - "particle": "fish/isidai" + "5": "item/fish/saba", + "particle": "item/fish/isidai" }, "elements": [ { "name": "saba_0", - "from": [8.5, 0, 5.25], - "to": [9, 0.25, 11], + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 5.25, 8.5, 5.5], "texture": "#5"}, - "east": {"uv": [8.75, 5.25, 9, 11], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.5, 10.75, 9, 11], "texture": "#5"}, - "west": {"uv": [8.5, 5.25, 8.75, 11], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.5, 5.25, 9, 11], "texture": "#5"}, - "down": {"uv": [8.5, 11, 9, 5.25], "texture": "#5"} + "north": { + "uv": [ + 9, + 5.25, + 8.5, + 5.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 9, + 11 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.5, + 10.75, + 9, + 11 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 11 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 9, + 11 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.5, + 11, + 9, + 5.25 + ], + "texture": "#5" + } } }, { "name": "saba_1", - "from": [8, 0, 5.5], - "to": [8.5, 0.25, 10.5], + "from": [ + 8, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 5.5, 8, 5.75], "texture": "#5"}, - "east": {"uv": [8.25, 5.5, 8.5, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8, 10.25, 8.5, 10.5], "texture": "#5"}, - "west": {"uv": [8, 5.5, 8.25, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8, 5.5, 8.5, 10.5], "texture": "#5"}, - "down": {"uv": [8, 10.5, 8.5, 5.5], "texture": "#5"} + "north": { + "uv": [ + 8.5, + 5.5, + 8, + 5.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.5, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.5, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.5, + 5.5 + ], + "texture": "#5" + } } }, { "name": "saba_2", - "from": [9, 0, 5.5], - "to": [9.25, 0.25, 11], + "from": [ + 9, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.25, 5.5, 9, 5.75], "texture": "#5"}, - "east": {"uv": [9, 5.5, 9.25, 11], "rotation": 90, "texture": "#5"}, - "south": {"uv": [9, 10.75, 9.25, 11], "texture": "#5"}, - "west": {"uv": [9, 5.5, 9.25, 11], "rotation": 270, "texture": "#5"}, - "up": {"uv": [9, 5.5, 9.25, 11], "texture": "#5"}, - "down": {"uv": [9, 11, 9.25, 5.5], "texture": "#5"} + "north": { + "uv": [ + 9.25, + 5.5, + 9, + 5.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 9, + 10.75, + 9.25, + 11 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.25, + 11 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 9, + 5.5, + 9.25, + 11 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 9, + 11, + 9.25, + 5.5 + ], + "texture": "#5" + } } }, { "name": "saba_3", - "from": [5.75, 0, 5.75], - "to": [6.25, 0.25, 10.25], + "from": [ + 5.75, + 0, + 5.75 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 5.75, 5.75, 6], "texture": "#5"}, - "east": {"uv": [6, 5.75, 6.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [5.75, 10, 6.25, 10.25], "texture": "#5"}, - "west": {"uv": [5.75, 5.75, 6, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [5.75, 5.75, 6.25, 10.25], "texture": "#5"}, - "down": {"uv": [5.75, 10.25, 6.25, 5.75], "texture": "#5"} + "north": { + "uv": [ + 6.25, + 5.75, + 5.75, + 6 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6, + 5.75, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 5.75, + 10, + 6.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 5.75, + 5.75, + 6, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 5.75, + 5.75, + 6.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 5.75, + 10.25, + 6.25, + 5.75 + ], + "texture": "#5" + } } }, { "name": "saba_4", - "from": [7.5, 0, 5.75], - "to": [8, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 8, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8, 5.75, 7.5, 6], "texture": "#5"}, - "east": {"uv": [7.75, 5.75, 8, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7.5, 10, 8, 10.25], "texture": "#5"}, - "west": {"uv": [7.5, 5.75, 7.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7.5, 5.75, 8, 10.25], "texture": "#5"}, - "down": {"uv": [7.5, 10.25, 8, 5.75], "texture": "#5"} + "north": { + "uv": [ + 8, + 5.75, + 7.5, + 6 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7.75, + 5.75, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7.5, + 10, + 8, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 8, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 8, + 5.75 + ], + "texture": "#5" + } } }, { "name": "saba_5", - "from": [5.25, 0, 6], - "to": [5.75, 0.25, 10.25], + "from": [ + 5.25, + 0, + 6 + ], + "to": [ + 5.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.75, 6, 5.25, 6.25], "texture": "#5"}, - "east": {"uv": [5.5, 6, 5.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [5.25, 10, 5.75, 10.25], "texture": "#5"}, - "west": {"uv": [5.25, 6, 5.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [5.25, 6, 5.75, 10.25], "texture": "#5"}, - "down": {"uv": [5.25, 10.25, 5.75, 6], "texture": "#5"} + "north": { + "uv": [ + 5.75, + 6, + 5.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 5.25, + 10, + 5.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 5.25, + 6, + 5.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 5.25, + 6, + 5.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 5.25, + 10.25, + 5.75, + 6 + ], + "texture": "#5" + } } }, { "name": "saba_6", - "from": [6.25, 0, 6], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 6 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 6, 6.25, 6.25], "texture": "#5"}, - "east": {"uv": [6.25, 6, 6.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#5"}, - "west": {"uv": [6.25, 6, 6.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6.25, 6, 6.5, 10.25], "texture": "#5"}, - "down": {"uv": [6.25, 10.25, 6.5, 6], "texture": "#5"} + "north": { + "uv": [ + 6.5, + 6, + 6.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6.25, + 6, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6.25, + 6, + 6.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 6 + ], + "texture": "#5" + } } }, { "name": "saba_7", - "from": [7.25, 0, 6], - "to": [7.5, 0.25, 10.25], + "from": [ + 7.25, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.5, 6, 7.25, 6.25], "texture": "#5"}, - "east": {"uv": [7.25, 6, 7.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7.25, 10, 7.5, 10.25], "texture": "#5"}, - "west": {"uv": [7.25, 6, 7.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7.25, 6, 7.5, 10.25], "texture": "#5"}, - "down": {"uv": [7.25, 10.25, 7.5, 6], "texture": "#5"} + "north": { + "uv": [ + 7.5, + 6, + 7.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7.25, + 10.25, + 7.5, + 6 + ], + "texture": "#5" + } } }, { "name": "saba_8", - "from": [9.25, 0, 6], - "to": [9.5, 0.25, 10.75], + "from": [ + 9.25, + 0, + 6 + ], + "to": [ + 9.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 6, 9.25, 6.25], "texture": "#5"}, - "east": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#5"}, - "west": {"uv": [9.25, 6, 9.5, 10.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [9.25, 6, 9.5, 10.75], "texture": "#5"}, - "down": {"uv": [9.25, 10.75, 9.5, 6], "texture": "#5"} + "north": { + "uv": [ + 9.5, + 6, + 9.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 9.25, + 6, + 9.5, + 10.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 6 + ], + "texture": "#5" + } } }, { "name": "saba_9", - "from": [15, 0, 6], - "to": [15.25, 0.25, 7.5], + "from": [ + 15, + 0, + 6 + ], + "to": [ + 15.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.25, 6, 15, 6.25], "texture": "#5"}, - "east": {"uv": [15, 6, 15.25, 7.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15, 7.25, 15.25, 7.5], "texture": "#5"}, - "west": {"uv": [15, 6, 15.25, 7.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15, 6, 15.25, 7.5], "texture": "#5"}, - "down": {"uv": [15, 7.5, 15.25, 6], "texture": "#5"} + "north": { + "uv": [ + 15.25, + 6, + 15, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15, + 6, + 15.25, + 7.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15, + 7.25, + 15.25, + 7.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15, + 6, + 15.25, + 7.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15, + 6, + 15.25, + 7.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15, + 7.5, + 15.25, + 6 + ], + "texture": "#5" + } } }, { "name": "saba_10", - "from": [4.5, 0, 6.25], - "to": [5.25, 0.25, 10.25], + "from": [ + 4.5, + 0, + 6.25 + ], + "to": [ + 5.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [5.25, 6.25, 4.5, 6.5], "texture": "#5"}, - "east": {"uv": [5, 6.25, 5.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [4.5, 10, 5.25, 10.25], "texture": "#5"}, - "west": {"uv": [4.5, 6.25, 4.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [4.5, 6.25, 5.25, 10.25], "texture": "#5"}, - "down": {"uv": [4.5, 10.25, 5.25, 6.25], "texture": "#5"} + "north": { + "uv": [ + 5.25, + 6.25, + 4.5, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 4.5, + 10, + 5.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 4.5, + 6.25, + 4.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 4.5, + 6.25, + 5.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 4.5, + 10.25, + 5.25, + 6.25 + ], + "texture": "#5" + } } }, { "name": "saba_11", - "from": [6.5, 0, 6.25], - "to": [7.25, 0.25, 10.25], + "from": [ + 6.5, + 0, + 6.25 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.25, 6.25, 6.5, 6.5], "texture": "#5"}, - "east": {"uv": [7, 6.25, 7.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6.5, 10, 7.25, 10.25], "texture": "#5"}, - "west": {"uv": [6.5, 6.25, 6.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6.5, 6.25, 7.25, 10.25], "texture": "#5"}, - "down": {"uv": [6.5, 10.25, 7.25, 6.25], "texture": "#5"} + "north": { + "uv": [ + 7.25, + 6.25, + 6.5, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7, + 6.25, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6.5, + 10, + 7.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6.5, + 6.25, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6.5, + 6.25, + 7.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 7.25, + 6.25 + ], + "texture": "#5" + } } }, { "name": "saba_12", - "from": [9.5, 0, 6.25], - "to": [9.75, 0.25, 10.5], + "from": [ + 9.5, + 0, + 6.25 + ], + "to": [ + 9.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.75, 6.25, 9.5, 6.5], "texture": "#5"}, - "east": {"uv": [9.5, 6.25, 9.75, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#5"}, - "west": {"uv": [9.5, 6.25, 9.75, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [9.5, 6.25, 9.75, 10.5], "texture": "#5"}, - "down": {"uv": [9.5, 10.5, 9.75, 6.25], "texture": "#5"} + "north": { + "uv": [ + 9.75, + 6.25, + 9.5, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 9.75, + 6.25 + ], + "texture": "#5" + } } }, { "name": "saba_13", - "from": [14.75, 0, 6.25], - "to": [15, 0.25, 7.75], + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15, 6.25, 14.75, 6.5], "texture": "#5"}, - "east": {"uv": [14.75, 6.25, 15, 7.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.75, 7.5, 15, 7.75], "texture": "#5"}, - "west": {"uv": [14.75, 6.25, 15, 7.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.75, 6.25, 15, 7.75], "texture": "#5"}, - "down": {"uv": [14.75, 7.75, 15, 6.25], "texture": "#5"} + "north": { + "uv": [ + 15, + 6.25, + 14.75, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 7.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 7.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15, + 7.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.75, + 7.75, + 15, + 6.25 + ], + "texture": "#5" + } } }, { "name": "saba_14", - "from": [15.25, 0, 6.25], - "to": [15.5, 0.25, 7.25], + "from": [ + 15.25, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.5, 6.25, 15.25, 6.5], "texture": "#5"}, - "east": {"uv": [15.25, 6.25, 15.5, 7.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15.25, 7, 15.5, 7.25], "texture": "#5"}, - "west": {"uv": [15.25, 6.25, 15.5, 7.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15.25, 6.25, 15.5, 7.25], "texture": "#5"}, - "down": {"uv": [15.25, 7.25, 15.5, 6.25], "texture": "#5"} + "north": { + "uv": [ + 15.5, + 6.25, + 15.25, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 7.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15.25, + 7, + 15.5, + 7.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15.25, + 6.25, + 15.5, + 7.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15.25, + 6.25, + 15.5, + 7.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15.25, + 7.25, + 15.5, + 6.25 + ], + "texture": "#5" + } } }, { "name": "saba_15", - "from": [3.75, 0, 6.5], - "to": [4.5, 0.25, 10.25], + "from": [ + 3.75, + 0, + 6.5 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.5, 6.5, 3.75, 6.75], "texture": "#5"}, - "east": {"uv": [4.25, 6.5, 4.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [3.75, 10, 4.5, 10.25], "texture": "#5"}, - "west": {"uv": [3.75, 6.5, 4, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [3.75, 6.5, 4.5, 10.25], "texture": "#5"}, - "down": {"uv": [3.75, 10.25, 4.5, 6.5], "texture": "#5"} + "north": { + "uv": [ + 4.5, + 6.5, + 3.75, + 6.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 4.25, + 6.5, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 3.75, + 10, + 4.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 4, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 4.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 3.75, + 10.25, + 4.5, + 6.5 + ], + "texture": "#5" + } } }, { "name": "saba_16", - "from": [9.75, 0, 6.5], - "to": [10, 0.25, 10.25], + "from": [ + 9.75, + 0, + 6.5 + ], + "to": [ + 10, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10, 6.5, 9.75, 6.75], "texture": "#5"}, - "east": {"uv": [9.75, 6.5, 10, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [9.75, 10, 10, 10.25], "texture": "#5"}, - "west": {"uv": [9.75, 6.5, 10, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [9.75, 6.5, 10, 10.25], "texture": "#5"}, - "down": {"uv": [9.75, 10.25, 10, 6.5], "texture": "#5"} + "north": { + "uv": [ + 10, + 6.5, + 9.75, + 6.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 9.75, + 6.5, + 10, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 9.75, + 10, + 10, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 9.75, + 6.5, + 10, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 9.75, + 6.5, + 10, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 9.75, + 10.25, + 10, + 6.5 + ], + "texture": "#5" + } } }, { "name": "saba_17", - "from": [14.5, 0, 6.5], - "to": [14.75, 0.25, 8.25], + "from": [ + 14.5, + 0, + 6.5 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 6.5, 14.5, 6.75], "texture": "#5"}, - "east": {"uv": [14.5, 6.5, 14.75, 8.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.5, 8, 14.75, 8.25], "texture": "#5"}, - "west": {"uv": [14.5, 6.5, 14.75, 8.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.5, 6.5, 14.75, 8.25], "texture": "#5"}, - "down": {"uv": [14.5, 8.25, 14.75, 6.5], "texture": "#5"} + "north": { + "uv": [ + 14.75, + 6.5, + 14.5, + 6.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.5, + 6.5, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.5, + 6.5, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.5, + 6.5, + 14.75, + 8.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 14.75, + 6.5 + ], + "texture": "#5" + } } }, { "name": "saba_18", - "from": [3, 0, 6.75], - "to": [3.75, 0.25, 10], + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 3.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.75, 6.75, 3, 7], "texture": "#5"}, - "east": {"uv": [3.5, 6.75, 3.75, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [3, 9.75, 3.75, 10], "texture": "#5"}, - "west": {"uv": [3, 6.75, 3.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [3, 6.75, 3.75, 10], "texture": "#5"}, - "down": {"uv": [3, 10, 3.75, 6.75], "texture": "#5"} + "north": { + "uv": [ + 3.75, + 6.75, + 3, + 7 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 3.75, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 3, + 9.75, + 3.75, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 3, + 6.75, + 3.75, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 3, + 10, + 3.75, + 6.75 + ], + "texture": "#5" + } } }, { "name": "saba_19", - "from": [10, 0, 6.75], - "to": [10.5, 0.25, 9.75], + "from": [ + 10, + 0, + 6.75 + ], + "to": [ + 10.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.5, 6.75, 10, 7], "texture": "#5"}, - "east": {"uv": [10.25, 6.75, 10.5, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10, 9.5, 10.5, 9.75], "texture": "#5"}, - "west": {"uv": [10, 6.75, 10.25, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10, 6.75, 10.5, 9.75], "texture": "#5"}, - "down": {"uv": [10, 9.75, 10.5, 6.75], "texture": "#5"} + "north": { + "uv": [ + 10.5, + 6.75, + 10, + 7 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 10.25, + 6.75, + 10.5, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.5, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10, + 6.75, + 10.25, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10, + 6.75, + 10.5, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10, + 9.75, + 10.5, + 6.75 + ], + "texture": "#5" + } } }, { "name": "saba_20", - "from": [14.25, 0, 6.75], - "to": [14.5, 0.25, 10.25], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 6.75, 14.25, 7], "texture": "#5"}, - "east": {"uv": [14.25, 6.75, 14.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.25, 10, 14.5, 10.25], "texture": "#5"}, - "west": {"uv": [14.25, 6.75, 14.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.25, 6.75, 14.5, 10.25], "texture": "#5"}, - "down": {"uv": [14.25, 10.25, 14.5, 6.75], "texture": "#5"} + "north": { + "uv": [ + 14.5, + 6.75, + 14.25, + 7 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.5, + 6.75 + ], + "texture": "#5" + } } }, { "name": "saba_21", - "from": [2.25, 0, 7], - "to": [3, 0.25, 9.75], + "from": [ + 2.25, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3, 7, 2.25, 7.25], "texture": "#5"}, - "east": {"uv": [2.75, 7, 3, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [2.25, 9.5, 3, 9.75], "texture": "#5"}, - "west": {"uv": [2.25, 7, 2.5, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [2.25, 7, 3, 9.75], "texture": "#5"}, - "down": {"uv": [2.25, 9.75, 3, 7], "texture": "#5"} + "north": { + "uv": [ + 3, + 7, + 2.25, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 2.25, + 9.5, + 3, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.5, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 2.25, + 7, + 3, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 2.25, + 9.75, + 3, + 7 + ], + "texture": "#5" + } } }, { "name": "saba_22", - "from": [10.5, 0, 7], - "to": [11.25, 0.25, 9.5], + "from": [ + 10.5, + 0, + 7 + ], + "to": [ + 11.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.25, 7, 10.5, 7.25], "texture": "#5"}, - "east": {"uv": [11, 7, 11.25, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10.5, 9.25, 11.25, 9.5], "texture": "#5"}, - "west": {"uv": [10.5, 7, 10.75, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10.5, 7, 11.25, 9.5], "texture": "#5"}, - "down": {"uv": [10.5, 9.5, 11.25, 7], "texture": "#5"} + "north": { + "uv": [ + 11.25, + 7, + 10.5, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 11, + 7, + 11.25, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10.5, + 9.25, + 11.25, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10.5, + 7, + 10.75, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10.5, + 7, + 11.25, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10.5, + 9.5, + 11.25, + 7 + ], + "texture": "#5" + } } }, { "name": "saba_23", - "from": [14, 0, 7], - "to": [14.25, 0.25, 10], + "from": [ + 14, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 7, 14, 7.25], "texture": "#5"}, - "east": {"uv": [14, 7, 14.25, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14, 9.75, 14.25, 10], "texture": "#5"}, - "west": {"uv": [14, 7, 14.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14, 7, 14.25, 10], "texture": "#5"}, - "down": {"uv": [14, 10, 14.25, 7], "texture": "#5"} + "north": { + "uv": [ + 14.25, + 7, + 14, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14, + 7, + 14.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14, + 7, + 14.25, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14, + 10, + 14.25, + 7 + ], + "texture": "#5" + } } }, { "name": "saba_24", - "from": [1.75, 0, 7.25], - "to": [2.25, 0.25, 9.75], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.25, 7.25, 1.75, 7.5], "texture": "#5"}, - "east": {"uv": [2, 7.25, 2.25, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1.75, 9.5, 2.25, 9.75], "texture": "#5"}, - "west": {"uv": [1.75, 7.25, 2, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1.75, 7.25, 2.25, 9.75], "texture": "#5"}, - "down": {"uv": [1.75, 9.75, 2.25, 7.25], "texture": "#5"} + "north": { + "uv": [ + 2.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2.25, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 2.25, + 7.25 + ], + "texture": "#5" + } } }, { "name": "saba_25", - "from": [11.25, 0, 7.25], - "to": [11.75, 0.25, 9.25], + "from": [ + 11.25, + 0, + 7.25 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 7.25, 11.25, 7.5], "texture": "#5"}, - "east": {"uv": [11.5, 7.25, 11.75, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [11.25, 9, 11.75, 9.25], "texture": "#5"}, - "west": {"uv": [11.25, 7.25, 11.5, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [11.25, 7.25, 11.75, 9.25], "texture": "#5"}, - "down": {"uv": [11.25, 9.25, 11.75, 7.25], "texture": "#5"} + "north": { + "uv": [ + 11.75, + 7.25, + 11.25, + 7.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 11.5, + 7.25, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 11.25, + 9, + 11.75, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 11.25, + 7.25, + 11.5, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 11.25, + 7.25, + 11.75, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 11.25, + 9.25, + 11.75, + 7.25 + ], + "texture": "#5" + } } }, { "name": "saba_26", - "from": [13.75, 0, 7.25], - "to": [14, 0.25, 9.75], + "from": [ + 13.75, + 0, + 7.25 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 7.25, 13.75, 7.5], "texture": "#5"}, - "east": {"uv": [13.75, 7.25, 14, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.75, 9.5, 14, 9.75], "texture": "#5"}, - "west": {"uv": [13.75, 7.25, 14, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.75, 7.25, 14, 9.75], "texture": "#5"}, - "down": {"uv": [13.75, 9.75, 14, 7.25], "texture": "#5"} + "north": { + "uv": [ + 14, + 7.25, + 13.75, + 7.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.75, + 7.25, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.75, + 7.25, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.75, + 7.25, + 14, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14, + 7.25 + ], + "texture": "#5" + } } }, { "name": "saba_27", - "from": [1.25, 0, 7.5], - "to": [1.75, 0.25, 9.5], + "from": [ + 1.25, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.75, 7.5, 1.25, 7.75], "texture": "#5"}, - "east": {"uv": [1.5, 7.5, 1.75, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1.25, 9.25, 1.75, 9.5], "texture": "#5"}, - "west": {"uv": [1.25, 7.5, 1.5, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1.25, 7.5, 1.75, 9.5], "texture": "#5"}, - "down": {"uv": [1.25, 9.5, 1.75, 7.5], "texture": "#5"} + "north": { + "uv": [ + 1.75, + 7.5, + 1.25, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.75, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1.25, + 7.5, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1.75, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.75, + 7.5 + ], + "texture": "#5" + } } }, { "name": "saba_28", - "from": [11.75, 0, 7.5], - "to": [12, 0.25, 9], + "from": [ + 11.75, + 0, + 7.5 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 7.5, 11.75, 7.75], "texture": "#5"}, - "east": {"uv": [11.75, 7.5, 12, 9], "rotation": 90, "texture": "#5"}, - "south": {"uv": [11.75, 8.75, 12, 9], "texture": "#5"}, - "west": {"uv": [11.75, 7.5, 12, 9], "rotation": 270, "texture": "#5"}, - "up": {"uv": [11.75, 7.5, 12, 9], "texture": "#5"}, - "down": {"uv": [11.75, 9, 12, 7.5], "texture": "#5"} + "north": { + "uv": [ + 12, + 7.5, + 11.75, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 11.75, + 7.5, + 12, + 9 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 11.75, + 8.75, + 12, + 9 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 11.75, + 7.5, + 12, + 9 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 11.75, + 7.5, + 12, + 9 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 11.75, + 9, + 12, + 7.5 + ], + "texture": "#5" + } } }, { "name": "saba_29", - "from": [13.5, 0, 7.5], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.5, + 0, + 7.5 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#5"}, - "east": {"uv": [13.5, 7.5, 13.75, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#5"}, - "west": {"uv": [13.5, 7.5, 13.75, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.5, 7.5, 13.75, 9.5], "texture": "#5"}, - "down": {"uv": [13.5, 9.5, 13.75, 7.5], "texture": "#5"} + "north": { + "uv": [ + 13.75, + 7.5, + 13.5, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.5, + 9.5, + 13.75, + 7.5 + ], + "texture": "#5" + } } }, { "name": "saba_30", - "from": [1, 0, 7.75], - "to": [1.25, 0.25, 9.25], + "from": [ + 1, + 0, + 7.75 + ], + "to": [ + 1.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.25, 7.75, 1, 8], "texture": "#5"}, - "east": {"uv": [1, 7.75, 1.25, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1, 9, 1.25, 9.25], "texture": "#5"}, - "west": {"uv": [1, 7.75, 1.25, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1, 7.75, 1.25, 9.25], "texture": "#5"}, - "down": {"uv": [1, 9.25, 1.25, 7.75], "texture": "#5"} + "north": { + "uv": [ + 1.25, + 7.75, + 1, + 8 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 1, + 7.75, + 1.25, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1, + 7.75, + 1.25, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.25, + 7.75 + ], + "texture": "#5" + } } }, { "name": "saba_31", - "from": [12, 0, 7.75], - "to": [13.5, 0.25, 9], + "from": [ + 12, + 0, + 7.75 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 7.75, 12, 8], "texture": "#5"}, - "east": {"uv": [13.25, 7.75, 13.5, 9], "rotation": 90, "texture": "#5"}, - "south": {"uv": [12, 8.75, 13.5, 9], "texture": "#5"}, - "west": {"uv": [12, 7.75, 12.25, 9], "rotation": 270, "texture": "#5"}, - "up": {"uv": [12, 7.75, 13.5, 9], "texture": "#5"}, - "down": {"uv": [12, 9, 13.5, 7.75], "texture": "#5"} + "north": { + "uv": [ + 13.5, + 7.75, + 12, + 8 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 12, + 8.75, + 13.5, + 9 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 12, + 7.75, + 12.25, + 9 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 12, + 7.75, + 13.5, + 9 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 12, + 9, + 13.5, + 7.75 + ], + "texture": "#5" + } } }, { "name": "saba_32", - "from": [0.75, 0, 8], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 8 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 8, 0.75, 8.25], "texture": "#5"}, - "east": {"uv": [0.75, 8, 1, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#5"}, - "west": {"uv": [0.75, 8, 1, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.75, 8, 1, 9.25], "texture": "#5"}, - "down": {"uv": [0.75, 9.25, 1, 8], "texture": "#5"} + "north": { + "uv": [ + 1, + 8, + 0.75, + 8.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.75, + 8, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.75, + 8, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.75, + 8, + 1, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 8 + ], + "texture": "#5" + } } }, { "name": "saba_33", - "from": [0.5, 0, 8.25], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.25, 0.5, 8.5], "texture": "#5"}, - "east": {"uv": [0.5, 8.25, 0.75, 9], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#5"}, - "west": {"uv": [0.5, 8.25, 0.75, 9], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.5, 8.25, 0.75, 9], "texture": "#5"}, - "down": {"uv": [0.5, 9, 0.75, 8.25], "texture": "#5"} + "north": { + "uv": [ + 0.75, + 8.25, + 0.5, + 8.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 8.25 + ], + "texture": "#5" + } } }, { "name": "saba_34", - "from": [0.25, 0, 8.5], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8.5 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8.5, 0.25, 8.75], "texture": "#5"}, - "east": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#5"}, - "west": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#5"}, - "down": {"uv": [0.25, 8.75, 0.5, 8.5], "texture": "#5"} + "north": { + "uv": [ + 0.5, + 8.5, + 0.25, + 8.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8.5 + ], + "texture": "#5" + } } }, { "name": "saba_35", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 10.5], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#5"}, - "east": {"uv": [14.5, 8.75, 14.75, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.5, 10.25, 14.75, 10.5], "texture": "#5"}, - "west": {"uv": [14.5, 8.75, 14.75, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.5, 8.75, 14.75, 10.5], "texture": "#5"}, - "down": {"uv": [14.5, 10.5, 14.75, 8.75], "texture": "#5"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.5, + 10.5, + 14.75, + 8.75 + ], + "texture": "#5" + } } }, { "name": "saba_36", - "from": [13.25, 0, 9], - "to": [13.5, 0.25, 9.25], + "from": [ + 13.25, + 0, + 9 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 9, 13.25, 9.25], "texture": "#5"}, - "east": {"uv": [13.25, 9, 13.5, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#5"}, - "west": {"uv": [13.25, 9, 13.5, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#5"}, - "down": {"uv": [13.25, 9.25, 13.5, 9], "texture": "#5"} + "north": { + "uv": [ + 13.5, + 9, + 13.25, + 9.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9 + ], + "texture": "#5" + } } }, { "name": "saba_37", - "from": [14.75, 0, 9.25], - "to": [15, 0.25, 10.75], + "from": [ + 14.75, + 0, + 9.25 + ], + "to": [ + 15, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15, 9.25, 14.75, 9.5], "texture": "#5"}, - "east": {"uv": [14.75, 9.25, 15, 10.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.75, 10.5, 15, 10.75], "texture": "#5"}, - "west": {"uv": [14.75, 9.25, 15, 10.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.75, 9.25, 15, 10.75], "texture": "#5"}, - "down": {"uv": [14.75, 10.75, 15, 9.25], "texture": "#5"} + "north": { + "uv": [ + 15, + 9.25, + 14.75, + 9.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.75, + 9.25, + 15, + 10.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.75, + 10.5, + 15, + 10.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.75, + 9.25, + 15, + 10.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.75, + 9.25, + 15, + 10.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.75, + 10.75, + 15, + 9.25 + ], + "texture": "#5" + } } }, { "name": "saba_38", - "from": [10.5, 0, 9.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.5, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 9.5, 10.5, 9.75], "texture": "#5"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#5"}, - "west": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10.5, 9.5, 10.75, 9.75], "texture": "#5"}, - "down": {"uv": [10.5, 9.75, 10.75, 9.5], "texture": "#5"} + "north": { + "uv": [ + 10.75, + 9.5, + 10.5, + 9.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 10.75, + 9.5 + ], + "texture": "#5" + } } }, { "name": "saba_39", - "from": [15, 0, 9.5], - "to": [15.25, 0.25, 10.75], + "from": [ + 15, + 0, + 9.5 + ], + "to": [ + 15.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [15.25, 9.5, 15, 9.75], "texture": "#5"}, - "east": {"uv": [15, 9.5, 15.25, 10.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15, 10.5, 15.25, 10.75], "texture": "#5"}, - "west": {"uv": [15, 9.5, 15.25, 10.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15, 9.5, 15.25, 10.75], "texture": "#5"}, - "down": {"uv": [15, 10.75, 15.25, 9.5], "texture": "#5"} + "north": { + "uv": [ + 15.25, + 9.5, + 15, + 9.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15, + 9.5, + 15.25, + 10.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15, + 10.5, + 15.25, + 10.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15, + 9.5, + 15.25, + 10.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15, + 9.5, + 15.25, + 10.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15, + 10.75, + 15.25, + 9.5 + ], + "texture": "#5" + } } }, { "name": "saba_40", - "from": [2.75, 0, 9.75], - "to": [3, 0.25, 10], + "from": [ + 2.75, + 0, + 9.75 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 9.75, 2.75, 10], "texture": "#5"}, - "east": {"uv": [2.75, 9.75, 3, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [2.75, 9.75, 3, 10], "texture": "#5"}, - "west": {"uv": [2.75, 9.75, 3, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [2.75, 9.75, 3, 10], "texture": "#5"}, - "down": {"uv": [2.75, 10, 3, 9.75], "texture": "#5"} + "north": { + "uv": [ + 3, + 9.75, + 2.75, + 10 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 2.75, + 9.75, + 3, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 2.75, + 10, + 3, + 9.75 + ], + "texture": "#5" + } } }, { "name": "saba_41", - "from": [10, 0, 9.75], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 9.75 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 9.75, 10, 10], "texture": "#5"}, - "east": {"uv": [10, 9.75, 10.25, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#5"}, - "west": {"uv": [10, 9.75, 10.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10, 9.75, 10.25, 10], "texture": "#5"}, - "down": {"uv": [10, 10, 10.25, 9.75], "texture": "#5"} + "north": { + "uv": [ + 10.25, + 9.75, + 10, + 10 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 9.75 + ], + "texture": "#5" + } } }, { "name": "saba_42", - "from": [15.25, 0, 9.75], - "to": [15.5, 0.25, 10.5], + "from": [ + 15.25, + 0, + 9.75 + ], + "to": [ + 15.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.5, 9.75, 15.25, 10], "texture": "#5"}, - "east": {"uv": [15.25, 9.75, 15.5, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15.25, 10.25, 15.5, 10.5], "texture": "#5"}, - "west": {"uv": [15.25, 9.75, 15.5, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15.25, 9.75, 15.5, 10.5], "texture": "#5"}, - "down": {"uv": [15.25, 10.5, 15.5, 9.75], "texture": "#5"} + "north": { + "uv": [ + 15.5, + 9.75, + 15.25, + 10 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15.25, + 10.25, + 15.5, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15.25, + 10.5, + 15.5, + 9.75 + ], + "texture": "#5" + } } }, { "name": "saba_43", - "from": [3.5, 0, 10], - "to": [3.75, 0.25, 10.25], + "from": [ + 3.5, + 0, + 10 + ], + "to": [ + 3.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.75, 10, 3.5, 10.25], "texture": "#5"}, - "east": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#5"}, - "west": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [3.5, 10, 3.75, 10.25], "texture": "#5"}, - "down": {"uv": [3.5, 10.25, 3.75, 10], "texture": "#5"} + "north": { + "uv": [ + 3.75, + 10, + 3.5, + 10.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 3.75, + 10 + ], + "texture": "#5" + } } }, { "name": "saba_44", - "from": [8.25, 0, 10.5], - "to": [8.5, 0.25, 10.75], + "from": [ + 8.25, + 0, + 10.5 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.5, 10.5, 8.25, 10.75], "texture": "#5"}, - "east": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#5"}, - "west": {"uv": [8.25, 10.5, 8.5, 10.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.25, 10.5, 8.5, 10.75], "texture": "#5"}, - "down": {"uv": [8.25, 10.75, 8.5, 10.5], "texture": "#5"} + "north": { + "uv": [ + 8.5, + 10.5, + 8.25, + 10.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.25, + 10.75, + 8.5, + 10.5 + ], + "texture": "#5" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 8.25, 9.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 8.25, + 9.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "saba", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/sake.json b/pack/assets/minecraft/models/fish/sake.json index 70ff33dc..1b913378 100644 --- a/pack/assets/minecraft/models/fish/sake.json +++ b/pack/assets/minecraft/models/fish/sake.json @@ -2,657 +2,3472 @@ "__name": "サケ", "credit": "Made with Blockbench", "textures": { - "0": "fish/sake", - "particle": "fish/sake" + "0": "item/fish/sake", + "particle": "item/fish/sake" }, "elements": [ { "name": "sake_0", - "from": [8.75, 0, 5], - "to": [9.25, 0.25, 10.5], + "from": [ + 8.75, + 0, + 5 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.25, 5, 8.75, 5.25], "texture": "#0"}, - "east": {"uv": [9, 5, 9.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 10.25, 9.25, 10.5], "texture": "#0"}, - "west": {"uv": [8.75, 5, 9, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 5, 9.25, 10.5], "texture": "#0"}, - "down": {"uv": [8.75, 10.5, 9.25, 5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5, + 8.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 10.25, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 5, + 9, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5, + 9.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 10.5, + 9.25, + 5 + ], + "texture": "#0" + } } }, { "name": "sake_1", - "from": [8.5, 0, 5.25], - "to": [8.75, 0.25, 10.25], + "from": [ + 8.5, + 0, + 5.25 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 5.25, 8.5, 5.5], "texture": "#0"}, - "east": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [8.5, 5.25, 8.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.25, 8.75, 10.25], "texture": "#0"}, - "down": {"uv": [8.5, 10.25, 8.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 5.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.25, + 8.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 8.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "sake_2", - "from": [9.25, 0, 5.25], - "to": [9.5, 0.25, 10.5], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.5, 5.25, 9.25, 5.5], "texture": "#0"}, - "east": {"uv": [9.25, 5.25, 9.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.25, 9.5, 10.5], "texture": "#0"}, - "west": {"uv": [9.25, 5.25, 9.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.25, 9.5, 10.5], "texture": "#0"}, - "down": {"uv": [9.25, 10.5, 9.5, 5.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.25, + 9.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.5, + 9.5, + 5.25 + ], + "texture": "#0" + } } }, { "name": "sake_3", - "from": [8, 0, 5.5], - "to": [8.5, 0.25, 9.75], + "from": [ + 8, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.5, 5.5, 8, 5.75], "texture": "#0"}, - "east": {"uv": [8.25, 5.5, 8.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 9.5, 8.5, 9.75], "texture": "#0"}, - "west": {"uv": [8, 5.5, 8.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 5.5, 8.5, 9.75], "texture": "#0"}, - "down": {"uv": [8, 9.75, 8.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.75, + 8.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "sake_4", - "from": [7.5, 0, 5.75], - "to": [8, 0.25, 10], + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 8, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8, 5.75, 7.5, 6], "texture": "#0"}, - "east": {"uv": [7.75, 5.75, 8, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 9.75, 8, 10], "texture": "#0"}, - "west": {"uv": [7.5, 5.75, 7.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 5.75, 8, 10], "texture": "#0"}, - "down": {"uv": [7.5, 10, 8, 5.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 5.75, + 7.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.75, + 8, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 8, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 8, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10, + 8, + 5.75 + ], + "texture": "#0" + } } }, { "name": "sake_5", - "from": [6, 0, 6], - "to": [7.5, 0.25, 10], + "from": [ + 6, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 6, 6, 6.25], "texture": "#0"}, - "east": {"uv": [7.25, 6, 7.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.75, 7.5, 10], "texture": "#0"}, - "west": {"uv": [6, 6, 6.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6, 7.5, 10], "texture": "#0"}, - "down": {"uv": [6, 10, 7.5, 6], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 6, + 6, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.75, + 7.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6, + 6.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6, + 7.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10, + 7.5, + 6 + ], + "texture": "#0" + } } }, { "name": "sake_6", - "from": [14.5, 0, 6], - "to": [15, 0.25, 7], + "from": [ + 14.5, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15, 6, 14.5, 6.25], "texture": "#0"}, - "east": {"uv": [14.75, 6, 15, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 6.75, 15, 7], "texture": "#0"}, - "west": {"uv": [14.5, 6, 14.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 6, 15, 7], "texture": "#0"}, - "down": {"uv": [14.5, 7, 15, 6], "texture": "#0"} + "north": { + "uv": [ + 15, + 6, + 14.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6.75, + 15, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 6, + 14.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 6, + 15, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7, + 15, + 6 + ], + "texture": "#0" + } } }, { "name": "sake_7", - "from": [4.75, 0, 6.25], - "to": [6, 0.25, 10], + "from": [ + 4.75, + 0, + 6.25 + ], + "to": [ + 6, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6, 6.25, 4.75, 6.5], "texture": "#0"}, - "east": {"uv": [5.75, 6.25, 6, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 9.75, 6, 10], "texture": "#0"}, - "west": {"uv": [4.75, 6.25, 5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 6.25, 6, 10], "texture": "#0"}, - "down": {"uv": [4.75, 10, 6, 6.25], "texture": "#0"} + "north": { + "uv": [ + 6, + 6.25, + 4.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6.25, + 6, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.75, + 6, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 6.25, + 5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.25, + 6, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 6, + 6.25 + ], + "texture": "#0" + } } }, { "name": "sake_8", - "from": [14, 0, 6.25], - "to": [14.5, 0.25, 7.5], + "from": [ + 14, + 0, + 6.25 + ], + "to": [ + 14.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.5, 6.25, 14, 6.5], "texture": "#0"}, - "east": {"uv": [14.25, 6.25, 14.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 7.25, 14.5, 7.5], "texture": "#0"}, - "west": {"uv": [14, 6.25, 14.25, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.25, 14.5, 7.5], "texture": "#0"}, - "down": {"uv": [14, 7.5, 14.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.25, + 14, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.25, + 14.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 7.25, + 14.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.25, + 14.25, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.25, + 14.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 7.5, + 14.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "sake_9", - "from": [15, 0, 6.25], - "to": [15.25, 0.25, 6.5], + "from": [ + 15, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.25, 6.25, 15, 6.5], "texture": "#0"}, - "east": {"uv": [15, 6.25, 15.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 6.25, 15.25, 6.5], "texture": "#0"}, - "west": {"uv": [15, 6.25, 15.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 6.25, 15.25, 6.5], "texture": "#0"}, - "down": {"uv": [15, 6.5, 15.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.25, + 15, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 6.5, + 15.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "sake_10", - "from": [3.5, 0, 6.5], - "to": [4.75, 0.25, 9.75], + "from": [ + 3.5, + 0, + 6.5 + ], + "to": [ + 4.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.75, 6.5, 3.5, 6.75], "texture": "#0"}, - "east": {"uv": [4.5, 6.5, 4.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.5, 9.5, 4.75, 9.75], "texture": "#0"}, - "west": {"uv": [3.5, 6.5, 3.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.5, 6.5, 4.75, 9.75], "texture": "#0"}, - "down": {"uv": [3.5, 9.75, 4.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 6.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 4.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 6.5, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.5, + 4.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 4.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "sake_11", - "from": [11.5, 0, 6.5], - "to": [12, 0.25, 9], + "from": [ + 11.5, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12, 6.5, 11.5, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 8.75, 12, 9], "texture": "#0"}, - "west": {"uv": [11.5, 6.5, 11.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 6.5, 12, 9], "texture": "#0"}, - "down": {"uv": [11.5, 9, 12, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.5, + 11.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 12, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 6.5, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6.5, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "sake_12", - "from": [13.5, 0, 6.5], - "to": [14, 0.25, 9.25], + "from": [ + 13.5, + 0, + 6.5 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 6.5, 13.5, 6.75], "texture": "#0"}, - "east": {"uv": [13.75, 6.5, 14, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 14, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 6.5, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6.5, 14, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 14, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14, + 6.5, + 13.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 6.5, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 14, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6.5, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6.5, + 14, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 14, + 6.5 + ], + "texture": "#0" + } } }, { "name": "sake_13", - "from": [1.25, 0, 6.75], - "to": [3.5, 0.25, 7.5], + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 3.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [3.5, 6.75, 1.25, 7], "texture": "#0"}, - "east": {"uv": [3.25, 6.75, 3.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.25, 3.5, 7.5], "texture": "#0"}, - "west": {"uv": [1.25, 6.75, 1.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.75, 3.5, 7.5], "texture": "#0"}, - "down": {"uv": [1.25, 7.5, 3.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 6.75, + 1.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 6.75, + 3.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.25, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 3.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7.5, + 3.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "sake_14", - "from": [9.5, 0, 6.75], - "to": [10.5, 0.25, 9.25], + "from": [ + 9.5, + 0, + 6.75 + ], + "to": [ + 10.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.5, 6.75, 9.5, 7], "texture": "#0"}, - "east": {"uv": [10.25, 6.75, 10.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9, 10.5, 9.25], "texture": "#0"}, - "west": {"uv": [9.5, 6.75, 9.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.75, 10.5, 9.25], "texture": "#0"}, - "down": {"uv": [9.5, 9.25, 10.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.75, + 10.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9, + 10.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.75, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.75, + 10.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 10.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "sake_15", - "from": [11.25, 0, 6.75], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 6.75 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 6.75, 11.25, 7], "texture": "#0"}, - "east": {"uv": [11.25, 6.75, 11.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#0"}, - "west": {"uv": [11.25, 6.75, 11.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.25, 6.75, 11.5, 10.5], "texture": "#0"}, - "down": {"uv": [11.25, 10.5, 11.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 6.75, + 11.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 6.75, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "sake_16", - "from": [13.25, 0, 6.75], - "to": [13.5, 0.25, 9], + "from": [ + 13.25, + 0, + 6.75 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 6.75, 13.25, 7], "texture": "#0"}, - "east": {"uv": [13.25, 6.75, 13.5, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 13.5, 9], "texture": "#0"}, - "west": {"uv": [13.25, 6.75, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6.75, 13.5, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 13.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 6.75, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6.75, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6.75, + 13.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 13.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "sake_17", - "from": [1, 0, 7], - "to": [1.25, 0.25, 7.25], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#0"}, - "east": {"uv": [1, 7, 1.25, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 7, 1.25, 7.25], "texture": "#0"}, - "west": {"uv": [1, 7, 1.25, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 7, 1.25, 7.25], "texture": "#0"}, - "down": {"uv": [1, 7.25, 1.25, 7], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7.25, + 1.25, + 7 + ], + "texture": "#0" + } } }, { "name": "sake_18", - "from": [10.5, 0, 7], - "to": [11.25, 0.25, 9.75], + "from": [ + 10.5, + 0, + 7 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.25, 7, 10.5, 7.25], "texture": "#0"}, - "east": {"uv": [11, 7, 11.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 9.5, 11.25, 9.75], "texture": "#0"}, - "west": {"uv": [10.5, 7, 10.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7, 11.25, 9.75], "texture": "#0"}, - "down": {"uv": [10.5, 9.75, 11.25, 7], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 7, + 10.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7, + 11.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 11.25, + 7 + ], + "texture": "#0" + } } }, { "name": "sake_19", - "from": [13, 0, 7], - "to": [13.25, 0.25, 8.75], + "from": [ + 13, + 0, + 7 + ], + "to": [ + 13.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.25, 7, 13, 7.25], "texture": "#0"}, - "east": {"uv": [13, 7, 13.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 8.5, 13.25, 8.75], "texture": "#0"}, - "west": {"uv": [13, 7, 13.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 7, 13.25, 8.75], "texture": "#0"}, - "down": {"uv": [13, 8.75, 13.25, 7], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 7, + 13, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 7, + 13.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8.5, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7, + 13.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 7, + 13.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8.75, + 13.25, + 7 + ], + "texture": "#0" + } } }, { "name": "sake_20", - "from": [14.5, 0, 7], - "to": [14.75, 0.25, 7.25], + "from": [ + 14.5, + 0, + 7 + ], + "to": [ + 14.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14.75, 7, 14.5, 7.25], "texture": "#0"}, - "east": {"uv": [14.5, 7, 14.75, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 7, 14.75, 7.25], "texture": "#0"}, - "west": {"uv": [14.5, 7, 14.75, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7, 14.75, 7.25], "texture": "#0"}, - "down": {"uv": [14.5, 7.25, 14.75, 7], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7, + 14.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7 + ], + "texture": "#0" + } } }, { "name": "sake_21", - "from": [12, 0, 7.25], - "to": [13, 0.25, 8.5], + "from": [ + 12, + 0, + 7.25 + ], + "to": [ + 13, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13, 7.25, 12, 7.5], "texture": "#0"}, - "east": {"uv": [12.75, 7.25, 13, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 8.25, 13, 8.5], "texture": "#0"}, - "west": {"uv": [12, 7.25, 12.25, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 7.25, 13, 8.5], "texture": "#0"}, - "down": {"uv": [12, 8.5, 13, 7.25], "texture": "#0"} + "north": { + "uv": [ + 13, + 7.25, + 12, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 7.25, + 13, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7.25, + 12.25, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 7.25, + 13, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8.5, + 13, + 7.25 + ], + "texture": "#0" + } } }, { "name": "sake_22", - "from": [1.5, 0, 7.5], - "to": [3.5, 0.25, 7.75], + "from": [ + 1.5, + 0, + 7.5 + ], + "to": [ + 3.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [3.5, 7.5, 1.5, 7.75], "texture": "#0"}, - "east": {"uv": [3.25, 7.5, 3.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 7.5, 3.5, 7.75], "texture": "#0"}, - "west": {"uv": [1.5, 7.5, 1.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.5, 3.5, 7.75], "texture": "#0"}, - "down": {"uv": [1.5, 7.75, 3.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.5, + 3.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7.75, + 3.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "sake_23", - "from": [14, 0, 7.5], - "to": [14.25, 0.25, 9.5], + "from": [ + 14, + 0, + 7.5 + ], + "to": [ + 14.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.25, 7.5, 14, 7.75], "texture": "#0"}, - "east": {"uv": [14, 7.5, 14.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.25, 14.25, 9.5], "texture": "#0"}, - "west": {"uv": [14, 7.5, 14.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 7.5, 14.25, 9.5], "texture": "#0"}, - "down": {"uv": [14, 9.5, 14.25, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 7.5, + 14, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.5, + 14.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.25, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 7.5, + 14.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 7.5, + 14.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.5, + 14.25, + 7.5 + ], + "texture": "#0" + } } }, { "name": "sake_24", - "from": [1.75, 0, 7.75], - "to": [3.5, 0.25, 8], + "from": [ + 1.75, + 0, + 7.75 + ], + "to": [ + 3.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [3.5, 7.75, 1.75, 8], "texture": "#0"}, - "east": {"uv": [3.25, 7.75, 3.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 7.75, 3.5, 8], "texture": "#0"}, - "west": {"uv": [1.75, 7.75, 2, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 7.75, 3.5, 8], "texture": "#0"}, - "down": {"uv": [1.75, 8, 3.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 7.75, + 1.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.75, + 2, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 8, + 3.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "sake_25", - "from": [1, 0, 8], - "to": [1.25, 0.25, 9], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#0"}, - "east": {"uv": [1, 8, 1.25, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.75, 1.25, 9], "texture": "#0"}, - "west": {"uv": [1, 8, 1.25, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8, 1.25, 9], "texture": "#0"}, - "down": {"uv": [1, 9, 1.25, 8], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9, + 1.25, + 8 + ], + "texture": "#0" + } } }, { "name": "sake_26", - "from": [2, 0, 8], - "to": [3.5, 0.25, 8.25], + "from": [ + 2, + 0, + 8 + ], + "to": [ + 3.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [3.5, 8, 2, 8.25], "texture": "#0"}, - "east": {"uv": [3.25, 8, 3.5, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 8, 3.5, 8.25], "texture": "#0"}, - "west": {"uv": [2, 8, 2.25, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 8, 3.5, 8.25], "texture": "#0"}, - "down": {"uv": [2, 8.25, 3.5, 8], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 8, + 2, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8, + 3.5, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8, + 2.25, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8, + 3.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.25, + 3.5, + 8 + ], + "texture": "#0" + } } }, { "name": "sake_27", - "from": [14.25, 0, 8], - "to": [14.5, 0.25, 9.75], + "from": [ + 14.25, + 0, + 8 + ], + "to": [ + 14.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.5, 8, 14.25, 8.25], "texture": "#0"}, - "east": {"uv": [14.25, 8, 14.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.5, 14.5, 9.75], "texture": "#0"}, - "west": {"uv": [14.25, 8, 14.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 8, 14.5, 9.75], "texture": "#0"}, - "down": {"uv": [14.25, 9.75, 14.5, 8], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 8, + 14.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 8, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.5, + 8 + ], + "texture": "#0" + } } }, { "name": "sake_28", - "from": [0.75, 0, 8.25], - "to": [1, 0.25, 8.75], + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1, 8.25, 0.75, 8.5], "texture": "#0"}, - "east": {"uv": [0.75, 8.25, 1, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.5, 1, 8.75], "texture": "#0"}, - "west": {"uv": [0.75, 8.25, 1, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.25, 1, 8.75], "texture": "#0"}, - "down": {"uv": [0.75, 8.75, 1, 8.25], "texture": "#0"} + "north": { + "uv": [ + 1, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 1, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1, + 8.25 + ], + "texture": "#0" + } } }, { "name": "sake_29", - "from": [1.25, 0, 8.25], - "to": [1.5, 0.25, 9.25], + "from": [ + 1.25, + 0, + 8.25 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 8.25, 1.25, 8.5], "texture": "#0"}, - "east": {"uv": [1.25, 8.25, 1.5, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.5, 9.25], "texture": "#0"}, - "west": {"uv": [1.25, 8.25, 1.5, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.25, 1.5, 9.25], "texture": "#0"}, - "down": {"uv": [1.25, 9.25, 1.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 8.25, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 8.25, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.25, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.25, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 1.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "sake_30", - "from": [2.25, 0, 8.25], - "to": [3.5, 0.25, 9.5], + "from": [ + 2.25, + 0, + 8.25 + ], + "to": [ + 3.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.5, 8.25, 2.25, 8.5], "texture": "#0"}, - "east": {"uv": [3.25, 8.25, 3.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.25, 3.5, 9.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 3.5, 9.5], "texture": "#0"}, - "down": {"uv": [2.25, 9.5, 3.5, 8.25], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 8.25, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8.25, + 3.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 9.5, + 3.5, + 8.25 + ], + "texture": "#0" + } } }, { "name": "sake_31", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#0"}, - "east": {"uv": [14.5, 8.25, 14.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#0"}, - "west": {"uv": [14.5, 8.25, 14.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 8.25, 14.75, 10], "texture": "#0"}, - "down": {"uv": [14.5, 10, 14.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "sake_32", - "from": [1.5, 0, 8.5], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.5, + 0, + 8.5 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 8.5, 1.5, 8.75], "texture": "#0"}, - "east": {"uv": [2, 8.5, 2.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9, 2.25, 9.25], "texture": "#0"}, - "west": {"uv": [1.5, 8.5, 1.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 8.5, 2.25, 9.25], "texture": "#0"}, - "down": {"uv": [1.5, 9.25, 2.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 8.5, + 1.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 2.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "sake_33", - "from": [14.75, 0, 8.75], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 8.75, 14.75, 9], "texture": "#0"}, - "east": {"uv": [14.75, 8.75, 15, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#0"}, - "west": {"uv": [14.75, 8.75, 15, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 8.75, 15, 9.75], "texture": "#0"}, - "down": {"uv": [14.75, 9.75, 15, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.75, + 14.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 8.75, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 8.75, + 15, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 8.75 + ], + "texture": "#0" + } } }, { "name": "sake_34", - "from": [11.5, 0, 9], - "to": [11.75, 0.25, 10.25], + "from": [ + 11.5, + 0, + 9 + ], + "to": [ + 11.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.75, 9, 11.5, 9.25], "texture": "#0"}, - "east": {"uv": [11.5, 9, 11.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10, 11.75, 10.25], "texture": "#0"}, - "west": {"uv": [11.5, 9, 11.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 9, 11.75, 10.25], "texture": "#0"}, - "down": {"uv": [11.5, 10.25, 11.75, 9], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 9, + 11.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9, + 11.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 9, + 11.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 9, + 11.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.25, + 11.75, + 9 + ], + "texture": "#0" + } } }, { "name": "sake_35", - "from": [1.75, 0, 9.25], - "to": [2.25, 0.25, 9.5], + "from": [ + 1.75, + 0, + 9.25 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.25, 9.25, 1.75, 9.5], "texture": "#0"}, - "east": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 2.25, 9.5], "texture": "#0"}, - "west": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 2.25, 9.5], "texture": "#0"}, - "down": {"uv": [1.75, 9.5, 2.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "sake_36", - "from": [9.5, 0, 9.25], - "to": [9.75, 0.25, 9.5], + "from": [ + 9.5, + 0, + 9.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 9.25, 9.5, 9.5], "texture": "#0"}, - "east": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 9.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 9.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "sake_37", - "from": [10.25, 0, 9.25], - "to": [10.5, 0.25, 9.5], + "from": [ + 10.25, + 0, + 9.25 + ], + "to": [ + 10.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.5, 9.25, 10.25, 9.5], "texture": "#0"}, - "east": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "west": {"uv": [10.25, 9.25, 10.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 9.25, 10.5, 9.5], "texture": "#0"}, - "down": {"uv": [10.25, 9.5, 10.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 9.25, + 10.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9.25, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "sake_38", - "from": [13.75, 0, 9.25], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 9.25 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 9.25, 13.75, 9.5], "texture": "#0"}, - "east": {"uv": [13.75, 9.25, 14, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#0"}, - "west": {"uv": [13.75, 9.25, 14, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#0"}, - "down": {"uv": [13.75, 9.5, 14, 9.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 9.25 + ], + "texture": "#0" + } } }, { "name": "sake_39", - "from": [2.5, 0, 9.5], - "to": [3.5, 0.25, 9.75], + "from": [ + 2.5, + 0, + 9.5 + ], + "to": [ + 3.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.5, 9.5, 2.5, 9.75], "texture": "#0"}, - "east": {"uv": [3.25, 9.5, 3.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 9.5, 3.5, 9.75], "texture": "#0"}, - "west": {"uv": [2.5, 9.5, 2.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 9.5, 3.5, 9.75], "texture": "#0"}, - "down": {"uv": [2.5, 9.75, 3.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 3.5, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 9.5, + 3.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 9.5, + 2.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9.75, + 3.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "sake_40", - "from": [4.25, 0, 9.75], - "to": [4.75, 0.25, 10], + "from": [ + 4.25, + 0, + 9.75 + ], + "to": [ + 4.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.75, 9.75, 4.25, 10], "texture": "#0"}, - "east": {"uv": [4.5, 9.75, 4.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 9.75, 4.75, 10], "texture": "#0"}, - "west": {"uv": [4.25, 9.75, 4.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 9.75, 4.75, 10], "texture": "#0"}, - "down": {"uv": [4.25, 10, 4.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 9.75, + 4.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9.75, + 4.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 9.75, + 4.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.75, + 4.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 10, + 4.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "sake_41", - "from": [8.25, 0, 9.75], - "to": [8.5, 0.25, 10], + "from": [ + 8.25, + 0, + 9.75 + ], + "to": [ + 8.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.5, 9.75, 8.25, 10], "texture": "#0"}, - "east": {"uv": [8.25, 9.75, 8.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 9.75, 8.5, 10], "texture": "#0"}, - "west": {"uv": [8.25, 9.75, 8.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 9.75, 8.5, 10], "texture": "#0"}, - "down": {"uv": [8.25, 10, 8.5, 9.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 9.75, + 8.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 10, + 8.5, + 9.75 + ], + "texture": "#0" + } } }, { "name": "sake_42", - "from": [10.75, 0, 9.75], - "to": [11.25, 0.25, 10], + "from": [ + 10.75, + 0, + 9.75 + ], + "to": [ + 11.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.25, 9.75, 10.75, 10], "texture": "#0"}, - "east": {"uv": [11, 9.75, 11.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 9.75, 11.25, 10], "texture": "#0"}, - "west": {"uv": [10.75, 9.75, 11, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.75, 11.25, 10], "texture": "#0"}, - "down": {"uv": [10.75, 10, 11.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 9.75, + 10.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.75, + 11, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.75, + 11.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 10, + 11.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "sake_43", - "from": [5.5, 0, 10], - "to": [6, 0.25, 10.25], + "from": [ + 5.5, + 0, + 10 + ], + "to": [ + 6, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6, 10, 5.5, 10.25], "texture": "#0"}, - "east": {"uv": [5.75, 10, 6, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 10, 6, 10.25], "texture": "#0"}, - "west": {"uv": [5.5, 10, 5.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 10, 6, 10.25], "texture": "#0"}, - "down": {"uv": [5.5, 10.25, 6, 10], "texture": "#0"} + "north": { + "uv": [ + 6, + 10, + 5.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 10, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 10, + 5.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10, + 6, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 10.25, + 6, + 10 + ], + "texture": "#0" + } } }, { "name": "sake_44", - "from": [11, 0, 10], - "to": [11.25, 0.25, 10.25], + "from": [ + 11, + 0, + 10 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 10, 11, 10.25], "texture": "#0"}, - "east": {"uv": [11, 10, 11.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10, 11.25, 10.25], "texture": "#0"}, - "west": {"uv": [11, 10, 11.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 10, 11.25, 10.25], "texture": "#0"}, - "down": {"uv": [11, 10.25, 11.25, 10], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 10, + 11, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.25, + 11.25, + 10 + ], + "texture": "#0" + } } }, { "name": "sake_45", - "from": [9, 0, 10.5], - "to": [9.25, 0.25, 10.75], + "from": [ + 9, + 0, + 10.5 + ], + "to": [ + 9.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [9.25, 10.5, 9, 10.75], "texture": "#0"}, - "east": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#0"}, - "west": {"uv": [9, 10.5, 9.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10.5, 9.25, 10.75], "texture": "#0"}, - "down": {"uv": [9, 10.75, 9.25, 10.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10.5, + 9.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10.75, + 9.25, + 10.5 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0.25, 9.25, 17.5], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 9.25, + 17.5 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0.25, 9.25, 17.5], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 9.25, + 17.5 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "sake", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/same.json b/pack/assets/minecraft/models/fish/same.json index 4de30d50..2d8ff8bc 100644 --- a/pack/assets/minecraft/models/fish/same.json +++ b/pack/assets/minecraft/models/fish/same.json @@ -2,631 +2,3328 @@ "__name": "サメ", "credit": "Made with Blockbench", "textures": { - "5": "fish/same", - "particle": "fish/raigyo" + "5": "item/fish/same", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "same_0", - "from": [8, 0, 5.25], - "to": [8.25, 0.25, 10.25], + "from": [ + 8, + 0, + 5.25 + ], + "to": [ + 8.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.25, 5.25, 8, 5.5], "texture": "#5"}, - "east": {"uv": [8, 5.25, 8.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8, 10, 8.25, 10.25], "texture": "#5"}, - "west": {"uv": [8, 5.25, 8.25, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8, 5.25, 8.25, 10.25], "texture": "#5"}, - "down": {"uv": [8, 10.25, 8.25, 5.25], "texture": "#5"} + "north": { + "uv": [ + 8.25, + 5.25, + 8, + 5.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8, + 5.25, + 8.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8, + 5.25, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8, + 5.25, + 8.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.25, + 5.25 + ], + "texture": "#5" + } } }, { "name": "same_1", - "from": [7.75, 0, 5.5], - "to": [8, 0.25, 10.25], + "from": [ + 7.75, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8, 5.5, 7.75, 5.75], "texture": "#5"}, - "east": {"uv": [7.75, 5.5, 8, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7.75, 10, 8, 10.25], "texture": "#5"}, - "west": {"uv": [7.75, 5.5, 8, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7.75, 5.5, 8, 10.25], "texture": "#5"}, - "down": {"uv": [7.75, 10.25, 8, 5.5], "texture": "#5"} + "north": { + "uv": [ + 8, + 5.5, + 7.75, + 5.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7.75, + 5.5, + 8, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7.75, + 5.5, + 8, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7.75, + 10.25, + 8, + 5.5 + ], + "texture": "#5" + } } }, { "name": "same_2", - "from": [8.25, 0, 5.5], - "to": [8.5, 0.25, 10.25], + "from": [ + 8.25, + 0, + 5.5 + ], + "to": [ + 8.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.5, 5.5, 8.25, 5.75], "texture": "#5"}, - "east": {"uv": [8.25, 5.5, 8.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.25, 10, 8.5, 10.25], "texture": "#5"}, - "west": {"uv": [8.25, 5.5, 8.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.25, 5.5, 8.5, 10.25], "texture": "#5"}, - "down": {"uv": [8.25, 10.25, 8.5, 5.5], "texture": "#5"} + "north": { + "uv": [ + 8.5, + 5.5, + 8.25, + 5.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.25, + 5.5, + 8.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.25, + 5.5, + 8.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.25, + 5.5, + 8.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.25, + 10.25, + 8.5, + 5.5 + ], + "texture": "#5" + } } }, { "name": "same_3", - "from": [7.5, 0, 5.75], - "to": [7.75, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.75 + ], + "to": [ + 7.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.75, 5.75, 7.5, 6], "texture": "#5"}, - "east": {"uv": [7.5, 5.75, 7.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#5"}, - "west": {"uv": [7.5, 5.75, 7.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7.5, 5.75, 7.75, 10.25], "texture": "#5"}, - "down": {"uv": [7.5, 10.25, 7.75, 5.75], "texture": "#5"} + "north": { + "uv": [ + 7.75, + 5.75, + 7.5, + 6 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 7.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 7.75, + 5.75 + ], + "texture": "#5" + } } }, { "name": "same_4", - "from": [15, 0, 5.75], - "to": [15.25, 0.25, 6.75], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 5.75, 15, 6], "texture": "#5"}, - "east": {"uv": [15, 5.75, 15.25, 6.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#5"}, - "west": {"uv": [15, 5.75, 15.25, 6.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15, 5.75, 15.25, 6.75], "texture": "#5"}, - "down": {"uv": [15, 6.75, 15.25, 5.75], "texture": "#5"} + "north": { + "uv": [ + 15.25, + 5.75, + 15, + 6 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15, + 5.75, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 6.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.25, + 6.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15, + 6.75, + 15.25, + 5.75 + ], + "texture": "#5" + } } }, { "name": "same_5", - "from": [7.25, 0, 6], - "to": [7.5, 0.25, 10.25], + "from": [ + 7.25, + 0, + 6 + ], + "to": [ + 7.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.5, 6, 7.25, 6.25], "texture": "#5"}, - "east": {"uv": [7.25, 6, 7.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7.25, 10, 7.5, 10.25], "texture": "#5"}, - "west": {"uv": [7.25, 6, 7.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7.25, 6, 7.5, 10.25], "texture": "#5"}, - "down": {"uv": [7.25, 10.25, 7.5, 6], "texture": "#5"} + "north": { + "uv": [ + 7.5, + 6, + 7.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7.25, + 10, + 7.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7.25, + 6, + 7.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7.25, + 10.25, + 7.5, + 6 + ], + "texture": "#5" + } } }, { "name": "same_6", - "from": [14.75, 0, 6], - "to": [15, 0.25, 7.25], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#5"}, - "east": {"uv": [14.75, 6, 15, 7.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.75, 7, 15, 7.25], "texture": "#5"}, - "west": {"uv": [14.75, 6, 15, 7.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.75, 6, 15, 7.25], "texture": "#5"}, - "down": {"uv": [14.75, 7.25, 15, 6], "texture": "#5"} + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 7.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15, + 6 + ], + "texture": "#5" + } } }, { "name": "same_7", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 6.5], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#5"}, - "east": {"uv": [15.25, 6, 15.5, 6.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15.25, 6.25, 15.5, 6.5], "texture": "#5"}, - "west": {"uv": [15.25, 6, 15.5, 6.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15.25, 6, 15.5, 6.5], "texture": "#5"}, - "down": {"uv": [15.25, 6.5, 15.5, 6], "texture": "#5"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 6.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 6.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 6.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6 + ], + "texture": "#5" + } } }, { "name": "same_8", - "from": [7, 0, 6.25], - "to": [7.25, 0.25, 10.25], + "from": [ + 7, + 0, + 6.25 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.25, 6.25, 7, 6.5], "texture": "#5"}, - "east": {"uv": [7, 6.25, 7.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7, 10, 7.25, 10.25], "texture": "#5"}, - "west": {"uv": [7, 6.25, 7.25, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7, 6.25, 7.25, 10.25], "texture": "#5"}, - "down": {"uv": [7, 10.25, 7.25, 6.25], "texture": "#5"} + "north": { + "uv": [ + 7.25, + 6.25, + 7, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7, + 6.25, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7, + 6.25, + 7.25, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7, + 6.25, + 7.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7, + 10.25, + 7.25, + 6.25 + ], + "texture": "#5" + } } }, { "name": "same_9", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 8], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#5"}, - "east": {"uv": [14.5, 6.25, 14.75, 8], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.5, 7.75, 14.75, 8], "texture": "#5"}, - "west": {"uv": [14.5, 6.25, 14.75, 8], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.5, 6.25, 14.75, 8], "texture": "#5"}, - "down": {"uv": [14.5, 8, 14.75, 6.25], "texture": "#5"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.5, + 7.75, + 14.75, + 8 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 8 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.5, + 8, + 14.75, + 6.25 + ], + "texture": "#5" + } } }, { "name": "same_10", - "from": [14.25, 0, 6.5], - "to": [14.5, 0.25, 10.25], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14.25, 6.75], "texture": "#5"}, - "east": {"uv": [14.25, 6.5, 14.5, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.25, 10, 14.5, 10.25], "texture": "#5"}, - "west": {"uv": [14.25, 6.5, 14.5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.25, 6.5, 14.5, 10.25], "texture": "#5"}, - "down": {"uv": [14.25, 10.25, 14.5, 6.5], "texture": "#5"} + "north": { + "uv": [ + 14.5, + 6.5, + 14.25, + 6.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.25, + 10, + 14.5, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.5, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.25, + 10.25, + 14.5, + 6.5 + ], + "texture": "#5" + } } }, { "name": "same_11", - "from": [6.75, 0, 6.75], - "to": [7, 0.25, 11.75], + "from": [ + 6.75, + 0, + 6.75 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 6.75, 6.75, 7], "texture": "#5"}, - "east": {"uv": [6.75, 6.75, 7, 11.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6.75, 11.5, 7, 11.75], "texture": "#5"}, - "west": {"uv": [6.75, 6.75, 7, 11.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6.75, 6.75, 7, 11.75], "texture": "#5"}, - "down": {"uv": [6.75, 11.75, 7, 6.75], "texture": "#5"} + "north": { + "uv": [ + 7, + 6.75, + 6.75, + 7 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.75, + 6.75, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6.75, + 11.5, + 7, + 11.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6.75, + 6.75, + 7, + 11.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6.75, + 6.75, + 7, + 11.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6.75, + 11.75, + 7, + 6.75 + ], + "texture": "#5" + } } }, { "name": "same_12", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 10], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#5"}, - "east": {"uv": [14, 6.75, 14.25, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14, 9.75, 14.25, 10], "texture": "#5"}, - "west": {"uv": [14, 6.75, 14.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14, 6.75, 14.25, 10], "texture": "#5"}, - "down": {"uv": [14, 10, 14.25, 6.75], "texture": "#5"} + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14, + 10, + 14.25, + 6.75 + ], + "texture": "#5" + } } }, { "name": "same_13", - "from": [4.75, 0, 7], - "to": [6.75, 0.25, 10.25], + "from": [ + 4.75, + 0, + 7 + ], + "to": [ + 6.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.75, 7, 4.75, 7.25], "texture": "#5"}, - "east": {"uv": [6.5, 7, 6.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [4.75, 10, 6.75, 10.25], "texture": "#5"}, - "west": {"uv": [4.75, 7, 5, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [4.75, 7, 6.75, 10.25], "texture": "#5"}, - "down": {"uv": [4.75, 10.25, 6.75, 7], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 7, + 4.75, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 7, + 6.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 4.75, + 10, + 6.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 4.75, + 7, + 5, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 4.75, + 7, + 6.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 4.75, + 10.25, + 6.75, + 7 + ], + "texture": "#5" + } } }, { "name": "same_14", - "from": [8.5, 0, 7], - "to": [8.75, 0.25, 10.25], + "from": [ + 8.5, + 0, + 7 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 7, 8.5, 7.25], "texture": "#5"}, - "east": {"uv": [8.5, 7, 8.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.5, 10, 8.75, 10.25], "texture": "#5"}, - "west": {"uv": [8.5, 7, 8.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.5, 7, 8.75, 10.25], "texture": "#5"}, - "down": {"uv": [8.5, 10.25, 8.75, 7], "texture": "#5"} + "north": { + "uv": [ + 8.75, + 7, + 8.5, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.5, + 7, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.5, + 7, + 8.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.5, + 7, + 8.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.5, + 10.25, + 8.75, + 7 + ], + "texture": "#5" + } } }, { "name": "same_15", - "from": [13.75, 0, 7], - "to": [14, 0.25, 9.75], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#5"}, - "east": {"uv": [13.75, 7, 14, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.75, 9.5, 14, 9.75], "texture": "#5"}, - "west": {"uv": [13.75, 7, 14, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.75, 7, 14, 9.75], "texture": "#5"}, - "down": {"uv": [13.75, 9.75, 14, 7], "texture": "#5"} + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14, + 7 + ], + "texture": "#5" + } } }, { "name": "same_16", - "from": [3, 0, 7.25], - "to": [4.75, 0.25, 10], + "from": [ + 3, + 0, + 7.25 + ], + "to": [ + 4.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.75, 7.25, 3, 7.5], "texture": "#5"}, - "east": {"uv": [4.5, 7.25, 4.75, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [3, 9.75, 4.75, 10], "texture": "#5"}, - "west": {"uv": [3, 7.25, 3.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [3, 7.25, 4.75, 10], "texture": "#5"}, - "down": {"uv": [3, 10, 4.75, 7.25], "texture": "#5"} + "north": { + "uv": [ + 4.75, + 7.25, + 3, + 7.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 4.5, + 7.25, + 4.75, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 3, + 9.75, + 4.75, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 3, + 7.25, + 3.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 3, + 7.25, + 4.75, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 3, + 10, + 4.75, + 7.25 + ], + "texture": "#5" + } } }, { "name": "same_17", - "from": [2.25, 0, 7.5], - "to": [3, 0.25, 10], + "from": [ + 2.25, + 0, + 7.5 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 7.5, 2.25, 7.75], "texture": "#5"}, - "east": {"uv": [2.75, 7.5, 3, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [2.25, 9.75, 3, 10], "texture": "#5"}, - "west": {"uv": [2.25, 7.5, 2.5, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [2.25, 7.5, 3, 10], "texture": "#5"}, - "down": {"uv": [2.25, 10, 3, 7.5], "texture": "#5"} + "north": { + "uv": [ + 3, + 7.5, + 2.25, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2.75, + 7.5, + 3, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 3, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 2.25, + 7.5, + 3, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 2.25, + 10, + 3, + 7.5 + ], + "texture": "#5" + } } }, { "name": "same_18", - "from": [8.75, 0, 7.5], - "to": [10, 0.25, 10], + "from": [ + 8.75, + 0, + 7.5 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 7.5, 8.75, 7.75], "texture": "#5"}, - "east": {"uv": [9.75, 7.5, 10, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.75, 9.75, 10, 10], "texture": "#5"}, - "west": {"uv": [8.75, 7.5, 9, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.75, 7.5, 10, 10], "texture": "#5"}, - "down": {"uv": [8.75, 10, 10, 7.5], "texture": "#5"} + "north": { + "uv": [ + 10, + 7.5, + 8.75, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 9.75, + 7.5, + 10, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 10, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.75, + 7.5, + 9, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.75, + 7.5, + 10, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.75, + 10, + 10, + 7.5 + ], + "texture": "#5" + } } }, { "name": "same_19", - "from": [13.5, 0, 7.5], - "to": [13.75, 0.25, 9.5], + "from": [ + 13.5, + 0, + 7.5 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 7.5, 13.5, 7.75], "texture": "#5"}, - "east": {"uv": [13.5, 7.5, 13.75, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.5, 9.25, 13.75, 9.5], "texture": "#5"}, - "west": {"uv": [13.5, 7.5, 13.75, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.5, 7.5, 13.75, 9.5], "texture": "#5"}, - "down": {"uv": [13.5, 9.5, 13.75, 7.5], "texture": "#5"} + "north": { + "uv": [ + 13.75, + 7.5, + 13.5, + 7.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.5, + 7.5, + 13.75, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.5, + 9.5, + 13.75, + 7.5 + ], + "texture": "#5" + } } }, { "name": "same_20", - "from": [1.5, 0, 7.75], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.5, + 0, + 7.75 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 7.75, 1.5, 8], "texture": "#5"}, - "east": {"uv": [2, 7.75, 2.25, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1.5, 9, 2.25, 9.25], "texture": "#5"}, - "west": {"uv": [1.5, 7.75, 1.75, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1.5, 7.75, 2.25, 9.25], "texture": "#5"}, - "down": {"uv": [1.5, 9.25, 2.25, 7.75], "texture": "#5"} + "north": { + "uv": [ + 2.25, + 7.75, + 1.5, + 8 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2, + 7.75, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1.5, + 9, + 2.25, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1.5, + 7.75, + 2.25, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2.25, + 7.75 + ], + "texture": "#5" + } } }, { "name": "same_21", - "from": [10, 0, 7.75], - "to": [11.5, 0.25, 9.5], + "from": [ + 10, + 0, + 7.75 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.5, 7.75, 10, 8], "texture": "#5"}, - "east": {"uv": [11.25, 7.75, 11.5, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10, 9.25, 11.5, 9.5], "texture": "#5"}, - "west": {"uv": [10, 7.75, 10.25, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10, 7.75, 11.5, 9.5], "texture": "#5"}, - "down": {"uv": [10, 9.5, 11.5, 7.75], "texture": "#5"} + "north": { + "uv": [ + 11.5, + 7.75, + 10, + 8 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 11.25, + 7.75, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10, + 9.25, + 11.5, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10, + 7.75, + 10.25, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10, + 7.75, + 11.5, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10, + 9.5, + 11.5, + 7.75 + ], + "texture": "#5" + } } }, { "name": "same_22", - "from": [13.25, 0, 7.75], - "to": [13.5, 0.25, 9.25], + "from": [ + 13.25, + 0, + 7.75 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 7.75, 13.25, 8], "texture": "#5"}, - "east": {"uv": [13.25, 7.75, 13.5, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [13.25, 9, 13.5, 9.25], "texture": "#5"}, - "west": {"uv": [13.25, 7.75, 13.5, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [13.25, 7.75, 13.5, 9.25], "texture": "#5"}, - "down": {"uv": [13.25, 9.25, 13.5, 7.75], "texture": "#5"} + "north": { + "uv": [ + 13.5, + 7.75, + 13.25, + 8 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 13.25, + 9, + 13.5, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 13.25, + 7.75, + 13.5, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 13.25, + 9.25, + 13.5, + 7.75 + ], + "texture": "#5" + } } }, { "name": "same_23", - "from": [1, 0, 8], - "to": [1.5, 0.25, 9.25], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 8, 1, 8.25], "texture": "#5"}, - "east": {"uv": [1.25, 8, 1.5, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1, 9, 1.5, 9.25], "texture": "#5"}, - "west": {"uv": [1, 8, 1.25, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1, 8, 1.5, 9.25], "texture": "#5"}, - "down": {"uv": [1, 9.25, 1.5, 8], "texture": "#5"} + "north": { + "uv": [ + 1.5, + 8, + 1, + 8.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 1.25, + 8, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1, + 8, + 1.5, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.5, + 8 + ], + "texture": "#5" + } } }, { "name": "same_24", - "from": [11.5, 0, 8], - "to": [12.5, 0.25, 9.5], + "from": [ + 11.5, + 0, + 8 + ], + "to": [ + 12.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.5, 8, 11.5, 8.25], "texture": "#5"}, - "east": {"uv": [12.25, 8, 12.5, 9.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [11.5, 9.25, 12.5, 9.5], "texture": "#5"}, - "west": {"uv": [11.5, 8, 11.75, 9.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [11.5, 8, 12.5, 9.5], "texture": "#5"}, - "down": {"uv": [11.5, 9.5, 12.5, 8], "texture": "#5"} + "north": { + "uv": [ + 12.5, + 8, + 11.5, + 8.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 12.25, + 8, + 12.5, + 9.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 11.5, + 9.25, + 12.5, + 9.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 11.5, + 8, + 11.75, + 9.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 11.5, + 8, + 12.5, + 9.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 12.5, + 8 + ], + "texture": "#5" + } } }, { "name": "same_25", - "from": [0.5, 0, 8.25], - "to": [1, 0.25, 9], + "from": [ + 0.5, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1, 8.25, 0.5, 8.5], "texture": "#5"}, - "east": {"uv": [0.75, 8.25, 1, 9], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.5, 8.75, 1, 9], "texture": "#5"}, - "west": {"uv": [0.5, 8.25, 0.75, 9], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.5, 8.25, 1, 9], "texture": "#5"}, - "down": {"uv": [0.5, 9, 1, 8.25], "texture": "#5"} + "north": { + "uv": [ + 1, + 8.25, + 0.5, + 8.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 9 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 1, + 9 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.5, + 8.25, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 1, + 9 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.5, + 9, + 1, + 8.25 + ], + "texture": "#5" + } } }, { "name": "same_26", - "from": [12.5, 0, 8.25], - "to": [13.25, 0.25, 9.25], + "from": [ + 12.5, + 0, + 8.25 + ], + "to": [ + 13.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.25, 8.25, 12.5, 8.5], "texture": "#5"}, - "east": {"uv": [13, 8.25, 13.25, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [12.5, 9, 13.25, 9.25], "texture": "#5"}, - "west": {"uv": [12.5, 8.25, 12.75, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [12.5, 8.25, 13.25, 9.25], "texture": "#5"}, - "down": {"uv": [12.5, 9.25, 13.25, 8.25], "texture": "#5"} + "north": { + "uv": [ + 13.25, + 8.25, + 12.5, + 8.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 13, + 8.25, + 13.25, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 12.5, + 9, + 13.25, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 12.5, + 8.25, + 12.75, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 12.5, + 8.25, + 13.25, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 12.5, + 9.25, + 13.25, + 8.25 + ], + "texture": "#5" + } } }, { "name": "same_27", - "from": [0.25, 0, 8.5], - "to": [0.5, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8.5 + ], + "to": [ + 0.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.5, 8.5, 0.25, 8.75], "texture": "#5"}, - "east": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#5"}, - "west": {"uv": [0.25, 8.5, 0.5, 8.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.25, 8.5, 0.5, 8.75], "texture": "#5"}, - "down": {"uv": [0.25, 8.75, 0.5, 8.5], "texture": "#5"} + "north": { + "uv": [ + 0.5, + 8.5, + 0.25, + 8.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.5, + 8.5 + ], + "texture": "#5" + } } }, { "name": "same_28", - "from": [0.75, 0, 9], - "to": [1, 0.25, 9.25], + "from": [ + 0.75, + 0, + 9 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 9, 0.75, 9.25], "texture": "#5"}, - "east": {"uv": [0.75, 9, 1, 9.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0.75, 9, 1, 9.25], "texture": "#5"}, - "west": {"uv": [0.75, 9, 1, 9.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [0.75, 9, 1, 9.25], "texture": "#5"}, - "down": {"uv": [0.75, 9.25, 1, 9], "texture": "#5"} + "north": { + "uv": [ + 1, + 9, + 0.75, + 9.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 0.75, + 9, + 1, + 9.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0.75, + 9.25, + 1, + 9 + ], + "texture": "#5" + } } }, { "name": "same_29", - "from": [14.5, 0, 9.25], - "to": [14.75, 0.25, 10.5], + "from": [ + 14.5, + 0, + 9.25 + ], + "to": [ + 14.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.75, 9.25, 14.5, 9.5], "texture": "#5"}, - "east": {"uv": [14.5, 9.25, 14.75, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.5, 10.25, 14.75, 10.5], "texture": "#5"}, - "west": {"uv": [14.5, 9.25, 14.75, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.5, 9.25, 14.75, 10.5], "texture": "#5"}, - "down": {"uv": [14.5, 10.5, 14.75, 9.25], "texture": "#5"} + "north": { + "uv": [ + 14.75, + 9.25, + 14.5, + 9.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.5, + 9.25, + 14.75, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.5, + 9.25, + 14.75, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.5, + 9.25, + 14.75, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.5, + 10.5, + 14.75, + 9.25 + ], + "texture": "#5" + } } }, { "name": "same_30", - "from": [1.75, 0, 9.5], - "to": [2.25, 0.25, 9.75], + "from": [ + 1.75, + 0, + 9.5 + ], + "to": [ + 2.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2.25, 9.5, 1.75, 9.75], "texture": "#5"}, - "east": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [1.75, 9.5, 2.25, 9.75], "texture": "#5"}, - "west": {"uv": [1.75, 9.5, 2, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [1.75, 9.5, 2.25, 9.75], "texture": "#5"}, - "down": {"uv": [1.75, 9.75, 2.25, 9.5], "texture": "#5"} + "north": { + "uv": [ + 2.25, + 9.5, + 1.75, + 9.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 1.75, + 9.5, + 2, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 1.75, + 9.5, + 2.25, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 1.75, + 9.75, + 2.25, + 9.5 + ], + "texture": "#5" + } } }, { "name": "same_31", - "from": [10, 0, 9.5], - "to": [11, 0.25, 10], + "from": [ + 10, + 0, + 9.5 + ], + "to": [ + 11, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11, 9.5, 10, 9.75], "texture": "#5"}, - "east": {"uv": [10.75, 9.5, 11, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [10, 9.75, 11, 10], "texture": "#5"}, - "west": {"uv": [10, 9.5, 10.25, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [10, 9.5, 11, 10], "texture": "#5"}, - "down": {"uv": [10, 10, 11, 9.5], "texture": "#5"} + "north": { + "uv": [ + 11, + 9.5, + 10, + 9.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 10.75, + 9.5, + 11, + 10 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 10, + 9.75, + 11, + 10 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 10, + 9.5, + 11, + 10 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 10, + 10, + 11, + 9.5 + ], + "texture": "#5" + } } }, { "name": "same_32", - "from": [11, 0, 9.5], - "to": [11.25, 0.25, 9.75], + "from": [ + 11, + 0, + 9.5 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.25, 9.5, 11, 9.75], "texture": "#5"}, - "east": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#5"}, - "west": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#5"}, - "down": {"uv": [11, 9.75, 11.25, 9.5], "texture": "#5"} + "north": { + "uv": [ + 11.25, + 9.5, + 11, + 9.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 11, + 9.75, + 11.25, + 9.5 + ], + "texture": "#5" + } } }, { "name": "same_33", - "from": [14.75, 0, 9.75], - "to": [15, 0.25, 10.5], + "from": [ + 14.75, + 0, + 9.75 + ], + "to": [ + 15, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15, 9.75, 14.75, 10], "texture": "#5"}, - "east": {"uv": [14.75, 9.75, 15, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [14.75, 10.25, 15, 10.5], "texture": "#5"}, - "west": {"uv": [14.75, 9.75, 15, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [14.75, 9.75, 15, 10.5], "texture": "#5"}, - "down": {"uv": [14.75, 10.5, 15, 9.75], "texture": "#5"} + "north": { + "uv": [ + 15, + 9.75, + 14.75, + 10 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 14.75, + 9.75, + 15, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 14.75, + 10.25, + 15, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 14.75, + 9.75, + 15, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 14.75, + 9.75, + 15, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 14.75, + 10.5, + 15, + 9.75 + ], + "texture": "#5" + } } }, { "name": "same_34", - "from": [3.5, 0, 10], - "to": [4.75, 0.25, 10.25], + "from": [ + 3.5, + 0, + 10 + ], + "to": [ + 4.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.75, 10, 3.5, 10.25], "texture": "#5"}, - "east": {"uv": [4.5, 10, 4.75, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [3.5, 10, 4.75, 10.25], "texture": "#5"}, - "west": {"uv": [3.5, 10, 3.75, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [3.5, 10, 4.75, 10.25], "texture": "#5"}, - "down": {"uv": [3.5, 10.25, 4.75, 10], "texture": "#5"} + "north": { + "uv": [ + 4.75, + 10, + 3.5, + 10.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 4.5, + 10, + 4.75, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 3.5, + 10, + 4.75, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 3.5, + 10, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 3.5, + 10, + 4.75, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 4.75, + 10 + ], + "texture": "#5" + } } }, { "name": "same_35", - "from": [8.75, 0, 10], - "to": [9, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9, 10, 8.75, 10.25], "texture": "#5"}, - "east": {"uv": [8.75, 10, 9, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8.75, 10, 9, 10.25], "texture": "#5"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [8.75, 10, 9, 10.25], "texture": "#5"}, - "down": {"uv": [8.75, 10.25, 9, 10], "texture": "#5"} + "north": { + "uv": [ + 9, + 10, + 8.75, + 10.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9, + 10 + ], + "texture": "#5" + } } }, { "name": "same_36", - "from": [15, 0, 10], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 10 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 10, 15, 10.25], "texture": "#5"}, - "east": {"uv": [15, 10, 15.25, 10.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#5"}, - "west": {"uv": [15, 10, 15.25, 10.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [15, 10, 15.25, 10.25], "texture": "#5"}, - "down": {"uv": [15, 10.25, 15.25, 10], "texture": "#5"} + "north": { + "uv": [ + 15.25, + 10, + 15, + 10.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 10 + ], + "texture": "#5" + } } }, { "name": "same_37", - "from": [5.25, 0, 10.25], - "to": [6.75, 0.25, 10.5], + "from": [ + 5.25, + 0, + 10.25 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 10.25, 5.25, 10.5], "texture": "#5"}, - "east": {"uv": [6.5, 10.25, 6.75, 10.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [5.25, 10.25, 6.75, 10.5], "texture": "#5"}, - "west": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [5.25, 10.25, 6.75, 10.5], "texture": "#5"}, - "down": {"uv": [5.25, 10.5, 6.75, 10.25], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 10.25, + 5.25, + 10.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 6.75, + 10.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 5.25, + 10.25, + 6.75, + 10.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 6.75, + 10.25 + ], + "texture": "#5" + } } }, { "name": "same_38", - "from": [5.5, 0, 10.5], - "to": [6.75, 0.25, 10.75], + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 6.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6.75, 10.5, 5.5, 10.75], "texture": "#5"}, - "east": {"uv": [6.5, 10.5, 6.75, 10.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [5.5, 10.5, 6.75, 10.75], "texture": "#5"}, - "west": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [5.5, 10.5, 6.75, 10.75], "texture": "#5"}, - "down": {"uv": [5.5, 10.75, 6.75, 10.5], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 10.5, + 6.75, + 10.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 6.75, + 10.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 6.75, + 10.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 6.75, + 10.5 + ], + "texture": "#5" + } } }, { "name": "same_39", - "from": [5.75, 0, 10.75], - "to": [6.75, 0.25, 11], + "from": [ + 5.75, + 0, + 10.75 + ], + "to": [ + 6.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6.75, 10.75, 5.75, 11], "texture": "#5"}, - "east": {"uv": [6.5, 10.75, 6.75, 11], "rotation": 90, "texture": "#5"}, - "south": {"uv": [5.75, 10.75, 6.75, 11], "texture": "#5"}, - "west": {"uv": [5.75, 10.75, 6, 11], "rotation": 270, "texture": "#5"}, - "up": {"uv": [5.75, 10.75, 6.75, 11], "texture": "#5"}, - "down": {"uv": [5.75, 11, 6.75, 10.75], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 10.75, + 5.75, + 11 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 10.75, + 6.75, + 11 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 5.75, + 10.75, + 6.75, + 11 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 5.75, + 10.75, + 6, + 11 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 5.75, + 10.75, + 6.75, + 11 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 5.75, + 11, + 6.75, + 10.75 + ], + "texture": "#5" + } } }, { "name": "same_40", - "from": [6, 0, 11], - "to": [6.75, 0.25, 11.25], + "from": [ + 6, + 0, + 11 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 11, 6, 11.25], "texture": "#5"}, - "east": {"uv": [6.5, 11, 6.75, 11.25], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6, 11, 6.75, 11.25], "texture": "#5"}, - "west": {"uv": [6, 11, 6.25, 11.25], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6, 11, 6.75, 11.25], "texture": "#5"}, - "down": {"uv": [6, 11.25, 6.75, 11], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 11, + 6, + 11.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 11, + 6.75, + 11.25 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6, + 11, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6, + 11, + 6.75, + 11.25 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6, + 11.25, + 6.75, + 11 + ], + "texture": "#5" + } } }, { "name": "same_41", - "from": [7, 0, 11], - "to": [7.25, 0.25, 11.5], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 7.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7.25, 11, 7, 11.25], "texture": "#5"}, - "east": {"uv": [7, 11, 7.25, 11.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [7, 11.25, 7.25, 11.5], "texture": "#5"}, - "west": {"uv": [7, 11, 7.25, 11.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7, 11, 7.25, 11.5], "texture": "#5"}, - "down": {"uv": [7, 11.5, 7.25, 11], "texture": "#5"} + "north": { + "uv": [ + 7.25, + 11, + 7, + 11.25 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 7, + 11, + 7.25, + 11.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 7, + 11.25, + 7.25, + 11.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 7, + 11, + 7.25, + 11.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 7, + 11, + 7.25, + 11.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 7, + 11.5, + 7.25, + 11 + ], + "texture": "#5" + } } }, { "name": "same_42", - "from": [6.25, 0, 11.25], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.25, + 0, + 11.25 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11.25, 6.25, 11.5], "texture": "#5"}, - "east": {"uv": [6.5, 11.25, 6.75, 11.5], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#5"}, - "west": {"uv": [6.25, 11.25, 6.5, 11.5], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#5"}, - "down": {"uv": [6.25, 11.5, 6.75, 11.25], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 11.25, + 6.25, + 11.5 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 11.25, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6.25, + 11.25, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.75, + 11.25 + ], + "texture": "#5" + } } }, { "name": "same_43", - "from": [6.5, 0, 11.5], - "to": [6.75, 0.25, 11.75], + "from": [ + 6.5, + 0, + 11.5 + ], + "to": [ + 6.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6.75, 11.5, 6.5, 11.75], "texture": "#5"}, - "east": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 90, "texture": "#5"}, - "south": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#5"}, - "west": {"uv": [6.5, 11.5, 6.75, 11.75], "rotation": 270, "texture": "#5"}, - "up": {"uv": [6.5, 11.5, 6.75, 11.75], "texture": "#5"}, - "down": {"uv": [6.5, 11.75, 6.75, 11.5], "texture": "#5"} + "north": { + "uv": [ + 6.75, + 11.5, + 6.5, + 11.75 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 90, + "texture": "#5" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "rotation": 270, + "texture": "#5" + }, + "up": { + "uv": [ + 6.5, + 11.5, + 6.75, + 11.75 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 6.5, + 11.75, + 6.75, + 11.5 + ], + "texture": "#5" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 14.25, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 14.25, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 22.5, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 22.5, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-0.75, 21.75, 31], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -0.75, + 21.75, + 31 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "same", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/siira.json b/pack/assets/minecraft/models/fish/siira.json index dfde3739..a8610e6a 100644 --- a/pack/assets/minecraft/models/fish/siira.json +++ b/pack/assets/minecraft/models/fish/siira.json @@ -2,761 +2,4048 @@ "__name": "シイラ", "credit": "Made with Blockbench", "textures": { - "6": "fish/siira", - "particle": "fish/raigyo" + "6": "item/fish/siira", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "siira_0", - "from": [4, 0, 4.75], - "to": [4.5, 0.25, 10.25], + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.5, 4.75, 4, 5], "texture": "#6"}, - "east": {"uv": [4.25, 4.75, 4.5, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4, 10, 4.5, 10.25], "texture": "#6"}, - "west": {"uv": [4, 4.75, 4.25, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4, 4.75, 4.5, 10.25], "texture": "#6"}, - "down": {"uv": [4, 10.25, 4.5, 4.75], "texture": "#6"} + "north": { + "uv": [ + 4.5, + 4.75, + 4, + 5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.25, + 4.75, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 10, + 4.5, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.5, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4, + 10.25, + 4.5, + 4.75 + ], + "texture": "#6" + } } }, { "name": "siira_1", - "from": [3.5, 0, 5], - "to": [4, 0.25, 10.25], + "from": [ + 3.5, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4, 5, 3.5, 5.25], "texture": "#6"}, - "east": {"uv": [3.75, 5, 4, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.5, 10, 4, 10.25], "texture": "#6"}, - "west": {"uv": [3.5, 5, 3.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.5, 5, 4, 10.25], "texture": "#6"}, - "down": {"uv": [3.5, 10.25, 4, 5], "texture": "#6"} + "north": { + "uv": [ + 4, + 5, + 3.5, + 5.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.5, + 10, + 4, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 5, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.5, + 5, + 4, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 4, + 5 + ], + "texture": "#6" + } } }, { "name": "siira_2", - "from": [4.5, 0, 5], - "to": [5, 0.25, 10.5], + "from": [ + 4.5, + 0, + 5 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 5, 4.5, 5.25], "texture": "#6"}, - "east": {"uv": [4.75, 5, 5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.5, 10.25, 5, 10.5], "texture": "#6"}, - "west": {"uv": [4.5, 5, 4.75, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.5, 5, 5, 10.5], "texture": "#6"}, - "down": {"uv": [4.5, 10.5, 5, 5], "texture": "#6"} + "north": { + "uv": [ + 5, + 5, + 4.5, + 5.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.75, + 5, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.5, + 10.25, + 5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 5, + 4.75, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.5, + 5, + 5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.5, + 10.5, + 5, + 5 + ], + "texture": "#6" + } } }, { "name": "siira_3", - "from": [3, 0, 5.25], - "to": [3.5, 0.25, 10.25], + "from": [ + 3, + 0, + 5.25 + ], + "to": [ + 3.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.5, 5.25, 3, 5.5], "texture": "#6"}, - "east": {"uv": [3.25, 5.25, 3.5, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3, 10, 3.5, 10.25], "texture": "#6"}, - "west": {"uv": [3, 5.25, 3.25, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3, 5.25, 3.5, 10.25], "texture": "#6"}, - "down": {"uv": [3, 10.25, 3.5, 5.25], "texture": "#6"} + "north": { + "uv": [ + 3.5, + 5.25, + 3, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 5.25, + 3.5, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 10, + 3.5, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.25, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3, + 5.25, + 3.5, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3, + 10.25, + 3.5, + 5.25 + ], + "texture": "#6" + } } }, { "name": "siira_4", - "from": [5, 0, 5.25], - "to": [5.75, 0.25, 10], + "from": [ + 5, + 0, + 5.25 + ], + "to": [ + 5.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5.75, 5.25, 5, 5.5], "texture": "#6"}, - "east": {"uv": [5.5, 5.25, 5.75, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5, 9.75, 5.75, 10], "texture": "#6"}, - "west": {"uv": [5, 5.25, 5.25, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5, 5.25, 5.75, 10], "texture": "#6"}, - "down": {"uv": [5, 10, 5.75, 5.25], "texture": "#6"} + "north": { + "uv": [ + 5.75, + 5.25, + 5, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 5.75, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.75, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5, + 5.25, + 5.25, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5, + 5.25, + 5.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5, + 10, + 5.75, + 5.25 + ], + "texture": "#6" + } } }, { "name": "siira_5", - "from": [15.25, 0, 5.25], - "to": [15.75, 0.25, 6], + "from": [ + 15.25, + 0, + 5.25 + ], + "to": [ + 15.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.75, 5.25, 15.25, 5.5], "texture": "#6"}, - "east": {"uv": [15.5, 5.25, 15.75, 6], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.25, 5.75, 15.75, 6], "texture": "#6"}, - "west": {"uv": [15.25, 5.25, 15.5, 6], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.25, 5.25, 15.75, 6], "texture": "#6"}, - "down": {"uv": [15.25, 6, 15.75, 5.25], "texture": "#6"} + "north": { + "uv": [ + 15.75, + 5.25, + 15.25, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.5, + 5.25, + 15.75, + 6 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.25, + 5.75, + 15.75, + 6 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.25, + 5.25, + 15.5, + 6 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.25, + 5.25, + 15.75, + 6 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.25, + 6, + 15.75, + 5.25 + ], + "texture": "#6" + } } }, { "name": "siira_6", - "from": [2.5, 0, 5.5], - "to": [3, 0.25, 10.25], + "from": [ + 2.5, + 0, + 5.5 + ], + "to": [ + 3, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3, 5.5, 2.5, 5.75], "texture": "#6"}, - "east": {"uv": [2.75, 5.5, 3, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.5, 10, 3, 10.25], "texture": "#6"}, - "west": {"uv": [2.5, 5.5, 2.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.5, 5.5, 3, 10.25], "texture": "#6"}, - "down": {"uv": [2.5, 10.25, 3, 5.5], "texture": "#6"} + "north": { + "uv": [ + 3, + 5.5, + 2.5, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.75, + 5.5, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.5, + 10, + 3, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.5, + 5.5, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.5, + 5.5, + 3, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 3, + 5.5 + ], + "texture": "#6" + } } }, { "name": "siira_7", - "from": [5.75, 0, 5.5], - "to": [6.5, 0.25, 9.75], + "from": [ + 5.75, + 0, + 5.5 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 5.5, 5.75, 5.75], "texture": "#6"}, - "east": {"uv": [6.25, 5.5, 6.5, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.75, 9.5, 6.5, 9.75], "texture": "#6"}, - "west": {"uv": [5.75, 5.5, 6, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.75, 5.5, 6.5, 9.75], "texture": "#6"}, - "down": {"uv": [5.75, 9.75, 6.5, 5.5], "texture": "#6"} + "north": { + "uv": [ + 6.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 5.5, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 9.5, + 6.5, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 5.5, + 6, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.75, + 5.5, + 6.5, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.75, + 9.75, + 6.5, + 5.5 + ], + "texture": "#6" + } } }, { "name": "siira_8", - "from": [15, 0, 5.5], - "to": [15.25, 0.25, 6.75], + "from": [ + 15, + 0, + 5.5 + ], + "to": [ + 15.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.25, 5.5, 15, 5.75], "texture": "#6"}, - "east": {"uv": [15, 5.5, 15.25, 6.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15, 6.5, 15.25, 6.75], "texture": "#6"}, - "west": {"uv": [15, 5.5, 15.25, 6.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15, 5.5, 15.25, 6.75], "texture": "#6"}, - "down": {"uv": [15, 6.75, 15.25, 5.5], "texture": "#6"} + "north": { + "uv": [ + 15.25, + 5.5, + 15, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15, + 5.5, + 15.25, + 6.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15, + 6.5, + 15.25, + 6.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15, + 5.5, + 15.25, + 6.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15, + 5.5, + 15.25, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15, + 6.75, + 15.25, + 5.5 + ], + "texture": "#6" + } } }, { "name": "siira_9", - "from": [15.75, 0, 5.5], - "to": [16, 0.25, 5.75], + "from": [ + 15.75, + 0, + 5.5 + ], + "to": [ + 16, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [16, 5.5, 15.75, 5.75], "texture": "#6"}, - "east": {"uv": [15.75, 5.5, 16, 5.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.75, 5.5, 16, 5.75], "texture": "#6"}, - "west": {"uv": [15.75, 5.5, 16, 5.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.75, 5.5, 16, 5.75], "texture": "#6"}, - "down": {"uv": [15.75, 5.75, 16, 5.5], "texture": "#6"} + "north": { + "uv": [ + 16, + 5.5, + 15.75, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.75, + 5.5, + 16, + 5.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.75, + 5.5, + 16, + 5.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.75, + 5.5, + 16, + 5.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.75, + 5.5, + 16, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.75, + 5.75, + 16, + 5.5 + ], + "texture": "#6" + } } }, { "name": "siira_10", - "from": [2.25, 0, 5.75], - "to": [2.5, 0.25, 10.25], + "from": [ + 2.25, + 0, + 5.75 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 5.75, 2.25, 6], "texture": "#6"}, - "east": {"uv": [2.25, 5.75, 2.5, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#6"}, - "west": {"uv": [2.25, 5.75, 2.5, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.25, 5.75, 2.5, 10.25], "texture": "#6"}, - "down": {"uv": [2.25, 10.25, 2.5, 5.75], "texture": "#6"} + "north": { + "uv": [ + 2.5, + 5.75, + 2.25, + 6 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.25, + 5.75, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 5.75, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.25, + 5.75, + 2.5, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 5.75 + ], + "texture": "#6" + } } }, { "name": "siira_11", - "from": [6.5, 0, 5.75], - "to": [7.25, 0.25, 9.75], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.25, 5.75, 6.5, 6], "texture": "#6"}, - "east": {"uv": [7, 5.75, 7.25, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.5, 9.5, 7.25, 9.75], "texture": "#6"}, - "west": {"uv": [6.5, 5.75, 6.75, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.5, 5.75, 7.25, 9.75], "texture": "#6"}, - "down": {"uv": [6.5, 9.75, 7.25, 5.75], "texture": "#6"} + "north": { + "uv": [ + 7.25, + 5.75, + 6.5, + 6 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 5.75, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 7.25, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 7.25, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 7.25, + 5.75 + ], + "texture": "#6" + } } }, { "name": "siira_12", - "from": [14.75, 0, 5.75], - "to": [15, 0.25, 7.25], + "from": [ + 14.75, + 0, + 5.75 + ], + "to": [ + 15, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15, 5.75, 14.75, 6], "texture": "#6"}, - "east": {"uv": [14.75, 5.75, 15, 7.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.75, 7, 15, 7.25], "texture": "#6"}, - "west": {"uv": [14.75, 5.75, 15, 7.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.75, 5.75, 15, 7.25], "texture": "#6"}, - "down": {"uv": [14.75, 7.25, 15, 5.75], "texture": "#6"} + "north": { + "uv": [ + 15, + 5.75, + 14.75, + 6 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.75, + 5.75, + 15, + 7.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.75, + 7, + 15, + 7.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.75, + 5.75, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.75, + 5.75, + 15, + 7.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15, + 5.75 + ], + "texture": "#6" + } } }, { "name": "siira_13", - "from": [2, 0, 6], - "to": [2.25, 0.25, 10.25], + "from": [ + 2, + 0, + 6 + ], + "to": [ + 2.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.25, 6, 2, 6.25], "texture": "#6"}, - "east": {"uv": [2, 6, 2.25, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2, 10, 2.25, 10.25], "texture": "#6"}, - "west": {"uv": [2, 6, 2.25, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2, 6, 2.25, 10.25], "texture": "#6"}, - "down": {"uv": [2, 10.25, 2.25, 6], "texture": "#6"} + "north": { + "uv": [ + 2.25, + 6, + 2, + 6.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2, + 6, + 2.25, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2, + 6, + 2.25, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2, + 6, + 2.25, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2, + 10.25, + 2.25, + 6 + ], + "texture": "#6" + } } }, { "name": "siira_14", - "from": [7.25, 0, 6], - "to": [7.75, 0.25, 9.75], + "from": [ + 7.25, + 0, + 6 + ], + "to": [ + 7.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.75, 6, 7.25, 6.25], "texture": "#6"}, - "east": {"uv": [7.5, 6, 7.75, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.25, 9.5, 7.75, 9.75], "texture": "#6"}, - "west": {"uv": [7.25, 6, 7.5, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.25, 6, 7.75, 9.75], "texture": "#6"}, - "down": {"uv": [7.25, 9.75, 7.75, 6], "texture": "#6"} + "north": { + "uv": [ + 7.75, + 6, + 7.25, + 6.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 6, + 7.75, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 7.75, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 6, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.25, + 6, + 7.75, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 7.75, + 6 + ], + "texture": "#6" + } } }, { "name": "siira_15", - "from": [14.5, 0, 6], - "to": [14.75, 0.25, 7.5], + "from": [ + 14.5, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.75, 6, 14.5, 6.25], "texture": "#6"}, - "east": {"uv": [14.5, 6, 14.75, 7.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.5, 7.25, 14.75, 7.5], "texture": "#6"}, - "west": {"uv": [14.5, 6, 14.75, 7.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.5, 6, 14.75, 7.5], "texture": "#6"}, - "down": {"uv": [14.5, 7.5, 14.75, 6], "texture": "#6"} + "north": { + "uv": [ + 14.75, + 6, + 14.5, + 6.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 7.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.5, + 7.25, + 14.75, + 7.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.5, + 6, + 14.75, + 7.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.5, + 6, + 14.75, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.5, + 7.5, + 14.75, + 6 + ], + "texture": "#6" + } } }, { "name": "siira_16", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 6.25], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#6"}, - "east": {"uv": [15.25, 6, 15.5, 6.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.25, 6, 15.5, 6.25], "texture": "#6"}, - "west": {"uv": [15.25, 6, 15.5, 6.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.25, 6, 15.5, 6.25], "texture": "#6"}, - "down": {"uv": [15.25, 6.25, 15.5, 6], "texture": "#6"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 6.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.25, + 6.25, + 15.5, + 6 + ], + "texture": "#6" + } } }, { "name": "siira_17", - "from": [1.75, 0, 6.25], - "to": [2, 0.25, 10.25], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2, 6.25, 1.75, 6.5], "texture": "#6"}, - "east": {"uv": [1.75, 6.25, 2, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1.75, 10, 2, 10.25], "texture": "#6"}, - "west": {"uv": [1.75, 6.25, 2, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1.75, 6.25, 2, 10.25], "texture": "#6"}, - "down": {"uv": [1.75, 10.25, 2, 6.25], "texture": "#6"} + "north": { + "uv": [ + 2, + 6.25, + 1.75, + 6.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.75, + 6.25, + 2, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1.75, + 10, + 2, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.75, + 10.25, + 2, + 6.25 + ], + "texture": "#6" + } } }, { "name": "siira_18", - "from": [7.75, 0, 6.25], - "to": [8.25, 0.25, 10], + "from": [ + 7.75, + 0, + 6.25 + ], + "to": [ + 8.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8.25, 6.25, 7.75, 6.5], "texture": "#6"}, - "east": {"uv": [8, 6.25, 8.25, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.75, 9.75, 8.25, 10], "texture": "#6"}, - "west": {"uv": [7.75, 6.25, 8, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.75, 6.25, 8.25, 10], "texture": "#6"}, - "down": {"uv": [7.75, 10, 8.25, 6.25], "texture": "#6"} + "north": { + "uv": [ + 8.25, + 6.25, + 7.75, + 6.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.25, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 9.75, + 8.25, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 6.25, + 8, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.75, + 6.25, + 8.25, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.75, + 10, + 8.25, + 6.25 + ], + "texture": "#6" + } } }, { "name": "siira_19", - "from": [14.25, 0, 6.25], - "to": [14.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 6.25, 14.25, 6.5], "texture": "#6"}, - "east": {"uv": [14.25, 6.25, 14.5, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#6"}, - "west": {"uv": [14.25, 6.25, 14.5, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.25, 6.25, 14.5, 9.25], "texture": "#6"}, - "down": {"uv": [14.25, 9.25, 14.5, 6.25], "texture": "#6"} + "north": { + "uv": [ + 14.5, + 6.25, + 14.25, + 6.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.25, + 6.25, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.5, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 6.25 + ], + "texture": "#6" + } } }, { "name": "siira_20", - "from": [1.25, 0, 6.5], - "to": [1.75, 0.25, 10], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 6.5, 1.25, 6.75], "texture": "#6"}, - "east": {"uv": [1.5, 6.5, 1.75, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1.25, 9.75, 1.75, 10], "texture": "#6"}, - "west": {"uv": [1.25, 6.5, 1.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1.25, 6.5, 1.75, 10], "texture": "#6"}, - "down": {"uv": [1.25, 10, 1.75, 6.5], "texture": "#6"} + "north": { + "uv": [ + 1.75, + 6.5, + 1.25, + 6.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1.25, + 9.75, + 1.75, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.25, + 10, + 1.75, + 6.5 + ], + "texture": "#6" + } } }, { "name": "siira_21", - "from": [8.25, 0, 6.5], - "to": [9, 0.25, 10], + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 9, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9, 6.5, 8.25, 6.75], "texture": "#6"}, - "east": {"uv": [8.75, 6.5, 9, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.25, 9.75, 9, 10], "texture": "#6"}, - "west": {"uv": [8.25, 6.5, 8.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.25, 6.5, 9, 10], "texture": "#6"}, - "down": {"uv": [8.25, 10, 9, 6.5], "texture": "#6"} + "north": { + "uv": [ + 9, + 6.5, + 8.25, + 6.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 6.5, + 9, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 9, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 9, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.25, + 10, + 9, + 6.5 + ], + "texture": "#6" + } } }, { "name": "siira_22", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 9], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#6"}, - "east": {"uv": [14, 6.5, 14.25, 9], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14, 8.75, 14.25, 9], "texture": "#6"}, - "west": {"uv": [14, 6.5, 14.25, 9], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14, 6.5, 14.25, 9], "texture": "#6"}, - "down": {"uv": [14, 9, 14.25, 6.5], "texture": "#6"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 9 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14, + 8.75, + 14.25, + 9 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14, + 9, + 14.25, + 6.5 + ], + "texture": "#6" + } } }, { "name": "siira_23", - "from": [1, 0, 6.75], - "to": [1.25, 0.25, 10], + "from": [ + 1, + 0, + 6.75 + ], + "to": [ + 1.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.25, 6.75, 1, 7], "texture": "#6"}, - "east": {"uv": [1, 6.75, 1.25, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1, 9.75, 1.25, 10], "texture": "#6"}, - "west": {"uv": [1, 6.75, 1.25, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1, 6.75, 1.25, 10], "texture": "#6"}, - "down": {"uv": [1, 10, 1.25, 6.75], "texture": "#6"} + "north": { + "uv": [ + 1.25, + 6.75, + 1, + 7 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1, + 6.75, + 1.25, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.25, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1, + 6.75, + 1.25, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1, + 6.75, + 1.25, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1, + 10, + 1.25, + 6.75 + ], + "texture": "#6" + } } }, { "name": "siira_24", - "from": [9, 0, 6.75], - "to": [9.75, 0.25, 9.5], + "from": [ + 9, + 0, + 6.75 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 6.75, 9, 7], "texture": "#6"}, - "east": {"uv": [9.5, 6.75, 9.75, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9, 9.25, 9.75, 9.5], "texture": "#6"}, - "west": {"uv": [9, 6.75, 9.25, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9, 6.75, 9.75, 9.5], "texture": "#6"}, - "down": {"uv": [9, 9.5, 9.75, 6.75], "texture": "#6"} + "north": { + "uv": [ + 9.75, + 6.75, + 9, + 7 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.5, + 6.75, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 9.25, + 9.75, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9, + 6.75, + 9.25, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9, + 6.75, + 9.75, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9, + 9.5, + 9.75, + 6.75 + ], + "texture": "#6" + } } }, { "name": "siira_25", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 8.75], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#6"}, - "east": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.75, 8.5, 14, 8.75], "texture": "#6"}, - "west": {"uv": [13.75, 6.75, 14, 8.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.75, 6.75, 14, 8.75], "texture": "#6"}, - "down": {"uv": [13.75, 8.75, 14, 6.75], "texture": "#6"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.75, + 8.5, + 14, + 8.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 8.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.75, + 8.75, + 14, + 6.75 + ], + "texture": "#6" + } } }, { "name": "siira_26", - "from": [0.75, 0, 7], - "to": [1, 0.25, 10], + "from": [ + 0.75, + 0, + 7 + ], + "to": [ + 1, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1, 7, 0.75, 7.25], "texture": "#6"}, - "east": {"uv": [0.75, 7, 1, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0.75, 9.75, 1, 10], "texture": "#6"}, - "west": {"uv": [0.75, 7, 1, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [0.75, 7, 1, 10], "texture": "#6"}, - "down": {"uv": [0.75, 10, 1, 7], "texture": "#6"} + "north": { + "uv": [ + 1, + 7, + 0.75, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.75, + 7, + 1, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 0.75, + 9.75, + 1, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.75, + 7, + 1, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 0.75, + 7, + 1, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.75, + 10, + 1, + 7 + ], + "texture": "#6" + } } }, { "name": "siira_27", - "from": [9.75, 0, 7], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.75, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 7, 9.75, 7.25], "texture": "#6"}, - "east": {"uv": [10.5, 7, 10.75, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.75, 9, 10.75, 9.25], "texture": "#6"}, - "west": {"uv": [9.75, 7, 10, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.75, 7, 10.75, 9.25], "texture": "#6"}, - "down": {"uv": [9.75, 9.25, 10.75, 7], "texture": "#6"} + "north": { + "uv": [ + 10.75, + 7, + 9.75, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.75, + 9, + 10.75, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.75, + 7, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.75, + 7, + 10.75, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10.75, + 7 + ], + "texture": "#6" + } } }, { "name": "siira_28", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 8.75], + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#6"}, - "east": {"uv": [13.5, 7, 13.75, 8.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.5, 8.5, 13.75, 8.75], "texture": "#6"}, - "west": {"uv": [13.5, 7, 13.75, 8.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.5, 7, 13.75, 8.75], "texture": "#6"}, - "down": {"uv": [13.5, 8.75, 13.75, 7], "texture": "#6"} + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 8.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 13.75, + 7 + ], + "texture": "#6" + } } }, { "name": "siira_29", - "from": [0.5, 0, 7.25], - "to": [0.75, 0.25, 9.75], + "from": [ + 0.5, + 0, + 7.25 + ], + "to": [ + 0.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.75, 7.25, 0.5, 7.5], "texture": "#6"}, - "east": {"uv": [0.5, 7.25, 0.75, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0.5, 9.5, 0.75, 9.75], "texture": "#6"}, - "west": {"uv": [0.5, 7.25, 0.75, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [0.5, 7.25, 0.75, 9.75], "texture": "#6"}, - "down": {"uv": [0.5, 9.75, 0.75, 7.25], "texture": "#6"} + "north": { + "uv": [ + 0.75, + 7.25, + 0.5, + 7.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.75, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 0.5, + 7.25, + 0.75, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.5, + 9.75, + 0.75, + 7.25 + ], + "texture": "#6" + } } }, { "name": "siira_30", - "from": [10.75, 0, 7.25], - "to": [12.25, 0.25, 8.75], + "from": [ + 10.75, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 7.25, 10.75, 7.5], "texture": "#6"}, - "east": {"uv": [12, 7.25, 12.25, 8.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.75, 8.5, 12.25, 8.75], "texture": "#6"}, - "west": {"uv": [10.75, 7.25, 11, 8.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.75, 7.25, 12.25, 8.75], "texture": "#6"}, - "down": {"uv": [10.75, 8.75, 12.25, 7.25], "texture": "#6"} + "north": { + "uv": [ + 12.25, + 7.25, + 10.75, + 7.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 12.25, + 8.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.75, + 7.25, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.75, + 7.25, + 12.25, + 8.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 12.25, + 7.25 + ], + "texture": "#6" + } } }, { "name": "siira_31", - "from": [12.25, 0, 7.25], - "to": [12.75, 0.25, 8.5], + "from": [ + 12.25, + 0, + 7.25 + ], + "to": [ + 12.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.75, 7.25, 12.25, 7.5], "texture": "#6"}, - "east": {"uv": [12.5, 7.25, 12.75, 8.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.25, 8.25, 12.75, 8.5], "texture": "#6"}, - "west": {"uv": [12.25, 7.25, 12.5, 8.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.25, 7.25, 12.75, 8.5], "texture": "#6"}, - "down": {"uv": [12.25, 8.5, 12.75, 7.25], "texture": "#6"} + "north": { + "uv": [ + 12.75, + 7.25, + 12.25, + 7.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.5, + 7.25, + 12.75, + 8.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 12.75, + 8.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.25, + 7.25, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.25, + 7.25, + 12.75, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 12.75, + 7.25 + ], + "texture": "#6" + } } }, { "name": "siira_32", - "from": [13.25, 0, 7.25], - "to": [13.5, 0.25, 8.5], + "from": [ + 13.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [13.5, 7.25, 13.25, 7.5], "texture": "#6"}, - "east": {"uv": [13.25, 7.25, 13.5, 8.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.25, 8.25, 13.5, 8.5], "texture": "#6"}, - "west": {"uv": [13.25, 7.25, 13.5, 8.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.25, 7.25, 13.5, 8.5], "texture": "#6"}, - "down": {"uv": [13.25, 8.5, 13.5, 7.25], "texture": "#6"} + "north": { + "uv": [ + 13.5, + 7.25, + 13.25, + 7.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.25, + 8.25, + 13.5, + 8.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.25, + 7.25, + 13.5, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.25, + 8.5, + 13.5, + 7.25 + ], + "texture": "#6" + } } }, { "name": "siira_33", - "from": [12.75, 0, 7.5], - "to": [13.25, 0.25, 8.25], + "from": [ + 12.75, + 0, + 7.5 + ], + "to": [ + 13.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.25, 7.5, 12.75, 7.75], "texture": "#6"}, - "east": {"uv": [13, 7.5, 13.25, 8.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 8, 13.25, 8.25], "texture": "#6"}, - "west": {"uv": [12.75, 7.5, 13, 8.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 7.5, 13.25, 8.25], "texture": "#6"}, - "down": {"uv": [12.75, 8.25, 13.25, 7.5], "texture": "#6"} + "north": { + "uv": [ + 13.25, + 7.5, + 12.75, + 7.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13, + 7.5, + 13.25, + 8.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 8, + 13.25, + 8.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 7.5, + 13, + 8.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 7.5, + 13.25, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 8.25, + 13.25, + 7.5 + ], + "texture": "#6" + } } }, { "name": "siira_34", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 9.75], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#6"}, - "east": {"uv": [0.25, 7.75, 0.5, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0.25, 9.5, 0.5, 9.75], "texture": "#6"}, - "west": {"uv": [0.25, 7.75, 0.5, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [0.25, 7.75, 0.5, 9.75], "texture": "#6"}, - "down": {"uv": [0.25, 9.75, 0.5, 7.75], "texture": "#6"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.25, + 9.75, + 0.5, + 7.75 + ], + "texture": "#6" + } } }, { "name": "siira_35", - "from": [14.5, 0, 8], - "to": [14.75, 0.25, 9.25], + "from": [ + 14.5, + 0, + 8 + ], + "to": [ + 14.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.75, 8, 14.5, 8.25], "texture": "#6"}, - "east": {"uv": [14.5, 8, 14.75, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.5, 9, 14.75, 9.25], "texture": "#6"}, - "west": {"uv": [14.5, 8, 14.75, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.5, 8, 14.75, 9.25], "texture": "#6"}, - "down": {"uv": [14.5, 9.25, 14.75, 8], "texture": "#6"} + "north": { + "uv": [ + 14.75, + 8, + 14.5, + 8.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.5, + 8, + 14.75, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.5, + 9, + 14.75, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.5, + 8, + 14.75, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.5, + 8, + 14.75, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.5, + 9.25, + 14.75, + 8 + ], + "texture": "#6" + } } }, { "name": "siira_36", - "from": [0, 0, 8.25], - "to": [0.25, 0.25, 9], + "from": [ + 0, + 0, + 8.25 + ], + "to": [ + 0.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.25, 8.25, 0, 8.5], "texture": "#6"}, - "east": {"uv": [0, 8.25, 0.25, 9], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 8.75, 0.25, 9], "texture": "#6"}, - "west": {"uv": [0, 8.25, 0.25, 9], "rotation": 270, "texture": "#6"}, - "up": {"uv": [0, 8.25, 0.25, 9], "texture": "#6"}, - "down": {"uv": [0, 9, 0.25, 8.25], "texture": "#6"} + "north": { + "uv": [ + 0.25, + 8.25, + 0, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 8.25, + 0.25, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 9, + 0.25, + 8.25 + ], + "texture": "#6" + } } }, { "name": "siira_37", - "from": [14.75, 0, 8.5], - "to": [15, 0.25, 9.5], + "from": [ + 14.75, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15, 8.5, 14.75, 8.75], "texture": "#6"}, - "east": {"uv": [14.75, 8.5, 15, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.75, 9.25, 15, 9.5], "texture": "#6"}, - "west": {"uv": [14.75, 8.5, 15, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.75, 8.5, 15, 9.5], "texture": "#6"}, - "down": {"uv": [14.75, 9.5, 15, 8.5], "texture": "#6"} + "north": { + "uv": [ + 15, + 8.5, + 14.75, + 8.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.75, + 9.25, + 15, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.75, + 8.5, + 15, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.75, + 9.5, + 15, + 8.5 + ], + "texture": "#6" + } } }, { "name": "siira_38", - "from": [10.75, 0, 8.75], - "to": [11.75, 0.25, 9], + "from": [ + 10.75, + 0, + 8.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 8.75, 10.75, 9], "texture": "#6"}, - "east": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.75, 8.75, 11.75, 9], "texture": "#6"}, - "west": {"uv": [10.75, 8.75, 11, 9], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.75, 8.75, 11.75, 9], "texture": "#6"}, - "down": {"uv": [10.75, 9, 11.75, 8.75], "texture": "#6"} + "north": { + "uv": [ + 11.75, + 8.75, + 10.75, + 9 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.75, + 8.75, + 11.75, + 9 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.75, + 8.75, + 11, + 9 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.75, + 8.75, + 11.75, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.75, + 9, + 11.75, + 8.75 + ], + "texture": "#6" + } } }, { "name": "siira_39", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 9.75], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#6"}, - "east": {"uv": [15, 8.75, 15.25, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15, 9.5, 15.25, 9.75], "texture": "#6"}, - "west": {"uv": [15, 8.75, 15.25, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15, 8.75, 15.25, 9.75], "texture": "#6"}, - "down": {"uv": [15, 9.75, 15.25, 8.75], "texture": "#6"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15, + 9.5, + 15.25, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15, + 9.75, + 15.25, + 8.75 + ], + "texture": "#6" + } } }, { "name": "siira_40", - "from": [10.75, 0, 9], - "to": [11, 0.25, 9.25], + "from": [ + 10.75, + 0, + 9 + ], + "to": [ + 11, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11, 9, 10.75, 9.25], "texture": "#6"}, - "east": {"uv": [10.75, 9, 11, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.75, 9, 11, 9.25], "texture": "#6"}, - "west": {"uv": [10.75, 9, 11, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.75, 9, 11, 9.25], "texture": "#6"}, - "down": {"uv": [10.75, 9.25, 11, 9], "texture": "#6"} + "north": { + "uv": [ + 11, + 9, + 10.75, + 9.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.75, + 9, + 11, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.75, + 9.25, + 11, + 9 + ], + "texture": "#6" + } } }, { "name": "siira_41", - "from": [15.25, 0, 9], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 9 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 9, 15.25, 9.25], "texture": "#6"}, - "east": {"uv": [15.25, 9, 15.5, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#6"}, - "west": {"uv": [15.25, 9, 15.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.25, 9, 15.5, 10], "texture": "#6"}, - "down": {"uv": [15.25, 10, 15.5, 9], "texture": "#6"} + "north": { + "uv": [ + 15.5, + 9, + 15.25, + 9.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.25, + 9, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.25, + 9, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.25, + 9, + 15.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 9 + ], + "texture": "#6" + } } }, { "name": "siira_42", - "from": [0, 0, 9.25], - "to": [0.25, 0.25, 9.5], + "from": [ + 0, + 0, + 9.25 + ], + "to": [ + 0.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.25, 9.25, 0, 9.5], "texture": "#6"}, - "east": {"uv": [0, 9.25, 0.25, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 9.25, 0.25, 9.5], "texture": "#6"}, - "west": {"uv": [0, 9.25, 0.25, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [0, 9.25, 0.25, 9.5], "texture": "#6"}, - "down": {"uv": [0, 9.5, 0.25, 9.25], "texture": "#6"} + "north": { + "uv": [ + 0.25, + 9.25, + 0, + 9.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 9.25, + 0.25, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 9.25, + 0.25, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 9.25, + 0.25, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 9.25, + 0.25, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 9.5, + 0.25, + 9.25 + ], + "texture": "#6" + } } }, { "name": "siira_43", - "from": [9.75, 0, 9.25], - "to": [10.25, 0.25, 9.5], + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.25, 9.25, 9.75, 9.5], "texture": "#6"}, - "east": {"uv": [10, 9.25, 10.25, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.75, 9.25, 10.25, 9.5], "texture": "#6"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.75, 9.25, 10.25, 9.5], "texture": "#6"}, - "down": {"uv": [9.75, 9.5, 10.25, 9.25], "texture": "#6"} + "north": { + "uv": [ + 10.25, + 9.25, + 9.75, + 9.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10, + 9.25, + 10.25, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.25, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10.25, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.25, + 9.25 + ], + "texture": "#6" + } } }, { "name": "siira_44", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#6"}, - "east": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#6"}, - "west": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.5, 9.25, 15.75, 10], "texture": "#6"}, - "down": {"uv": [15.5, 10, 15.75, 9.25], "texture": "#6"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 9.25 + ], + "texture": "#6" + } } }, { "name": "siira_45", - "from": [9, 0, 9.5], - "to": [9.5, 0.25, 9.75], + "from": [ + 9, + 0, + 9.5 + ], + "to": [ + 9.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.5, 9.5, 9, 9.75], "texture": "#6"}, - "east": {"uv": [9.25, 9.5, 9.5, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9, 9.5, 9.5, 9.75], "texture": "#6"}, - "west": {"uv": [9, 9.5, 9.25, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9, 9.5, 9.5, 9.75], "texture": "#6"}, - "down": {"uv": [9, 9.75, 9.5, 9.5], "texture": "#6"} + "north": { + "uv": [ + 9.5, + 9.5, + 9, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.25, + 9.5, + 9.5, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.5, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9, + 9.5, + 9.5, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.5, + 9.5 + ], + "texture": "#6" + } } }, { "name": "siira_46", - "from": [15.75, 0, 9.5], - "to": [16, 0.25, 9.75], + "from": [ + 15.75, + 0, + 9.5 + ], + "to": [ + 16, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [16, 9.5, 15.75, 9.75], "texture": "#6"}, - "east": {"uv": [15.75, 9.5, 16, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [15.75, 9.5, 16, 9.75], "texture": "#6"}, - "west": {"uv": [15.75, 9.5, 16, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [15.75, 9.5, 16, 9.75], "texture": "#6"}, - "down": {"uv": [15.75, 9.75, 16, 9.5], "texture": "#6"} + "north": { + "uv": [ + 16, + 9.5, + 15.75, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15.75, + 9.5, + 16, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 15.75, + 9.5, + 16, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 15.75, + 9.5, + 16, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 15.75, + 9.5, + 16, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 15.75, + 9.75, + 16, + 9.5 + ], + "texture": "#6" + } } }, { "name": "siira_47", - "from": [5.75, 0, 9.75], - "to": [6.25, 0.25, 10], + "from": [ + 5.75, + 0, + 9.75 + ], + "to": [ + 6.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [6.25, 9.75, 5.75, 10], "texture": "#6"}, - "east": {"uv": [6, 9.75, 6.25, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.75, 9.75, 6.25, 10], "texture": "#6"}, - "west": {"uv": [5.75, 9.75, 6, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.75, 9.75, 6.25, 10], "texture": "#6"}, - "down": {"uv": [5.75, 10, 6.25, 9.75], "texture": "#6"} + "north": { + "uv": [ + 6.25, + 9.75, + 5.75, + 10 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 9.75, + 6.25, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 9.75, + 6.25, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 9.75, + 6, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.75, + 9.75, + 6.25, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.75, + 10, + 6.25, + 9.75 + ], + "texture": "#6" + } } }, { "name": "siira_48", - "from": [8, 0, 10], - "to": [8.75, 0.25, 10.25], + "from": [ + 8, + 0, + 10 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 10, 8, 10.25], "texture": "#6"}, - "east": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8, 10, 8.75, 10.25], "texture": "#6"}, - "west": {"uv": [8, 10, 8.25, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8, 10, 8.75, 10.25], "texture": "#6"}, - "down": {"uv": [8, 10.25, 8.75, 10], "texture": "#6"} + "north": { + "uv": [ + 8.75, + 10, + 8, + 10.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 10, + 8.75, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8, + 10, + 8.75, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8, + 10.25, + 8.75, + 10 + ], + "texture": "#6" + } } }, { "name": "siira_49", - "from": [5, 0, 10.25], - "to": [5.75, 0.25, 10.5], + "from": [ + 5, + 0, + 10.25 + ], + "to": [ + 5.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.75, 10.25, 5, 10.5], "texture": "#6"}, - "east": {"uv": [5.5, 10.25, 5.75, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5, 10.25, 5.75, 10.5], "texture": "#6"}, - "west": {"uv": [5, 10.25, 5.25, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5, 10.25, 5.75, 10.5], "texture": "#6"}, - "down": {"uv": [5, 10.5, 5.75, 10.25], "texture": "#6"} + "north": { + "uv": [ + 5.75, + 10.25, + 5, + 10.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 10.25, + 5.75, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5, + 10.25, + 5.75, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.75, + 10.25 + ], + "texture": "#6" + } } }, { "name": "siira_50", - "from": [8.25, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 8.25, 10.5], "texture": "#6"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#6"}, - "west": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#6"}, - "down": {"uv": [8.25, 10.5, 8.5, 10.25], "texture": "#6"} + "north": { + "uv": [ + 8.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.25 + ], + "texture": "#6" + } } }, { "name": "siira_51", - "from": [4.75, 0, 10.5], - "to": [5, 0.25, 10.75], + "from": [ + 4.75, + 0, + 10.5 + ], + "to": [ + 5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5, 10.5, 4.75, 10.75], "texture": "#6"}, - "east": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#6"}, - "west": {"uv": [4.75, 10.5, 5, 10.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.75, 10.5, 5, 10.75], "texture": "#6"}, - "down": {"uv": [4.75, 10.75, 5, 10.5], "texture": "#6"} + "north": { + "uv": [ + 5, + 10.5, + 4.75, + 10.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.75, + 10.5, + 5, + 10.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.75, + 10.75, + 5, + 10.5 + ], + "texture": "#6" + } } }, { "name": "siira_52", - "from": [5.75, 0, 10.5], - "to": [6, 0.25, 10.75], + "from": [ + 5.75, + 0, + 10.5 + ], + "to": [ + 6, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6, 10.5, 5.75, 10.75], "texture": "#6"}, - "east": {"uv": [5.75, 10.5, 6, 10.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#6"}, - "west": {"uv": [5.75, 10.5, 6, 10.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.75, 10.5, 6, 10.75], "texture": "#6"}, - "down": {"uv": [5.75, 10.75, 6, 10.5], "texture": "#6"} + "north": { + "uv": [ + 6, + 10.5, + 5.75, + 10.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.75, + 10.5, + 6, + 10.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.75, + 10.75, + 6, + 10.5 + ], + "texture": "#6" + } } }, { "name": "siira_53", - "from": [5, 0, 10.75], - "to": [5.75, 0.25, 11], + "from": [ + 5, + 0, + 10.75 + ], + "to": [ + 5.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.75, 10.75, 5, 11], "texture": "#6"}, - "east": {"uv": [5.5, 10.75, 5.75, 11], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5, 10.75, 5.75, 11], "texture": "#6"}, - "west": {"uv": [5, 10.75, 5.25, 11], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5, 10.75, 5.75, 11], "texture": "#6"}, - "down": {"uv": [5, 11, 5.75, 10.75], "texture": "#6"} + "north": { + "uv": [ + 5.75, + 10.75, + 5, + 11 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 10.75, + 5.75, + 11 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.75, + 11 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5, + 10.75, + 5.75, + 11 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5, + 11, + 5.75, + 10.75 + ], + "texture": "#6" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 3, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 3, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 3, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 3, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 3, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 3, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 3, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 3, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 3, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 3, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 10, 9.5], - "scale": [1.00977, 1.00977, 1.00977] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 10, + 9.5 + ], + "scale": [ + 1.00977, + 1.00977, + 1.00977 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "siira", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/siirakansu.json b/pack/assets/minecraft/models/fish/siirakansu.json index 28536316..1542ee4d 100644 --- a/pack/assets/minecraft/models/fish/siirakansu.json +++ b/pack/assets/minecraft/models/fish/siirakansu.json @@ -2,824 +2,4398 @@ "__name": "シーラカンス", "credit": "Made with Blockbench", "textures": { - "1": "fish/siirakansu", - "particle": "fish/funa" + "1": "item/fish/siirakansu", + "particle": "item/fish/funa" }, "elements": [ { "name": "siirakansu_0", - "from": [6.5, 0, 4.5], - "to": [7.25, 0.25, 10.25], + "from": [ + 6.5, + 0, + 4.5 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.25, 4.5, 6.5, 4.75], "texture": "#1"}, - "east": {"uv": [7, 4.5, 7.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 10, 7.25, 10.25], "texture": "#1"}, - "west": {"uv": [6.5, 4.5, 6.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 4.5, 7.25, 10.25], "texture": "#1"}, - "down": {"uv": [6.5, 10.25, 7.25, 4.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 4.5, + 6.5, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 4.5, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 10, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 4.5, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 4.5, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 7.25, + 4.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_1", - "from": [6.25, 0, 4.75], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 4.75 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 4.75, 6.25, 5], "texture": "#1"}, - "east": {"uv": [6.25, 4.75, 6.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#1"}, - "west": {"uv": [6.25, 4.75, 6.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 4.75, 6.5, 10.25], "texture": "#1"}, - "down": {"uv": [6.25, 10.25, 6.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 4.75, + 6.25, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 4.75, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 4.75, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 4.75, + 6.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_2", - "from": [10.75, 0, 4.75], - "to": [11.5, 0.25, 6.25], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.5, 4.75, 10.75, 5], "texture": "#1"}, - "east": {"uv": [11.25, 4.75, 11.5, 6.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 6, 11.5, 6.25], "texture": "#1"}, - "west": {"uv": [10.75, 4.75, 11, 6.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 4.75, 11.5, 6.25], "texture": "#1"}, - "down": {"uv": [10.75, 6.25, 11.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 4.75, + 10.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 4.75, + 11.5, + 6.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 6, + 11.5, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 6.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11.5, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 6.25, + 11.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_3", - "from": [6, 0, 5], - "to": [6.25, 0.25, 10.25], + "from": [ + 6, + 0, + 5 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 5, 6, 5.25], "texture": "#1"}, - "east": {"uv": [6, 5, 6.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 10, 6.25, 10.25], "texture": "#1"}, - "west": {"uv": [6, 5, 6.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 5, 6.25, 10.25], "texture": "#1"}, - "down": {"uv": [6, 10.25, 6.25, 5], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 5, + 6, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5, + 6.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.25, + 5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_4", - "from": [7.25, 0, 5], - "to": [7.5, 0.25, 11], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.5, 5, 7.25, 5.25], "texture": "#1"}, - "east": {"uv": [7.25, 5, 7.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 10.75, 7.5, 11], "texture": "#1"}, - "west": {"uv": [7.25, 5, 7.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 5, 7.5, 11], "texture": "#1"}, - "down": {"uv": [7.25, 11, 7.5, 5], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 5, + 7.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 10.75, + 7.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 5, + 7.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 11, + 7.5, + 5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_5", - "from": [10.5, 0, 5], - "to": [10.75, 0.25, 6.5], + "from": [ + 10.5, + 0, + 5 + ], + "to": [ + 10.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [10.75, 5, 10.5, 5.25], "texture": "#1"}, - "east": {"uv": [10.5, 5, 10.75, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 6.25, 10.75, 6.5], "texture": "#1"}, - "west": {"uv": [10.5, 5, 10.75, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 5, 10.75, 6.5], "texture": "#1"}, - "down": {"uv": [10.5, 6.5, 10.75, 5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 5, + 10.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.75, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 6.25, + 10.75, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 5, + 10.75, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 5, + 10.75, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 6.5, + 10.75, + 5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_6", - "from": [11.5, 0, 5], - "to": [11.75, 0.25, 6], + "from": [ + 11.5, + 0, + 5 + ], + "to": [ + 11.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [11.75, 5, 11.5, 5.25], "texture": "#1"}, - "east": {"uv": [11.5, 5, 11.75, 6], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 5.75, 11.75, 6], "texture": "#1"}, - "west": {"uv": [11.5, 5, 11.75, 6], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 5, 11.75, 6], "texture": "#1"}, - "down": {"uv": [11.5, 6, 11.75, 5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 5, + 11.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 5, + 11.75, + 6 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 5, + 11.75, + 6 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 5, + 11.75, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 6, + 11.75, + 5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_7", - "from": [5.75, 0, 5.25], - "to": [6, 0.25, 11.5], + "from": [ + 5.75, + 0, + 5.25 + ], + "to": [ + 6, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6, 5.25, 5.75, 5.5], "texture": "#1"}, - "east": {"uv": [5.75, 5.25, 6, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 11.25, 6, 11.5], "texture": "#1"}, - "west": {"uv": [5.75, 5.25, 6, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 5.25, 6, 11.5], "texture": "#1"}, - "down": {"uv": [5.75, 11.5, 6, 5.25], "texture": "#1"} + "north": { + "uv": [ + 6, + 5.25, + 5.75, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 5.25, + 6, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 6, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 5.25, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 5.25, + 6, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 6, + 5.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_8", - "from": [10.25, 0, 5.25], - "to": [10.5, 0.25, 11], + "from": [ + 10.25, + 0, + 5.25 + ], + "to": [ + 10.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.5, 5.25, 10.25, 5.5], "texture": "#1"}, - "east": {"uv": [10.25, 5.25, 10.5, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 10.75, 10.5, 11], "texture": "#1"}, - "west": {"uv": [10.25, 5.25, 10.5, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 5.25, 10.5, 11], "texture": "#1"}, - "down": {"uv": [10.25, 11, 10.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 5.25, + 10.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 5.25, + 10.5, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 10.75, + 10.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 5.25, + 10.5, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 5.25, + 10.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 11, + 10.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_9", - "from": [5.5, 0, 5.5], - "to": [5.75, 0.25, 11.75], + "from": [ + 5.5, + 0, + 5.5 + ], + "to": [ + 5.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5.75, 5.5, 5.5, 5.75], "texture": "#1"}, - "east": {"uv": [5.5, 5.5, 5.75, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 11.5, 5.75, 11.75], "texture": "#1"}, - "west": {"uv": [5.5, 5.5, 5.75, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 5.5, 5.75, 11.75], "texture": "#1"}, - "down": {"uv": [5.5, 11.75, 5.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 5.5, + 5.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 5.5, + 5.75, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 11.5, + 5.75, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5.5, + 5.75, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 5.5, + 5.75, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 11.75, + 5.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_10", - "from": [10, 0, 5.5], - "to": [10.25, 0.25, 10.25], + "from": [ + 10, + 0, + 5.5 + ], + "to": [ + 10.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.25, 5.5, 10, 5.75], "texture": "#1"}, - "east": {"uv": [10, 5.5, 10.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 10, 10.25, 10.25], "texture": "#1"}, - "west": {"uv": [10, 5.5, 10.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 5.5, 10.25, 10.25], "texture": "#1"}, - "down": {"uv": [10, 10.25, 10.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 5.5, + 10, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 5.5, + 10.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 5.5, + 10.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 10.25, + 10.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_11", - "from": [13.5, 0, 5.75], - "to": [14.5, 0.25, 10.5], + "from": [ + 13.5, + 0, + 5.75 + ], + "to": [ + 14.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [14.5, 5.75, 13.5, 6], "texture": "#1"}, - "east": {"uv": [14.25, 5.75, 14.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 10.25, 14.5, 10.5], "texture": "#1"}, - "west": {"uv": [13.5, 5.75, 13.75, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 5.75, 14.5, 10.5], "texture": "#1"}, - "down": {"uv": [13.5, 10.5, 14.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 5.75, + 13.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 5.75, + 14.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 10.25, + 14.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 5.75, + 13.75, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 5.75, + 14.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 10.5, + 14.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_12", - "from": [5.25, 0, 6], - "to": [5.5, 0.25, 11.75], + "from": [ + 5.25, + 0, + 6 + ], + "to": [ + 5.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5.5, 6, 5.25, 6.25], "texture": "#1"}, - "east": {"uv": [5.25, 6, 5.5, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 11.5, 5.5, 11.75], "texture": "#1"}, - "west": {"uv": [5.25, 6, 5.5, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 6, 5.5, 11.75], "texture": "#1"}, - "down": {"uv": [5.25, 11.75, 5.5, 6], "texture": "#1"} + "north": { + "uv": [ + 5.5, + 6, + 5.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 6, + 5.5, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 11.5, + 5.5, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 6, + 5.5, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 6, + 5.5, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 11.75, + 5.5, + 6 + ], + "texture": "#1" + } } }, { "name": "siirakansu_13", - "from": [9.75, 0, 6], - "to": [10, 0.25, 10], + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 6, 9.75, 6.25], "texture": "#1"}, - "east": {"uv": [9.75, 6, 10, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9.75, 10, 10], "texture": "#1"}, - "west": {"uv": [9.75, 6, 10, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 6, 10, 10], "texture": "#1"}, - "down": {"uv": [9.75, 10, 10, 6], "texture": "#1"} + "north": { + "uv": [ + 10, + 6, + 9.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 6, + 10, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 10, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 6, + 10, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 10, + 10, + 6 + ], + "texture": "#1" + } } }, { "name": "siirakansu_14", - "from": [13.25, 0, 6], - "to": [13.5, 0.25, 10.5], + "from": [ + 13.25, + 0, + 6 + ], + "to": [ + 13.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [13.5, 6, 13.25, 6.25], "texture": "#1"}, - "east": {"uv": [13.25, 6, 13.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.25, 10.25, 13.5, 10.5], "texture": "#1"}, - "west": {"uv": [13.25, 6, 13.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.25, 6, 13.5, 10.5], "texture": "#1"}, - "down": {"uv": [13.25, 10.5, 13.5, 6], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 6, + 13.25, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 6, + 13.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.25, + 10.25, + 13.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.25, + 6, + 13.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 6, + 13.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 10.5, + 13.5, + 6 + ], + "texture": "#1" + } } }, { "name": "siirakansu_15", - "from": [14.5, 0, 6], - "to": [14.75, 0.25, 10.25], + "from": [ + 14.5, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.75, 6, 14.5, 6.25], "texture": "#1"}, - "east": {"uv": [14.5, 6, 14.75, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 10, 14.75, 10.25], "texture": "#1"}, - "west": {"uv": [14.5, 6, 14.75, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6, 14.75, 10.25], "texture": "#1"}, - "down": {"uv": [14.5, 10.25, 14.75, 6], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6, + 14.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6, + 14.75, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 14.75, + 6 + ], + "texture": "#1" + } } }, { "name": "siirakansu_16", - "from": [4.25, 0, 6.25], - "to": [5.25, 0.25, 11.5], + "from": [ + 4.25, + 0, + 6.25 + ], + "to": [ + 5.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.25, 6.25, 4.25, 6.5], "texture": "#1"}, - "east": {"uv": [5, 6.25, 5.25, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 11.25, 5.25, 11.5], "texture": "#1"}, - "west": {"uv": [4.25, 6.25, 4.5, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 6.25, 5.25, 11.5], "texture": "#1"}, - "down": {"uv": [4.25, 11.5, 5.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 6.25, + 4.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.25, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 11.25, + 5.25, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 6.25, + 4.5, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 6.25, + 5.25, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 11.5, + 5.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_17", - "from": [9.5, 0, 6.25], - "to": [9.75, 0.25, 10], + "from": [ + 9.5, + 0, + 6.25 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 6.25, 9.5, 6.5], "texture": "#1"}, - "east": {"uv": [9.5, 6.25, 9.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9.75, 9.75, 10], "texture": "#1"}, - "west": {"uv": [9.5, 6.25, 9.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 6.25, 9.75, 10], "texture": "#1"}, - "down": {"uv": [9.5, 10, 9.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 6.25, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.75, + 9.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 6.25, + 9.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 10, + 9.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_18", - "from": [10.75, 0, 6.25], - "to": [11.25, 0.25, 6.5], + "from": [ + 10.75, + 0, + 6.25 + ], + "to": [ + 11.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11.25, 6.25, 10.75, 6.5], "texture": "#1"}, - "east": {"uv": [11, 6.25, 11.25, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 6.25, 11.25, 6.5], "texture": "#1"}, - "west": {"uv": [10.75, 6.25, 11, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 6.25, 11.25, 6.5], "texture": "#1"}, - "down": {"uv": [10.75, 6.5, 11.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 6.25, + 10.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 6.25, + 11.25, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 6.25, + 11.25, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 6.5, + 11.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_19", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 10.25], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#1"}, - "east": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13, 10, 13.25, 10.25], "texture": "#1"}, - "west": {"uv": [13, 6.25, 13.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13, 6.25, 13.25, 10.25], "texture": "#1"}, - "down": {"uv": [13, 10.25, 13.25, 6.25], "texture": "#1"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 10, + 13.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13, + 10.25, + 13.25, + 6.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_20", - "from": [14.75, 0, 6.25], - "to": [15, 0.25, 10], + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15, 6.25, 14.75, 6.5], "texture": "#1"}, - "east": {"uv": [14.75, 6.25, 15, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9.75, 15, 10], "texture": "#1"}, - "west": {"uv": [14.75, 6.25, 15, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6.25, 15, 10], "texture": "#1"}, - "down": {"uv": [14.75, 10, 15, 6.25], "texture": "#1"} + "north": { + "uv": [ + 15, + 6.25, + 14.75, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6.25, + 15, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9.75, + 15, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 10, + 15, + 6.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_21", - "from": [3.25, 0, 6.5], - "to": [4.25, 0.25, 10], + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 4.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [4.25, 6.5, 3.25, 6.75], "texture": "#1"}, - "east": {"uv": [4, 6.5, 4.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 9.75, 4.25, 10], "texture": "#1"}, - "west": {"uv": [3.25, 6.5, 3.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.25, 6.5, 4.25, 10], "texture": "#1"}, - "down": {"uv": [3.25, 10, 4.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 6.5, + 3.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 6.5, + 4.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 9.75, + 4.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 4.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 10, + 4.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_22", - "from": [7.5, 0, 6.5], - "to": [9.5, 0.25, 10], + "from": [ + 7.5, + 0, + 6.5 + ], + "to": [ + 9.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.5, 6.5, 7.5, 6.75], "texture": "#1"}, - "east": {"uv": [9.25, 6.5, 9.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 9.75, 9.5, 10], "texture": "#1"}, - "west": {"uv": [7.5, 6.5, 7.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 6.5, 9.5, 10], "texture": "#1"}, - "down": {"uv": [7.5, 10, 9.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 6.5, + 7.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 6.5, + 9.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 9.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 6.5, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 6.5, + 9.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 10, + 9.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_23", - "from": [12.5, 0, 6.5], - "to": [13, 0.25, 9.75], + "from": [ + 12.5, + 0, + 6.5 + ], + "to": [ + 13, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13, 6.5, 12.5, 6.75], "texture": "#1"}, - "east": {"uv": [12.75, 6.5, 13, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.5, 9.5, 13, 9.75], "texture": "#1"}, - "west": {"uv": [12.5, 6.5, 12.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.5, 6.5, 13, 9.75], "texture": "#1"}, - "down": {"uv": [12.5, 9.75, 13, 6.5], "texture": "#1"} + "north": { + "uv": [ + 13, + 6.5, + 12.5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 6.5, + 13, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 9.5, + 13, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 6.5, + 12.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 13, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 9.75, + 13, + 6.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_24", - "from": [2, 0, 6.75], - "to": [3.25, 0.25, 10], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 3.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.25, 6.75, 2, 7], "texture": "#1"}, - "east": {"uv": [3, 6.75, 3.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2, 9.75, 3.25, 10], "texture": "#1"}, - "west": {"uv": [2, 6.75, 2.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2, 6.75, 3.25, 10], "texture": "#1"}, - "down": {"uv": [2, 10, 3.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 3.25, + 6.75, + 2, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 6.75, + 3.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9.75, + 3.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 6.75, + 3.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 10, + 3.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_25", - "from": [10.5, 0, 6.75], - "to": [12.5, 0.25, 9.75], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 12.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.5, 6.75, 10.5, 7], "texture": "#1"}, - "east": {"uv": [12.25, 6.75, 12.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 9.5, 12.5, 9.75], "texture": "#1"}, - "west": {"uv": [10.5, 6.75, 10.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 6.75, 12.5, 9.75], "texture": "#1"}, - "down": {"uv": [10.5, 9.75, 12.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 6.75, + 10.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 6.75, + 12.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 9.5, + 12.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 12.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9.75, + 12.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_26", - "from": [15, 0, 6.75], - "to": [15.25, 0.25, 9.5], + "from": [ + 15, + 0, + 6.75 + ], + "to": [ + 15.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.25, 6.75, 15, 7], "texture": "#1"}, - "east": {"uv": [15, 6.75, 15.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 9.25, 15.25, 9.5], "texture": "#1"}, - "west": {"uv": [15, 6.75, 15.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 6.75, 15.25, 9.5], "texture": "#1"}, - "down": {"uv": [15, 9.5, 15.25, 6.75], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.75, + 15, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.75, + 15.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 6.75, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 6.75, + 15.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.25, + 6.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_27", - "from": [1.5, 0, 7], - "to": [2, 0.25, 9.75], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [2, 7, 1.5, 7.25], "texture": "#1"}, - "east": {"uv": [1.75, 7, 2, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 9.5, 2, 9.75], "texture": "#1"}, - "west": {"uv": [1.5, 7, 1.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7, 2, 9.75], "texture": "#1"}, - "down": {"uv": [1.5, 9.75, 2, 7], "texture": "#1"} + "north": { + "uv": [ + 2, + 7, + 1.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 2, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7, + 2, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 2, + 7 + ], + "texture": "#1" + } } }, { "name": "siirakansu_28", - "from": [1, 0, 7.25], - "to": [1.5, 0.25, 9.5], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1, 7.5], "texture": "#1"}, - "east": {"uv": [1.25, 7.25, 1.5, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 9.25, 1.5, 9.5], "texture": "#1"}, - "west": {"uv": [1, 7.25, 1.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 7.25, 1.5, 9.5], "texture": "#1"}, - "down": {"uv": [1, 9.5, 1.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.25, + 1, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 9.25, + 1.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 9.5, + 1.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_29", - "from": [15.25, 0, 7.25], - "to": [15.5, 0.25, 9.25], + "from": [ + 15.25, + 0, + 7.25 + ], + "to": [ + 15.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.5, 7.25, 15.25, 7.5], "texture": "#1"}, - "east": {"uv": [15.25, 7.25, 15.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9, 15.5, 9.25], "texture": "#1"}, - "west": {"uv": [15.25, 7.25, 15.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 7.25, 15.5, 9.25], "texture": "#1"}, - "down": {"uv": [15.25, 9.25, 15.5, 7.25], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 7.25, + 15.25, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 7.25, + 15.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9, + 15.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 7.25, + 15.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 7.25, + 15.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 9.25, + 15.5, + 7.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_30", - "from": [0.5, 0, 7.5], - "to": [1, 0.25, 9.25], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1, 7.5, 0.5, 7.75], "texture": "#1"}, - "east": {"uv": [0.75, 7.5, 1, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.5, 9, 1, 9.25], "texture": "#1"}, - "west": {"uv": [0.5, 7.5, 0.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.5, 7.5, 1, 9.25], "texture": "#1"}, - "down": {"uv": [0.5, 9.25, 1, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1, + 7.5, + 0.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 9, + 1, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 1, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 9.25, + 1, + 7.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_31", - "from": [15.5, 0, 7.5], - "to": [15.75, 0.25, 9], + "from": [ + 15.5, + 0, + 7.5 + ], + "to": [ + 15.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.75, 7.5, 15.5, 7.75], "texture": "#1"}, - "east": {"uv": [15.5, 7.5, 15.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 8.75, 15.75, 9], "texture": "#1"}, - "west": {"uv": [15.5, 7.5, 15.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 7.5, 15.75, 9], "texture": "#1"}, - "down": {"uv": [15.5, 9, 15.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 7.5, + 15.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 7.5, + 15.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 7.5, + 15.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 7.5, + 15.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 9, + 15.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_32", - "from": [0, 0, 7.75], - "to": [0.5, 0.25, 8.25], + "from": [ + 0, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0, 8], "texture": "#1"}, - "east": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 8, 0.5, 8.25], "texture": "#1"}, - "west": {"uv": [0, 7.75, 0.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 7.75, 0.5, 8.25], "texture": "#1"}, - "down": {"uv": [0, 8.25, 0.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 7.75, + 0, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 8, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7.75, + 0.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 7.75, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 8.25, + 0.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_33", - "from": [15.75, 0, 7.75], - "to": [16, 0.25, 8.75], + "from": [ + 15.75, + 0, + 7.75 + ], + "to": [ + 16, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [16, 7.75, 15.75, 8], "texture": "#1"}, - "east": {"uv": [15.75, 7.75, 16, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.75, 8.5, 16, 8.75], "texture": "#1"}, - "west": {"uv": [15.75, 7.75, 16, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.75, 7.75, 16, 8.75], "texture": "#1"}, - "down": {"uv": [15.75, 8.75, 16, 7.75], "texture": "#1"} + "north": { + "uv": [ + 16, + 7.75, + 15.75, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.75, + 7.75, + 16, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.75, + 8.5, + 16, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.75, + 7.75, + 16, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.75, + 7.75, + 16, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.75, + 8.75, + 16, + 7.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_34", - "from": [0, 0, 8.75], - "to": [0.5, 0.25, 9], + "from": [ + 0, + 0, + 8.75 + ], + "to": [ + 0.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.5, 8.75, 0, 9], "texture": "#1"}, - "east": {"uv": [0.25, 8.75, 0.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 8.75, 0.5, 9], "texture": "#1"}, - "west": {"uv": [0, 8.75, 0.25, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 8.75, 0.5, 9], "texture": "#1"}, - "down": {"uv": [0, 9, 0.5, 8.75], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 8.75, + 0, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.75, + 0.25, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 8.75, + 0.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 9, + 0.5, + 8.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_35", - "from": [0.25, 0, 9], - "to": [0.5, 0.25, 9.25], + "from": [ + 0.25, + 0, + 9 + ], + "to": [ + 0.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.5, 9, 0.25, 9.25], "texture": "#1"}, - "east": {"uv": [0.25, 9, 0.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#1"}, - "west": {"uv": [0.25, 9, 0.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#1"}, - "down": {"uv": [0.25, 9.25, 0.5, 9], "texture": "#1"} + "north": { + "uv": [ + 0.5, + 9, + 0.25, + 9.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.25, + 9.25, + 0.5, + 9 + ], + "texture": "#1" + } } }, { "name": "siirakansu_36", - "from": [0.75, 0, 9.25], - "to": [1, 0.25, 9.5], + "from": [ + 0.75, + 0, + 9.25 + ], + "to": [ + 1, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1, 9.25, 0.75, 9.5], "texture": "#1"}, - "east": {"uv": [0.75, 9.25, 1, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#1"}, - "west": {"uv": [0.75, 9.25, 1, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#1"}, - "down": {"uv": [0.75, 9.5, 1, 9.25], "texture": "#1"} + "north": { + "uv": [ + 1, + 9.25, + 0.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.75, + 9.5, + 1, + 9.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_37", - "from": [1.25, 0, 9.5], - "to": [1.5, 0.25, 9.75], + "from": [ + 1.25, + 0, + 9.5 + ], + "to": [ + 1.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.5, 9.5, 1.25, 9.75], "texture": "#1"}, - "east": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "west": {"uv": [1.25, 9.5, 1.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 9.5, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [1.25, 9.75, 1.5, 9.5], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 9.5, + 1.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9.75, + 1.5, + 9.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_38", - "from": [1.75, 0, 9.75], - "to": [2, 0.25, 10], + "from": [ + 1.75, + 0, + 9.75 + ], + "to": [ + 2, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2, 9.75, 1.75, 10], "texture": "#1"}, - "east": {"uv": [1.75, 9.75, 2, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9.75, 2, 10], "texture": "#1"}, - "west": {"uv": [1.75, 9.75, 2, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 9.75, 2, 10], "texture": "#1"}, - "down": {"uv": [1.75, 10, 2, 9.75], "texture": "#1"} + "north": { + "uv": [ + 2, + 9.75, + 1.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 9.75, + 2, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 10, + 2, + 9.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_39", - "from": [10.5, 0, 9.75], - "to": [10.75, 0.25, 11.5], + "from": [ + 10.5, + 0, + 9.75 + ], + "to": [ + 10.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.75, 9.75, 10.5, 10], "texture": "#1"}, - "east": {"uv": [10.5, 9.75, 10.75, 11.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 11.25, 10.75, 11.5], "texture": "#1"}, - "west": {"uv": [10.5, 9.75, 10.75, 11.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 9.75, 10.75, 11.5], "texture": "#1"}, - "down": {"uv": [10.5, 11.5, 10.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.75, + 10.75, + 11.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 11.25, + 10.75, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 9.75, + 10.75, + 11.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 9.75, + 10.75, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 11.5, + 10.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_40", - "from": [12.75, 0, 9.75], - "to": [13, 0.25, 10], + "from": [ + 12.75, + 0, + 9.75 + ], + "to": [ + 13, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13, 9.75, 12.75, 10], "texture": "#1"}, - "east": {"uv": [12.75, 9.75, 13, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.75, 9.75, 13, 10], "texture": "#1"}, - "west": {"uv": [12.75, 9.75, 13, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.75, 9.75, 13, 10], "texture": "#1"}, - "down": {"uv": [12.75, 10, 13, 9.75], "texture": "#1"} + "north": { + "uv": [ + 13, + 9.75, + 12.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.75, + 9.75, + 13, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.75, + 9.75, + 13, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.75, + 9.75, + 13, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.75, + 9.75, + 13, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.75, + 10, + 13, + 9.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_41", - "from": [3.75, 0, 10], - "to": [4.25, 0.25, 11], + "from": [ + 3.75, + 0, + 10 + ], + "to": [ + 4.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.25, 10, 3.75, 10.25], "texture": "#1"}, - "east": {"uv": [4, 10, 4.25, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 10.75, 4.25, 11], "texture": "#1"}, - "west": {"uv": [3.75, 10, 4, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 10, 4.25, 11], "texture": "#1"}, - "down": {"uv": [3.75, 11, 4.25, 10], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 10, + 3.75, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 10, + 4.25, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 10.75, + 4.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 10, + 4, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 10, + 4.25, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 11, + 4.25, + 10 + ], + "texture": "#1" + } } }, { "name": "siirakansu_42", - "from": [7.5, 0, 10], - "to": [8.75, 0.25, 11.25], + "from": [ + 7.5, + 0, + 10 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 10, 7.5, 10.25], "texture": "#1"}, - "east": {"uv": [8.5, 10, 8.75, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 11, 8.75, 11.25], "texture": "#1"}, - "west": {"uv": [7.5, 10, 7.75, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 10, 8.75, 11.25], "texture": "#1"}, - "down": {"uv": [7.5, 11.25, 8.75, 10], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 10, + 7.5, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 10, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 11, + 8.75, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 10, + 8.75, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 11.25, + 8.75, + 10 + ], + "texture": "#1" + } } }, { "name": "siirakansu_43", - "from": [10.75, 0, 10], - "to": [11.5, 0.25, 11.75], + "from": [ + 10.75, + 0, + 10 + ], + "to": [ + 11.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [11.5, 10, 10.75, 10.25], "texture": "#1"}, - "east": {"uv": [11.25, 10, 11.5, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 11.5, 11.5, 11.75], "texture": "#1"}, - "west": {"uv": [10.75, 10, 11, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 10, 11.5, 11.75], "texture": "#1"}, - "down": {"uv": [10.75, 11.75, 11.5, 10], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 10, + 10.75, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 10, + 11.5, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 11.5, + 11.5, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 10, + 11, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 10, + 11.5, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 11.75, + 11.5, + 10 + ], + "texture": "#1" + } } }, { "name": "siirakansu_44", - "from": [7, 0, 10.25], - "to": [7.25, 0.25, 10.5], + "from": [ + 7, + 0, + 10.25 + ], + "to": [ + 7.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.25, 10.25, 7, 10.5], "texture": "#1"}, - "east": {"uv": [7, 10.25, 7.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 10.25, 7.25, 10.5], "texture": "#1"}, - "west": {"uv": [7, 10.25, 7.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 10.25, 7.25, 10.5], "texture": "#1"}, - "down": {"uv": [7, 10.5, 7.25, 10.25], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 10.25, + 7, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10.25, + 7.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10.5, + 7.25, + 10.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_45", - "from": [8.75, 0, 10.25], - "to": [9, 0.25, 12], + "from": [ + 8.75, + 0, + 10.25 + ], + "to": [ + 9, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9, 10.25, 8.75, 10.5], "texture": "#1"}, - "east": {"uv": [8.75, 10.25, 9, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 11.75, 9, 12], "texture": "#1"}, - "west": {"uv": [8.75, 10.25, 9, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 10.25, 9, 12], "texture": "#1"}, - "down": {"uv": [8.75, 12, 9, 10.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 10.25, + 8.75, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 10.25, + 9, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 11.75, + 9, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 10.25, + 9, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 10.25, + 9, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 12, + 9, + 10.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_46", - "from": [11.5, 0, 10.25], - "to": [11.75, 0.25, 12.25], + "from": [ + 11.5, + 0, + 10.25 + ], + "to": [ + 11.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.75, 10.25, 11.5, 10.5], "texture": "#1"}, - "east": {"uv": [11.5, 10.25, 11.75, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 12, 11.75, 12.25], "texture": "#1"}, - "west": {"uv": [11.5, 10.25, 11.75, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 10.25, 11.75, 12.25], "texture": "#1"}, - "down": {"uv": [11.5, 12.25, 11.75, 10.25], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 10.25, + 11.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 10.25, + 11.75, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 12, + 11.75, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 10.25, + 11.75, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 10.25, + 11.75, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 12.25, + 11.75, + 10.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_47", - "from": [9, 0, 10.5], - "to": [9.25, 0.25, 12], + "from": [ + 9, + 0, + 10.5 + ], + "to": [ + 9.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.25, 10.5, 9, 10.75], "texture": "#1"}, - "east": {"uv": [9, 10.5, 9.25, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 11.75, 9.25, 12], "texture": "#1"}, - "west": {"uv": [9, 10.5, 9.25, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 10.5, 9.25, 12], "texture": "#1"}, - "down": {"uv": [9, 12, 9.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 10.5, + 9, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.25, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 11.75, + 9.25, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 10.5, + 9.25, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 12, + 9.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_48", - "from": [11.75, 0, 10.5], - "to": [12, 0.25, 12.25], + "from": [ + 11.75, + 0, + 10.5 + ], + "to": [ + 12, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12, 10.5, 11.75, 10.75], "texture": "#1"}, - "east": {"uv": [11.75, 10.5, 12, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 12, 12, 12.25], "texture": "#1"}, - "west": {"uv": [11.75, 10.5, 12, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 10.5, 12, 12.25], "texture": "#1"}, - "down": {"uv": [11.75, 12.25, 12, 10.5], "texture": "#1"} + "north": { + "uv": [ + 12, + 10.5, + 11.75, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 10.5, + 12, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 12, + 12, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 10.5, + 12, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 10.5, + 12, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 12.25, + 12, + 10.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_49", - "from": [13.5, 0, 10.5], - "to": [14.25, 0.25, 10.75], + "from": [ + 13.5, + 0, + 10.5 + ], + "to": [ + 14.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14.25, 10.5, 13.5, 10.75], "texture": "#1"}, - "east": {"uv": [14, 10.5, 14.25, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 10.5, 14.25, 10.75], "texture": "#1"}, - "west": {"uv": [13.5, 10.5, 13.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 10.5, 14.25, 10.75], "texture": "#1"}, - "down": {"uv": [13.5, 10.75, 14.25, 10.5], "texture": "#1"} + "north": { + "uv": [ + 14.25, + 10.5, + 13.5, + 10.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14, + 10.5, + 14.25, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 10.5, + 14.25, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 10.5, + 13.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 10.5, + 14.25, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 10.75, + 14.25, + 10.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_50", - "from": [9.25, 0, 10.75], - "to": [9.5, 0.25, 11.75], + "from": [ + 9.25, + 0, + 10.75 + ], + "to": [ + 9.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [9.5, 10.75, 9.25, 11], "texture": "#1"}, - "east": {"uv": [9.25, 10.75, 9.5, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 11.5, 9.5, 11.75], "texture": "#1"}, - "west": {"uv": [9.25, 10.75, 9.5, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 10.75, 9.5, 11.75], "texture": "#1"}, - "down": {"uv": [9.25, 11.75, 9.5, 10.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 10.75, + 9.25, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 11.5, + 9.5, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 10.75, + 9.5, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 11.75, + 9.5, + 10.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_51", - "from": [12, 0, 10.75], - "to": [12.25, 0.25, 12.25], + "from": [ + 12, + 0, + 10.75 + ], + "to": [ + 12.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12.25, 10.75, 12, 11], "texture": "#1"}, - "east": {"uv": [12, 10.75, 12.25, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 12, 12.25, 12.25], "texture": "#1"}, - "west": {"uv": [12, 10.75, 12.25, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 10.75, 12.25, 12.25], "texture": "#1"}, - "down": {"uv": [12, 12.25, 12.25, 10.75], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 10.75, + 12, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 10.75, + 12.25, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 12, + 12.25, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 10.75, + 12.25, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 10.75, + 12.25, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 12.25, + 12.25, + 10.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_52", - "from": [4, 0, 11], - "to": [4.25, 0.25, 11.25], + "from": [ + 4, + 0, + 11 + ], + "to": [ + 4.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.25, 11, 4, 11.25], "texture": "#1"}, - "east": {"uv": [4, 11, 4.25, 11.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 11, 4.25, 11.25], "texture": "#1"}, - "west": {"uv": [4, 11, 4.25, 11.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 11, 4.25, 11.25], "texture": "#1"}, - "down": {"uv": [4, 11.25, 4.25, 11], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 11, + 4, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 11, + 4.25, + 11.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 11, + 4.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 11, + 4.25, + 11.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 11, + 4.25, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 11.25, + 4.25, + 11 + ], + "texture": "#1" + } } }, { "name": "siirakansu_53", - "from": [12.25, 0, 11], - "to": [12.5, 0.25, 12], + "from": [ + 12.25, + 0, + 11 + ], + "to": [ + 12.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [12.5, 11, 12.25, 11.25], "texture": "#1"}, - "east": {"uv": [12.25, 11, 12.5, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 11.75, 12.5, 12], "texture": "#1"}, - "west": {"uv": [12.25, 11, 12.5, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 11, 12.5, 12], "texture": "#1"}, - "down": {"uv": [12.25, 12, 12.5, 11], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 11, + 12.25, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 11, + 12.5, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 11.75, + 12.5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 11, + 12.5, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 11, + 12.5, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 12, + 12.5, + 11 + ], + "texture": "#1" + } } }, { "name": "siirakansu_54", - "from": [7.75, 0, 11.25], - "to": [8.75, 0.25, 11.75], + "from": [ + 7.75, + 0, + 11.25 + ], + "to": [ + 8.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [8.75, 11.25, 7.75, 11.5], "texture": "#1"}, - "east": {"uv": [8.5, 11.25, 8.75, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 11.5, 8.75, 11.75], "texture": "#1"}, - "west": {"uv": [7.75, 11.25, 8, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 11.25, 8.75, 11.75], "texture": "#1"}, - "down": {"uv": [7.75, 11.75, 8.75, 11.25], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 11.25, + 7.75, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 11.25, + 8.75, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 11.5, + 8.75, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 11.25, + 8, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 11.25, + 8.75, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 11.75, + 8.75, + 11.25 + ], + "texture": "#1" + } } }, { "name": "siirakansu_55", - "from": [4.5, 0, 11.5], - "to": [5.25, 0.25, 11.75], + "from": [ + 4.5, + 0, + 11.5 + ], + "to": [ + 5.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5.25, 11.5, 4.5, 11.75], "texture": "#1"}, - "east": {"uv": [5, 11.5, 5.25, 11.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 11.5, 5.25, 11.75], "texture": "#1"}, - "west": {"uv": [4.5, 11.5, 4.75, 11.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 11.5, 5.25, 11.75], "texture": "#1"}, - "down": {"uv": [4.5, 11.75, 5.25, 11.5], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 11.5, + 4.5, + 11.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 11.5, + 5.25, + 11.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 11.5, + 5.25, + 11.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 11.5, + 4.75, + 11.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 11.5, + 5.25, + 11.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 11.75, + 5.25, + 11.5 + ], + "texture": "#1" + } } }, { "name": "siirakansu_56", - "from": [8, 0, 11.75], - "to": [8.75, 0.25, 12], + "from": [ + 8, + 0, + 11.75 + ], + "to": [ + 8.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8.75, 11.75, 8, 12], "texture": "#1"}, - "east": {"uv": [8.5, 11.75, 8.75, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 11.75, 8.75, 12], "texture": "#1"}, - "west": {"uv": [8, 11.75, 8.25, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 11.75, 8.75, 12], "texture": "#1"}, - "down": {"uv": [8, 12, 8.75, 11.75], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 11.75, + 8, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 11.75, + 8.75, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 11.75, + 8.75, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 11.75, + 8.25, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 11.75, + 8.75, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 12, + 8.75, + 11.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_57", - "from": [11, 0, 11.75], - "to": [11.5, 0.25, 12], + "from": [ + 11, + 0, + 11.75 + ], + "to": [ + 11.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [11.5, 11.75, 11, 12], "texture": "#1"}, - "east": {"uv": [11.25, 11.75, 11.5, 12], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 11.75, 11.5, 12], "texture": "#1"}, - "west": {"uv": [11, 11.75, 11.25, 12], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 11.75, 11.5, 12], "texture": "#1"}, - "down": {"uv": [11, 12, 11.5, 11.75], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 11.75, + 11, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 11.75, + 11.5, + 12 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 11.75, + 11.5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 11.75, + 11.25, + 12 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 11.75, + 11.5, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 12, + 11.5, + 11.75 + ], + "texture": "#1" + } } }, { "name": "siirakansu_58", - "from": [11.25, 0, 12], - "to": [11.5, 0.25, 12.25], + "from": [ + 11.25, + 0, + 12 + ], + "to": [ + 11.5, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [11.5, 12, 11.25, 12.25], "texture": "#1"}, - "east": {"uv": [11.25, 12, 11.5, 12.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 12, 11.5, 12.25], "texture": "#1"}, - "west": {"uv": [11.25, 12, 11.5, 12.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 12, 11.5, 12.25], "texture": "#1"}, - "down": {"uv": [11.25, 12.25, 11.5, 12], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 12, + 11.25, + 12.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 12, + 11.5, + 12.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 12.25, + 11.5, + 12 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-1, 5, 19], - "scale": [2.32812, 2.32813, 2.32813] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -1, + 5, + 19 + ], + "scale": [ + 2.32812, + 2.32813, + 2.32813 + ] }, "thirdperson_lefthand": { - "rotation": [90, -2.75, 1.75], - "translation": [-1, 5, 19], - "scale": [2.32812, 2.32813, 2.32813] + "rotation": [ + 90, + -2.75, + 1.75 + ], + "translation": [ + -1, + 5, + 19 + ], + "scale": [ + 2.32812, + 2.32813, + 2.32813 + ] }, "firstperson_righthand": { - "rotation": [90, -27, 8], - "translation": [9.25, 2.75, 10], - "scale": [2.32812, 2.32812, 2.32812] + "rotation": [ + 90, + -27, + 8 + ], + "translation": [ + 9.25, + 2.75, + 10 + ], + "scale": [ + 2.32812, + 2.32812, + 2.32812 + ] }, "firstperson_lefthand": { - "rotation": [90, -25, -180], - "translation": [9.25, -1.75, -25], - "scale": [2.32812, 2.32812, 2.32812] + "rotation": [ + 90, + -25, + -180 + ], + "translation": [ + 9.25, + -1.75, + -25 + ], + "scale": [ + 2.32812, + 2.32812, + 2.32812 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, -0.5, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -0.5, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 14.25, 24.5], - "scale": [2.32812, 2.32812, 2.32812] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 14.25, + 24.5 + ], + "scale": [ + 2.32812, + 2.32812, + 2.32812 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "siirakansu", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/suppon.json b/pack/assets/minecraft/models/fish/suppon.json index 93604652..3c7cc6c1 100644 --- a/pack/assets/minecraft/models/fish/suppon.json +++ b/pack/assets/minecraft/models/fish/suppon.json @@ -2,577 +2,3030 @@ "__name": "スッポン", "credit": "Made with Blockbench", "textures": { - "1": "fish/suppon", - "particle": "fish/sake" + "1": "item/fish/suppon", + "particle": "item/fish/sake" }, "elements": [ { "name": "suppon_0", - "from": [7.75, 0, 1.25], - "to": [8.5, 0.25, 14.75], + "from": [ + 7.75, + 0, + 1.25 + ], + "to": [ + 8.5, + 0.25, + 14.75 + ], "faces": { - "north": {"uv": [8.5, 1.25, 7.75, 1.5], "texture": "#1"}, - "east": {"uv": [8.25, 1.25, 8.5, 14.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.75, 14.5, 8.5, 14.75], "texture": "#1"}, - "west": {"uv": [7.75, 1.25, 8, 14.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.75, 1.25, 8.5, 14.75], "texture": "#1"}, - "down": {"uv": [7.75, 14.75, 8.5, 1.25], "texture": "#1"} + "north": { + "uv": [ + 8.5, + 1.25, + 7.75, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 1.25, + 8.5, + 14.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 14.5, + 8.5, + 14.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 1.25, + 8, + 14.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.75, + 1.25, + 8.5, + 14.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.75, + 14.75, + 8.5, + 1.25 + ], + "texture": "#1" + } } }, { "name": "suppon_1", - "from": [7.5, 0, 1.5], - "to": [7.75, 0.25, 14], + "from": [ + 7.5, + 0, + 1.5 + ], + "to": [ + 7.75, + 0.25, + 14 + ], "faces": { - "north": {"uv": [7.75, 1.5, 7.5, 1.75], "texture": "#1"}, - "east": {"uv": [7.5, 1.5, 7.75, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 13.75, 7.75, 14], "texture": "#1"}, - "west": {"uv": [7.5, 1.5, 7.75, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 1.5, 7.75, 14], "texture": "#1"}, - "down": {"uv": [7.5, 14, 7.75, 1.5], "texture": "#1"} + "north": { + "uv": [ + 7.75, + 1.5, + 7.5, + 1.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 1.5, + 7.75, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 13.75, + 7.75, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 1.5, + 7.75, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 1.5, + 7.75, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 14, + 7.75, + 1.5 + ], + "texture": "#1" + } } }, { "name": "suppon_2", - "from": [8.5, 0, 1.5], - "to": [8.75, 0.25, 14], + "from": [ + 8.5, + 0, + 1.5 + ], + "to": [ + 8.75, + 0.25, + 14 + ], "faces": { - "north": {"uv": [8.75, 1.5, 8.5, 1.75], "texture": "#1"}, - "east": {"uv": [8.5, 1.5, 8.75, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.5, 13.75, 8.75, 14], "texture": "#1"}, - "west": {"uv": [8.5, 1.5, 8.75, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.5, 1.5, 8.75, 14], "texture": "#1"}, - "down": {"uv": [8.5, 14, 8.75, 1.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 1.5, + 8.5, + 1.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 1.5, + 8.75, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 13.75, + 8.75, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.5, + 8.75, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 1.5, + 8.75, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 14, + 8.75, + 1.5 + ], + "texture": "#1" + } } }, { "name": "suppon_3", - "from": [7.25, 0, 2], - "to": [7.5, 0.25, 13.5], + "from": [ + 7.25, + 0, + 2 + ], + "to": [ + 7.5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [7.5, 2, 7.25, 2.25], "texture": "#1"}, - "east": {"uv": [7.25, 2, 7.5, 13.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 13.25, 7.5, 13.5], "texture": "#1"}, - "west": {"uv": [7.25, 2, 7.5, 13.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 2, 7.5, 13.5], "texture": "#1"}, - "down": {"uv": [7.25, 13.5, 7.5, 2], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 2, + 7.25, + 2.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 2, + 7.5, + 13.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 13.25, + 7.5, + 13.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 2, + 7.5, + 13.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 2, + 7.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 13.5, + 7.5, + 2 + ], + "texture": "#1" + } } }, { "name": "suppon_4", - "from": [8.75, 0, 2], - "to": [9, 0.25, 13.5], + "from": [ + 8.75, + 0, + 2 + ], + "to": [ + 9, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [9, 2, 8.75, 2.25], "texture": "#1"}, - "east": {"uv": [8.75, 2, 9, 13.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 13.25, 9, 13.5], "texture": "#1"}, - "west": {"uv": [8.75, 2, 9, 13.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 2, 9, 13.5], "texture": "#1"}, - "down": {"uv": [8.75, 13.5, 9, 2], "texture": "#1"} + "north": { + "uv": [ + 9, + 2, + 8.75, + 2.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 2, + 9, + 13.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 13.25, + 9, + 13.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 2, + 9, + 13.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 2, + 9, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 13.5, + 9, + 2 + ], + "texture": "#1" + } } }, { "name": "suppon_5", - "from": [7, 0, 2.5], - "to": [7.25, 0.25, 13], + "from": [ + 7, + 0, + 2.5 + ], + "to": [ + 7.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7.25, 2.5, 7, 2.75], "texture": "#1"}, - "east": {"uv": [7, 2.5, 7.25, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 12.75, 7.25, 13], "texture": "#1"}, - "west": {"uv": [7, 2.5, 7.25, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 2.5, 7.25, 13], "texture": "#1"}, - "down": {"uv": [7, 13, 7.25, 2.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 2.5, + 7, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 2.5, + 7.25, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 12.75, + 7.25, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 2.5, + 7.25, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 2.5, + 7.25, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 13, + 7.25, + 2.5 + ], + "texture": "#1" + } } }, { "name": "suppon_6", - "from": [9, 0, 2.5], - "to": [9.25, 0.25, 13], + "from": [ + 9, + 0, + 2.5 + ], + "to": [ + 9.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.25, 2.5, 9, 2.75], "texture": "#1"}, - "east": {"uv": [9, 2.5, 9.25, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9, 12.75, 9.25, 13], "texture": "#1"}, - "west": {"uv": [9, 2.5, 9.25, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9, 2.5, 9.25, 13], "texture": "#1"}, - "down": {"uv": [9, 13, 9.25, 2.5], "texture": "#1"} + "north": { + "uv": [ + 9.25, + 2.5, + 9, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 2.5, + 9.25, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 2.5, + 9.25, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 2.5, + 9.25, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 13, + 9.25, + 2.5 + ], + "texture": "#1" + } } }, { "name": "suppon_7", - "from": [6.75, 0, 3.25], - "to": [7, 0.25, 13], + "from": [ + 6.75, + 0, + 3.25 + ], + "to": [ + 7, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7, 3.25, 6.75, 3.5], "texture": "#1"}, - "east": {"uv": [6.75, 3.25, 7, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 12.75, 7, 13], "texture": "#1"}, - "west": {"uv": [6.75, 3.25, 7, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 3.25, 7, 13], "texture": "#1"}, - "down": {"uv": [6.75, 13, 7, 3.25], "texture": "#1"} + "north": { + "uv": [ + 7, + 3.25, + 6.75, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 3.25, + 7, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 12.75, + 7, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 3.25, + 7, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 3.25, + 7, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 13, + 7, + 3.25 + ], + "texture": "#1" + } } }, { "name": "suppon_8", - "from": [9.25, 0, 3.25], - "to": [9.5, 0.25, 13], + "from": [ + 9.25, + 0, + 3.25 + ], + "to": [ + 9.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.5, 3.25, 9.25, 3.5], "texture": "#1"}, - "east": {"uv": [9.25, 3.25, 9.5, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.25, 12.75, 9.5, 13], "texture": "#1"}, - "west": {"uv": [9.25, 3.25, 9.5, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.25, 3.25, 9.5, 13], "texture": "#1"}, - "down": {"uv": [9.25, 13, 9.5, 3.25], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 3.25, + 9.25, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 3.25, + 9.5, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.25, + 12.75, + 9.5, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.25, + 3.25, + 9.5, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.25, + 3.25, + 9.5, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.25, + 13, + 9.5, + 3.25 + ], + "texture": "#1" + } } }, { "name": "suppon_9", - "from": [4.75, 0, 4.25], - "to": [5.25, 0.25, 6.5], + "from": [ + 4.75, + 0, + 4.25 + ], + "to": [ + 5.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [5.25, 4.25, 4.75, 4.5], "texture": "#1"}, - "east": {"uv": [5, 4.25, 5.25, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 6.25, 5.25, 6.5], "texture": "#1"}, - "west": {"uv": [4.75, 4.25, 5, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 4.25, 5.25, 6.5], "texture": "#1"}, - "down": {"uv": [4.75, 6.5, 5.25, 4.25], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 4.25, + 4.75, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 4.25, + 5.25, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 6.25, + 5.25, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 4.25, + 5, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 4.25, + 5.25, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 6.5, + 5.25, + 4.25 + ], + "texture": "#1" + } } }, { "name": "suppon_10", - "from": [11, 0, 4.25], - "to": [11.5, 0.25, 6.5], + "from": [ + 11, + 0, + 4.25 + ], + "to": [ + 11.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11.5, 4.25, 11, 4.5], "texture": "#1"}, - "east": {"uv": [11.25, 4.25, 11.5, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 6.25, 11.5, 6.5], "texture": "#1"}, - "west": {"uv": [11, 4.25, 11.25, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 4.25, 11.5, 6.5], "texture": "#1"}, - "down": {"uv": [11, 6.5, 11.5, 4.25], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 4.25, + 11, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 4.25, + 11.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 6.25, + 11.5, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 4.25, + 11.25, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 4.25, + 11.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 6.5, + 11.5, + 4.25 + ], + "texture": "#1" + } } }, { "name": "suppon_11", - "from": [4.25, 0, 4.5], - "to": [4.75, 0.25, 5.5], + "from": [ + 4.25, + 0, + 4.5 + ], + "to": [ + 4.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [4.75, 4.5, 4.25, 4.75], "texture": "#1"}, - "east": {"uv": [4.5, 4.5, 4.75, 5.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 5.25, 4.75, 5.5], "texture": "#1"}, - "west": {"uv": [4.25, 4.5, 4.5, 5.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 4.5, 4.75, 5.5], "texture": "#1"}, - "down": {"uv": [4.25, 5.5, 4.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 4.5, + 4.25, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 4.75, + 5.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 5.25, + 4.75, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 4.5, + 4.5, + 5.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 4.5, + 4.75, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 5.5, + 4.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "suppon_12", - "from": [5.25, 0, 4.5], - "to": [5.75, 0.25, 14], + "from": [ + 5.25, + 0, + 4.5 + ], + "to": [ + 5.75, + 0.25, + 14 + ], "faces": { - "north": {"uv": [5.75, 4.5, 5.25, 4.75], "texture": "#1"}, - "east": {"uv": [5.5, 4.5, 5.75, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 13.75, 5.75, 14], "texture": "#1"}, - "west": {"uv": [5.25, 4.5, 5.5, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 4.5, 5.75, 14], "texture": "#1"}, - "down": {"uv": [5.25, 14, 5.75, 4.5], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 4.5, + 5.25, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 4.5, + 5.75, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 13.75, + 5.75, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 4.5, + 5.5, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 4.5, + 5.75, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 14, + 5.75, + 4.5 + ], + "texture": "#1" + } } }, { "name": "suppon_13", - "from": [10.5, 0, 4.5], - "to": [11, 0.25, 14], + "from": [ + 10.5, + 0, + 4.5 + ], + "to": [ + 11, + 0.25, + 14 + ], "faces": { - "north": {"uv": [11, 4.5, 10.5, 4.75], "texture": "#1"}, - "east": {"uv": [10.75, 4.5, 11, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 13.75, 11, 14], "texture": "#1"}, - "west": {"uv": [10.5, 4.5, 10.75, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 4.5, 11, 14], "texture": "#1"}, - "down": {"uv": [10.5, 14, 11, 4.5], "texture": "#1"} + "north": { + "uv": [ + 11, + 4.5, + 10.5, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.75, + 4.5, + 11, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 13.75, + 11, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 4.5, + 10.75, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 4.5, + 11, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 14, + 11, + 4.5 + ], + "texture": "#1" + } } }, { "name": "suppon_14", - "from": [11.5, 0, 4.5], - "to": [12, 0.25, 5.5], + "from": [ + 11.5, + 0, + 4.5 + ], + "to": [ + 12, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [12, 4.5, 11.5, 4.75], "texture": "#1"}, - "east": {"uv": [11.75, 4.5, 12, 5.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 5.25, 12, 5.5], "texture": "#1"}, - "west": {"uv": [11.5, 4.5, 11.75, 5.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 4.5, 12, 5.5], "texture": "#1"}, - "down": {"uv": [11.5, 5.5, 12, 4.5], "texture": "#1"} + "north": { + "uv": [ + 12, + 4.5, + 11.5, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 4.5, + 12, + 5.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 5.25, + 12, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 4.5, + 11.75, + 5.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 12, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 5.5, + 12, + 4.5 + ], + "texture": "#1" + } } }, { "name": "suppon_15", - "from": [4, 0, 4.75], - "to": [4.25, 0.25, 5.5], + "from": [ + 4, + 0, + 4.75 + ], + "to": [ + 4.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [4.25, 4.75, 4, 5], "texture": "#1"}, - "east": {"uv": [4, 4.75, 4.25, 5.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4, 5.25, 4.25, 5.5], "texture": "#1"}, - "west": {"uv": [4, 4.75, 4.25, 5.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4, 4.75, 4.25, 5.5], "texture": "#1"}, - "down": {"uv": [4, 5.5, 4.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 4.25, + 4.75, + 4, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 4.75, + 4.25, + 5.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 5.25, + 4.25, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 4.75, + 4.25, + 5.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 4.75, + 4.25, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 5.5, + 4.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "suppon_16", - "from": [5.75, 0, 4.75], - "to": [6, 0.25, 14.25], + "from": [ + 5.75, + 0, + 4.75 + ], + "to": [ + 6, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [6, 4.75, 5.75, 5], "texture": "#1"}, - "east": {"uv": [5.75, 4.75, 6, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.75, 14, 6, 14.25], "texture": "#1"}, - "west": {"uv": [5.75, 4.75, 6, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.75, 4.75, 6, 14.25], "texture": "#1"}, - "down": {"uv": [5.75, 14.25, 6, 4.75], "texture": "#1"} + "north": { + "uv": [ + 6, + 4.75, + 5.75, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 4.75, + 6, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 14, + 6, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 4.75, + 6, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.75, + 4.75, + 6, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 14.25, + 6, + 4.75 + ], + "texture": "#1" + } } }, { "name": "suppon_17", - "from": [10.25, 0, 4.75], - "to": [10.5, 0.25, 14.25], + "from": [ + 10.25, + 0, + 4.75 + ], + "to": [ + 10.5, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [10.5, 4.75, 10.25, 5], "texture": "#1"}, - "east": {"uv": [10.25, 4.75, 10.5, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 14, 10.5, 14.25], "texture": "#1"}, - "west": {"uv": [10.25, 4.75, 10.5, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 4.75, 10.5, 14.25], "texture": "#1"}, - "down": {"uv": [10.25, 14.25, 10.5, 4.75], "texture": "#1"} + "north": { + "uv": [ + 10.5, + 4.75, + 10.25, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.25, + 4.75, + 10.5, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 14, + 10.5, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 4.75, + 10.5, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 4.75, + 10.5, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 14.25, + 10.5, + 4.75 + ], + "texture": "#1" + } } }, { "name": "suppon_18", - "from": [12, 0, 4.75], - "to": [12.25, 0.25, 5.5], + "from": [ + 12, + 0, + 4.75 + ], + "to": [ + 12.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [12.25, 4.75, 12, 5], "texture": "#1"}, - "east": {"uv": [12, 4.75, 12.25, 5.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12, 5.25, 12.25, 5.5], "texture": "#1"}, - "west": {"uv": [12, 4.75, 12.25, 5.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 4.75, 12.25, 5.5], "texture": "#1"}, - "down": {"uv": [12, 5.5, 12.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 4.75, + 12, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 4.75, + 12.25, + 5.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 5.25, + 12.25, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 4.75, + 12.25, + 5.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 4.75, + 12.25, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 5.5, + 12.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "suppon_19", - "from": [3.75, 0, 5], - "to": [4, 0.25, 5.25], + "from": [ + 3.75, + 0, + 5 + ], + "to": [ + 4, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [4, 5, 3.75, 5.25], "texture": "#1"}, - "east": {"uv": [3.75, 5, 4, 5.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 5, 4, 5.25], "texture": "#1"}, - "west": {"uv": [3.75, 5, 4, 5.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 5, 4, 5.25], "texture": "#1"}, - "down": {"uv": [3.75, 5.25, 4, 5], "texture": "#1"} + "north": { + "uv": [ + 4, + 5, + 3.75, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 5, + 4, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 5.25, + 4, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_20", - "from": [6, 0, 5], - "to": [6.25, 0.25, 14], + "from": [ + 6, + 0, + 5 + ], + "to": [ + 6.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [6.25, 5, 6, 5.25], "texture": "#1"}, - "east": {"uv": [6, 5, 6.25, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6, 13.75, 6.25, 14], "texture": "#1"}, - "west": {"uv": [6, 5, 6.25, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6, 5, 6.25, 14], "texture": "#1"}, - "down": {"uv": [6, 14, 6.25, 5], "texture": "#1"} + "north": { + "uv": [ + 6.25, + 5, + 6, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5, + 6.25, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 13.75, + 6.25, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5, + 6.25, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5, + 6.25, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 14, + 6.25, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_21", - "from": [6.5, 0, 5], - "to": [6.75, 0.25, 13], + "from": [ + 6.5, + 0, + 5 + ], + "to": [ + 6.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [6.75, 5, 6.5, 5.25], "texture": "#1"}, - "east": {"uv": [6.5, 5, 6.75, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 12.75, 6.75, 13], "texture": "#1"}, - "west": {"uv": [6.5, 5, 6.75, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 5, 6.75, 13], "texture": "#1"}, - "down": {"uv": [6.5, 13, 6.75, 5], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 5, + 6.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.75, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 12.75, + 6.75, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 5, + 6.75, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 5, + 6.75, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 13, + 6.75, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_22", - "from": [9.5, 0, 5], - "to": [9.75, 0.25, 13], + "from": [ + 9.5, + 0, + 5 + ], + "to": [ + 9.75, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.75, 5, 9.5, 5.25], "texture": "#1"}, - "east": {"uv": [9.5, 5, 9.75, 13], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 12.75, 9.75, 13], "texture": "#1"}, - "west": {"uv": [9.5, 5, 9.75, 13], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 5, 9.75, 13], "texture": "#1"}, - "down": {"uv": [9.5, 13, 9.75, 5], "texture": "#1"} + "north": { + "uv": [ + 9.75, + 5, + 9.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.75, + 13 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 12.75, + 9.75, + 13 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 5, + 9.75, + 13 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 5, + 9.75, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 13, + 9.75, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_23", - "from": [10, 0, 5], - "to": [10.25, 0.25, 14], + "from": [ + 10, + 0, + 5 + ], + "to": [ + 10.25, + 0.25, + 14 + ], "faces": { - "north": {"uv": [10.25, 5, 10, 5.25], "texture": "#1"}, - "east": {"uv": [10, 5, 10.25, 14], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10, 13.75, 10.25, 14], "texture": "#1"}, - "west": {"uv": [10, 5, 10.25, 14], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10, 5, 10.25, 14], "texture": "#1"}, - "down": {"uv": [10, 14, 10.25, 5], "texture": "#1"} + "north": { + "uv": [ + 10.25, + 5, + 10, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 5, + 10.25, + 14 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 13.75, + 10.25, + 14 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 5, + 10.25, + 14 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 5, + 10.25, + 14 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 14, + 10.25, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_24", - "from": [12.25, 0, 5], - "to": [12.5, 0.25, 5.25], + "from": [ + 12.25, + 0, + 5 + ], + "to": [ + 12.5, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [12.5, 5, 12.25, 5.25], "texture": "#1"}, - "east": {"uv": [12.25, 5, 12.5, 5.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 5, 12.5, 5.25], "texture": "#1"}, - "west": {"uv": [12.25, 5, 12.5, 5.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 5, 12.5, 5.25], "texture": "#1"}, - "down": {"uv": [12.25, 5.25, 12.5, 5], "texture": "#1"} + "north": { + "uv": [ + 12.5, + 5, + 12.25, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.25, + 5, + 12.5, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 5, + 12.5, + 5.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 5, + 12.5, + 5.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 5, + 12.5, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 5.25, + 12.5, + 5 + ], + "texture": "#1" + } } }, { "name": "suppon_25", - "from": [6.25, 0, 5.25], - "to": [6.5, 0.25, 13.75], + "from": [ + 6.25, + 0, + 5.25 + ], + "to": [ + 6.5, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [6.5, 5.25, 6.25, 5.5], "texture": "#1"}, - "east": {"uv": [6.25, 5.25, 6.5, 13.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.25, 13.5, 6.5, 13.75], "texture": "#1"}, - "west": {"uv": [6.25, 5.25, 6.5, 13.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.25, 5.25, 6.5, 13.75], "texture": "#1"}, - "down": {"uv": [6.25, 13.75, 6.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 5.25, + 6.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 6.5, + 13.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 13.5, + 6.5, + 13.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5.25, + 6.5, + 13.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 5.25, + 6.5, + 13.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 13.75, + 6.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "suppon_26", - "from": [9.75, 0, 5.25], - "to": [10, 0.25, 13.75], + "from": [ + 9.75, + 0, + 5.25 + ], + "to": [ + 10, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [10, 5.25, 9.75, 5.5], "texture": "#1"}, - "east": {"uv": [9.75, 5.25, 10, 13.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 13.5, 10, 13.75], "texture": "#1"}, - "west": {"uv": [9.75, 5.25, 10, 13.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 5.25, 10, 13.75], "texture": "#1"}, - "down": {"uv": [9.75, 13.75, 10, 5.25], "texture": "#1"} + "north": { + "uv": [ + 10, + 5.25, + 9.75, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.75, + 5.25, + 10, + 13.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 13.5, + 10, + 13.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 5.25, + 10, + 13.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 5.25, + 10, + 13.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 13.75, + 10, + 5.25 + ], + "texture": "#1" + } } }, { "name": "suppon_27", - "from": [4.5, 0, 5.5], - "to": [4.75, 0.25, 6.25], + "from": [ + 4.5, + 0, + 5.5 + ], + "to": [ + 4.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [4.75, 5.5, 4.5, 5.75], "texture": "#1"}, - "east": {"uv": [4.5, 5.5, 4.75, 6.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 6, 4.75, 6.25], "texture": "#1"}, - "west": {"uv": [4.5, 5.5, 4.75, 6.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 5.5, 4.75, 6.25], "texture": "#1"}, - "down": {"uv": [4.5, 6.25, 4.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 5.5, + 4.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 5.5, + 4.75, + 6.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 6, + 4.75, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.75, + 6.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 5.5, + 4.75, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 6.25, + 4.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "suppon_28", - "from": [11.5, 0, 5.5], - "to": [11.75, 0.25, 6.25], + "from": [ + 11.5, + 0, + 5.5 + ], + "to": [ + 11.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.75, 5.5, 11.5, 5.75], "texture": "#1"}, - "east": {"uv": [11.5, 5.5, 11.75, 6.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 6, 11.75, 6.25], "texture": "#1"}, - "west": {"uv": [11.5, 5.5, 11.75, 6.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 5.5, 11.75, 6.25], "texture": "#1"}, - "down": {"uv": [11.5, 6.25, 11.75, 5.5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 5.5, + 11.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 5.5, + 11.75, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 6.25, + 11.75, + 5.5 + ], + "texture": "#1" + } } }, { "name": "suppon_29", - "from": [5, 0, 6.5], - "to": [5.25, 0.25, 13.75], + "from": [ + 5, + 0, + 6.5 + ], + "to": [ + 5.25, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [5.25, 6.5, 5, 6.75], "texture": "#1"}, - "east": {"uv": [5, 6.5, 5.25, 13.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5, 13.5, 5.25, 13.75], "texture": "#1"}, - "west": {"uv": [5, 6.5, 5.25, 13.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5, 6.5, 5.25, 13.75], "texture": "#1"}, - "down": {"uv": [5, 13.75, 5.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 6.5, + 5, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.25, + 13.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 13.5, + 5.25, + 13.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 6.5, + 5.25, + 13.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 6.5, + 5.25, + 13.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 13.75, + 5.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "suppon_30", - "from": [11, 0, 6.5], - "to": [11.25, 0.25, 13.75], + "from": [ + 11, + 0, + 6.5 + ], + "to": [ + 11.25, + 0.25, + 13.75 + ], "faces": { - "north": {"uv": [11.25, 6.5, 11, 6.75], "texture": "#1"}, - "east": {"uv": [11, 6.5, 11.25, 13.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11, 13.5, 11.25, 13.75], "texture": "#1"}, - "west": {"uv": [11, 6.5, 11.25, 13.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11, 6.5, 11.25, 13.75], "texture": "#1"}, - "down": {"uv": [11, 13.75, 11.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 6.5, + 11, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 6.5, + 11.25, + 13.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 13.5, + 11.25, + 13.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 6.5, + 11.25, + 13.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 6.5, + 11.25, + 13.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 13.75, + 11.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "suppon_31", - "from": [4.75, 0, 7], - "to": [5, 0.25, 13.5], + "from": [ + 4.75, + 0, + 7 + ], + "to": [ + 5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [5, 7, 4.75, 7.25], "texture": "#1"}, - "east": {"uv": [4.75, 7, 5, 13.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.75, 13.25, 5, 13.5], "texture": "#1"}, - "west": {"uv": [4.75, 7, 5, 13.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.75, 7, 5, 13.5], "texture": "#1"}, - "down": {"uv": [4.75, 13.5, 5, 7], "texture": "#1"} + "north": { + "uv": [ + 5, + 7, + 4.75, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 7, + 5, + 13.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 13.25, + 5, + 13.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 7, + 5, + 13.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 7, + 5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 13.5, + 5, + 7 + ], + "texture": "#1" + } } }, { "name": "suppon_32", - "from": [11.25, 0, 7], - "to": [11.5, 0.25, 13.5], + "from": [ + 11.25, + 0, + 7 + ], + "to": [ + 11.5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [11.5, 7, 11.25, 7.25], "texture": "#1"}, - "east": {"uv": [11.25, 7, 11.5, 13.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.25, 13.25, 11.5, 13.5], "texture": "#1"}, - "west": {"uv": [11.25, 7, 11.5, 13.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.25, 7, 11.5, 13.5], "texture": "#1"}, - "down": {"uv": [11.25, 13.5, 11.5, 7], "texture": "#1"} + "north": { + "uv": [ + 11.5, + 7, + 11.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.25, + 7, + 11.5, + 13.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.25, + 13.25, + 11.5, + 13.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.25, + 7, + 11.5, + 13.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.25, + 7, + 11.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.25, + 13.5, + 11.5, + 7 + ], + "texture": "#1" + } } }, { "name": "suppon_33", - "from": [4.5, 0, 7.5], - "to": [4.75, 0.25, 11], + "from": [ + 4.5, + 0, + 7.5 + ], + "to": [ + 4.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.75, 7.5, 4.5, 7.75], "texture": "#1"}, - "east": {"uv": [4.5, 7.5, 4.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.5, 10.75, 4.75, 11], "texture": "#1"}, - "west": {"uv": [4.5, 7.5, 4.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.5, 7.5, 4.75, 11], "texture": "#1"}, - "down": {"uv": [4.5, 11, 4.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 4.75, + 7.5, + 4.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 7.5, + 4.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 7.5, + 4.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 11, + 4.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "suppon_34", - "from": [11.5, 0, 7.5], - "to": [11.75, 0.25, 11], + "from": [ + 11.5, + 0, + 7.5 + ], + "to": [ + 11.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.75, 7.5, 11.5, 7.75], "texture": "#1"}, - "east": {"uv": [11.5, 7.5, 11.75, 11], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.5, 10.75, 11.75, 11], "texture": "#1"}, - "west": {"uv": [11.5, 7.5, 11.75, 11], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.5, 7.5, 11.75, 11], "texture": "#1"}, - "down": {"uv": [11.5, 11, 11.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 11.75, + 7.5, + 11.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.75, + 11 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 7.5, + 11.75, + 11 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 7.5, + 11.75, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 11, + 11.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "suppon_35", - "from": [4.25, 0, 8.25], - "to": [4.5, 0.25, 10.25], + "from": [ + 4.25, + 0, + 8.25 + ], + "to": [ + 4.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [4.5, 8.25, 4.25, 8.5], "texture": "#1"}, - "east": {"uv": [4.25, 8.25, 4.5, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [4.25, 10, 4.5, 10.25], "texture": "#1"}, - "west": {"uv": [4.25, 8.25, 4.5, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [4.25, 8.25, 4.5, 10.25], "texture": "#1"}, - "down": {"uv": [4.25, 10.25, 4.5, 8.25], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 8.25, + 4.25, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 8.25, + 4.5, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 10, + 4.5, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 8.25, + 4.5, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 8.25, + 4.5, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 10.25, + 4.5, + 8.25 + ], + "texture": "#1" + } } }, { "name": "suppon_36", - "from": [11.75, 0, 8.25], - "to": [12, 0.25, 10.25], + "from": [ + 11.75, + 0, + 8.25 + ], + "to": [ + 12, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12, 8.25, 11.75, 8.5], "texture": "#1"}, - "east": {"uv": [11.75, 8.25, 12, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [11.75, 10, 12, 10.25], "texture": "#1"}, - "west": {"uv": [11.75, 8.25, 12, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [11.75, 8.25, 12, 10.25], "texture": "#1"}, - "down": {"uv": [11.75, 10.25, 12, 8.25], "texture": "#1"} + "north": { + "uv": [ + 12, + 8.25, + 11.75, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.75, + 8.25, + 12, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 11.75, + 10, + 12, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.75, + 8.25, + 12, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 8.25, + 12, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 10.25, + 12, + 8.25 + ], + "texture": "#1" + } } }, { "name": "suppon_37", - "from": [5.5, 0, 14], - "to": [5.75, 0.25, 14.25], + "from": [ + 5.5, + 0, + 14 + ], + "to": [ + 5.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [5.75, 14, 5.5, 14.25], "texture": "#1"}, - "east": {"uv": [5.5, 14, 5.75, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.5, 14, 5.75, 14.25], "texture": "#1"}, - "west": {"uv": [5.5, 14, 5.75, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.5, 14, 5.75, 14.25], "texture": "#1"}, - "down": {"uv": [5.5, 14.25, 5.75, 14], "texture": "#1"} + "north": { + "uv": [ + 5.75, + 14, + 5.5, + 14.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 14, + 5.75, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 14, + 5.75, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 14, + 5.75, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 14, + 5.75, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 14.25, + 5.75, + 14 + ], + "texture": "#1" + } } }, { "name": "suppon_38", - "from": [10.5, 0, 14], - "to": [10.75, 0.25, 14.25], + "from": [ + 10.5, + 0, + 14 + ], + "to": [ + 10.75, + 0.25, + 14.25 + ], "faces": { - "north": {"uv": [10.75, 14, 10.5, 14.25], "texture": "#1"}, - "east": {"uv": [10.5, 14, 10.75, 14.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 14, 10.75, 14.25], "texture": "#1"}, - "west": {"uv": [10.5, 14, 10.75, 14.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 14, 10.75, 14.25], "texture": "#1"}, - "down": {"uv": [10.5, 14.25, 10.75, 14], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 14, + 10.5, + 14.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 14, + 10.75, + 14.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 14, + 10.75, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 14, + 10.75, + 14.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 14, + 10.75, + 14.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 14.25, + 10.75, + 14 + ], + "texture": "#1" + } } }, { "name": "suppon_39", - "from": [8, 0, 14.75], - "to": [8.25, 0.25, 15], + "from": [ + 8, + 0, + 14.75 + ], + "to": [ + 8.25, + 0.25, + 15 + ], "faces": { - "north": {"uv": [8.25, 14.75, 8, 15], "texture": "#1"}, - "east": {"uv": [8, 14.75, 8.25, 15], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 14.75, 8.25, 15], "texture": "#1"}, - "west": {"uv": [8, 14.75, 8.25, 15], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 14.75, 8.25, 15], "texture": "#1"}, - "down": {"uv": [8, 15, 8.25, 14.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 14.75, + 8, + 15 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 14.75, + 8.25, + 15 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 14.75, + 8.25, + 15 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 14.75, + 8.25, + 15 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 14.75, + 8.25, + 15 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 15, + 8.25, + 14.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 5.5], - "scale": [0.66, 0.66, 0.66] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 5.5 + ], + "scale": [ + 0.66, + 0.66, + 0.66 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 5.5], - "scale": [0.66, 0.66, 0.66] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 5.5 + ], + "scale": [ + 0.66, + 0.66, + 0.66 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [0.25, 3.75, 12], - "scale": [1.44, 1.44, 1.44] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + 0.25, + 3.75, + 12 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "ground": { - "translation": [0.25, 18, 1.25], - "scale": [1.44, 1.44, 1.44] + "translation": [ + 0.25, + 18, + 1.25 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "translation": [0.25, 18, 1.25], - "scale": [1.44, 1.44, 1.44] + "translation": [ + 0.25, + 18, + 1.25 + ], + "scale": [ + 1.44, + 1.44, + 1.44 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "suppon", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/suzuki.json b/pack/assets/minecraft/models/fish/suzuki.json index 6ab6c017..ff68a25e 100644 --- a/pack/assets/minecraft/models/fish/suzuki.json +++ b/pack/assets/minecraft/models/fish/suzuki.json @@ -2,670 +2,3544 @@ "__name": "スズキ", "credit": "Made with Blockbench", "textures": { - "7": "fish/suzuki", - "particle": "fish/isidai" + "7": "item/fish/suzuki", + "particle": "item/fish/isidai" }, "elements": [ { "name": "suzuki_0", - "from": [7, 0, 4.25], - "to": [7.5, 0.25, 9.5], + "from": [ + 7, + 0, + 4.25 + ], + "to": [ + 7.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.5, 4.25, 7, 4.5], "texture": "#7"}, - "east": {"uv": [7.25, 4.25, 7.5, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7, 9.25, 7.5, 9.5], "texture": "#7"}, - "west": {"uv": [7, 4.25, 7.25, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7, 4.25, 7.5, 9.5], "texture": "#7"}, - "down": {"uv": [7, 9.5, 7.5, 4.25], "texture": "#7"} + "north": { + "uv": [ + 7.5, + 4.25, + 7, + 4.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 7.25, + 4.25, + 7.5, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.5, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7, + 4.25, + 7.25, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7, + 4.25, + 7.5, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7, + 9.5, + 7.5, + 4.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_1", - "from": [6.5, 0, 4.5], - "to": [7, 0.25, 9.5], + "from": [ + 6.5, + 0, + 4.5 + ], + "to": [ + 7, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7, 4.5, 6.5, 4.75], "texture": "#7"}, - "east": {"uv": [6.75, 4.5, 7, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6.5, 9.25, 7, 9.5], "texture": "#7"}, - "west": {"uv": [6.5, 4.5, 6.75, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6.5, 4.5, 7, 9.5], "texture": "#7"}, - "down": {"uv": [6.5, 9.5, 7, 4.5], "texture": "#7"} + "north": { + "uv": [ + 7, + 4.5, + 6.5, + 4.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.75, + 4.5, + 7, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6.5, + 9.25, + 7, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6.5, + 4.5, + 6.75, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6.5, + 4.5, + 7, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6.5, + 9.5, + 7, + 4.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_2", - "from": [7.5, 0, 4.5], - "to": [8, 0.25, 9.5], + "from": [ + 7.5, + 0, + 4.5 + ], + "to": [ + 8, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8, 4.5, 7.5, 4.75], "texture": "#7"}, - "east": {"uv": [7.75, 4.5, 8, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7.5, 9.25, 8, 9.5], "texture": "#7"}, - "west": {"uv": [7.5, 4.5, 7.75, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7.5, 4.5, 8, 9.5], "texture": "#7"}, - "down": {"uv": [7.5, 9.5, 8, 4.5], "texture": "#7"} + "north": { + "uv": [ + 8, + 4.5, + 7.5, + 4.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 7.75, + 4.5, + 8, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7.5, + 9.25, + 8, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7.5, + 4.5, + 7.75, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 8, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 8, + 4.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_3", - "from": [6, 0, 4.75], - "to": [6.5, 0.25, 10.75], + "from": [ + 6, + 0, + 4.75 + ], + "to": [ + 6.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [6.5, 4.75, 6, 5], "texture": "#7"}, - "east": {"uv": [6.25, 4.75, 6.5, 10.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6, 10.5, 6.5, 10.75], "texture": "#7"}, - "west": {"uv": [6, 4.75, 6.25, 10.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6, 4.75, 6.5, 10.75], "texture": "#7"}, - "down": {"uv": [6, 10.75, 6.5, 4.75], "texture": "#7"} + "north": { + "uv": [ + 6.5, + 4.75, + 6, + 5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.25, + 4.75, + 6.5, + 10.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.5, + 10.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6, + 4.75, + 6.25, + 10.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6, + 4.75, + 6.5, + 10.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6, + 10.75, + 6.5, + 4.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_4", - "from": [8, 0, 4.75], - "to": [8.25, 0.25, 9.5], + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.25, 4.75, 8, 5], "texture": "#7"}, - "east": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#7"}, - "west": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8, 4.75, 8.25, 9.5], "texture": "#7"}, - "down": {"uv": [8, 9.5, 8.25, 4.75], "texture": "#7"} + "north": { + "uv": [ + 8.25, + 4.75, + 8, + 5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 4.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_5", - "from": [5.5, 0, 5], - "to": [6, 0.25, 10.25], + "from": [ + 5.5, + 0, + 5 + ], + "to": [ + 6, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6, 5, 5.5, 5.25], "texture": "#7"}, - "east": {"uv": [5.75, 5, 6, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5.5, 10, 6, 10.25], "texture": "#7"}, - "west": {"uv": [5.5, 5, 5.75, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5.5, 5, 6, 10.25], "texture": "#7"}, - "down": {"uv": [5.5, 10.25, 6, 5], "texture": "#7"} + "north": { + "uv": [ + 6, + 5, + 5.5, + 5.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.75, + 5, + 6, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5.5, + 5, + 5.75, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5.5, + 5, + 6, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5.5, + 10.25, + 6, + 5 + ], + "texture": "#7" + } } }, { "name": "suzuki_6", - "from": [5.25, 0, 5.25], - "to": [5.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 5.25 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 5.25, 5.25, 5.5], "texture": "#7"}, - "east": {"uv": [5.25, 5.25, 5.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5.25, 9.5, 5.5, 9.75], "texture": "#7"}, - "west": {"uv": [5.25, 5.25, 5.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5.25, 5.25, 5.5, 9.75], "texture": "#7"}, - "down": {"uv": [5.25, 9.75, 5.5, 5.25], "texture": "#7"} + "north": { + "uv": [ + 5.5, + 5.25, + 5.25, + 5.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.25, + 5.25, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5.25, + 5.25, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5.25, + 5.25, + 5.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 5.5, + 5.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_7", - "from": [8.25, 0, 5.25], - "to": [8.5, 0.25, 9.25], + "from": [ + 8.25, + 0, + 5.25 + ], + "to": [ + 8.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [8.5, 5.25, 8.25, 5.5], "texture": "#7"}, - "east": {"uv": [8.25, 5.25, 8.5, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8.25, 9, 8.5, 9.25], "texture": "#7"}, - "west": {"uv": [8.25, 5.25, 8.5, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8.25, 5.25, 8.5, 9.25], "texture": "#7"}, - "down": {"uv": [8.25, 9.25, 8.5, 5.25], "texture": "#7"} + "north": { + "uv": [ + 8.5, + 5.25, + 8.25, + 5.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8.25, + 9, + 8.5, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8.25, + 5.25, + 8.5, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8.25, + 9.25, + 8.5, + 5.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_8", - "from": [9.75, 0, 5.25], - "to": [10.25, 0.25, 9.25], + "from": [ + 9.75, + 0, + 5.25 + ], + "to": [ + 10.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.25, 5.25, 9.75, 5.5], "texture": "#7"}, - "east": {"uv": [10, 5.25, 10.25, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9.75, 9, 10.25, 9.25], "texture": "#7"}, - "west": {"uv": [9.75, 5.25, 10, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9.75, 5.25, 10.25, 9.25], "texture": "#7"}, - "down": {"uv": [9.75, 9.25, 10.25, 5.25], "texture": "#7"} + "north": { + "uv": [ + 10.25, + 5.25, + 9.75, + 5.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9.75, + 9, + 10.25, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9.75, + 5.25, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9.75, + 5.25, + 10.25, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 10.25, + 5.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_9", - "from": [5, 0, 5.5], - "to": [5.25, 0.25, 9.75], + "from": [ + 5, + 0, + 5.5 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.25, 5.5, 5, 5.75], "texture": "#7"}, - "east": {"uv": [5, 5.5, 5.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5, 9.5, 5.25, 9.75], "texture": "#7"}, - "west": {"uv": [5, 5.5, 5.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5, 5.5, 5.25, 9.75], "texture": "#7"}, - "down": {"uv": [5, 9.75, 5.25, 5.5], "texture": "#7"} + "north": { + "uv": [ + 5.25, + 5.5, + 5, + 5.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5, + 5.5, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5, + 9.5, + 5.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5, + 5.5, + 5.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5, + 5.5, + 5.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5, + 9.75, + 5.25, + 5.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_10", - "from": [8.5, 0, 5.5], - "to": [9, 0.25, 9.25], + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 9, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9, 5.5, 8.5, 5.75], "texture": "#7"}, - "east": {"uv": [8.75, 5.5, 9, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8.5, 9, 9, 9.25], "texture": "#7"}, - "west": {"uv": [8.5, 5.5, 8.75, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8.5, 5.5, 9, 9.25], "texture": "#7"}, - "down": {"uv": [8.5, 9.25, 9, 5.5], "texture": "#7"} + "north": { + "uv": [ + 9, + 5.5, + 8.5, + 5.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 8.75, + 5.5, + 9, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 9, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 9, + 5.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_11", - "from": [9.5, 0, 5.5], - "to": [9.75, 0.25, 9], + "from": [ + 9.5, + 0, + 5.5 + ], + "to": [ + 9.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.75, 5.5, 9.5, 5.75], "texture": "#7"}, - "east": {"uv": [9.5, 5.5, 9.75, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9.5, 8.75, 9.75, 9], "texture": "#7"}, - "west": {"uv": [9.5, 5.5, 9.75, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9.5, 5.5, 9.75, 9], "texture": "#7"}, - "down": {"uv": [9.5, 9, 9.75, 5.5], "texture": "#7"} + "north": { + "uv": [ + 9.75, + 5.5, + 9.5, + 5.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9.5, + 8.75, + 9.75, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9.5, + 5.5, + 9.75, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9.5, + 9, + 9.75, + 5.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_12", - "from": [10.25, 0, 5.5], - "to": [10.75, 0.25, 10], + "from": [ + 10.25, + 0, + 5.5 + ], + "to": [ + 10.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.75, 5.5, 10.25, 5.75], "texture": "#7"}, - "east": {"uv": [10.5, 5.5, 10.75, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [10.25, 9.75, 10.75, 10], "texture": "#7"}, - "west": {"uv": [10.25, 5.5, 10.5, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [10.25, 5.5, 10.75, 10], "texture": "#7"}, - "down": {"uv": [10.25, 10, 10.75, 5.5], "texture": "#7"} + "north": { + "uv": [ + 10.75, + 5.5, + 10.25, + 5.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10.5, + 5.5, + 10.75, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 10.75, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 10.25, + 5.5, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 10.25, + 5.5, + 10.75, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 10.25, + 10, + 10.75, + 5.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_13", - "from": [4.25, 0, 5.75], - "to": [5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 5.75 + ], + "to": [ + 5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5, 5.75, 4.25, 6], "texture": "#7"}, - "east": {"uv": [4.75, 5.75, 5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [4.25, 9.5, 5, 9.75], "texture": "#7"}, - "west": {"uv": [4.25, 5.75, 4.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [4.25, 5.75, 5, 9.75], "texture": "#7"}, - "down": {"uv": [4.25, 9.75, 5, 5.75], "texture": "#7"} + "north": { + "uv": [ + 5, + 5.75, + 4.25, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.75, + 5.75, + 5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 4.25, + 5.75, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 4.25, + 5.75, + 5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 5, + 5.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_14", - "from": [9, 0, 5.75], - "to": [9.5, 0.25, 9], + "from": [ + 9, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [9.5, 5.75, 9, 6], "texture": "#7"}, - "east": {"uv": [9.25, 5.75, 9.5, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9, 8.75, 9.5, 9], "texture": "#7"}, - "west": {"uv": [9, 5.75, 9.25, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9, 5.75, 9.5, 9], "texture": "#7"}, - "down": {"uv": [9, 9, 9.5, 5.75], "texture": "#7"} + "north": { + "uv": [ + 9.5, + 5.75, + 9, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9, + 8.75, + 9.5, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.25, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9, + 5.75, + 9.5, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9, + 9, + 9.5, + 5.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_15", - "from": [10.75, 0, 5.75], - "to": [11, 0.25, 10.25], + "from": [ + 10.75, + 0, + 5.75 + ], + "to": [ + 11, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11, 5.75, 10.75, 6], "texture": "#7"}, - "east": {"uv": [10.75, 5.75, 11, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [10.75, 10, 11, 10.25], "texture": "#7"}, - "west": {"uv": [10.75, 5.75, 11, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [10.75, 5.75, 11, 10.25], "texture": "#7"}, - "down": {"uv": [10.75, 10.25, 11, 5.75], "texture": "#7"} + "north": { + "uv": [ + 11, + 5.75, + 10.75, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10.75, + 5.75, + 11, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 10.75, + 5.75, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 10.75, + 5.75, + 11, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11, + 5.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_16", - "from": [14.75, 0, 5.75], - "to": [15.75, 0.25, 7.25], + "from": [ + 14.75, + 0, + 5.75 + ], + "to": [ + 15.75, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.75, 5.75, 14.75, 6], "texture": "#7"}, - "east": {"uv": [15.5, 5.75, 15.75, 7.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.75, 7, 15.75, 7.25], "texture": "#7"}, - "west": {"uv": [14.75, 5.75, 15, 7.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.75, 5.75, 15.75, 7.25], "texture": "#7"}, - "down": {"uv": [14.75, 7.25, 15.75, 5.75], "texture": "#7"} + "north": { + "uv": [ + 15.75, + 5.75, + 14.75, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.5, + 5.75, + 15.75, + 7.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.75, + 7, + 15.75, + 7.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.75, + 5.75, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.75, + 5.75, + 15.75, + 7.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15.75, + 5.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_17", - "from": [3.75, 0, 6], - "to": [4.25, 0.25, 9.75], + "from": [ + 3.75, + 0, + 6 + ], + "to": [ + 4.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.25, 6, 3.75, 6.25], "texture": "#7"}, - "east": {"uv": [4, 6, 4.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [3.75, 9.5, 4.25, 9.75], "texture": "#7"}, - "west": {"uv": [3.75, 6, 4, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [3.75, 6, 4.25, 9.75], "texture": "#7"}, - "down": {"uv": [3.75, 9.75, 4.25, 6], "texture": "#7"} + "north": { + "uv": [ + 4.25, + 6, + 3.75, + 6.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4, + 6, + 4.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 4.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 3.75, + 6, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 3.75, + 6, + 4.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 4.25, + 6 + ], + "texture": "#7" + } } }, { "name": "suzuki_18", - "from": [11, 0, 6], - "to": [11.5, 0.25, 8.5], + "from": [ + 11, + 0, + 6 + ], + "to": [ + 11.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.5, 6, 11, 6.25], "texture": "#7"}, - "east": {"uv": [11.25, 6, 11.5, 8.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11, 8.25, 11.5, 8.5], "texture": "#7"}, - "west": {"uv": [11, 6, 11.25, 8.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11, 6, 11.5, 8.5], "texture": "#7"}, - "down": {"uv": [11, 8.5, 11.5, 6], "texture": "#7"} + "north": { + "uv": [ + 11.5, + 6, + 11, + 6.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11.25, + 6, + 11.5, + 8.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11, + 8.25, + 11.5, + 8.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11, + 6, + 11.25, + 8.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11, + 6, + 11.5, + 8.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11, + 8.5, + 11.5, + 6 + ], + "texture": "#7" + } } }, { "name": "suzuki_19", - "from": [14.25, 0, 6], - "to": [14.75, 0.25, 8.75], + "from": [ + 14.25, + 0, + 6 + ], + "to": [ + 14.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.75, 6, 14.25, 6.25], "texture": "#7"}, - "east": {"uv": [14.5, 6, 14.75, 8.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.25, 8.5, 14.75, 8.75], "texture": "#7"}, - "west": {"uv": [14.25, 6, 14.5, 8.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.25, 6, 14.75, 8.75], "texture": "#7"}, - "down": {"uv": [14.25, 8.75, 14.75, 6], "texture": "#7"} + "north": { + "uv": [ + 14.75, + 6, + 14.25, + 6.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14.5, + 6, + 14.75, + 8.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.25, + 8.5, + 14.75, + 8.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.25, + 6, + 14.5, + 8.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.25, + 6, + 14.75, + 8.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.25, + 8.75, + 14.75, + 6 + ], + "texture": "#7" + } } }, { "name": "suzuki_20", - "from": [15.75, 0, 6], - "to": [16, 0.25, 7], + "from": [ + 15.75, + 0, + 6 + ], + "to": [ + 16, + 0.25, + 7 + ], "faces": { - "north": {"uv": [16, 6, 15.75, 6.25], "texture": "#7"}, - "east": {"uv": [15.75, 6, 16, 7], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15.75, 6.75, 16, 7], "texture": "#7"}, - "west": {"uv": [15.75, 6, 16, 7], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15.75, 6, 16, 7], "texture": "#7"}, - "down": {"uv": [15.75, 7, 16, 6], "texture": "#7"} + "north": { + "uv": [ + 16, + 6, + 15.75, + 6.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.75, + 6, + 16, + 7 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15.75, + 6.75, + 16, + 7 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15.75, + 6, + 16, + 7 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15.75, + 6, + 16, + 7 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15.75, + 7, + 16, + 6 + ], + "texture": "#7" + } } }, { "name": "suzuki_21", - "from": [3, 0, 6.25], - "to": [3.75, 0.25, 9.75], + "from": [ + 3, + 0, + 6.25 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.75, 6.25, 3, 6.5], "texture": "#7"}, - "east": {"uv": [3.5, 6.25, 3.75, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [3, 9.5, 3.75, 9.75], "texture": "#7"}, - "west": {"uv": [3, 6.25, 3.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [3, 6.25, 3.75, 9.75], "texture": "#7"}, - "down": {"uv": [3, 9.75, 3.75, 6.25], "texture": "#7"} + "north": { + "uv": [ + 3.75, + 6.25, + 3, + 6.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 3.5, + 6.25, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 3, + 9.5, + 3.75, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 3, + 6.25, + 3.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 3, + 6.25, + 3.75, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 3, + 9.75, + 3.75, + 6.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_22", - "from": [11.5, 0, 6.25], - "to": [11.75, 0.25, 8.5], + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 11.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [11.75, 6.25, 11.5, 6.5], "texture": "#7"}, - "east": {"uv": [11.5, 6.25, 11.75, 8.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11.5, 8.25, 11.75, 8.5], "texture": "#7"}, - "west": {"uv": [11.5, 6.25, 11.75, 8.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11.5, 6.25, 11.75, 8.5], "texture": "#7"}, - "down": {"uv": [11.5, 8.5, 11.75, 6.25], "texture": "#7"} + "north": { + "uv": [ + 11.75, + 6.25, + 11.5, + 6.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11.5, + 6.25, + 11.75, + 8.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11.5, + 8.25, + 11.75, + 8.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 8.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 11.75, + 8.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11.5, + 8.5, + 11.75, + 6.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_23", - "from": [13.75, 0, 6.25], - "to": [14.25, 0.25, 8.5], + "from": [ + 13.75, + 0, + 6.25 + ], + "to": [ + 14.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.25, 6.25, 13.75, 6.5], "texture": "#7"}, - "east": {"uv": [14, 6.25, 14.25, 8.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [13.75, 8.25, 14.25, 8.5], "texture": "#7"}, - "west": {"uv": [13.75, 6.25, 14, 8.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [13.75, 6.25, 14.25, 8.5], "texture": "#7"}, - "down": {"uv": [13.75, 8.5, 14.25, 6.25], "texture": "#7"} + "north": { + "uv": [ + 14.25, + 6.25, + 13.75, + 6.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14, + 6.25, + 14.25, + 8.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 13.75, + 8.25, + 14.25, + 8.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 13.75, + 6.25, + 14, + 8.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 13.75, + 6.25, + 14.25, + 8.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 13.75, + 8.5, + 14.25, + 6.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_24", - "from": [2.5, 0, 6.5], - "to": [3, 0.25, 9.5], + "from": [ + 2.5, + 0, + 6.5 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 6.5, 2.5, 6.75], "texture": "#7"}, - "east": {"uv": [2.75, 6.5, 3, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2.5, 9.25, 3, 9.5], "texture": "#7"}, - "west": {"uv": [2.5, 6.5, 2.75, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2.5, 6.5, 3, 9.5], "texture": "#7"}, - "down": {"uv": [2.5, 9.5, 3, 6.5], "texture": "#7"} + "north": { + "uv": [ + 3, + 6.5, + 2.5, + 6.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 2.75, + 6.5, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 3, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2.5, + 6.5, + 3, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 3, + 6.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_25", - "from": [11.75, 0, 6.5], - "to": [12, 0.25, 8.25], + "from": [ + 11.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [12, 6.5, 11.75, 6.75], "texture": "#7"}, - "east": {"uv": [11.75, 6.5, 12, 8.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11.75, 8, 12, 8.25], "texture": "#7"}, - "west": {"uv": [11.75, 6.5, 12, 8.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11.75, 6.5, 12, 8.25], "texture": "#7"}, - "down": {"uv": [11.75, 8.25, 12, 6.5], "texture": "#7"} + "north": { + "uv": [ + 12, + 6.5, + 11.75, + 6.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 8.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11.75, + 8, + 12, + 8.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11.75, + 6.5, + 12, + 8.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11.75, + 6.5, + 12, + 8.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11.75, + 8.25, + 12, + 6.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_26", - "from": [13.25, 0, 6.5], - "to": [13.75, 0.25, 8.25], + "from": [ + 13.25, + 0, + 6.5 + ], + "to": [ + 13.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.75, 6.5, 13.25, 6.75], "texture": "#7"}, - "east": {"uv": [13.5, 6.5, 13.75, 8.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [13.25, 8, 13.75, 8.25], "texture": "#7"}, - "west": {"uv": [13.25, 6.5, 13.5, 8.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [13.25, 6.5, 13.75, 8.25], "texture": "#7"}, - "down": {"uv": [13.25, 8.25, 13.75, 6.5], "texture": "#7"} + "north": { + "uv": [ + 13.75, + 6.5, + 13.25, + 6.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13.5, + 6.5, + 13.75, + 8.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 13.25, + 8, + 13.75, + 8.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 13.25, + 6.5, + 13.5, + 8.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 13.25, + 6.5, + 13.75, + 8.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 13.25, + 8.25, + 13.75, + 6.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_27", - "from": [2, 0, 6.75], - "to": [2.5, 0.25, 9.5], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 2.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.5, 6.75, 2, 7], "texture": "#7"}, - "east": {"uv": [2.25, 6.75, 2.5, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2, 9.25, 2.5, 9.5], "texture": "#7"}, - "west": {"uv": [2, 6.75, 2.25, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2, 6.75, 2.5, 9.5], "texture": "#7"}, - "down": {"uv": [2, 9.5, 2.5, 6.75], "texture": "#7"} + "north": { + "uv": [ + 2.5, + 6.75, + 2, + 7 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.5, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2, + 6.75, + 2.5, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.5, + 6.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_28", - "from": [12, 0, 6.75], - "to": [13.25, 0.25, 8.25], + "from": [ + 12, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [13.25, 6.75, 12, 7], "texture": "#7"}, - "east": {"uv": [13, 6.75, 13.25, 8.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [12, 8, 13.25, 8.25], "texture": "#7"}, - "west": {"uv": [12, 6.75, 12.25, 8.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [12, 6.75, 13.25, 8.25], "texture": "#7"}, - "down": {"uv": [12, 8.25, 13.25, 6.75], "texture": "#7"} + "north": { + "uv": [ + 13.25, + 6.75, + 12, + 7 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 8.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 12, + 8, + 13.25, + 8.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 12, + 6.75, + 12.25, + 8.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 12, + 6.75, + 13.25, + 8.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 12, + 8.25, + 13.25, + 6.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_29", - "from": [1.5, 0, 7], - "to": [2, 0.25, 9.25], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2, 7, 1.5, 7.25], "texture": "#7"}, - "east": {"uv": [1.75, 7, 2, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [1.5, 9, 2, 9.25], "texture": "#7"}, - "west": {"uv": [1.5, 7, 1.75, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [1.5, 7, 2, 9.25], "texture": "#7"}, - "down": {"uv": [1.5, 9.25, 2, 7], "texture": "#7"} + "north": { + "uv": [ + 2, + 7, + 1.5, + 7.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 1.5, + 7, + 2, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2, + 7 + ], + "texture": "#7" + } } }, { "name": "suzuki_30", - "from": [1, 0, 7.25], - "to": [1.5, 0.25, 9.25], + "from": [ + 1, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1, 7.5], "texture": "#7"}, - "east": {"uv": [1.25, 7.25, 1.5, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [1, 9, 1.5, 9.25], "texture": "#7"}, - "west": {"uv": [1, 7.25, 1.25, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [1, 7.25, 1.5, 9.25], "texture": "#7"}, - "down": {"uv": [1, 9.25, 1.5, 7.25], "texture": "#7"} + "north": { + "uv": [ + 1.5, + 7.25, + 1, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 1, + 7.25, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 1, + 7.25, + 1.5, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.5, + 7.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_31", - "from": [14.75, 0, 7.25], - "to": [15.25, 0.25, 9], + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.25, 7.25, 14.75, 7.5], "texture": "#7"}, - "east": {"uv": [15, 7.25, 15.25, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.75, 8.75, 15.25, 9], "texture": "#7"}, - "west": {"uv": [14.75, 7.25, 15, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.75, 7.25, 15.25, 9], "texture": "#7"}, - "down": {"uv": [14.75, 9, 15.25, 7.25], "texture": "#7"} + "north": { + "uv": [ + 15.25, + 7.25, + 14.75, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.75, + 8.75, + 15.25, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15.25, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.75, + 9, + 15.25, + 7.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_32", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 9], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#7"}, - "east": {"uv": [0.75, 7.5, 1, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.75, 8.75, 1, 9], "texture": "#7"}, - "west": {"uv": [0.75, 7.5, 1, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.75, 7.5, 1, 9], "texture": "#7"}, - "down": {"uv": [0.75, 9, 1, 7.5], "texture": "#7"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.75, + 9, + 1, + 7.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_33", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 8.75], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#7"}, - "east": {"uv": [0.5, 7.75, 0.75, 8.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.5, 8.5, 0.75, 8.75], "texture": "#7"}, - "west": {"uv": [0.5, 7.75, 0.75, 8.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.5, 7.75, 0.75, 8.75], "texture": "#7"}, - "down": {"uv": [0.5, 8.75, 0.75, 7.75], "texture": "#7"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.75, + 8.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.5, + 8.75, + 0.75, + 7.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_34", - "from": [15.25, 0, 7.75], - "to": [15.75, 0.25, 9.25], + "from": [ + 15.25, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15.25, 8], "texture": "#7"}, - "east": {"uv": [15.5, 7.75, 15.75, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15.25, 9, 15.75, 9.25], "texture": "#7"}, - "west": {"uv": [15.25, 7.75, 15.5, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15.25, 7.75, 15.75, 9.25], "texture": "#7"}, - "down": {"uv": [15.25, 9.25, 15.75, 7.75], "texture": "#7"} + "north": { + "uv": [ + 15.75, + 7.75, + 15.25, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15.25, + 9, + 15.75, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15.25, + 7.75, + 15.5, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15.25, + 7.75, + 15.75, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15.25, + 9.25, + 15.75, + 7.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_35", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 8.5], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#7"}, - "east": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#7"}, - "west": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.25, 8, 0.5, 8.5], "texture": "#7"}, - "down": {"uv": [0.25, 8.5, 0.5, 8], "texture": "#7"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8 + ], + "texture": "#7" + } } }, { "name": "suzuki_36", - "from": [15.75, 0, 8], - "to": [16, 0.25, 9], + "from": [ + 15.75, + 0, + 8 + ], + "to": [ + 16, + 0.25, + 9 + ], "faces": { - "north": {"uv": [16, 8, 15.75, 8.25], "texture": "#7"}, - "east": {"uv": [15.75, 8, 16, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15.75, 8.75, 16, 9], "texture": "#7"}, - "west": {"uv": [15.75, 8, 16, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15.75, 8, 16, 9], "texture": "#7"}, - "down": {"uv": [15.75, 9, 16, 8], "texture": "#7"} + "north": { + "uv": [ + 16, + 8, + 15.75, + 8.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.75, + 8, + 16, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15.75, + 8.75, + 16, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15.75, + 8, + 16, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15.75, + 8, + 16, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15.75, + 9, + 16, + 8 + ], + "texture": "#7" + } } }, { "name": "suzuki_37", - "from": [11, 0, 8.5], - "to": [11.25, 0.25, 10], + "from": [ + 11, + 0, + 8.5 + ], + "to": [ + 11.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.25, 8.5, 11, 8.75], "texture": "#7"}, - "east": {"uv": [11, 8.5, 11.25, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11, 9.75, 11.25, 10], "texture": "#7"}, - "west": {"uv": [11, 8.5, 11.25, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11, 8.5, 11.25, 10], "texture": "#7"}, - "down": {"uv": [11, 10, 11.25, 8.5], "texture": "#7"} + "north": { + "uv": [ + 11.25, + 8.5, + 11, + 8.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.25, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11, + 9.75, + 11.25, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11, + 8.5, + 11.25, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11, + 8.5, + 11.25, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11, + 10, + 11.25, + 8.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_38", - "from": [14, 0, 8.5], - "to": [14.25, 0.25, 8.75], + "from": [ + 14, + 0, + 8.5 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 8.5, 14, 8.75], "texture": "#7"}, - "east": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14, 8.5, 14.25, 8.75], "texture": "#7"}, - "west": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14, 8.5, 14.25, 8.75], "texture": "#7"}, - "down": {"uv": [14, 8.75, 14.25, 8.5], "texture": "#7"} + "north": { + "uv": [ + 14.25, + 8.5, + 14, + 8.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14, + 8.75, + 14.25, + 8.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_39", - "from": [14.5, 0, 8.75], - "to": [14.75, 0.25, 9], + "from": [ + 14.5, + 0, + 8.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.75, 8.75, 14.5, 9], "texture": "#7"}, - "east": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#7"}, - "west": {"uv": [14.5, 8.75, 14.75, 9], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.5, 8.75, 14.75, 9], "texture": "#7"}, - "down": {"uv": [14.5, 9, 14.75, 8.75], "texture": "#7"} + "north": { + "uv": [ + 14.75, + 8.75, + 14.5, + 9 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.5, + 8.75, + 14.75, + 9 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.5, + 9, + 14.75, + 8.75 + ], + "texture": "#7" + } } }, { "name": "suzuki_40", - "from": [9, 0, 9], - "to": [9.25, 0.25, 9.25], + "from": [ + 9, + 0, + 9 + ], + "to": [ + 9.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.25, 9, 9, 9.25], "texture": "#7"}, - "east": {"uv": [9, 9, 9.25, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9, 9, 9.25, 9.25], "texture": "#7"}, - "west": {"uv": [9, 9, 9.25, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9, 9, 9.25, 9.25], "texture": "#7"}, - "down": {"uv": [9, 9.25, 9.25, 9], "texture": "#7"} + "north": { + "uv": [ + 9.25, + 9, + 9, + 9.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9, + 9, + 9.25, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9, + 9.25, + 9.25, + 9 + ], + "texture": "#7" + } } }, { "name": "suzuki_41", - "from": [15, 0, 9], - "to": [15.25, 0.25, 9.25], + "from": [ + 15, + 0, + 9 + ], + "to": [ + 15.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.25, 9, 15, 9.25], "texture": "#7"}, - "east": {"uv": [15, 9, 15.25, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15, 9, 15.25, 9.25], "texture": "#7"}, - "west": {"uv": [15, 9, 15.25, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15, 9, 15.25, 9.25], "texture": "#7"}, - "down": {"uv": [15, 9.25, 15.25, 9], "texture": "#7"} + "north": { + "uv": [ + 15.25, + 9, + 15, + 9.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15, + 9.25, + 15.25, + 9 + ], + "texture": "#7" + } } }, { "name": "suzuki_42", - "from": [1.75, 0, 9.25], - "to": [2, 0.25, 9.5], + "from": [ + 1.75, + 0, + 9.25 + ], + "to": [ + 2, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2, 9.25, 1.75, 9.5], "texture": "#7"}, - "east": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#7"}, - "west": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [1.75, 9.25, 2, 9.5], "texture": "#7"}, - "down": {"uv": [1.75, 9.5, 2, 9.25], "texture": "#7"} + "north": { + "uv": [ + 2, + 9.25, + 1.75, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 2, + 9.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_43", - "from": [10, 0, 9.25], - "to": [10.25, 0.25, 9.75], + "from": [ + 10, + 0, + 9.25 + ], + "to": [ + 10.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.25, 9.25, 10, 9.5], "texture": "#7"}, - "east": {"uv": [10, 9.25, 10.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [10, 9.5, 10.25, 9.75], "texture": "#7"}, - "west": {"uv": [10, 9.25, 10.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [10, 9.25, 10.25, 9.75], "texture": "#7"}, - "down": {"uv": [10, 9.75, 10.25, 9.25], "texture": "#7"} + "north": { + "uv": [ + 10.25, + 9.25, + 10, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10, + 9.25, + 10.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 10, + 9.25, + 10.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 10, + 9.25, + 10.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 10, + 9.75, + 10.25, + 9.25 + ], + "texture": "#7" + } } }, { "name": "suzuki_44", - "from": [6.5, 0, 9.5], - "to": [6.75, 0.25, 10.5], + "from": [ + 6.5, + 0, + 9.5 + ], + "to": [ + 6.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6.75, 9.5, 6.5, 9.75], "texture": "#7"}, - "east": {"uv": [6.5, 9.5, 6.75, 10.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6.5, 10.25, 6.75, 10.5], "texture": "#7"}, - "west": {"uv": [6.5, 9.5, 6.75, 10.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6.5, 9.5, 6.75, 10.5], "texture": "#7"}, - "down": {"uv": [6.5, 10.5, 6.75, 9.5], "texture": "#7"} + "north": { + "uv": [ + 6.75, + 9.5, + 6.5, + 9.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.75, + 10.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6.5, + 10.25, + 6.75, + 10.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6.5, + 9.5, + 6.75, + 10.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6.5, + 9.5, + 6.75, + 10.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6.75, + 9.5 + ], + "texture": "#7" + } } }, { "name": "suzuki_45", - "from": [10.5, 0, 10], - "to": [10.75, 0.25, 10.25], + "from": [ + 10.5, + 0, + 10 + ], + "to": [ + 10.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.75, 10, 10.5, 10.25], "texture": "#7"}, - "east": {"uv": [10.5, 10, 10.75, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#7"}, - "west": {"uv": [10.5, 10, 10.75, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#7"}, - "down": {"uv": [10.5, 10.25, 10.75, 10], "texture": "#7"} + "north": { + "uv": [ + 10.75, + 10, + 10.5, + 10.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 10.75, + 10 + ], + "texture": "#7" + } } }, { "name": "suzuki_46", - "from": [5.75, 0, 10.25], - "to": [6, 0.25, 10.5], + "from": [ + 5.75, + 0, + 10.25 + ], + "to": [ + 6, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6, 10.25, 5.75, 10.5], "texture": "#7"}, - "east": {"uv": [5.75, 10.25, 6, 10.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5.75, 10.25, 6, 10.5], "texture": "#7"}, - "west": {"uv": [5.75, 10.25, 6, 10.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5.75, 10.25, 6, 10.5], "texture": "#7"}, - "down": {"uv": [5.75, 10.5, 6, 10.25], "texture": "#7"} + "north": { + "uv": [ + 6, + 10.25, + 5.75, + 10.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5.75, + 10.25, + 6, + 10.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5.75, + 10.5, + 6, + 10.25 + ], + "texture": "#7" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 10, 15], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 10, + 15 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "suzuki", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/syanhaigani.json b/pack/assets/minecraft/models/fish/syanhaigani.json index d78e8dbb..bf2789b9 100644 --- a/pack/assets/minecraft/models/fish/syanhaigani.json +++ b/pack/assets/minecraft/models/fish/syanhaigani.json @@ -2,1398 +2,7576 @@ "__name": "シャンハイガニ", "credit": "Made with Blockbench", "textures": { - "6": "fish/shanhaigani", - "particle": "fish/isidai" + "6": "item/fish/shanhaigani", + "particle": "item/fish/isidai" }, "elements": [ { "name": "shanhaigani_0", - "from": [6.5, 0, 1.25], - "to": [6.75, 0.25, 1.5], + "from": [ + 6.5, + 0, + 1.25 + ], + "to": [ + 6.75, + 0.25, + 1.5 + ], "faces": { - "north": {"uv": [6.75, 1.25, 6.5, 1.5], "texture": "#6"}, - "east": {"uv": [6.5, 1.25, 6.75, 1.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.5, 1.25, 6.75, 1.5], "texture": "#6"}, - "west": {"uv": [6.5, 1.25, 6.75, 1.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.5, 1.25, 6.75, 1.5], "texture": "#6"}, - "down": {"uv": [6.5, 1.5, 6.75, 1.25], "texture": "#6"} + "north": { + "uv": [ + 6.75, + 1.25, + 6.5, + 1.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 1.25, + 6.75, + 1.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 1.25, + 6.75, + 1.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 6.75, + 1.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.5, + 1.25, + 6.75, + 1.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.5, + 1.5, + 6.75, + 1.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_1", - "from": [6, 0, 1.5], - "to": [6.25, 0.25, 1.75], + "from": [ + 6, + 0, + 1.5 + ], + "to": [ + 6.25, + 0.25, + 1.75 + ], "faces": { - "north": {"uv": [6.25, 1.5, 6, 1.75], "texture": "#6"}, - "east": {"uv": [6, 1.5, 6.25, 1.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 1.5, 6.25, 1.75], "texture": "#6"}, - "west": {"uv": [6, 1.5, 6.25, 1.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 1.5, 6.25, 1.75], "texture": "#6"}, - "down": {"uv": [6, 1.75, 6.25, 1.5], "texture": "#6"} + "north": { + "uv": [ + 6.25, + 1.5, + 6, + 1.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 1.5, + 6.25, + 1.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 1.5, + 6.25, + 1.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 1.5, + 6.25, + 1.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 1.5, + 6.25, + 1.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 1.75, + 6.25, + 1.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_2", - "from": [5.25, 0, 2], - "to": [5.5, 0.25, 2.25], + "from": [ + 5.25, + 0, + 2 + ], + "to": [ + 5.5, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [5.5, 2, 5.25, 2.25], "texture": "#6"}, - "east": {"uv": [5.25, 2, 5.5, 2.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.25, 2, 5.5, 2.25], "texture": "#6"}, - "west": {"uv": [5.25, 2, 5.5, 2.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.25, 2, 5.5, 2.25], "texture": "#6"}, - "down": {"uv": [5.25, 2.25, 5.5, 2], "texture": "#6"} + "north": { + "uv": [ + 5.5, + 2, + 5.25, + 2.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 2, + 5.5, + 2.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 2, + 5.5, + 2.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.25, + 2, + 5.5, + 2.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.25, + 2, + 5.5, + 2.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.25, + 2.25, + 5.5, + 2 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_3", - "from": [7.75, 0, 2], - "to": [8, 0.25, 2.25], + "from": [ + 7.75, + 0, + 2 + ], + "to": [ + 8, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [8, 2, 7.75, 2.25], "texture": "#6"}, - "east": {"uv": [7.75, 2, 8, 2.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.75, 2, 8, 2.25], "texture": "#6"}, - "west": {"uv": [7.75, 2, 8, 2.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.75, 2, 8, 2.25], "texture": "#6"}, - "down": {"uv": [7.75, 2.25, 8, 2], "texture": "#6"} + "north": { + "uv": [ + 8, + 2, + 7.75, + 2.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.75, + 2, + 8, + 2.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 2, + 8, + 2.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 2, + 8, + 2.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.75, + 2, + 8, + 2.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.75, + 2.25, + 8, + 2 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_4", - "from": [6.75, 0, 2.25], - "to": [7.75, 0.25, 3.5], + "from": [ + 6.75, + 0, + 2.25 + ], + "to": [ + 7.75, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [7.75, 2.25, 6.75, 2.5], "texture": "#6"}, - "east": {"uv": [7.5, 2.25, 7.75, 3.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.75, 3.25, 7.75, 3.5], "texture": "#6"}, - "west": {"uv": [6.75, 2.25, 7, 3.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.75, 2.25, 7.75, 3.5], "texture": "#6"}, - "down": {"uv": [6.75, 3.5, 7.75, 2.25], "texture": "#6"} + "north": { + "uv": [ + 7.75, + 2.25, + 6.75, + 2.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 2.25, + 7.75, + 3.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 3.25, + 7.75, + 3.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 2.25, + 7, + 3.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.75, + 2.25, + 7.75, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.75, + 3.5, + 7.75, + 2.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_5", - "from": [8.75, 0, 2.25], - "to": [9.75, 0.25, 3.5], + "from": [ + 8.75, + 0, + 2.25 + ], + "to": [ + 9.75, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [9.75, 2.25, 8.75, 2.5], "texture": "#6"}, - "east": {"uv": [9.5, 2.25, 9.75, 3.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.75, 3.25, 9.75, 3.5], "texture": "#6"}, - "west": {"uv": [8.75, 2.25, 9, 3.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.75, 2.25, 9.75, 3.5], "texture": "#6"}, - "down": {"uv": [8.75, 3.5, 9.75, 2.25], "texture": "#6"} + "north": { + "uv": [ + 9.75, + 2.25, + 8.75, + 2.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.5, + 2.25, + 9.75, + 3.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.75, + 3.25, + 9.75, + 3.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 2.25, + 9, + 3.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.75, + 2.25, + 9.75, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.75, + 3.5, + 9.75, + 2.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_6", - "from": [6, 0, 2.5], - "to": [6.75, 0.25, 4.25], + "from": [ + 6, + 0, + 2.5 + ], + "to": [ + 6.75, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [6.75, 2.5, 6, 2.75], "texture": "#6"}, - "east": {"uv": [6.5, 2.5, 6.75, 4.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 4, 6.75, 4.25], "texture": "#6"}, - "west": {"uv": [6, 2.5, 6.25, 4.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 2.5, 6.75, 4.25], "texture": "#6"}, - "down": {"uv": [6, 4.25, 6.75, 2.5], "texture": "#6"} + "north": { + "uv": [ + 6.75, + 2.5, + 6, + 2.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 2.5, + 6.75, + 4.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 4, + 6.75, + 4.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 2.5, + 6.25, + 4.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 2.5, + 6.75, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 4.25, + 6.75, + 2.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_7", - "from": [7.75, 0, 2.5], - "to": [8, 0.25, 2.75], + "from": [ + 7.75, + 0, + 2.5 + ], + "to": [ + 8, + 0.25, + 2.75 + ], "faces": { - "north": {"uv": [8, 2.5, 7.75, 2.75], "texture": "#6"}, - "east": {"uv": [7.75, 2.5, 8, 2.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.75, 2.5, 8, 2.75], "texture": "#6"}, - "west": {"uv": [7.75, 2.5, 8, 2.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.75, 2.5, 8, 2.75], "texture": "#6"}, - "down": {"uv": [7.75, 2.75, 8, 2.5], "texture": "#6"} + "north": { + "uv": [ + 8, + 2.5, + 7.75, + 2.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.75, + 2.5, + 8, + 2.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 2.5, + 8, + 2.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 2.5, + 8, + 2.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.75, + 2.5, + 8, + 2.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.75, + 2.75, + 8, + 2.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_8", - "from": [8.5, 0, 2.5], - "to": [8.75, 0.25, 2.75], + "from": [ + 8.5, + 0, + 2.5 + ], + "to": [ + 8.75, + 0.25, + 2.75 + ], "faces": { - "north": {"uv": [8.75, 2.5, 8.5, 2.75], "texture": "#6"}, - "east": {"uv": [8.5, 2.5, 8.75, 2.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.5, 2.5, 8.75, 2.75], "texture": "#6"}, - "west": {"uv": [8.5, 2.5, 8.75, 2.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.5, 2.5, 8.75, 2.75], "texture": "#6"}, - "down": {"uv": [8.5, 2.75, 8.75, 2.5], "texture": "#6"} + "north": { + "uv": [ + 8.75, + 2.5, + 8.5, + 2.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 2.5, + 8.75, + 2.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.5, + 2.5, + 8.75, + 2.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 2.5, + 8.75, + 2.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.5, + 2.5, + 8.75, + 2.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.5, + 2.75, + 8.75, + 2.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_9", - "from": [9.75, 0, 2.5], - "to": [10.25, 0.25, 4.5], + "from": [ + 9.75, + 0, + 2.5 + ], + "to": [ + 10.25, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [10.25, 2.5, 9.75, 2.75], "texture": "#6"}, - "east": {"uv": [10, 2.5, 10.25, 4.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.75, 4.25, 10.25, 4.5], "texture": "#6"}, - "west": {"uv": [9.75, 2.5, 10, 4.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.75, 2.5, 10.25, 4.5], "texture": "#6"}, - "down": {"uv": [9.75, 4.5, 10.25, 2.5], "texture": "#6"} + "north": { + "uv": [ + 10.25, + 2.5, + 9.75, + 2.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10, + 2.5, + 10.25, + 4.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.75, + 4.25, + 10.25, + 4.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.75, + 2.5, + 10, + 4.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.75, + 2.5, + 10.25, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.75, + 4.5, + 10.25, + 2.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_10", - "from": [5.5, 0, 2.75], - "to": [6, 0.25, 10.5], + "from": [ + 5.5, + 0, + 2.75 + ], + "to": [ + 6, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [6, 2.75, 5.5, 3], "texture": "#6"}, - "east": {"uv": [5.75, 2.75, 6, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.5, 10.25, 6, 10.5], "texture": "#6"}, - "west": {"uv": [5.5, 2.75, 5.75, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.5, 2.75, 6, 10.5], "texture": "#6"}, - "down": {"uv": [5.5, 10.5, 6, 2.75], "texture": "#6"} + "north": { + "uv": [ + 6, + 2.75, + 5.5, + 3 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.75, + 2.75, + 6, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 10.25, + 6, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 2.75, + 5.75, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.5, + 2.75, + 6, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.5, + 10.5, + 6, + 2.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_11", - "from": [10.25, 0, 2.75], - "to": [11, 0.25, 4.75], + "from": [ + 10.25, + 0, + 2.75 + ], + "to": [ + 11, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [11, 2.75, 10.25, 3], "texture": "#6"}, - "east": {"uv": [10.75, 2.75, 11, 4.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.25, 4.5, 11, 4.75], "texture": "#6"}, - "west": {"uv": [10.25, 2.75, 10.5, 4.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.25, 2.75, 11, 4.75], "texture": "#6"}, - "down": {"uv": [10.25, 4.75, 11, 2.75], "texture": "#6"} + "north": { + "uv": [ + 11, + 2.75, + 10.25, + 3 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.75, + 2.75, + 11, + 4.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.25, + 4.5, + 11, + 4.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.25, + 2.75, + 10.5, + 4.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.25, + 2.75, + 11, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.25, + 4.75, + 11, + 2.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_12", - "from": [5.25, 0, 3], - "to": [5.5, 0.25, 10.5], + "from": [ + 5.25, + 0, + 3 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 3, 5.25, 3.25], "texture": "#6"}, - "east": {"uv": [5.25, 3, 5.5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.25, 10.25, 5.5, 10.5], "texture": "#6"}, - "west": {"uv": [5.25, 3, 5.5, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.25, 3, 5.5, 10.5], "texture": "#6"}, - "down": {"uv": [5.25, 10.5, 5.5, 3], "texture": "#6"} + "north": { + "uv": [ + 5.5, + 3, + 5.25, + 3.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 3, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.25, + 3, + 5.5, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.25, + 3, + 5.5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.25, + 10.5, + 5.5, + 3 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_13", - "from": [7.75, 0, 3], - "to": [8, 0.25, 3.25], + "from": [ + 7.75, + 0, + 3 + ], + "to": [ + 8, + 0.25, + 3.25 + ], "faces": { - "north": {"uv": [8, 3, 7.75, 3.25], "texture": "#6"}, - "east": {"uv": [7.75, 3, 8, 3.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.75, 3, 8, 3.25], "texture": "#6"}, - "west": {"uv": [7.75, 3, 8, 3.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.75, 3, 8, 3.25], "texture": "#6"}, - "down": {"uv": [7.75, 3.25, 8, 3], "texture": "#6"} + "north": { + "uv": [ + 8, + 3, + 7.75, + 3.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.75, + 3, + 8, + 3.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 3, + 8, + 3.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 3, + 8, + 3.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.75, + 3, + 8, + 3.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.75, + 3.25, + 8, + 3 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_14", - "from": [8.5, 0, 3], - "to": [8.75, 0.25, 3.5], + "from": [ + 8.5, + 0, + 3 + ], + "to": [ + 8.75, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [8.75, 3, 8.5, 3.25], "texture": "#6"}, - "east": {"uv": [8.5, 3, 8.75, 3.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.5, 3.25, 8.75, 3.5], "texture": "#6"}, - "west": {"uv": [8.5, 3, 8.75, 3.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.5, 3, 8.75, 3.5], "texture": "#6"}, - "down": {"uv": [8.5, 3.5, 8.75, 3], "texture": "#6"} + "north": { + "uv": [ + 8.75, + 3, + 8.5, + 3.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 3, + 8.75, + 3.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.5, + 3.25, + 8.75, + 3.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.75, + 3.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.5, + 3, + 8.75, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.5, + 3.5, + 8.75, + 3 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_15", - "from": [11, 0, 3], - "to": [11.25, 0.25, 10.5], + "from": [ + 11, + 0, + 3 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 3, 11, 3.25], "texture": "#6"}, - "east": {"uv": [11, 3, 11.25, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11, 10.25, 11.25, 10.5], "texture": "#6"}, - "west": {"uv": [11, 3, 11.25, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11, 3, 11.25, 10.5], "texture": "#6"}, - "down": {"uv": [11, 10.5, 11.25, 3], "texture": "#6"} + "north": { + "uv": [ + 11.25, + 3, + 11, + 3.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11, + 3, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11, + 3, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11, + 3, + 11.25, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.25, + 3 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_16", - "from": [3.25, 0, 3.25], - "to": [3.5, 0.25, 6.75], + "from": [ + 3.25, + 0, + 3.25 + ], + "to": [ + 3.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [3.5, 3.25, 3.25, 3.5], "texture": "#6"}, - "east": {"uv": [3.25, 3.25, 3.5, 6.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.25, 6.5, 3.5, 6.75], "texture": "#6"}, - "west": {"uv": [3.25, 3.25, 3.5, 6.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.25, 3.25, 3.5, 6.75], "texture": "#6"}, - "down": {"uv": [3.25, 6.75, 3.5, 3.25], "texture": "#6"} + "north": { + "uv": [ + 3.5, + 3.25, + 3.25, + 3.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 3.25, + 3.5, + 6.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.25, + 3.25, + 3.5, + 6.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.25, + 3.25, + 3.5, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.25, + 6.75, + 3.5, + 3.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_17", - "from": [5, 0, 3.25], - "to": [5.25, 0.25, 10.5], + "from": [ + 5, + 0, + 3.25 + ], + "to": [ + 5.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.25, 3.25, 5, 3.5], "texture": "#6"}, - "east": {"uv": [5, 3.25, 5.25, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5, 10.25, 5.25, 10.5], "texture": "#6"}, - "west": {"uv": [5, 3.25, 5.25, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5, 3.25, 5.25, 10.5], "texture": "#6"}, - "down": {"uv": [5, 10.5, 5.25, 3.25], "texture": "#6"} + "north": { + "uv": [ + 5.25, + 3.25, + 5, + 3.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 3.25, + 5.25, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 10.25, + 5.25, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5, + 3.25, + 5.25, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5, + 3.25, + 5.25, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5, + 10.5, + 5.25, + 3.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_18", - "from": [11.25, 0, 3.25], - "to": [11.5, 0.25, 10.5], + "from": [ + 11.25, + 0, + 3.25 + ], + "to": [ + 11.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.5, 3.25, 11.25, 3.5], "texture": "#6"}, - "east": {"uv": [11.25, 3.25, 11.5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.25, 10.25, 11.5, 10.5], "texture": "#6"}, - "west": {"uv": [11.25, 3.25, 11.5, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.25, 3.25, 11.5, 10.5], "texture": "#6"}, - "down": {"uv": [11.25, 10.5, 11.5, 3.25], "texture": "#6"} + "north": { + "uv": [ + 11.5, + 3.25, + 11.25, + 3.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11.25, + 3.25, + 11.5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.25, + 10.25, + 11.5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.25, + 3.25, + 11.5, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.25, + 3.25, + 11.5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.25, + 10.5, + 11.5, + 3.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_19", - "from": [3, 0, 3.5], - "to": [3.25, 0.25, 6.25], + "from": [ + 3, + 0, + 3.5 + ], + "to": [ + 3.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [3.25, 3.5, 3, 3.75], "texture": "#6"}, - "east": {"uv": [3, 3.5, 3.25, 6.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3, 6, 3.25, 6.25], "texture": "#6"}, - "west": {"uv": [3, 3.5, 3.25, 6.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3, 3.5, 3.25, 6.25], "texture": "#6"}, - "down": {"uv": [3, 6.25, 3.25, 3.5], "texture": "#6"} + "north": { + "uv": [ + 3.25, + 3.5, + 3, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 3.5, + 3.25, + 6.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 6, + 3.25, + 6.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 3.5, + 3.25, + 6.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3, + 3.5, + 3.25, + 6.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3, + 6.25, + 3.25, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_20", - "from": [3.5, 0, 3.5], - "to": [3.75, 0.25, 8], + "from": [ + 3.5, + 0, + 3.5 + ], + "to": [ + 3.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [3.75, 3.5, 3.5, 3.75], "texture": "#6"}, - "east": {"uv": [3.5, 3.5, 3.75, 8], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.5, 7.75, 3.75, 8], "texture": "#6"}, - "west": {"uv": [3.5, 3.5, 3.75, 8], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.5, 3.5, 3.75, 8], "texture": "#6"}, - "down": {"uv": [3.5, 8, 3.75, 3.5], "texture": "#6"} + "north": { + "uv": [ + 3.75, + 3.5, + 3.5, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.5, + 3.5, + 3.75, + 8 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 3.5, + 3.75, + 8 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.5, + 3.5, + 3.75, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.5, + 8, + 3.75, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_21", - "from": [6.75, 0, 3.5], - "to": [7.25, 0.25, 4], + "from": [ + 6.75, + 0, + 3.5 + ], + "to": [ + 7.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [7.25, 3.5, 6.75, 3.75], "texture": "#6"}, - "east": {"uv": [7, 3.5, 7.25, 4], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.75, 3.75, 7.25, 4], "texture": "#6"}, - "west": {"uv": [6.75, 3.5, 7, 4], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.75, 3.5, 7.25, 4], "texture": "#6"}, - "down": {"uv": [6.75, 4, 7.25, 3.5], "texture": "#6"} + "north": { + "uv": [ + 7.25, + 3.5, + 6.75, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 3.5, + 7.25, + 4 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 3.75, + 7.25, + 4 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 3.5, + 7, + 4 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.75, + 3.5, + 7.25, + 4 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.75, + 4, + 7.25, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_22", - "from": [7.25, 0, 3.5], - "to": [7.5, 0.25, 3.75], + "from": [ + 7.25, + 0, + 3.5 + ], + "to": [ + 7.5, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [7.5, 3.5, 7.25, 3.75], "texture": "#6"}, - "east": {"uv": [7.25, 3.5, 7.5, 3.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.25, 3.5, 7.5, 3.75], "texture": "#6"}, - "west": {"uv": [7.25, 3.5, 7.5, 3.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.25, 3.5, 7.5, 3.75], "texture": "#6"}, - "down": {"uv": [7.25, 3.75, 7.5, 3.5], "texture": "#6"} + "north": { + "uv": [ + 7.5, + 3.5, + 7.25, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.25, + 3.5, + 7.5, + 3.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.25, + 3.75, + 7.5, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_23", - "from": [9, 0, 3.5], - "to": [9.75, 0.25, 3.75], + "from": [ + 9, + 0, + 3.5 + ], + "to": [ + 9.75, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [9.75, 3.5, 9, 3.75], "texture": "#6"}, - "east": {"uv": [9.5, 3.5, 9.75, 3.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9, 3.5, 9.75, 3.75], "texture": "#6"}, - "west": {"uv": [9, 3.5, 9.25, 3.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9, 3.5, 9.75, 3.75], "texture": "#6"}, - "down": {"uv": [9, 3.75, 9.75, 3.5], "texture": "#6"} + "north": { + "uv": [ + 9.75, + 3.5, + 9, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 9.75, + 3.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 3.5, + 9.75, + 3.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9, + 3.5, + 9.25, + 3.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9, + 3.5, + 9.75, + 3.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9, + 3.75, + 9.75, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_24", - "from": [13, 0, 3.5], - "to": [13.5, 0.25, 6.25], + "from": [ + 13, + 0, + 3.5 + ], + "to": [ + 13.5, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [13.5, 3.5, 13, 3.75], "texture": "#6"}, - "east": {"uv": [13.25, 3.5, 13.5, 6.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13, 6, 13.5, 6.25], "texture": "#6"}, - "west": {"uv": [13, 3.5, 13.25, 6.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13, 3.5, 13.5, 6.25], "texture": "#6"}, - "down": {"uv": [13, 6.25, 13.5, 3.5], "texture": "#6"} + "north": { + "uv": [ + 13.5, + 3.5, + 13, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.25, + 3.5, + 13.5, + 6.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13, + 6, + 13.5, + 6.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13, + 3.5, + 13.25, + 6.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13, + 3.5, + 13.5, + 6.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13, + 6.25, + 13.5, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_25", - "from": [13.75, 0, 3.5], - "to": [14, 0.25, 3.75], + "from": [ + 13.75, + 0, + 3.5 + ], + "to": [ + 14, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [14, 3.5, 13.75, 3.75], "texture": "#6"}, - "east": {"uv": [13.75, 3.5, 14, 3.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.75, 3.5, 14, 3.75], "texture": "#6"}, - "west": {"uv": [13.75, 3.5, 14, 3.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.75, 3.5, 14, 3.75], "texture": "#6"}, - "down": {"uv": [13.75, 3.75, 14, 3.5], "texture": "#6"} + "north": { + "uv": [ + 14, + 3.5, + 13.75, + 3.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.75, + 3.5, + 14, + 3.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.75, + 3.5, + 14, + 3.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.75, + 3.5, + 14, + 3.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.75, + 3.5, + 14, + 3.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.75, + 3.75, + 14, + 3.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_26", - "from": [2.75, 0, 3.75], - "to": [3, 0.25, 5.25], + "from": [ + 2.75, + 0, + 3.75 + ], + "to": [ + 3, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [3, 3.75, 2.75, 4], "texture": "#6"}, - "east": {"uv": [2.75, 3.75, 3, 5.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.75, 5, 3, 5.25], "texture": "#6"}, - "west": {"uv": [2.75, 3.75, 3, 5.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.75, 3.75, 3, 5.25], "texture": "#6"}, - "down": {"uv": [2.75, 5.25, 3, 3.75], "texture": "#6"} + "north": { + "uv": [ + 3, + 3.75, + 2.75, + 4 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.75, + 3.75, + 3, + 5.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.75, + 3.75, + 3, + 5.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.75, + 3.75, + 3, + 5.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.75, + 5.25, + 3, + 3.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_27", - "from": [4.75, 0, 3.75], - "to": [5, 0.25, 11], + "from": [ + 4.75, + 0, + 3.75 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 3.75, 4.75, 4], "texture": "#6"}, - "east": {"uv": [4.75, 3.75, 5, 11], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.75, 10.75, 5, 11], "texture": "#6"}, - "west": {"uv": [4.75, 3.75, 5, 11], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.75, 3.75, 5, 11], "texture": "#6"}, - "down": {"uv": [4.75, 11, 5, 3.75], "texture": "#6"} + "north": { + "uv": [ + 5, + 3.75, + 4.75, + 4 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.75, + 3.75, + 5, + 11 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.75, + 3.75, + 5, + 11 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.75, + 3.75, + 5, + 11 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.75, + 11, + 5, + 3.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_28", - "from": [9.5, 0, 3.75], - "to": [9.75, 0.25, 4.5], + "from": [ + 9.5, + 0, + 3.75 + ], + "to": [ + 9.75, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [9.75, 3.75, 9.5, 4], "texture": "#6"}, - "east": {"uv": [9.5, 3.75, 9.75, 4.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.5, 4.25, 9.75, 4.5], "texture": "#6"}, - "west": {"uv": [9.5, 3.75, 9.75, 4.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.5, 3.75, 9.75, 4.5], "texture": "#6"}, - "down": {"uv": [9.5, 4.5, 9.75, 3.75], "texture": "#6"} + "north": { + "uv": [ + 9.75, + 3.75, + 9.5, + 4 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.5, + 3.75, + 9.75, + 4.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 4.25, + 9.75, + 4.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 3.75, + 9.75, + 4.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.5, + 3.75, + 9.75, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.5, + 4.5, + 9.75, + 3.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_29", - "from": [11.5, 0, 3.75], - "to": [11.75, 0.25, 10.5], + "from": [ + 11.5, + 0, + 3.75 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 3.75, 11.5, 4], "texture": "#6"}, - "east": {"uv": [11.5, 3.75, 11.75, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#6"}, - "west": {"uv": [11.5, 3.75, 11.75, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.5, 3.75, 11.75, 10.5], "texture": "#6"}, - "down": {"uv": [11.5, 10.5, 11.75, 3.75], "texture": "#6"} + "north": { + "uv": [ + 11.75, + 3.75, + 11.5, + 4 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11.5, + 3.75, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.5, + 3.75, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.5, + 3.75, + 11.75, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 3.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_30", - "from": [12.75, 0, 3.75], - "to": [13, 0.25, 4], + "from": [ + 12.75, + 0, + 3.75 + ], + "to": [ + 13, + 0.25, + 4 + ], "faces": { - "north": {"uv": [13, 3.75, 12.75, 4], "texture": "#6"}, - "east": {"uv": [12.75, 3.75, 13, 4], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 3.75, 13, 4], "texture": "#6"}, - "west": {"uv": [12.75, 3.75, 13, 4], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 3.75, 13, 4], "texture": "#6"}, - "down": {"uv": [12.75, 4, 13, 3.75], "texture": "#6"} + "north": { + "uv": [ + 13, + 3.75, + 12.75, + 4 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.75, + 3.75, + 13, + 4 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 3.75, + 13, + 4 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 3.75, + 13, + 4 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 3.75, + 13, + 4 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 4, + 13, + 3.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_31", - "from": [6.75, 0, 4], - "to": [7, 0.25, 4.25], + "from": [ + 6.75, + 0, + 4 + ], + "to": [ + 7, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [7, 4, 6.75, 4.25], "texture": "#6"}, - "east": {"uv": [6.75, 4, 7, 4.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.75, 4, 7, 4.25], "texture": "#6"}, - "west": {"uv": [6.75, 4, 7, 4.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.75, 4, 7, 4.25], "texture": "#6"}, - "down": {"uv": [6.75, 4.25, 7, 4], "texture": "#6"} + "north": { + "uv": [ + 7, + 4, + 6.75, + 4.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.75, + 4, + 7, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.75, + 4.25, + 7, + 4 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_32", - "from": [8.25, 0, 4], - "to": [8.5, 0.25, 4.25], + "from": [ + 8.25, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [8.5, 4, 8.25, 4.25], "texture": "#6"}, - "east": {"uv": [8.25, 4, 8.5, 4.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8.25, 4, 8.5, 4.25], "texture": "#6"}, - "west": {"uv": [8.25, 4, 8.5, 4.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8.25, 4, 8.5, 4.25], "texture": "#6"}, - "down": {"uv": [8.25, 4.25, 8.5, 4], "texture": "#6"} + "north": { + "uv": [ + 8.5, + 4, + 8.25, + 4.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8.25, + 4, + 8.5, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.25, + 4.25, + 8.5, + 4 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_33", - "from": [4.5, 0, 4.25], - "to": [4.75, 0.25, 5.75], + "from": [ + 4.5, + 0, + 4.25 + ], + "to": [ + 4.75, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [4.75, 4.25, 4.5, 4.5], "texture": "#6"}, - "east": {"uv": [4.5, 4.25, 4.75, 5.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.5, 5.5, 4.75, 5.75], "texture": "#6"}, - "west": {"uv": [4.5, 4.25, 4.75, 5.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.5, 4.25, 4.75, 5.75], "texture": "#6"}, - "down": {"uv": [4.5, 5.75, 4.75, 4.25], "texture": "#6"} + "north": { + "uv": [ + 4.75, + 4.25, + 4.5, + 4.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 4.25, + 4.75, + 5.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 4.75, + 5.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.5, + 4.25, + 4.75, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.5, + 5.75, + 4.75, + 4.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_34", - "from": [6, 0, 4.25], - "to": [6.5, 0.25, 4.5], + "from": [ + 6, + 0, + 4.25 + ], + "to": [ + 6.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [6.5, 4.25, 6, 4.5], "texture": "#6"}, - "east": {"uv": [6.25, 4.25, 6.5, 4.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 4.25, 6.5, 4.5], "texture": "#6"}, - "west": {"uv": [6, 4.25, 6.25, 4.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 4.25, 6.5, 4.5], "texture": "#6"}, - "down": {"uv": [6, 4.5, 6.5, 4.25], "texture": "#6"} + "north": { + "uv": [ + 6.5, + 4.25, + 6, + 4.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 4.25, + 6.5, + 4.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 4.25, + 6.5, + 4.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 4.25, + 6.25, + 4.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 4.25, + 6.5, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 4.5, + 6.5, + 4.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_35", - "from": [11.75, 0, 4.25], - "to": [12, 0.25, 5.5], + "from": [ + 11.75, + 0, + 4.25 + ], + "to": [ + 12, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [12, 4.25, 11.75, 4.5], "texture": "#6"}, - "east": {"uv": [11.75, 4.25, 12, 5.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.75, 5.25, 12, 5.5], "texture": "#6"}, - "west": {"uv": [11.75, 4.25, 12, 5.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.75, 4.25, 12, 5.5], "texture": "#6"}, - "down": {"uv": [11.75, 5.5, 12, 4.25], "texture": "#6"} + "north": { + "uv": [ + 12, + 4.25, + 11.75, + 4.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11.75, + 4.25, + 12, + 5.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.75, + 5.25, + 12, + 5.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.75, + 4.25, + 12, + 5.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.75, + 4.25, + 12, + 5.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.75, + 5.5, + 12, + 4.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_36", - "from": [13.5, 0, 4.25], - "to": [13.75, 0.25, 5], + "from": [ + 13.5, + 0, + 4.25 + ], + "to": [ + 13.75, + 0.25, + 5 + ], "faces": { - "north": {"uv": [13.75, 4.25, 13.5, 4.5], "texture": "#6"}, - "east": {"uv": [13.5, 4.25, 13.75, 5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.5, 4.75, 13.75, 5], "texture": "#6"}, - "west": {"uv": [13.5, 4.25, 13.75, 5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.5, 4.25, 13.75, 5], "texture": "#6"}, - "down": {"uv": [13.5, 5, 13.75, 4.25], "texture": "#6"} + "north": { + "uv": [ + 13.75, + 4.25, + 13.5, + 4.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.5, + 4.25, + 13.75, + 5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.5, + 4.75, + 13.75, + 5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.5, + 4.25, + 13.75, + 5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.5, + 4.25, + 13.75, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.5, + 5, + 13.75, + 4.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_37", - "from": [6, 0, 4.5], - "to": [6.25, 0.25, 5], + "from": [ + 6, + 0, + 4.5 + ], + "to": [ + 6.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [6.25, 4.5, 6, 4.75], "texture": "#6"}, - "east": {"uv": [6, 4.5, 6.25, 5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 4.75, 6.25, 5], "texture": "#6"}, - "west": {"uv": [6, 4.5, 6.25, 5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 4.5, 6.25, 5], "texture": "#6"}, - "down": {"uv": [6, 5, 6.25, 4.5], "texture": "#6"} + "north": { + "uv": [ + 6.25, + 4.5, + 6, + 4.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 4.5, + 6.25, + 5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 4.75, + 6.25, + 5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 4.5, + 6.25, + 5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 4.5, + 6.25, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 5, + 6.25, + 4.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_38", - "from": [10, 0, 4.5], - "to": [10.25, 0.25, 5], + "from": [ + 10, + 0, + 4.5 + ], + "to": [ + 10.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [10.25, 4.5, 10, 4.75], "texture": "#6"}, - "east": {"uv": [10, 4.5, 10.25, 5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10, 4.75, 10.25, 5], "texture": "#6"}, - "west": {"uv": [10, 4.5, 10.25, 5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10, 4.5, 10.25, 5], "texture": "#6"}, - "down": {"uv": [10, 5, 10.25, 4.5], "texture": "#6"} + "north": { + "uv": [ + 10.25, + 4.5, + 10, + 4.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10, + 4.5, + 10.25, + 5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 4.75, + 10.25, + 5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10, + 4.5, + 10.25, + 5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10, + 4.5, + 10.25, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10, + 5, + 10.25, + 4.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_39", - "from": [12.75, 0, 4.5], - "to": [13, 0.25, 6.75], + "from": [ + 12.75, + 0, + 4.5 + ], + "to": [ + 13, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [13, 4.5, 12.75, 4.75], "texture": "#6"}, - "east": {"uv": [12.75, 4.5, 13, 6.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 6.5, 13, 6.75], "texture": "#6"}, - "west": {"uv": [12.75, 4.5, 13, 6.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 4.5, 13, 6.75], "texture": "#6"}, - "down": {"uv": [12.75, 6.75, 13, 4.5], "texture": "#6"} + "north": { + "uv": [ + 13, + 4.5, + 12.75, + 4.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.75, + 4.5, + 13, + 6.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 6.5, + 13, + 6.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 4.5, + 13, + 6.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 4.5, + 13, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 6.75, + 13, + 4.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_40", - "from": [6.25, 0, 4.75], - "to": [7.25, 0.25, 5], + "from": [ + 6.25, + 0, + 4.75 + ], + "to": [ + 7.25, + 0.25, + 5 + ], "faces": { - "north": {"uv": [7.25, 4.75, 6.25, 5], "texture": "#6"}, - "east": {"uv": [7, 4.75, 7.25, 5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.25, 4.75, 7.25, 5], "texture": "#6"}, - "west": {"uv": [6.25, 4.75, 6.5, 5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.25, 4.75, 7.25, 5], "texture": "#6"}, - "down": {"uv": [6.25, 5, 7.25, 4.75], "texture": "#6"} + "north": { + "uv": [ + 7.25, + 4.75, + 6.25, + 5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 4.75, + 7.25, + 5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 4.75, + 7.25, + 5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.25, + 4.75, + 7.25, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.25, + 5, + 7.25, + 4.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_41", - "from": [9.25, 0, 4.75], - "to": [10, 0.25, 10], + "from": [ + 9.25, + 0, + 4.75 + ], + "to": [ + 10, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10, 4.75, 9.25, 5], "texture": "#6"}, - "east": {"uv": [9.75, 4.75, 10, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.25, 9.75, 10, 10], "texture": "#6"}, - "west": {"uv": [9.25, 4.75, 9.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.25, 4.75, 10, 10], "texture": "#6"}, - "down": {"uv": [9.25, 10, 10, 4.75], "texture": "#6"} + "north": { + "uv": [ + 10, + 4.75, + 9.25, + 5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.75, + 4.75, + 10, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 9.75, + 10, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.25, + 4.75, + 9.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.25, + 4.75, + 10, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.25, + 10, + 10, + 4.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_42", - "from": [10.25, 0, 4.75], - "to": [10.5, 0.25, 10], + "from": [ + 10.25, + 0, + 4.75 + ], + "to": [ + 10.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.5, 4.75, 10.25, 5], "texture": "#6"}, - "east": {"uv": [10.25, 4.75, 10.5, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.25, 9.75, 10.5, 10], "texture": "#6"}, - "west": {"uv": [10.25, 4.75, 10.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.25, 4.75, 10.5, 10], "texture": "#6"}, - "down": {"uv": [10.25, 10, 10.5, 4.75], "texture": "#6"} + "north": { + "uv": [ + 10.5, + 4.75, + 10.25, + 5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.25, + 4.75, + 10.5, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.25, + 4.75, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.25, + 4.75, + 10.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.25, + 10, + 10.5, + 4.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_43", - "from": [10.75, 0, 4.75], - "to": [11, 0.25, 10.25], + "from": [ + 10.75, + 0, + 4.75 + ], + "to": [ + 11, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11, 4.75, 10.75, 5], "texture": "#6"}, - "east": {"uv": [10.75, 4.75, 11, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.75, 10, 11, 10.25], "texture": "#6"}, - "west": {"uv": [10.75, 4.75, 11, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.75, 4.75, 11, 10.25], "texture": "#6"}, - "down": {"uv": [10.75, 10.25, 11, 4.75], "texture": "#6"} + "north": { + "uv": [ + 11, + 4.75, + 10.75, + 5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.75, + 4.75, + 11, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.75, + 10, + 11, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.75, + 4.75, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 11, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11, + 4.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_44", - "from": [6.5, 0, 5], - "to": [7.5, 0.25, 10], + "from": [ + 6.5, + 0, + 5 + ], + "to": [ + 7.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.5, 5, 6.5, 5.25], "texture": "#6"}, - "east": {"uv": [7.25, 5, 7.5, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.5, 9.75, 7.5, 10], "texture": "#6"}, - "west": {"uv": [6.5, 5, 6.75, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.5, 5, 7.5, 10], "texture": "#6"}, - "down": {"uv": [6.5, 10, 7.5, 5], "texture": "#6"} + "north": { + "uv": [ + 7.5, + 5, + 6.5, + 5.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 5, + 7.5, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 9.75, + 7.5, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 5, + 6.75, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.5, + 5, + 7.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.5, + 10, + 7.5, + 5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_45", - "from": [10.5, 0, 5], - "to": [10.75, 0.25, 10.25], + "from": [ + 10.5, + 0, + 5 + ], + "to": [ + 10.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [10.75, 5, 10.5, 5.25], "texture": "#6"}, - "east": {"uv": [10.5, 5, 10.75, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.5, 10, 10.75, 10.25], "texture": "#6"}, - "west": {"uv": [10.5, 5, 10.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.5, 5, 10.75, 10.25], "texture": "#6"}, - "down": {"uv": [10.5, 10.25, 10.75, 5], "texture": "#6"} + "north": { + "uv": [ + 10.75, + 5, + 10.5, + 5.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.75, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.5, + 5, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.5, + 5, + 10.75, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 10.75, + 5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_46", - "from": [3.75, 0, 5.25], - "to": [4, 0.25, 12.25], + "from": [ + 3.75, + 0, + 5.25 + ], + "to": [ + 4, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [4, 5.25, 3.75, 5.5], "texture": "#6"}, - "east": {"uv": [3.75, 5.25, 4, 12.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.75, 12, 4, 12.25], "texture": "#6"}, - "west": {"uv": [3.75, 5.25, 4, 12.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.75, 5.25, 4, 12.25], "texture": "#6"}, - "down": {"uv": [3.75, 12.25, 4, 5.25], "texture": "#6"} + "north": { + "uv": [ + 4, + 5.25, + 3.75, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 5.25, + 4, + 12.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.75, + 12, + 4, + 12.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.75, + 5.25, + 4, + 12.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.75, + 5.25, + 4, + 12.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.75, + 12.25, + 4, + 5.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_47", - "from": [4.25, 0, 5.25], - "to": [4.5, 0.25, 5.5], + "from": [ + 4.25, + 0, + 5.25 + ], + "to": [ + 4.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [4.5, 5.25, 4.25, 5.5], "texture": "#6"}, - "east": {"uv": [4.25, 5.25, 4.5, 5.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.25, 5.25, 4.5, 5.5], "texture": "#6"}, - "west": {"uv": [4.25, 5.25, 4.5, 5.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.25, 5.25, 4.5, 5.5], "texture": "#6"}, - "down": {"uv": [4.25, 5.5, 4.5, 5.25], "texture": "#6"} + "north": { + "uv": [ + 4.5, + 5.25, + 4.25, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.25, + 5.25, + 4.5, + 5.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.25, + 5.5, + 4.5, + 5.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_48", - "from": [6, 0, 5.25], - "to": [6.25, 0.25, 10.25], + "from": [ + 6, + 0, + 5.25 + ], + "to": [ + 6.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.25, 5.25, 6, 5.5], "texture": "#6"}, - "east": {"uv": [6, 5.25, 6.25, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 10, 6.25, 10.25], "texture": "#6"}, - "west": {"uv": [6, 5.25, 6.25, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 5.25, 6.25, 10.25], "texture": "#6"}, - "down": {"uv": [6, 10.25, 6.25, 5.25], "texture": "#6"} + "north": { + "uv": [ + 6.25, + 5.25, + 6, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 5.25, + 6.25, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 10, + 6.25, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 5.25, + 6.25, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 5.25, + 6.25, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 10.25, + 6.25, + 5.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_49", - "from": [7.5, 0, 5.25], - "to": [9.25, 0.25, 10.25], + "from": [ + 7.5, + 0, + 5.25 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 5.25, 7.5, 5.5], "texture": "#6"}, - "east": {"uv": [9, 5.25, 9.25, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.5, 10, 9.25, 10.25], "texture": "#6"}, - "west": {"uv": [7.5, 5.25, 7.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.5, 5.25, 9.25, 10.25], "texture": "#6"}, - "down": {"uv": [7.5, 10.25, 9.25, 5.25], "texture": "#6"} + "north": { + "uv": [ + 9.25, + 5.25, + 7.5, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 5.25, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.5, + 10, + 9.25, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.5, + 5.25, + 9.25, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 9.25, + 5.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_50", - "from": [12.5, 0, 5.25], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 5.25 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 5.25, 12.5, 5.5], "texture": "#6"}, - "east": {"uv": [12.5, 5.25, 12.75, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#6"}, - "west": {"uv": [12.5, 5.25, 12.75, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.5, 5.25, 12.75, 9.5], "texture": "#6"}, - "down": {"uv": [12.5, 9.5, 12.75, 5.25], "texture": "#6"} + "north": { + "uv": [ + 12.75, + 5.25, + 12.5, + 5.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.5, + 5.25, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.5, + 5.25, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.5, + 5.25, + 12.75, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 5.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_51", - "from": [6.25, 0, 5.5], - "to": [6.5, 0.25, 10.25], + "from": [ + 6.25, + 0, + 5.5 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 5.5, 6.25, 5.75], "texture": "#6"}, - "east": {"uv": [6.25, 5.5, 6.5, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.25, 10, 6.5, 10.25], "texture": "#6"}, - "west": {"uv": [6.25, 5.5, 6.5, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.25, 5.5, 6.5, 10.25], "texture": "#6"}, - "down": {"uv": [6.25, 10.25, 6.5, 5.5], "texture": "#6"} + "north": { + "uv": [ + 6.5, + 5.5, + 6.25, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 10, + 6.5, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.25, + 5.5, + 6.5, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.25, + 10.25, + 6.5, + 5.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_52", - "from": [10, 0, 5.5], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 5.5 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 5.5, 10, 5.75], "texture": "#6"}, - "east": {"uv": [10, 5.5, 10.25, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#6"}, - "west": {"uv": [10, 5.5, 10.25, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10, 5.5, 10.25, 10], "texture": "#6"}, - "down": {"uv": [10, 10, 10.25, 5.5], "texture": "#6"} + "north": { + "uv": [ + 10.25, + 5.5, + 10, + 5.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10, + 5.5, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10, + 5.5, + 10.25, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 5.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_53", - "from": [4, 0, 5.75], - "to": [4.5, 0.25, 11.25], + "from": [ + 4, + 0, + 5.75 + ], + "to": [ + 4.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.5, 5.75, 4, 6], "texture": "#6"}, - "east": {"uv": [4.25, 5.75, 4.5, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4, 11, 4.5, 11.25], "texture": "#6"}, - "west": {"uv": [4, 5.75, 4.25, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4, 5.75, 4.5, 11.25], "texture": "#6"}, - "down": {"uv": [4, 11.25, 4.5, 5.75], "texture": "#6"} + "north": { + "uv": [ + 4.5, + 5.75, + 4, + 6 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.25, + 5.75, + 4.5, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 11, + 4.5, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 5.75, + 4.25, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4, + 5.75, + 4.5, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4, + 11.25, + 4.5, + 5.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_54", - "from": [11.75, 0, 5.75], - "to": [12.5, 0.25, 9.25], + "from": [ + 11.75, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 5.75, 11.75, 6], "texture": "#6"}, - "east": {"uv": [12.25, 5.75, 12.5, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.75, 9, 12.5, 9.25], "texture": "#6"}, - "west": {"uv": [11.75, 5.75, 12, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.75, 5.75, 12.5, 9.25], "texture": "#6"}, - "down": {"uv": [11.75, 9.25, 12.5, 5.75], "texture": "#6"} + "north": { + "uv": [ + 12.5, + 5.75, + 11.75, + 6 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.75, + 9, + 12.5, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.75, + 5.75, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.75, + 5.75, + 12.5, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12.5, + 5.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_55", - "from": [4.5, 0, 6], - "to": [4.75, 0.25, 11], + "from": [ + 4.5, + 0, + 6 + ], + "to": [ + 4.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.75, 6, 4.5, 6.25], "texture": "#6"}, - "east": {"uv": [4.5, 6, 4.75, 11], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.5, 10.75, 4.75, 11], "texture": "#6"}, - "west": {"uv": [4.5, 6, 4.75, 11], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.5, 6, 4.75, 11], "texture": "#6"}, - "down": {"uv": [4.5, 11, 4.75, 6], "texture": "#6"} + "north": { + "uv": [ + 4.75, + 6, + 4.5, + 6.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 6, + 4.75, + 11 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 6, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.5, + 6, + 4.75, + 11 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.5, + 11, + 4.75, + 6 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_56", - "from": [13, 0, 6.25], - "to": [13.25, 0.25, 6.5], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [13.25, 6.25, 13, 6.5], "texture": "#6"}, - "east": {"uv": [13, 6.25, 13.25, 6.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13, 6.25, 13.25, 6.5], "texture": "#6"}, - "west": {"uv": [13, 6.25, 13.25, 6.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13, 6.25, 13.25, 6.5], "texture": "#6"}, - "down": {"uv": [13, 6.5, 13.25, 6.25], "texture": "#6"} + "north": { + "uv": [ + 13.25, + 6.25, + 13, + 6.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13, + 6.5, + 13.25, + 6.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_57", - "from": [1.75, 0, 6.75], - "to": [3, 0.25, 8.25], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 3, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [3, 6.75, 1.75, 7], "texture": "#6"}, - "east": {"uv": [2.75, 6.75, 3, 8.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1.75, 8, 3, 8.25], "texture": "#6"}, - "west": {"uv": [1.75, 6.75, 2, 8.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1.75, 6.75, 3, 8.25], "texture": "#6"}, - "down": {"uv": [1.75, 8.25, 3, 6.75], "texture": "#6"} + "north": { + "uv": [ + 3, + 6.75, + 1.75, + 7 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.75, + 6.75, + 3, + 8.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1.75, + 8, + 3, + 8.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 8.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 3, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.75, + 8.25, + 3, + 6.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_58", - "from": [13.5, 0, 6.75], - "to": [14.75, 0.25, 8], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.75, 6.75, 13.5, 7], "texture": "#6"}, - "east": {"uv": [14.5, 6.75, 14.75, 8], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.5, 7.75, 14.75, 8], "texture": "#6"}, - "west": {"uv": [13.5, 6.75, 13.75, 8], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.5, 6.75, 14.75, 8], "texture": "#6"}, - "down": {"uv": [13.5, 8, 14.75, 6.75], "texture": "#6"} + "north": { + "uv": [ + 14.75, + 6.75, + 13.5, + 7 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 8 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.5, + 7.75, + 14.75, + 8 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 8 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14.75, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.5, + 8, + 14.75, + 6.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_59", - "from": [1.25, 0, 7], - "to": [1.75, 0.25, 7.75], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [1.75, 7, 1.25, 7.25], "texture": "#6"}, - "east": {"uv": [1.5, 7, 1.75, 7.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1.25, 7.5, 1.75, 7.75], "texture": "#6"}, - "west": {"uv": [1.25, 7, 1.5, 7.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1.25, 7, 1.75, 7.75], "texture": "#6"}, - "down": {"uv": [1.25, 7.75, 1.75, 7], "texture": "#6"} + "north": { + "uv": [ + 1.75, + 7, + 1.25, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 7.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1.25, + 7.5, + 1.75, + 7.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 7.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.75, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.25, + 7.75, + 1.75, + 7 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_60", - "from": [3, 0, 7], - "to": [3.5, 0.25, 10], + "from": [ + 3, + 0, + 7 + ], + "to": [ + 3.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3.5, 7, 3, 7.25], "texture": "#6"}, - "east": {"uv": [3.25, 7, 3.5, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3, 9.75, 3.5, 10], "texture": "#6"}, - "west": {"uv": [3, 7, 3.25, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3, 7, 3.5, 10], "texture": "#6"}, - "down": {"uv": [3, 10, 3.5, 7], "texture": "#6"} + "north": { + "uv": [ + 3.5, + 7, + 3, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 7, + 3.5, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 9.75, + 3.5, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 7, + 3.25, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3, + 7, + 3.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3, + 10, + 3.5, + 7 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_61", - "from": [12.75, 0, 7], - "to": [13.5, 0.25, 8], + "from": [ + 12.75, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [13.5, 7, 12.75, 7.25], "texture": "#6"}, - "east": {"uv": [13.25, 7, 13.5, 8], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 7.75, 13.5, 8], "texture": "#6"}, - "west": {"uv": [12.75, 7, 13, 8], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 7, 13.5, 8], "texture": "#6"}, - "down": {"uv": [12.75, 8, 13.5, 7], "texture": "#6"} + "north": { + "uv": [ + 13.5, + 7, + 12.75, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 8 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 7.75, + 13.5, + 8 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 7, + 13, + 8 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 7, + 13.5, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 8, + 13.5, + 7 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_62", - "from": [14.75, 0, 7], - "to": [15.25, 0.25, 7.75], + "from": [ + 14.75, + 0, + 7 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.25, 7, 14.75, 7.25], "texture": "#6"}, - "east": {"uv": [15, 7, 15.25, 7.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.75, 7.5, 15.25, 7.75], "texture": "#6"}, - "west": {"uv": [14.75, 7, 15, 7.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.75, 7, 15.25, 7.75], "texture": "#6"}, - "down": {"uv": [14.75, 7.75, 15.25, 7], "texture": "#6"} + "north": { + "uv": [ + 15.25, + 7, + 14.75, + 7.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 15, + 7, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.75, + 7.5, + 15.25, + 7.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.75, + 7, + 15, + 7.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.75, + 7, + 15.25, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.75, + 7.75, + 15.25, + 7 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_63", - "from": [1.5, 0, 7.75], - "to": [1.75, 0.25, 8], + "from": [ + 1.5, + 0, + 7.75 + ], + "to": [ + 1.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [1.75, 7.75, 1.5, 8], "texture": "#6"}, - "east": {"uv": [1.5, 7.75, 1.75, 8], "rotation": 90, "texture": "#6"}, - "south": {"uv": [1.5, 7.75, 1.75, 8], "texture": "#6"}, - "west": {"uv": [1.5, 7.75, 1.75, 8], "rotation": 270, "texture": "#6"}, - "up": {"uv": [1.5, 7.75, 1.75, 8], "texture": "#6"}, - "down": {"uv": [1.5, 8, 1.75, 7.75], "texture": "#6"} + "north": { + "uv": [ + 1.75, + 7.75, + 1.5, + 8 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 1.5, + 7.75, + 1.75, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.5, + 8, + 1.75, + 7.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_64", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 8], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#6"}, - "east": {"uv": [14.75, 7.75, 15, 8], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.75, 7.75, 15, 8], "texture": "#6"}, - "west": {"uv": [14.75, 7.75, 15, 8], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.75, 7.75, 15, 8], "texture": "#6"}, - "down": {"uv": [14.75, 8, 15, 7.75], "texture": "#6"} + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.75, + 8, + 15, + 7.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_65", - "from": [14.25, 0, 8], - "to": [14.75, 0.25, 8.25], + "from": [ + 14.25, + 0, + 8 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 8, 14.25, 8.25], "texture": "#6"}, - "east": {"uv": [14.5, 8, 14.75, 8.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.25, 8, 14.75, 8.25], "texture": "#6"}, - "west": {"uv": [14.25, 8, 14.5, 8.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.25, 8, 14.75, 8.25], "texture": "#6"}, - "down": {"uv": [14.25, 8.25, 14.75, 8], "texture": "#6"} + "north": { + "uv": [ + 14.75, + 8, + 14.25, + 8.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.25, + 8, + 14.75, + 8.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.25, + 8, + 14.5, + 8.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.25, + 8, + 14.75, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.25, + 8.25, + 14.75, + 8 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_66", - "from": [2.25, 0, 8.25], - "to": [3, 0.25, 8.5], + "from": [ + 2.25, + 0, + 8.25 + ], + "to": [ + 3, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [3, 8.25, 2.25, 8.5], "texture": "#6"}, - "east": {"uv": [2.75, 8.25, 3, 8.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.25, 8.25, 3, 8.5], "texture": "#6"}, - "west": {"uv": [2.25, 8.25, 2.5, 8.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.25, 8.25, 3, 8.5], "texture": "#6"}, - "down": {"uv": [2.25, 8.5, 3, 8.25], "texture": "#6"} + "north": { + "uv": [ + 3, + 8.25, + 2.25, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.75, + 8.25, + 3, + 8.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 3, + 8.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.5, + 8.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 3, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.25, + 8.5, + 3, + 8.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_67", - "from": [3.5, 0, 8.25], - "to": [3.75, 0.25, 12.25], + "from": [ + 3.5, + 0, + 8.25 + ], + "to": [ + 3.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [3.75, 8.25, 3.5, 8.5], "texture": "#6"}, - "east": {"uv": [3.5, 8.25, 3.75, 12.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.5, 12, 3.75, 12.25], "texture": "#6"}, - "west": {"uv": [3.5, 8.25, 3.75, 12.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.5, 8.25, 3.75, 12.25], "texture": "#6"}, - "down": {"uv": [3.5, 12.25, 3.75, 8.25], "texture": "#6"} + "north": { + "uv": [ + 3.75, + 8.25, + 3.5, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.5, + 8.25, + 3.75, + 12.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.5, + 12, + 3.75, + 12.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 8.25, + 3.75, + 12.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.5, + 8.25, + 3.75, + 12.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.5, + 12.25, + 3.75, + 8.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_68", - "from": [12.75, 0, 8.25], - "to": [13.75, 0.25, 9.5], + "from": [ + 12.75, + 0, + 8.25 + ], + "to": [ + 13.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.75, 8.25, 12.75, 8.5], "texture": "#6"}, - "east": {"uv": [13.5, 8.25, 13.75, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 9.25, 13.75, 9.5], "texture": "#6"}, - "west": {"uv": [12.75, 8.25, 13, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 8.25, 13.75, 9.5], "texture": "#6"}, - "down": {"uv": [12.75, 9.5, 13.75, 8.25], "texture": "#6"} + "north": { + "uv": [ + 13.75, + 8.25, + 12.75, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.5, + 8.25, + 13.75, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 9.25, + 13.75, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 8.25, + 13, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 8.25, + 13.75, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 9.5, + 13.75, + 8.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_69", - "from": [14, 0, 8.25], - "to": [14.25, 0.25, 8.5], + "from": [ + 14, + 0, + 8.25 + ], + "to": [ + 14.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.25, 8.25, 14, 8.5], "texture": "#6"}, - "east": {"uv": [14, 8.25, 14.25, 8.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14, 8.25, 14.25, 8.5], "texture": "#6"}, - "west": {"uv": [14, 8.25, 14.25, 8.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14, 8.25, 14.25, 8.5], "texture": "#6"}, - "down": {"uv": [14, 8.5, 14.25, 8.25], "texture": "#6"} + "north": { + "uv": [ + 14.25, + 8.25, + 14, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14, + 8.25, + 14.25, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14, + 8.5, + 14.25, + 8.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_70", - "from": [2.5, 0, 8.5], - "to": [3, 0.25, 10], + "from": [ + 2.5, + 0, + 8.5 + ], + "to": [ + 3, + 0.25, + 10 + ], "faces": { - "north": {"uv": [3, 8.5, 2.5, 8.75], "texture": "#6"}, - "east": {"uv": [2.75, 8.5, 3, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.5, 9.75, 3, 10], "texture": "#6"}, - "west": {"uv": [2.5, 8.5, 2.75, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.5, 8.5, 3, 10], "texture": "#6"}, - "down": {"uv": [2.5, 10, 3, 8.5], "texture": "#6"} + "north": { + "uv": [ + 3, + 8.5, + 2.5, + 8.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.75, + 8.5, + 3, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.5, + 9.75, + 3, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 2.75, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.5, + 8.5, + 3, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.5, + 10, + 3, + 8.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_71", - "from": [13.75, 0, 8.5], - "to": [14, 0.25, 9.75], + "from": [ + 13.75, + 0, + 8.5 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 8.5, 13.75, 8.75], "texture": "#6"}, - "east": {"uv": [13.75, 8.5, 14, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.75, 9.5, 14, 9.75], "texture": "#6"}, - "west": {"uv": [13.75, 8.5, 14, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.75, 8.5, 14, 9.75], "texture": "#6"}, - "down": {"uv": [13.75, 9.75, 14, 8.5], "texture": "#6"} + "north": { + "uv": [ + 14, + 8.5, + 13.75, + 8.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.75, + 8.5, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.75, + 9.5, + 14, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.75, + 8.5, + 14, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.75, + 8.5, + 14, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.75, + 9.75, + 14, + 8.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_72", - "from": [2, 0, 8.75], - "to": [2.5, 0.25, 9.5], + "from": [ + 2, + 0, + 8.75 + ], + "to": [ + 2.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.5, 8.75, 2, 9], "texture": "#6"}, - "east": {"uv": [2.25, 8.75, 2.5, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2, 9.25, 2.5, 9.5], "texture": "#6"}, - "west": {"uv": [2, 8.75, 2.25, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2, 8.75, 2.5, 9.5], "texture": "#6"}, - "down": {"uv": [2, 9.5, 2.5, 8.75], "texture": "#6"} + "north": { + "uv": [ + 2.5, + 8.75, + 2, + 9 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.25, + 8.75, + 2.5, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.5, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2, + 8.75, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2, + 8.75, + 2.5, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.5, + 8.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_73", - "from": [14, 0, 8.75], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 8.75 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 8.75, 14, 9], "texture": "#6"}, - "east": {"uv": [14, 8.75, 14.25, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#6"}, - "west": {"uv": [14, 8.75, 14.25, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14, 8.75, 14.25, 9.75], "texture": "#6"}, - "down": {"uv": [14, 9.75, 14.25, 8.75], "texture": "#6"} + "north": { + "uv": [ + 14.25, + 8.75, + 14, + 9 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 8.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_74", - "from": [14.25, 0, 9], - "to": [14.5, 0.25, 9.25], + "from": [ + 14.25, + 0, + 9 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 9, 14.25, 9.25], "texture": "#6"}, - "east": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#6"}, - "west": {"uv": [14.25, 9, 14.5, 9.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [14.25, 9, 14.5, 9.25], "texture": "#6"}, - "down": {"uv": [14.25, 9.25, 14.5, 9], "texture": "#6"} + "north": { + "uv": [ + 14.5, + 9, + 14.25, + 9.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 14.25, + 9, + 14.5, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 14.25, + 9.25, + 14.5, + 9 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_75", - "from": [12.25, 0, 9.25], - "to": [12.5, 0.25, 9.5], + "from": [ + 12.25, + 0, + 9.25 + ], + "to": [ + 12.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.5, 9.25, 12.25, 9.5], "texture": "#6"}, - "east": {"uv": [12.25, 9.25, 12.5, 9.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.25, 9.25, 12.5, 9.5], "texture": "#6"}, - "west": {"uv": [12.25, 9.25, 12.5, 9.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.25, 9.25, 12.5, 9.5], "texture": "#6"}, - "down": {"uv": [12.25, 9.5, 12.5, 9.25], "texture": "#6"} + "north": { + "uv": [ + 12.5, + 9.25, + 12.25, + 9.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.25, + 9.5, + 12.5, + 9.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_76", - "from": [2.25, 0, 9.5], - "to": [2.5, 0.25, 10], + "from": [ + 2.25, + 0, + 9.5 + ], + "to": [ + 2.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.5, 9.5, 2.25, 9.75], "texture": "#6"}, - "east": {"uv": [2.25, 9.5, 2.5, 10], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.25, 9.75, 2.5, 10], "texture": "#6"}, - "west": {"uv": [2.25, 9.5, 2.5, 10], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.25, 9.5, 2.5, 10], "texture": "#6"}, - "down": {"uv": [2.25, 10, 2.5, 9.5], "texture": "#6"} + "north": { + "uv": [ + 2.5, + 9.5, + 2.25, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.25, + 9.5, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 9.5, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.25, + 9.5, + 2.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.25, + 10, + 2.5, + 9.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_77", - "from": [11.75, 0, 9.5], - "to": [12.25, 0.25, 11], + "from": [ + 11.75, + 0, + 9.5 + ], + "to": [ + 12.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [12.25, 9.5, 11.75, 9.75], "texture": "#6"}, - "east": {"uv": [12, 9.5, 12.25, 11], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.75, 10.75, 12.25, 11], "texture": "#6"}, - "west": {"uv": [11.75, 9.5, 12, 11], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.75, 9.5, 12.25, 11], "texture": "#6"}, - "down": {"uv": [11.75, 11, 12.25, 9.5], "texture": "#6"} + "north": { + "uv": [ + 12.25, + 9.5, + 11.75, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12, + 9.5, + 12.25, + 11 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.75, + 10.75, + 12.25, + 11 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.75, + 9.5, + 12, + 11 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.75, + 9.5, + 12.25, + 11 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.75, + 11, + 12.25, + 9.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_78", - "from": [12.75, 0, 9.5], - "to": [13.25, 0.25, 9.75], + "from": [ + 12.75, + 0, + 9.5 + ], + "to": [ + 13.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.25, 9.5, 12.75, 9.75], "texture": "#6"}, - "east": {"uv": [13, 9.5, 13.25, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 9.5, 13.25, 9.75], "texture": "#6"}, - "west": {"uv": [12.75, 9.5, 13, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 9.5, 13.25, 9.75], "texture": "#6"}, - "down": {"uv": [12.75, 9.75, 13.25, 9.5], "texture": "#6"} + "north": { + "uv": [ + 13.25, + 9.5, + 12.75, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13, + 9.5, + 13.25, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 9.5, + 13.25, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 9.5, + 13, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 9.5, + 13.25, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 9.75, + 13.25, + 9.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_79", - "from": [13.5, 0, 9.5], - "to": [13.75, 0.25, 9.75], + "from": [ + 13.5, + 0, + 9.5 + ], + "to": [ + 13.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.75, 9.5, 13.5, 9.75], "texture": "#6"}, - "east": {"uv": [13.5, 9.5, 13.75, 9.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13.5, 9.5, 13.75, 9.75], "texture": "#6"}, - "west": {"uv": [13.5, 9.5, 13.75, 9.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13.5, 9.5, 13.75, 9.75], "texture": "#6"}, - "down": {"uv": [13.5, 9.75, 13.75, 9.5], "texture": "#6"} + "north": { + "uv": [ + 13.75, + 9.5, + 13.5, + 9.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13.5, + 9.75, + 13.75, + 9.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_80", - "from": [12.25, 0, 9.75], - "to": [12.75, 0.25, 11.5], + "from": [ + 12.25, + 0, + 9.75 + ], + "to": [ + 12.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.75, 9.75, 12.25, 10], "texture": "#6"}, - "east": {"uv": [12.5, 9.75, 12.75, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.25, 11.25, 12.75, 11.5], "texture": "#6"}, - "west": {"uv": [12.25, 9.75, 12.5, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.25, 9.75, 12.75, 11.5], "texture": "#6"}, - "down": {"uv": [12.25, 11.5, 12.75, 9.75], "texture": "#6"} + "north": { + "uv": [ + 12.75, + 9.75, + 12.25, + 10 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.5, + 9.75, + 12.75, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.25, + 11.25, + 12.75, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.25, + 9.75, + 12.5, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.25, + 9.75, + 12.75, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.25, + 11.5, + 12.75, + 9.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_81", - "from": [2.5, 0, 10], - "to": [2.75, 0.25, 10.25], + "from": [ + 2.5, + 0, + 10 + ], + "to": [ + 2.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.75, 10, 2.5, 10.25], "texture": "#6"}, - "east": {"uv": [2.5, 10, 2.75, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#6"}, - "west": {"uv": [2.5, 10, 2.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [2.5, 10, 2.75, 10.25], "texture": "#6"}, - "down": {"uv": [2.5, 10.25, 2.75, 10], "texture": "#6"} + "north": { + "uv": [ + 2.75, + 10, + 2.5, + 10.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 2.5, + 10, + 2.75, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 2.75, + 10 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_82", - "from": [6.5, 0, 10], - "to": [7, 0.25, 10.25], + "from": [ + 6.5, + 0, + 10 + ], + "to": [ + 7, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7, 10, 6.5, 10.25], "texture": "#6"}, - "east": {"uv": [6.75, 10, 7, 10.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.5, 10, 7, 10.25], "texture": "#6"}, - "west": {"uv": [6.5, 10, 6.75, 10.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.5, 10, 7, 10.25], "texture": "#6"}, - "down": {"uv": [6.5, 10.25, 7, 10], "texture": "#6"} + "north": { + "uv": [ + 7, + 10, + 6.5, + 10.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 10, + 7, + 10.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.5, + 10, + 7, + 10.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 7, + 10 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_83", - "from": [7.25, 0, 10], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 10 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 10, 7.25, 10.25], "texture": "#6"}, - "east": {"uv": [7.25, 10, 7.5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#6"}, - "west": {"uv": [7.25, 10, 7.5, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.25, 10, 7.5, 10.5], "texture": "#6"}, - "down": {"uv": [7.25, 10.5, 7.5, 10], "texture": "#6"} + "north": { + "uv": [ + 7.5, + 10, + 7.25, + 10.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 10, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.25, + 10, + 7.5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 10 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_84", - "from": [3.25, 0, 10.25], - "to": [3.5, 0.25, 12], + "from": [ + 3.25, + 0, + 10.25 + ], + "to": [ + 3.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [3.5, 10.25, 3.25, 10.5], "texture": "#6"}, - "east": {"uv": [3.25, 10.25, 3.5, 12], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3.25, 11.75, 3.5, 12], "texture": "#6"}, - "west": {"uv": [3.25, 10.25, 3.5, 12], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3.25, 10.25, 3.5, 12], "texture": "#6"}, - "down": {"uv": [3.25, 12, 3.5, 10.25], "texture": "#6"} + "north": { + "uv": [ + 3.5, + 10.25, + 3.25, + 10.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 10.25, + 3.5, + 12 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3.25, + 11.75, + 3.5, + 12 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.25, + 10.25, + 3.5, + 12 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3.25, + 10.25, + 3.5, + 12 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.25, + 12, + 3.5, + 10.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_85", - "from": [8, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 8, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 8, 10.5], "texture": "#6"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [8, 10.25, 8.5, 10.5], "texture": "#6"}, - "west": {"uv": [8, 10.25, 8.25, 10.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [8, 10.25, 8.5, 10.5], "texture": "#6"}, - "down": {"uv": [8, 10.5, 8.5, 10.25], "texture": "#6"} + "north": { + "uv": [ + 8.5, + 10.25, + 8, + 10.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.5, + 10.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 8, + 10.25, + 8.5, + 10.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.5, + 10.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_86", - "from": [12.75, 0, 10.25], - "to": [13, 0.25, 12.25], + "from": [ + 12.75, + 0, + 10.25 + ], + "to": [ + 13, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [13, 10.25, 12.75, 10.5], "texture": "#6"}, - "east": {"uv": [12.75, 10.25, 13, 12.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.75, 12, 13, 12.25], "texture": "#6"}, - "west": {"uv": [12.75, 10.25, 13, 12.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.75, 10.25, 13, 12.25], "texture": "#6"}, - "down": {"uv": [12.75, 12.25, 13, 10.25], "texture": "#6"} + "north": { + "uv": [ + 13, + 10.25, + 12.75, + 10.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.75, + 10.25, + 13, + 12.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.75, + 12, + 13, + 12.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.75, + 10.25, + 13, + 12.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.75, + 10.25, + 13, + 12.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.75, + 12.25, + 13, + 10.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_87", - "from": [3, 0, 10.5], - "to": [3.25, 0.25, 11.5], + "from": [ + 3, + 0, + 10.5 + ], + "to": [ + 3.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [3.25, 10.5, 3, 10.75], "texture": "#6"}, - "east": {"uv": [3, 10.5, 3.25, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [3, 11.25, 3.25, 11.5], "texture": "#6"}, - "west": {"uv": [3, 10.5, 3.25, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [3, 10.5, 3.25, 11.5], "texture": "#6"}, - "down": {"uv": [3, 11.5, 3.25, 10.5], "texture": "#6"} + "north": { + "uv": [ + 3.25, + 10.5, + 3, + 10.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 10.5, + 3.25, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 11.25, + 3.25, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.25, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 3, + 10.5, + 3.25, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3, + 11.5, + 3.25, + 10.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_88", - "from": [5.5, 0, 10.5], - "to": [5.75, 0.25, 10.75], + "from": [ + 5.5, + 0, + 10.5 + ], + "to": [ + 5.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.75, 10.5, 5.5, 10.75], "texture": "#6"}, - "east": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#6"}, - "west": {"uv": [5.5, 10.5, 5.75, 10.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.5, 10.5, 5.75, 10.75], "texture": "#6"}, - "down": {"uv": [5.5, 10.75, 5.75, 10.5], "texture": "#6"} + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.5, + 10.75, + 5.75, + 10.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_89", - "from": [13, 0, 10.5], - "to": [13.25, 0.25, 12], + "from": [ + 13, + 0, + 10.5 + ], + "to": [ + 13.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [13.25, 10.5, 13, 10.75], "texture": "#6"}, - "east": {"uv": [13, 10.5, 13.25, 12], "rotation": 90, "texture": "#6"}, - "south": {"uv": [13, 11.75, 13.25, 12], "texture": "#6"}, - "west": {"uv": [13, 10.5, 13.25, 12], "rotation": 270, "texture": "#6"}, - "up": {"uv": [13, 10.5, 13.25, 12], "texture": "#6"}, - "down": {"uv": [13, 12, 13.25, 10.5], "texture": "#6"} + "north": { + "uv": [ + 13.25, + 10.5, + 13, + 10.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 13, + 10.5, + 13.25, + 12 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 13, + 11.75, + 13.25, + 12 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 13, + 10.5, + 13.25, + 12 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 13, + 10.5, + 13.25, + 12 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 13, + 12, + 13.25, + 10.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_90", - "from": [5, 0, 11], - "to": [5.25, 0.25, 11.25], + "from": [ + 5, + 0, + 11 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 11, 5, 11.25], "texture": "#6"}, - "east": {"uv": [5, 11, 5.25, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5, 11, 5.25, 11.25], "texture": "#6"}, - "west": {"uv": [5, 11, 5.25, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5, 11, 5.25, 11.25], "texture": "#6"}, - "down": {"uv": [5, 11.25, 5.25, 11], "texture": "#6"} + "north": { + "uv": [ + 5.25, + 11, + 5, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5, + 11.25, + 5.25, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_91", - "from": [6.25, 0, 11], - "to": [6.75, 0.25, 11.5], + "from": [ + 6.25, + 0, + 11 + ], + "to": [ + 6.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.75, 11, 6.25, 11.25], "texture": "#6"}, - "east": {"uv": [6.5, 11, 6.75, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.25, 11.25, 6.75, 11.5], "texture": "#6"}, - "west": {"uv": [6.25, 11, 6.5, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.25, 11, 6.75, 11.5], "texture": "#6"}, - "down": {"uv": [6.25, 11.5, 6.75, 11], "texture": "#6"} + "north": { + "uv": [ + 6.75, + 11, + 6.25, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 11, + 6.75, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 11.25, + 6.75, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 11, + 6.5, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.25, + 11, + 6.75, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.25, + 11.5, + 6.75, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_92", - "from": [6.75, 0, 11], - "to": [7.25, 0.25, 11.25], + "from": [ + 6.75, + 0, + 11 + ], + "to": [ + 7.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.25, 11, 6.75, 11.25], "texture": "#6"}, - "east": {"uv": [7, 11, 7.25, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6.75, 11, 7.25, 11.25], "texture": "#6"}, - "west": {"uv": [6.75, 11, 7, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6.75, 11, 7.25, 11.25], "texture": "#6"}, - "down": {"uv": [6.75, 11.25, 7.25, 11], "texture": "#6"} + "north": { + "uv": [ + 7.25, + 11, + 6.75, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 11, + 7.25, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 11, + 7, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6.75, + 11, + 7.25, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.75, + 11.25, + 7.25, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_93", - "from": [9.25, 0, 11], - "to": [9.5, 0.25, 11.25], + "from": [ + 9.25, + 0, + 11 + ], + "to": [ + 9.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.5, 11, 9.25, 11.25], "texture": "#6"}, - "east": {"uv": [9.25, 11, 9.5, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [9.25, 11, 9.5, 11.25], "texture": "#6"}, - "west": {"uv": [9.25, 11, 9.5, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [9.25, 11, 9.5, 11.25], "texture": "#6"}, - "down": {"uv": [9.25, 11.25, 9.5, 11], "texture": "#6"} + "north": { + "uv": [ + 9.5, + 11, + 9.25, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.25, + 11, + 9.5, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 11, + 9.5, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.25, + 11, + 9.5, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 9.25, + 11, + 9.5, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.25, + 11.25, + 9.5, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_94", - "from": [10.25, 0, 11], - "to": [11, 0.25, 11.25], + "from": [ + 10.25, + 0, + 11 + ], + "to": [ + 11, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11, 11, 10.25, 11.25], "texture": "#6"}, - "east": {"uv": [10.75, 11, 11, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [10.25, 11, 11, 11.25], "texture": "#6"}, - "west": {"uv": [10.25, 11, 10.5, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [10.25, 11, 11, 11.25], "texture": "#6"}, - "down": {"uv": [10.25, 11.25, 11, 11], "texture": "#6"} + "north": { + "uv": [ + 11, + 11, + 10.25, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 10.25, + 11, + 11, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10.25, + 11, + 10.5, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 10.25, + 11, + 11, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.25, + 11.25, + 11, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_95", - "from": [11.5, 0, 11], - "to": [11.75, 0.25, 11.25], + "from": [ + 11.5, + 0, + 11 + ], + "to": [ + 11.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11.75, 11, 11.5, 11.25], "texture": "#6"}, - "east": {"uv": [11.5, 11, 11.75, 11.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [11.5, 11, 11.75, 11.25], "texture": "#6"}, - "west": {"uv": [11.5, 11, 11.75, 11.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [11.5, 11, 11.75, 11.25], "texture": "#6"}, - "down": {"uv": [11.5, 11.25, 11.75, 11], "texture": "#6"} + "north": { + "uv": [ + 11.75, + 11, + 11.5, + 11.25 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 11.5, + 11, + 11.75, + 11.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 11.5, + 11, + 11.75, + 11.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 11.5, + 11, + 11.75, + 11.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 11.5, + 11, + 11.75, + 11.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 11.5, + 11.25, + 11.75, + 11 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_96", - "from": [4, 0, 11.25], - "to": [4.25, 0.25, 11.5], + "from": [ + 4, + 0, + 11.25 + ], + "to": [ + 4.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4.25, 11.25, 4, 11.5], "texture": "#6"}, - "east": {"uv": [4, 11.25, 4.25, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4, 11.25, 4.25, 11.5], "texture": "#6"}, - "west": {"uv": [4, 11.25, 4.25, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4, 11.25, 4.25, 11.5], "texture": "#6"}, - "down": {"uv": [4, 11.5, 4.25, 11.25], "texture": "#6"} + "north": { + "uv": [ + 4.25, + 11.25, + 4, + 11.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 11.25, + 4.25, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 11.25, + 4.25, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 11.25, + 4.25, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4, + 11.25, + 4.25, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4, + 11.5, + 4.25, + 11.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_97", - "from": [6, 0, 11.25], - "to": [6.25, 0.25, 11.5], + "from": [ + 6, + 0, + 11.25 + ], + "to": [ + 6.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.25, 11.25, 6, 11.5], "texture": "#6"}, - "east": {"uv": [6, 11.25, 6.25, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [6, 11.25, 6.25, 11.5], "texture": "#6"}, - "west": {"uv": [6, 11.25, 6.25, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [6, 11.25, 6.25, 11.5], "texture": "#6"}, - "down": {"uv": [6, 11.5, 6.25, 11.25], "texture": "#6"} + "north": { + "uv": [ + 6.25, + 11.25, + 6, + 11.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 6, + 11.25, + 6.25, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6, + 11.5, + 6.25, + 11.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_98", - "from": [7.75, 0, 11.25], - "to": [9, 0.25, 11.5], + "from": [ + 7.75, + 0, + 11.25 + ], + "to": [ + 9, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [9, 11.25, 7.75, 11.5], "texture": "#6"}, - "east": {"uv": [8.75, 11.25, 9, 11.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [7.75, 11.25, 9, 11.5], "texture": "#6"}, - "west": {"uv": [7.75, 11.25, 8, 11.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [7.75, 11.25, 9, 11.5], "texture": "#6"}, - "down": {"uv": [7.75, 11.5, 9, 11.25], "texture": "#6"} + "north": { + "uv": [ + 9, + 11.25, + 7.75, + 11.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 11.25, + 9, + 11.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 11.25, + 8, + 11.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 7.75, + 11.25, + 9, + 11.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.75, + 11.5, + 9, + 11.25 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_99", - "from": [5.25, 0, 11.5], - "to": [5.5, 0.25, 11.75], + "from": [ + 5.25, + 0, + 11.5 + ], + "to": [ + 5.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [5.5, 11.5, 5.25, 11.75], "texture": "#6"}, - "east": {"uv": [5.25, 11.5, 5.5, 11.75], "rotation": 90, "texture": "#6"}, - "south": {"uv": [5.25, 11.5, 5.5, 11.75], "texture": "#6"}, - "west": {"uv": [5.25, 11.5, 5.5, 11.75], "rotation": 270, "texture": "#6"}, - "up": {"uv": [5.25, 11.5, 5.5, 11.75], "texture": "#6"}, - "down": {"uv": [5.25, 11.75, 5.5, 11.5], "texture": "#6"} + "north": { + "uv": [ + 5.5, + 11.5, + 5.25, + 11.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 11.5, + 5.5, + 11.75 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 11.5, + 5.5, + 11.75 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.25, + 11.5, + 5.5, + 11.75 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 5.25, + 11.5, + 5.5, + 11.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.25, + 11.75, + 5.5, + 11.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_100", - "from": [12.5, 0, 11.5], - "to": [12.75, 0.25, 12.25], + "from": [ + 12.5, + 0, + 11.5 + ], + "to": [ + 12.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [12.75, 11.5, 12.5, 11.75], "texture": "#6"}, - "east": {"uv": [12.5, 11.5, 12.75, 12.25], "rotation": 90, "texture": "#6"}, - "south": {"uv": [12.5, 12, 12.75, 12.25], "texture": "#6"}, - "west": {"uv": [12.5, 11.5, 12.75, 12.25], "rotation": 270, "texture": "#6"}, - "up": {"uv": [12.5, 11.5, 12.75, 12.25], "texture": "#6"}, - "down": {"uv": [12.5, 12.25, 12.75, 11.5], "texture": "#6"} + "north": { + "uv": [ + 12.75, + 11.5, + 12.5, + 11.75 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 12.5, + 11.5, + 12.75, + 12.25 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 12.5, + 12, + 12.75, + 12.25 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 12.5, + 11.5, + 12.75, + 12.25 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 12.5, + 11.5, + 12.75, + 12.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 12.5, + 12.25, + 12.75, + 11.5 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_101", - "from": [4, 0, 11.75], - "to": [4.25, 0.25, 12], + "from": [ + 4, + 0, + 11.75 + ], + "to": [ + 4.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [4.25, 11.75, 4, 12], "texture": "#6"}, - "east": {"uv": [4, 11.75, 4.25, 12], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4, 11.75, 4.25, 12], "texture": "#6"}, - "west": {"uv": [4, 11.75, 4.25, 12], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4, 11.75, 4.25, 12], "texture": "#6"}, - "down": {"uv": [4, 12, 4.25, 11.75], "texture": "#6"} + "north": { + "uv": [ + 4.25, + 11.75, + 4, + 12 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4, + 11.75, + 4.25, + 12 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4, + 12, + 4.25, + 11.75 + ], + "texture": "#6" + } } }, { "name": "shanhaigani_102", - "from": [4.75, 0, 12.25], - "to": [5, 0.25, 12.5], + "from": [ + 4.75, + 0, + 12.25 + ], + "to": [ + 5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [5, 12.25, 4.75, 12.5], "texture": "#6"}, - "east": {"uv": [4.75, 12.25, 5, 12.5], "rotation": 90, "texture": "#6"}, - "south": {"uv": [4.75, 12.25, 5, 12.5], "texture": "#6"}, - "west": {"uv": [4.75, 12.25, 5, 12.5], "rotation": 270, "texture": "#6"}, - "up": {"uv": [4.75, 12.25, 5, 12.5], "texture": "#6"}, - "down": {"uv": [4.75, 12.5, 5, 12.25], "texture": "#6"} + "north": { + "uv": [ + 5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.75, + 12.25, + 5, + 12.5 + ], + "rotation": 90, + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 12.25, + 5, + 12.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.75, + 12.25, + 5, + 12.5 + ], + "rotation": 270, + "texture": "#6" + }, + "up": { + "uv": [ + 4.75, + 12.25, + 5, + 12.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.75, + 12.5, + 5, + 12.25 + ], + "texture": "#6" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 1.75, 4.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 1.75, + 4.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 8.25, 9.75], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 8.25, + 9.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "shanhaigani", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/syumokuzame.json b/pack/assets/minecraft/models/fish/syumokuzame.json index b8b6fcb0..d8f47daf 100644 --- a/pack/assets/minecraft/models/fish/syumokuzame.json +++ b/pack/assets/minecraft/models/fish/syumokuzame.json @@ -2,670 +2,3544 @@ "__name": "シュモクザメ", "credit": "Made with Blockbench", "textures": { - "7": "fish/syumokuzame", - "particle": "fish/raigyo" + "7": "item/fish/syumokuzame", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "syumokuzame_0", - "from": [7, 0, 5.5], - "to": [7.25, 0.25, 9.75], + "from": [ + 7, + 0, + 5.5 + ], + "to": [ + 7.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.25, 5.5, 7, 5.75], "texture": "#7"}, - "east": {"uv": [7, 5.5, 7.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7, 9.5, 7.25, 9.75], "texture": "#7"}, - "west": {"uv": [7, 5.5, 7.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7, 5.5, 7.25, 9.75], "texture": "#7"}, - "down": {"uv": [7, 9.75, 7.25, 5.5], "texture": "#7"} + "north": { + "uv": [ + 7.25, + 5.5, + 7, + 5.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 7, + 5.5, + 7.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7, + 5.5, + 7.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7, + 5.5, + 7.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7, + 9.75, + 7.25, + 5.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_1", - "from": [6.75, 0, 5.75], - "to": [7, 0.25, 9.75], + "from": [ + 6.75, + 0, + 5.75 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 5.75, 6.75, 6], "texture": "#7"}, - "east": {"uv": [6.75, 5.75, 7, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6.75, 9.5, 7, 9.75], "texture": "#7"}, - "west": {"uv": [6.75, 5.75, 7, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6.75, 5.75, 7, 9.75], "texture": "#7"}, - "down": {"uv": [6.75, 9.75, 7, 5.75], "texture": "#7"} + "north": { + "uv": [ + 7, + 5.75, + 6.75, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.75, + 5.75, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6.75, + 5.75, + 7, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6.75, + 5.75, + 7, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6.75, + 9.75, + 7, + 5.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_2", - "from": [7.25, 0, 5.75], - "to": [7.5, 0.25, 6], + "from": [ + 7.25, + 0, + 5.75 + ], + "to": [ + 7.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [7.5, 5.75, 7.25, 6], "texture": "#7"}, - "east": {"uv": [7.25, 5.75, 7.5, 6], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7.25, 5.75, 7.5, 6], "texture": "#7"}, - "west": {"uv": [7.25, 5.75, 7.5, 6], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7.25, 5.75, 7.5, 6], "texture": "#7"}, - "down": {"uv": [7.25, 6, 7.5, 5.75], "texture": "#7"} + "north": { + "uv": [ + 7.5, + 5.75, + 7.25, + 6 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7.25, + 5.75, + 7.5, + 6 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7.25, + 6, + 7.5, + 5.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_3", - "from": [6.5, 0, 6], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 6, 6.5, 6.25], "texture": "#7"}, - "east": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#7"}, - "west": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6.5, 6, 6.75, 9.75], "texture": "#7"}, - "down": {"uv": [6.5, 9.75, 6.75, 6], "texture": "#7"} + "north": { + "uv": [ + 6.75, + 6, + 6.5, + 6.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 6 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_4", - "from": [6.25, 0, 6.25], - "to": [6.5, 0.25, 9.75], + "from": [ + 6.25, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 6.25, 6.25, 6.5], "texture": "#7"}, - "east": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6.25, 9.5, 6.5, 9.75], "texture": "#7"}, - "west": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6.25, 6.25, 6.5, 9.75], "texture": "#7"}, - "down": {"uv": [6.25, 9.75, 6.5, 6.25], "texture": "#7"} + "north": { + "uv": [ + 6.5, + 6.25, + 6.25, + 6.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6.25, + 9.75, + 6.5, + 6.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_5", - "from": [6, 0, 6.5], - "to": [6.25, 0.25, 9.75], + "from": [ + 6, + 0, + 6.5 + ], + "to": [ + 6.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.25, 6.5, 6, 6.75], "texture": "#7"}, - "east": {"uv": [6, 6.5, 6.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [6, 9.5, 6.25, 9.75], "texture": "#7"}, - "west": {"uv": [6, 6.5, 6.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [6, 6.5, 6.25, 9.75], "texture": "#7"}, - "down": {"uv": [6, 9.75, 6.25, 6.5], "texture": "#7"} + "north": { + "uv": [ + 6.25, + 6.5, + 6, + 6.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 6, + 6.5, + 6.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 6, + 9.5, + 6.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 6, + 6.5, + 6.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 6, + 6.5, + 6.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 6, + 9.75, + 6.25, + 6.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_6", - "from": [5.75, 0, 6.75], - "to": [6, 0.25, 9.75], + "from": [ + 5.75, + 0, + 6.75 + ], + "to": [ + 6, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6, 6.75, 5.75, 7], "texture": "#7"}, - "east": {"uv": [5.75, 6.75, 6, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5.75, 9.5, 6, 9.75], "texture": "#7"}, - "west": {"uv": [5.75, 6.75, 6, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5.75, 6.75, 6, 9.75], "texture": "#7"}, - "down": {"uv": [5.75, 9.75, 6, 6.75], "texture": "#7"} + "north": { + "uv": [ + 6, + 6.75, + 5.75, + 7 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.75, + 6.75, + 6, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5.75, + 9.5, + 6, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5.75, + 6.75, + 6, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5.75, + 6.75, + 6, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5.75, + 9.75, + 6, + 6.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_7", - "from": [1, 0, 7], - "to": [2.5, 0.25, 9.25], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.5, 7, 1, 7.25], "texture": "#7"}, - "east": {"uv": [2.25, 7, 2.5, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [1, 9, 2.5, 9.25], "texture": "#7"}, - "west": {"uv": [1, 7, 1.25, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [1, 7, 2.5, 9.25], "texture": "#7"}, - "down": {"uv": [1, 9.25, 2.5, 7], "texture": "#7"} + "north": { + "uv": [ + 2.5, + 7, + 1, + 7.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 1, + 9, + 2.5, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 1, + 7, + 2.5, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 1, + 9.25, + 2.5, + 7 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_8", - "from": [5.5, 0, 7], - "to": [5.75, 0.25, 9.75], + "from": [ + 5.5, + 0, + 7 + ], + "to": [ + 5.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.75, 7, 5.5, 7.25], "texture": "#7"}, - "east": {"uv": [5.5, 7, 5.75, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [5.5, 9.5, 5.75, 9.75], "texture": "#7"}, - "west": {"uv": [5.5, 7, 5.75, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [5.5, 7, 5.75, 9.75], "texture": "#7"}, - "down": {"uv": [5.5, 9.75, 5.75, 7], "texture": "#7"} + "north": { + "uv": [ + 5.75, + 7, + 5.5, + 7.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.5, + 7, + 5.75, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 5.75, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 5.5, + 7, + 5.75, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 5.5, + 7, + 5.75, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 5.5, + 9.75, + 5.75, + 7 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_9", - "from": [15, 0, 7], - "to": [15.75, 0.25, 7.75], + "from": [ + 15, + 0, + 7 + ], + "to": [ + 15.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.75, 7, 15, 7.25], "texture": "#7"}, - "east": {"uv": [15.5, 7, 15.75, 7.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15, 7.5, 15.75, 7.75], "texture": "#7"}, - "west": {"uv": [15, 7, 15.25, 7.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15, 7, 15.75, 7.75], "texture": "#7"}, - "down": {"uv": [15, 7.75, 15.75, 7], "texture": "#7"} + "north": { + "uv": [ + 15.75, + 7, + 15, + 7.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.5, + 7, + 15.75, + 7.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15, + 7.5, + 15.75, + 7.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15, + 7, + 15.25, + 7.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15, + 7, + 15.75, + 7.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15, + 7.75, + 15.75, + 7 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_10", - "from": [0.75, 0, 7.25], - "to": [1, 0.25, 10.25], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1, 7.25, 0.75, 7.5], "texture": "#7"}, - "east": {"uv": [0.75, 7.25, 1, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.75, 10, 1, 10.25], "texture": "#7"}, - "west": {"uv": [0.75, 7.25, 1, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.75, 7.25, 1, 10.25], "texture": "#7"}, - "down": {"uv": [0.75, 10.25, 1, 7.25], "texture": "#7"} + "north": { + "uv": [ + 1, + 7.25, + 0.75, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.75, + 7.25, + 1, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.75, + 10.25, + 1, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_11", - "from": [2.5, 0, 7.25], - "to": [2.75, 0.25, 7.5], + "from": [ + 2.5, + 0, + 7.25 + ], + "to": [ + 2.75, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [2.75, 7.25, 2.5, 7.5], "texture": "#7"}, - "east": {"uv": [2.5, 7.25, 2.75, 7.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2.5, 7.25, 2.75, 7.5], "texture": "#7"}, - "west": {"uv": [2.5, 7.25, 2.75, 7.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2.5, 7.25, 2.75, 7.5], "texture": "#7"}, - "down": {"uv": [2.5, 7.5, 2.75, 7.25], "texture": "#7"} + "north": { + "uv": [ + 2.75, + 7.25, + 2.5, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2.5, + 7.25, + 2.75, + 7.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.75, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_12", - "from": [4.25, 0, 7.25], - "to": [5.5, 0.25, 9.75], + "from": [ + 4.25, + 0, + 7.25 + ], + "to": [ + 5.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.5, 7.25, 4.25, 7.5], "texture": "#7"}, - "east": {"uv": [5.25, 7.25, 5.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [4.25, 9.5, 5.5, 9.75], "texture": "#7"}, - "west": {"uv": [4.25, 7.25, 4.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [4.25, 7.25, 5.5, 9.75], "texture": "#7"}, - "down": {"uv": [4.25, 9.75, 5.5, 7.25], "texture": "#7"} + "north": { + "uv": [ + 5.5, + 7.25, + 4.25, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 5.25, + 7.25, + 5.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 4.25, + 9.5, + 5.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 4.25, + 7.25, + 4.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 4.25, + 7.25, + 5.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 4.25, + 9.75, + 5.5, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_13", - "from": [7.25, 0, 7.25], - "to": [7.5, 0.25, 9.75], + "from": [ + 7.25, + 0, + 7.25 + ], + "to": [ + 7.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.5, 7.25, 7.25, 7.5], "texture": "#7"}, - "east": {"uv": [7.25, 7.25, 7.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#7"}, - "west": {"uv": [7.25, 7.25, 7.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7.25, 7.25, 7.5, 9.75], "texture": "#7"}, - "down": {"uv": [7.25, 9.75, 7.5, 7.25], "texture": "#7"} + "north": { + "uv": [ + 7.5, + 7.25, + 7.25, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 7.25, + 7.25, + 7.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7.25, + 7.25, + 7.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 7.5, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_14", - "from": [14.5, 0, 7.25], - "to": [15, 0.25, 8.25], + "from": [ + 14.5, + 0, + 7.25 + ], + "to": [ + 15, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [15, 7.25, 14.5, 7.5], "texture": "#7"}, - "east": {"uv": [14.75, 7.25, 15, 8.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.5, 8, 15, 8.25], "texture": "#7"}, - "west": {"uv": [14.5, 7.25, 14.75, 8.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.5, 7.25, 15, 8.25], "texture": "#7"}, - "down": {"uv": [14.5, 8.25, 15, 7.25], "texture": "#7"} + "north": { + "uv": [ + 15, + 7.25, + 14.5, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14.75, + 7.25, + 15, + 8.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.5, + 8, + 15, + 8.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.5, + 7.25, + 14.75, + 8.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.5, + 7.25, + 15, + 8.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.5, + 8.25, + 15, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_15", - "from": [15.75, 0, 7.25], - "to": [16, 0.25, 7.5], + "from": [ + 15.75, + 0, + 7.25 + ], + "to": [ + 16, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [16, 7.25, 15.75, 7.5], "texture": "#7"}, - "east": {"uv": [15.75, 7.25, 16, 7.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15.75, 7.25, 16, 7.5], "texture": "#7"}, - "west": {"uv": [15.75, 7.25, 16, 7.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15.75, 7.25, 16, 7.5], "texture": "#7"}, - "down": {"uv": [15.75, 7.5, 16, 7.25], "texture": "#7"} + "north": { + "uv": [ + 16, + 7.25, + 15.75, + 7.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.75, + 7.25, + 16, + 7.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15.75, + 7.25, + 16, + 7.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15.75, + 7.25, + 16, + 7.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15.75, + 7.25, + 16, + 7.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15.75, + 7.5, + 16, + 7.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_16", - "from": [3.25, 0, 7.5], - "to": [4.25, 0.25, 9.75], + "from": [ + 3.25, + 0, + 7.5 + ], + "to": [ + 4.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [4.25, 7.5, 3.25, 7.75], "texture": "#7"}, - "east": {"uv": [4, 7.5, 4.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [3.25, 9.5, 4.25, 9.75], "texture": "#7"}, - "west": {"uv": [3.25, 7.5, 3.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [3.25, 7.5, 4.25, 9.75], "texture": "#7"}, - "down": {"uv": [3.25, 9.75, 4.25, 7.5], "texture": "#7"} + "north": { + "uv": [ + 4.25, + 7.5, + 3.25, + 7.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 3.25, + 9.5, + 4.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 3.25, + 7.5, + 3.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 3.25, + 7.5, + 4.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 3.25, + 9.75, + 4.25, + 7.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_17", - "from": [7.5, 0, 7.5], - "to": [8.5, 0.25, 9.75], + "from": [ + 7.5, + 0, + 7.5 + ], + "to": [ + 8.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [8.5, 7.5, 7.5, 7.75], "texture": "#7"}, - "east": {"uv": [8.25, 7.5, 8.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [7.5, 9.5, 8.5, 9.75], "texture": "#7"}, - "west": {"uv": [7.5, 7.5, 7.75, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [7.5, 7.5, 8.5, 9.75], "texture": "#7"}, - "down": {"uv": [7.5, 9.75, 8.5, 7.5], "texture": "#7"} + "north": { + "uv": [ + 8.5, + 7.5, + 7.5, + 7.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 8.25, + 7.5, + 8.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 7.5, + 9.5, + 8.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 7.5, + 7.5, + 7.75, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 7.5, + 7.5, + 8.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 7.5, + 9.75, + 8.5, + 7.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_18", - "from": [11.25, 0, 7.5], - "to": [11.5, 0.25, 9.5], + "from": [ + 11.25, + 0, + 7.5 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.5, 7.5, 11.25, 7.75], "texture": "#7"}, - "east": {"uv": [11.25, 7.5, 11.5, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11.25, 9.25, 11.5, 9.5], "texture": "#7"}, - "west": {"uv": [11.25, 7.5, 11.5, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11.25, 7.5, 11.5, 9.5], "texture": "#7"}, - "down": {"uv": [11.25, 9.5, 11.5, 7.5], "texture": "#7"} + "north": { + "uv": [ + 11.5, + 7.5, + 11.25, + 7.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11.25, + 7.5, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11.25, + 7.5, + 11.5, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11.25, + 7.5, + 11.5, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11.25, + 9.5, + 11.5, + 7.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_19", - "from": [14, 0, 7.5], - "to": [14.5, 0.25, 8.75], + "from": [ + 14, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.5, 7.5, 14, 7.75], "texture": "#7"}, - "east": {"uv": [14.25, 7.5, 14.5, 8.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14, 8.5, 14.5, 8.75], "texture": "#7"}, - "west": {"uv": [14, 7.5, 14.25, 8.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14, 7.5, 14.5, 8.75], "texture": "#7"}, - "down": {"uv": [14, 8.75, 14.5, 7.5], "texture": "#7"} + "north": { + "uv": [ + 14.5, + 7.5, + 14, + 7.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 8.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14, + 8.5, + 14.5, + 8.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14, + 7.5, + 14.25, + 8.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14, + 7.5, + 14.5, + 8.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14, + 8.75, + 14.5, + 7.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_20", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 10], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#7"}, - "east": {"uv": [0.5, 7.75, 0.75, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.5, 9.75, 0.75, 10], "texture": "#7"}, - "west": {"uv": [0.5, 7.75, 0.75, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.5, 7.75, 0.75, 10], "texture": "#7"}, - "down": {"uv": [0.5, 10, 0.75, 7.75], "texture": "#7"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 0.75, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.5, + 10, + 0.75, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_21", - "from": [2.5, 0, 7.75], - "to": [3.25, 0.25, 9.5], + "from": [ + 2.5, + 0, + 7.75 + ], + "to": [ + 3.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.25, 7.75, 2.5, 8], "texture": "#7"}, - "east": {"uv": [3, 7.75, 3.25, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2.5, 9.25, 3.25, 9.5], "texture": "#7"}, - "west": {"uv": [2.5, 7.75, 2.75, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2.5, 7.75, 3.25, 9.5], "texture": "#7"}, - "down": {"uv": [2.5, 9.5, 3.25, 7.75], "texture": "#7"} + "north": { + "uv": [ + 3.25, + 7.75, + 2.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 3, + 7.75, + 3.25, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2.5, + 9.25, + 3.25, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2.5, + 7.75, + 2.75, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2.5, + 7.75, + 3.25, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2.5, + 9.5, + 3.25, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_22", - "from": [8.5, 0, 7.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 8.5, + 0, + 7.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 7.75, 8.5, 8], "texture": "#7"}, - "east": {"uv": [9.25, 7.75, 9.5, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8.5, 9, 9.5, 9.25], "texture": "#7"}, - "west": {"uv": [8.5, 7.75, 8.75, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8.5, 7.75, 9.5, 9.25], "texture": "#7"}, - "down": {"uv": [8.5, 9.25, 9.5, 7.75], "texture": "#7"} + "north": { + "uv": [ + 9.5, + 7.75, + 8.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9.25, + 7.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8.5, + 9, + 9.5, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8.5, + 7.75, + 8.75, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8.5, + 7.75, + 9.5, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8.5, + 9.25, + 9.5, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_23", - "from": [10.75, 0, 7.75], - "to": [11.25, 0.25, 9.5], + "from": [ + 10.75, + 0, + 7.75 + ], + "to": [ + 11.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.25, 7.75, 10.75, 8], "texture": "#7"}, - "east": {"uv": [11, 7.75, 11.25, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [10.75, 9.25, 11.25, 9.5], "texture": "#7"}, - "west": {"uv": [10.75, 7.75, 11, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [10.75, 7.75, 11.25, 9.5], "texture": "#7"}, - "down": {"uv": [10.75, 9.5, 11.25, 7.75], "texture": "#7"} + "north": { + "uv": [ + 11.25, + 7.75, + 10.75, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11, + 7.75, + 11.25, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 10.75, + 9.25, + 11.25, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 10.75, + 7.75, + 11, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 10.75, + 7.75, + 11.25, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 10.75, + 9.5, + 11.25, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_24", - "from": [11.5, 0, 7.75], - "to": [11.75, 0.25, 9.25], + "from": [ + 11.5, + 0, + 7.75 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 7.75, 11.5, 8], "texture": "#7"}, - "east": {"uv": [11.5, 7.75, 11.75, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#7"}, - "west": {"uv": [11.5, 7.75, 11.75, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11.5, 7.75, 11.75, 9.25], "texture": "#7"}, - "down": {"uv": [11.5, 9.25, 11.75, 7.75], "texture": "#7"} + "north": { + "uv": [ + 11.75, + 7.75, + 11.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11.5, + 7.75, + 11.75, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11.5, + 9.25, + 11.75, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_25", - "from": [13.5, 0, 7.75], - "to": [14, 0.25, 9.75], + "from": [ + 13.5, + 0, + 7.75 + ], + "to": [ + 14, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14, 7.75, 13.5, 8], "texture": "#7"}, - "east": {"uv": [13.75, 7.75, 14, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [13.5, 9.5, 14, 9.75], "texture": "#7"}, - "west": {"uv": [13.5, 7.75, 13.75, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [13.5, 7.75, 14, 9.75], "texture": "#7"}, - "down": {"uv": [13.5, 9.75, 14, 7.75], "texture": "#7"} + "north": { + "uv": [ + 14, + 7.75, + 13.5, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13.75, + 7.75, + 14, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 14, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 13.5, + 7.75, + 13.75, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 14, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 13.5, + 9.75, + 14, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_26", - "from": [15, 0, 7.75], - "to": [15.5, 0.25, 8], + "from": [ + 15, + 0, + 7.75 + ], + "to": [ + 15.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [15.5, 7.75, 15, 8], "texture": "#7"}, - "east": {"uv": [15.25, 7.75, 15.5, 8], "rotation": 90, "texture": "#7"}, - "south": {"uv": [15, 7.75, 15.5, 8], "texture": "#7"}, - "west": {"uv": [15, 7.75, 15.25, 8], "rotation": 270, "texture": "#7"}, - "up": {"uv": [15, 7.75, 15.5, 8], "texture": "#7"}, - "down": {"uv": [15, 8, 15.5, 7.75], "texture": "#7"} + "north": { + "uv": [ + 15.5, + 7.75, + 15, + 8 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 15.25, + 7.75, + 15.5, + 8 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 15, + 7.75, + 15.5, + 8 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 15, + 7.75, + 15.25, + 8 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 15, + 7.75, + 15.5, + 8 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 15, + 8, + 15.5, + 7.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_27", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 9.75], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#7"}, - "east": {"uv": [0.25, 8, 0.5, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [0.25, 9.5, 0.5, 9.75], "texture": "#7"}, - "west": {"uv": [0.25, 8, 0.5, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [0.25, 8, 0.5, 9.75], "texture": "#7"}, - "down": {"uv": [0.25, 9.75, 0.5, 8], "texture": "#7"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0.25, + 9.75, + 0.5, + 8 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_28", - "from": [9.5, 0, 8], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 8 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 8, 9.5, 8.25], "texture": "#7"}, - "east": {"uv": [10.5, 8, 10.75, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9.5, 9, 10.75, 9.25], "texture": "#7"}, - "west": {"uv": [9.5, 8, 9.75, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9.5, 8, 10.75, 9.25], "texture": "#7"}, - "down": {"uv": [9.5, 9.25, 10.75, 8], "texture": "#7"} + "north": { + "uv": [ + 10.75, + 8, + 9.5, + 8.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 10.5, + 8, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9.5, + 9, + 10.75, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9.5, + 8, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9.5, + 8, + 10.75, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 10.75, + 8 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_29", - "from": [11.75, 0, 8], - "to": [13.5, 0.25, 9.25], + "from": [ + 11.75, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.5, 8, 11.75, 8.25], "texture": "#7"}, - "east": {"uv": [13.25, 8, 13.5, 9.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11.75, 9, 13.5, 9.25], "texture": "#7"}, - "west": {"uv": [11.75, 8, 12, 9.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11.75, 8, 13.5, 9.25], "texture": "#7"}, - "down": {"uv": [11.75, 9.25, 13.5, 8], "texture": "#7"} + "north": { + "uv": [ + 13.5, + 8, + 11.75, + 8.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 9.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11.75, + 9, + 13.5, + 9.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11.75, + 8, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11.75, + 8, + 13.5, + 9.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 13.5, + 8 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_30", - "from": [14.5, 0, 8.25], - "to": [14.75, 0.25, 8.5], + "from": [ + 14.5, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.75, 8.25, 14.5, 8.5], "texture": "#7"}, - "east": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#7"}, - "west": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14.5, 8.25, 14.75, 8.5], "texture": "#7"}, - "down": {"uv": [14.5, 8.5, 14.75, 8.25], "texture": "#7"} + "north": { + "uv": [ + 14.75, + 8.25, + 14.5, + 8.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14.5, + 8.5, + 14.75, + 8.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_31", - "from": [14, 0, 8.75], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 8.75 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 8.75, 14, 9], "texture": "#7"}, - "east": {"uv": [14, 8.75, 14.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#7"}, - "west": {"uv": [14, 8.75, 14.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [14, 8.75, 14.25, 9.75], "texture": "#7"}, - "down": {"uv": [14, 9.75, 14.25, 8.75], "texture": "#7"} + "north": { + "uv": [ + 14.25, + 8.75, + 14, + 9 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 14, + 8.75, + 14.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 8.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_32", - "from": [1, 0, 9.25], - "to": [2, 0.25, 10.25], + "from": [ + 1, + 0, + 9.25 + ], + "to": [ + 2, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2, 9.25, 1, 9.5], "texture": "#7"}, - "east": {"uv": [1.75, 9.25, 2, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [1, 10, 2, 10.25], "texture": "#7"}, - "west": {"uv": [1, 9.25, 1.25, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [1, 9.25, 2, 10.25], "texture": "#7"}, - "down": {"uv": [1, 10.25, 2, 9.25], "texture": "#7"} + "north": { + "uv": [ + 2, + 9.25, + 1, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 2, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 1, + 10, + 2, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 1, + 9.25, + 1.25, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 1, + 9.25, + 2, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 1, + 10.25, + 2, + 9.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_33", - "from": [2, 0, 9.25], - "to": [2.25, 0.25, 10], + "from": [ + 2, + 0, + 9.25 + ], + "to": [ + 2.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.25, 9.25, 2, 9.5], "texture": "#7"}, - "east": {"uv": [2, 9.25, 2.25, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2, 9.75, 2.25, 10], "texture": "#7"}, - "west": {"uv": [2, 9.25, 2.25, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2, 9.25, 2.25, 10], "texture": "#7"}, - "down": {"uv": [2, 10, 2.25, 9.25], "texture": "#7"} + "north": { + "uv": [ + 2.25, + 9.25, + 2, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 2, + 9.25, + 2.25, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2, + 9.75, + 2.25, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.25, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2, + 9.25, + 2.25, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2, + 10, + 2.25, + 9.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_34", - "from": [8.5, 0, 9.25], - "to": [9.25, 0.25, 10], + "from": [ + 8.5, + 0, + 9.25 + ], + "to": [ + 9.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.25, 9.25, 8.5, 9.5], "texture": "#7"}, - "east": {"uv": [9, 9.25, 9.25, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8.5, 9.75, 9.25, 10], "texture": "#7"}, - "west": {"uv": [8.5, 9.25, 8.75, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8.5, 9.25, 9.25, 10], "texture": "#7"}, - "down": {"uv": [8.5, 10, 9.25, 9.25], "texture": "#7"} + "north": { + "uv": [ + 9.25, + 9.25, + 8.5, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9, + 9.25, + 9.25, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8.5, + 9.75, + 9.25, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8.5, + 9.25, + 8.75, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8.5, + 9.25, + 9.25, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8.5, + 10, + 9.25, + 9.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_35", - "from": [13.25, 0, 9.25], - "to": [13.5, 0.25, 9.5], + "from": [ + 13.25, + 0, + 9.25 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 9.25, 13.25, 9.5], "texture": "#7"}, - "east": {"uv": [13.25, 9.25, 13.5, 9.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [13.25, 9.25, 13.5, 9.5], "texture": "#7"}, - "west": {"uv": [13.25, 9.25, 13.5, 9.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [13.25, 9.25, 13.5, 9.5], "texture": "#7"}, - "down": {"uv": [13.25, 9.5, 13.5, 9.25], "texture": "#7"} + "north": { + "uv": [ + 13.5, + 9.25, + 13.25, + 9.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 13.25, + 9.25, + 13.5, + 9.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_36", - "from": [2.75, 0, 9.5], - "to": [3.25, 0.25, 9.75], + "from": [ + 2.75, + 0, + 9.5 + ], + "to": [ + 3.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.25, 9.5, 2.75, 9.75], "texture": "#7"}, - "east": {"uv": [3, 9.5, 3.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [2.75, 9.5, 3.25, 9.75], "texture": "#7"}, - "west": {"uv": [2.75, 9.5, 3, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [2.75, 9.5, 3.25, 9.75], "texture": "#7"}, - "down": {"uv": [2.75, 9.75, 3.25, 9.5], "texture": "#7"} + "north": { + "uv": [ + 3.25, + 9.5, + 2.75, + 9.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 3, + 9.5, + 3.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 2.75, + 9.5, + 3.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 2.75, + 9.5, + 3, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 2.75, + 9.5, + 3.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 2.75, + 9.75, + 3.25, + 9.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_37", - "from": [9.25, 0, 9.5], - "to": [9.5, 0.25, 10.25], + "from": [ + 9.25, + 0, + 9.5 + ], + "to": [ + 9.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.5, 9.5, 9.25, 9.75], "texture": "#7"}, - "east": {"uv": [9.25, 9.5, 9.5, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9.25, 10, 9.5, 10.25], "texture": "#7"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#7"}, - "down": {"uv": [9.25, 10.25, 9.5, 9.5], "texture": "#7"} + "north": { + "uv": [ + 9.5, + 9.5, + 9.25, + 9.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9.25, + 9.5, + 9.5, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9.25, + 10, + 9.5, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9.25, + 9.5, + 9.5, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9.25, + 9.5, + 9.5, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9.25, + 10.25, + 9.5, + 9.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_38", - "from": [11, 0, 9.5], - "to": [11.25, 0.25, 9.75], + "from": [ + 11, + 0, + 9.5 + ], + "to": [ + 11.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.25, 9.5, 11, 9.75], "texture": "#7"}, - "east": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 90, "texture": "#7"}, - "south": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#7"}, - "west": {"uv": [11, 9.5, 11.25, 9.75], "rotation": 270, "texture": "#7"}, - "up": {"uv": [11, 9.5, 11.25, 9.75], "texture": "#7"}, - "down": {"uv": [11, 9.75, 11.25, 9.5], "texture": "#7"} + "north": { + "uv": [ + 11.25, + 9.5, + 11, + 9.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 11, + 9.5, + 11.25, + 9.75 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 11, + 9.75, + 11.25, + 9.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_39", - "from": [3.5, 0, 9.75], - "to": [5, 0.25, 10], + "from": [ + 3.5, + 0, + 9.75 + ], + "to": [ + 5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [5, 9.75, 3.5, 10], "texture": "#7"}, - "east": {"uv": [4.75, 9.75, 5, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [3.5, 9.75, 5, 10], "texture": "#7"}, - "west": {"uv": [3.5, 9.75, 3.75, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [3.5, 9.75, 5, 10], "texture": "#7"}, - "down": {"uv": [3.5, 10, 5, 9.75], "texture": "#7"} + "north": { + "uv": [ + 5, + 9.75, + 3.5, + 10 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.75, + 9.75, + 5, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 3.5, + 9.75, + 5, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 3.5, + 9.75, + 3.75, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 3.5, + 9.75, + 5, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 3.5, + 10, + 5, + 9.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_40", - "from": [13.75, 0, 9.75], - "to": [14, 0.25, 10], + "from": [ + 13.75, + 0, + 9.75 + ], + "to": [ + 14, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14, 9.75, 13.75, 10], "texture": "#7"}, - "east": {"uv": [13.75, 9.75, 14, 10], "rotation": 90, "texture": "#7"}, - "south": {"uv": [13.75, 9.75, 14, 10], "texture": "#7"}, - "west": {"uv": [13.75, 9.75, 14, 10], "rotation": 270, "texture": "#7"}, - "up": {"uv": [13.75, 9.75, 14, 10], "texture": "#7"}, - "down": {"uv": [13.75, 10, 14, 9.75], "texture": "#7"} + "north": { + "uv": [ + 14, + 9.75, + 13.75, + 10 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 13.75, + 10, + 14, + 9.75 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_41", - "from": [3.75, 0, 10], - "to": [5, 0.25, 10.5], + "from": [ + 3.75, + 0, + 10 + ], + "to": [ + 5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5, 10, 3.75, 10.25], "texture": "#7"}, - "east": {"uv": [4.75, 10, 5, 10.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [3.75, 10.25, 5, 10.5], "texture": "#7"}, - "west": {"uv": [3.75, 10, 4, 10.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [3.75, 10, 5, 10.5], "texture": "#7"}, - "down": {"uv": [3.75, 10.5, 5, 10], "texture": "#7"} + "north": { + "uv": [ + 5, + 10, + 3.75, + 10.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.75, + 10, + 5, + 10.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 3.75, + 10.25, + 5, + 10.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 3.75, + 10, + 4, + 10.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 3.75, + 10, + 5, + 10.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 3.75, + 10.5, + 5, + 10 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_42", - "from": [8.75, 0, 10], - "to": [9.25, 0.25, 10.25], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [9.25, 10, 8.75, 10.25], "texture": "#7"}, - "east": {"uv": [9, 10, 9.25, 10.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#7"}, - "west": {"uv": [8.75, 10, 9, 10.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [8.75, 10, 9.25, 10.25], "texture": "#7"}, - "down": {"uv": [8.75, 10.25, 9.25, 10], "texture": "#7"} + "north": { + "uv": [ + 9.25, + 10, + 8.75, + 10.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9, + 10, + 9.25, + 10.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 10.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 8.75, + 10, + 9.25, + 10.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 8.75, + 10.25, + 9.25, + 10 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_43", - "from": [9, 0, 10.25], - "to": [9.25, 0.25, 10.5], + "from": [ + 9, + 0, + 10.25 + ], + "to": [ + 9.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [9.25, 10.25, 9, 10.5], "texture": "#7"}, - "east": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#7"}, - "west": {"uv": [9, 10.25, 9.25, 10.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [9, 10.25, 9.25, 10.5], "texture": "#7"}, - "down": {"uv": [9, 10.5, 9.25, 10.25], "texture": "#7"} + "north": { + "uv": [ + 9.25, + 10.25, + 9, + 10.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 9, + 10.25, + 9.25, + 10.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 9, + 10.5, + 9.25, + 10.25 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_44", - "from": [4, 0, 10.5], - "to": [5, 0.25, 11], + "from": [ + 4, + 0, + 10.5 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 10.5, 4, 10.75], "texture": "#7"}, - "east": {"uv": [4.75, 10.5, 5, 11], "rotation": 90, "texture": "#7"}, - "south": {"uv": [4, 10.75, 5, 11], "texture": "#7"}, - "west": {"uv": [4, 10.5, 4.25, 11], "rotation": 270, "texture": "#7"}, - "up": {"uv": [4, 10.5, 5, 11], "texture": "#7"}, - "down": {"uv": [4, 11, 5, 10.5], "texture": "#7"} + "north": { + "uv": [ + 5, + 10.5, + 4, + 10.75 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.75, + 10.5, + 5, + 11 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 4, + 10.75, + 5, + 11 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 4, + 10.5, + 4.25, + 11 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 4, + 10.5, + 5, + 11 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 4, + 11, + 5, + 10.5 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_45", - "from": [4.25, 0, 11], - "to": [5, 0.25, 11.25], + "from": [ + 4.25, + 0, + 11 + ], + "to": [ + 5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5, 11, 4.25, 11.25], "texture": "#7"}, - "east": {"uv": [4.75, 11, 5, 11.25], "rotation": 90, "texture": "#7"}, - "south": {"uv": [4.25, 11, 5, 11.25], "texture": "#7"}, - "west": {"uv": [4.25, 11, 4.5, 11.25], "rotation": 270, "texture": "#7"}, - "up": {"uv": [4.25, 11, 5, 11.25], "texture": "#7"}, - "down": {"uv": [4.25, 11.25, 5, 11], "texture": "#7"} + "north": { + "uv": [ + 5, + 11, + 4.25, + 11.25 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.75, + 11, + 5, + 11.25 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 4.25, + 11, + 5, + 11.25 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 4.25, + 11, + 4.5, + 11.25 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 4.25, + 11, + 5, + 11.25 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 4.25, + 11.25, + 5, + 11 + ], + "texture": "#7" + } } }, { "name": "syumokuzame_46", - "from": [4.5, 0, 11.25], - "to": [4.75, 0.25, 11.5], + "from": [ + 4.5, + 0, + 11.25 + ], + "to": [ + 4.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [4.75, 11.25, 4.5, 11.5], "texture": "#7"}, - "east": {"uv": [4.5, 11.25, 4.75, 11.5], "rotation": 90, "texture": "#7"}, - "south": {"uv": [4.5, 11.25, 4.75, 11.5], "texture": "#7"}, - "west": {"uv": [4.5, 11.25, 4.75, 11.5], "rotation": 270, "texture": "#7"}, - "up": {"uv": [4.5, 11.25, 4.75, 11.5], "texture": "#7"}, - "down": {"uv": [4.5, 11.5, 4.75, 11.25], "texture": "#7"} + "north": { + "uv": [ + 4.75, + 11.25, + 4.5, + 11.5 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 4.5, + 11.25, + 4.75, + 11.5 + ], + "rotation": 90, + "texture": "#7" + }, + "south": { + "uv": [ + 4.5, + 11.25, + 4.75, + 11.5 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 4.5, + 11.25, + 4.75, + 11.5 + ], + "rotation": 270, + "texture": "#7" + }, + "up": { + "uv": [ + 4.5, + 11.25, + 4.75, + 11.5 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 4.5, + 11.5, + 4.75, + 11.25 + ], + "texture": "#7" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 9.75, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 9.75, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 9.75, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 9.75, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 9.75, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 9.75, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 9.75, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 9.75, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 19.5, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 19.5, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 19.5, 30.75], - "scale": [4, 4, 4] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 19.5, + 30.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "syumokuzame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/tai.json b/pack/assets/minecraft/models/fish/tai.json index 2a3de325..10f19c98 100644 --- a/pack/assets/minecraft/models/fish/tai.json +++ b/pack/assets/minecraft/models/fish/tai.json @@ -2,761 +2,4048 @@ "__name": "タイ", "credit": "Made with Blockbench", "textures": { - "8": "fish/tai", - "particle": "fish/isidai" + "8": "item/fish/tai", + "particle": "item/fish/isidai" }, "elements": [ { "name": "tai_0", - "from": [6.5, 0, 4], - "to": [7.75, 0.25, 11], + "from": [ + 6.5, + 0, + 4 + ], + "to": [ + 7.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [7.75, 4, 6.5, 4.25], "texture": "#8"}, - "east": {"uv": [7.5, 4, 7.75, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6.5, 10.75, 7.75, 11], "texture": "#8"}, - "west": {"uv": [6.5, 4, 6.75, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6.5, 4, 7.75, 11], "texture": "#8"}, - "down": {"uv": [6.5, 11, 7.75, 4], "texture": "#8"} + "north": { + "uv": [ + 7.75, + 4, + 6.5, + 4.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7.5, + 4, + 7.75, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6.5, + 10.75, + 7.75, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6.5, + 4, + 6.75, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6.5, + 4, + 7.75, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6.5, + 11, + 7.75, + 4 + ], + "texture": "#8" + } } }, { "name": "tai_1", - "from": [5.75, 0, 4.25], - "to": [6.5, 0.25, 11.5], + "from": [ + 5.75, + 0, + 4.25 + ], + "to": [ + 6.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [6.5, 4.25, 5.75, 4.5], "texture": "#8"}, - "east": {"uv": [6.25, 4.25, 6.5, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.75, 11.25, 6.5, 11.5], "texture": "#8"}, - "west": {"uv": [5.75, 4.25, 6, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.75, 4.25, 6.5, 11.5], "texture": "#8"}, - "down": {"uv": [5.75, 11.5, 6.5, 4.25], "texture": "#8"} + "north": { + "uv": [ + 6.5, + 4.25, + 5.75, + 4.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.25, + 4.25, + 6.5, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.75, + 11.25, + 6.5, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.75, + 4.25, + 6, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.75, + 4.25, + 6.5, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.75, + 11.5, + 6.5, + 4.25 + ], + "texture": "#8" + } } }, { "name": "tai_2", - "from": [7.75, 0, 4.25], - "to": [8.25, 0.25, 11], + "from": [ + 7.75, + 0, + 4.25 + ], + "to": [ + 8.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.25, 4.25, 7.75, 4.5], "texture": "#8"}, - "east": {"uv": [8, 4.25, 8.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7.75, 10.75, 8.25, 11], "texture": "#8"}, - "west": {"uv": [7.75, 4.25, 8, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7.75, 4.25, 8.25, 11], "texture": "#8"}, - "down": {"uv": [7.75, 11, 8.25, 4.25], "texture": "#8"} + "north": { + "uv": [ + 8.25, + 4.25, + 7.75, + 4.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 8, + 4.25, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7.75, + 10.75, + 8.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7.75, + 4.25, + 8, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7.75, + 4.25, + 8.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7.75, + 11, + 8.25, + 4.25 + ], + "texture": "#8" + } } }, { "name": "tai_3", - "from": [5.25, 0, 4.5], - "to": [5.75, 0.25, 11.25], + "from": [ + 5.25, + 0, + 4.5 + ], + "to": [ + 5.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.75, 4.5, 5.25, 4.75], "texture": "#8"}, - "east": {"uv": [5.5, 4.5, 5.75, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.25, 11, 5.75, 11.25], "texture": "#8"}, - "west": {"uv": [5.25, 4.5, 5.5, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.25, 4.5, 5.75, 11.25], "texture": "#8"}, - "down": {"uv": [5.25, 11.25, 5.75, 4.5], "texture": "#8"} + "north": { + "uv": [ + 5.75, + 4.5, + 5.25, + 4.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5.5, + 4.5, + 5.75, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.25, + 11, + 5.75, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.25, + 4.5, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.25, + 4.5, + 5.75, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 5.75, + 4.5 + ], + "texture": "#8" + } } }, { "name": "tai_4", - "from": [8.25, 0, 4.5], - "to": [8.5, 0.25, 11], + "from": [ + 8.25, + 0, + 4.5 + ], + "to": [ + 8.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.5, 4.5, 8.25, 4.75], "texture": "#8"}, - "east": {"uv": [8.25, 4.5, 8.5, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#8"}, - "west": {"uv": [8.25, 4.5, 8.5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [8.25, 4.5, 8.5, 11], "texture": "#8"}, - "down": {"uv": [8.25, 11, 8.5, 4.5], "texture": "#8"} + "north": { + "uv": [ + 8.5, + 4.5, + 8.25, + 4.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 8.25, + 4.5, + 8.5, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 8.25, + 4.5, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 8.25, + 4.5, + 8.5, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 8.25, + 11, + 8.5, + 4.5 + ], + "texture": "#8" + } } }, { "name": "tai_5", - "from": [4.25, 0, 4.75], - "to": [5.25, 0.25, 11.25], + "from": [ + 4.25, + 0, + 4.75 + ], + "to": [ + 5.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.25, 4.75, 4.25, 5], "texture": "#8"}, - "east": {"uv": [5, 4.75, 5.25, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [4.25, 11, 5.25, 11.25], "texture": "#8"}, - "west": {"uv": [4.25, 4.75, 4.5, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [4.25, 4.75, 5.25, 11.25], "texture": "#8"}, - "down": {"uv": [4.25, 11.25, 5.25, 4.75], "texture": "#8"} + "north": { + "uv": [ + 5.25, + 4.75, + 4.25, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 4.25, + 11, + 5.25, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 4.25, + 4.75, + 4.5, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 4.25, + 4.75, + 5.25, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 4.25, + 11.25, + 5.25, + 4.75 + ], + "texture": "#8" + } } }, { "name": "tai_6", - "from": [8.5, 0, 4.75], - "to": [9, 0.25, 11], + "from": [ + 8.5, + 0, + 4.75 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 4.75, 8.5, 5], "texture": "#8"}, - "east": {"uv": [8.75, 4.75, 9, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [8.5, 10.75, 9, 11], "texture": "#8"}, - "west": {"uv": [8.5, 4.75, 8.75, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [8.5, 4.75, 9, 11], "texture": "#8"}, - "down": {"uv": [8.5, 11, 9, 4.75], "texture": "#8"} + "north": { + "uv": [ + 9, + 4.75, + 8.5, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 9, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 8.5, + 10.75, + 9, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 8.5, + 4.75, + 8.75, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 8.5, + 4.75, + 9, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 8.5, + 11, + 9, + 4.75 + ], + "texture": "#8" + } } }, { "name": "tai_7", - "from": [3.75, 0, 5], - "to": [4.25, 0.25, 11.25], + "from": [ + 3.75, + 0, + 5 + ], + "to": [ + 4.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [4.25, 5, 3.75, 5.25], "texture": "#8"}, - "east": {"uv": [4, 5, 4.25, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3.75, 11, 4.25, 11.25], "texture": "#8"}, - "west": {"uv": [3.75, 5, 4, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3.75, 5, 4.25, 11.25], "texture": "#8"}, - "down": {"uv": [3.75, 11.25, 4.25, 5], "texture": "#8"} + "north": { + "uv": [ + 4.25, + 5, + 3.75, + 5.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 4, + 5, + 4.25, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3.75, + 11, + 4.25, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3.75, + 5, + 4, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3.75, + 5, + 4.25, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3.75, + 11.25, + 4.25, + 5 + ], + "texture": "#8" + } } }, { "name": "tai_8", - "from": [9, 0, 5], - "to": [9.25, 0.25, 11.25], + "from": [ + 9, + 0, + 5 + ], + "to": [ + 9.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.25, 5, 9, 5.25], "texture": "#8"}, - "east": {"uv": [9, 5, 9.25, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9, 11, 9.25, 11.25], "texture": "#8"}, - "west": {"uv": [9, 5, 9.25, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9, 5, 9.25, 11.25], "texture": "#8"}, - "down": {"uv": [9, 11.25, 9.25, 5], "texture": "#8"} + "north": { + "uv": [ + 9.25, + 5, + 9, + 5.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9, + 5, + 9.25, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9, + 5, + 9.25, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9, + 5, + 9.25, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9, + 11.25, + 9.25, + 5 + ], + "texture": "#8" + } } }, { "name": "tai_9", - "from": [3.25, 0, 5.25], - "to": [3.75, 0.25, 11], + "from": [ + 3.25, + 0, + 5.25 + ], + "to": [ + 3.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.75, 5.25, 3.25, 5.5], "texture": "#8"}, - "east": {"uv": [3.5, 5.25, 3.75, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3.25, 10.75, 3.75, 11], "texture": "#8"}, - "west": {"uv": [3.25, 5.25, 3.5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3.25, 5.25, 3.75, 11], "texture": "#8"}, - "down": {"uv": [3.25, 11, 3.75, 5.25], "texture": "#8"} + "north": { + "uv": [ + 3.75, + 5.25, + 3.25, + 5.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3.5, + 5.25, + 3.75, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3.25, + 10.75, + 3.75, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3.25, + 5.25, + 3.5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3.25, + 5.25, + 3.75, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3.25, + 11, + 3.75, + 5.25 + ], + "texture": "#8" + } } }, { "name": "tai_10", - "from": [9.25, 0, 5.25], - "to": [9.75, 0.25, 11.25], + "from": [ + 9.25, + 0, + 5.25 + ], + "to": [ + 9.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.75, 5.25, 9.25, 5.5], "texture": "#8"}, - "east": {"uv": [9.5, 5.25, 9.75, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.25, 11, 9.75, 11.25], "texture": "#8"}, - "west": {"uv": [9.25, 5.25, 9.5, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.25, 5.25, 9.75, 11.25], "texture": "#8"}, - "down": {"uv": [9.25, 11.25, 9.75, 5.25], "texture": "#8"} + "north": { + "uv": [ + 9.75, + 5.25, + 9.25, + 5.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9.5, + 5.25, + 9.75, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.25, + 11, + 9.75, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.25, + 5.25, + 9.5, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.25, + 5.25, + 9.75, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.25, + 11.25, + 9.75, + 5.25 + ], + "texture": "#8" + } } }, { "name": "tai_11", - "from": [2.75, 0, 5.5], - "to": [3.25, 0.25, 10.75], + "from": [ + 2.75, + 0, + 5.5 + ], + "to": [ + 3.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.25, 5.5, 2.75, 5.75], "texture": "#8"}, - "east": {"uv": [3, 5.5, 3.25, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2.75, 10.5, 3.25, 10.75], "texture": "#8"}, - "west": {"uv": [2.75, 5.5, 3, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2.75, 5.5, 3.25, 10.75], "texture": "#8"}, - "down": {"uv": [2.75, 10.75, 3.25, 5.5], "texture": "#8"} + "north": { + "uv": [ + 3.25, + 5.5, + 2.75, + 5.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3, + 5.5, + 3.25, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2.75, + 10.5, + 3.25, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2.75, + 5.5, + 3, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2.75, + 5.5, + 3.25, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2.75, + 10.75, + 3.25, + 5.5 + ], + "texture": "#8" + } } }, { "name": "tai_12", - "from": [9.75, 0, 5.5], - "to": [10.75, 0.25, 10.75], + "from": [ + 9.75, + 0, + 5.5 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 5.5, 9.75, 5.75], "texture": "#8"}, - "east": {"uv": [10.5, 5.5, 10.75, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.75, 10.5, 10.75, 10.75], "texture": "#8"}, - "west": {"uv": [9.75, 5.5, 10, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.75, 5.5, 10.75, 10.75], "texture": "#8"}, - "down": {"uv": [9.75, 10.75, 10.75, 5.5], "texture": "#8"} + "north": { + "uv": [ + 10.75, + 5.5, + 9.75, + 5.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10.5, + 5.5, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.75, + 10.5, + 10.75, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.75, + 5.5, + 10, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.75, + 5.5, + 10.75, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.75, + 10.75, + 10.75, + 5.5 + ], + "texture": "#8" + } } }, { "name": "tai_13", - "from": [2.25, 0, 5.75], - "to": [2.75, 0.25, 10.75], + "from": [ + 2.25, + 0, + 5.75 + ], + "to": [ + 2.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2.75, 5.75, 2.25, 6], "texture": "#8"}, - "east": {"uv": [2.5, 5.75, 2.75, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2.25, 10.5, 2.75, 10.75], "texture": "#8"}, - "west": {"uv": [2.25, 5.75, 2.5, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2.25, 5.75, 2.75, 10.75], "texture": "#8"}, - "down": {"uv": [2.25, 10.75, 2.75, 5.75], "texture": "#8"} + "north": { + "uv": [ + 2.75, + 5.75, + 2.25, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2.25, + 10.5, + 2.75, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2.25, + 5.75, + 2.5, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2.25, + 5.75, + 2.75, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2.25, + 10.75, + 2.75, + 5.75 + ], + "texture": "#8" + } } }, { "name": "tai_14", - "from": [10.75, 0, 5.75], - "to": [11.5, 0.25, 10.25], + "from": [ + 10.75, + 0, + 5.75 + ], + "to": [ + 11.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.5, 5.75, 10.75, 6], "texture": "#8"}, - "east": {"uv": [11.25, 5.75, 11.5, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10.75, 10, 11.5, 10.25], "texture": "#8"}, - "west": {"uv": [10.75, 5.75, 11, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10.75, 5.75, 11.5, 10.25], "texture": "#8"}, - "down": {"uv": [10.75, 10.25, 11.5, 5.75], "texture": "#8"} + "north": { + "uv": [ + 11.5, + 5.75, + 10.75, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11.25, + 5.75, + 11.5, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10.75, + 10, + 11.5, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10.75, + 5.75, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10.75, + 5.75, + 11.5, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11.5, + 5.75 + ], + "texture": "#8" + } } }, { "name": "tai_15", - "from": [15.25, 0, 5.75], - "to": [15.75, 0.25, 6.5], + "from": [ + 15.25, + 0, + 5.75 + ], + "to": [ + 15.75, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.75, 5.75, 15.25, 6], "texture": "#8"}, - "east": {"uv": [15.5, 5.75, 15.75, 6.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.25, 6.25, 15.75, 6.5], "texture": "#8"}, - "west": {"uv": [15.25, 5.75, 15.5, 6.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.25, 5.75, 15.75, 6.5], "texture": "#8"}, - "down": {"uv": [15.25, 6.5, 15.75, 5.75], "texture": "#8"} + "north": { + "uv": [ + 15.75, + 5.75, + 15.25, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.25, + 6.25, + 15.75, + 6.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.25, + 5.75, + 15.75, + 6.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.25, + 6.5, + 15.75, + 5.75 + ], + "texture": "#8" + } } }, { "name": "tai_16", - "from": [2, 0, 6], - "to": [2.25, 0.25, 10.5], + "from": [ + 2, + 0, + 6 + ], + "to": [ + 2.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2.25, 6, 2, 6.25], "texture": "#8"}, - "east": {"uv": [2, 6, 2.25, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2, 10.25, 2.25, 10.5], "texture": "#8"}, - "west": {"uv": [2, 6, 2.25, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2, 6, 2.25, 10.5], "texture": "#8"}, - "down": {"uv": [2, 10.5, 2.25, 6], "texture": "#8"} + "north": { + "uv": [ + 2.25, + 6, + 2, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2, + 6, + 2.25, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2, + 10.25, + 2.25, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2, + 6, + 2.25, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2, + 6, + 2.25, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2, + 10.5, + 2.25, + 6 + ], + "texture": "#8" + } } }, { "name": "tai_17", - "from": [11.5, 0, 6], - "to": [12, 0.25, 9.75], + "from": [ + 11.5, + 0, + 6 + ], + "to": [ + 12, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12, 6, 11.5, 6.25], "texture": "#8"}, - "east": {"uv": [11.75, 6, 12, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11.5, 9.5, 12, 9.75], "texture": "#8"}, - "west": {"uv": [11.5, 6, 11.75, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11.5, 6, 12, 9.75], "texture": "#8"}, - "down": {"uv": [11.5, 9.75, 12, 6], "texture": "#8"} + "north": { + "uv": [ + 12, + 6, + 11.5, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11.75, + 6, + 12, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11.5, + 9.5, + 12, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11.5, + 6, + 11.75, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11.5, + 6, + 12, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11.5, + 9.75, + 12, + 6 + ], + "texture": "#8" + } } }, { "name": "tai_18", - "from": [14.75, 0, 6], - "to": [15.25, 0.25, 7.25], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15.25, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [15.25, 6, 14.75, 6.25], "texture": "#8"}, - "east": {"uv": [15, 6, 15.25, 7.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14.75, 7, 15.25, 7.25], "texture": "#8"}, - "west": {"uv": [14.75, 6, 15, 7.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14.75, 6, 15.25, 7.25], "texture": "#8"}, - "down": {"uv": [14.75, 7.25, 15.25, 6], "texture": "#8"} + "north": { + "uv": [ + 15.25, + 6, + 14.75, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15, + 6, + 15.25, + 7.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14.75, + 7, + 15.25, + 7.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 7.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14.75, + 6, + 15.25, + 7.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14.75, + 7.25, + 15.25, + 6 + ], + "texture": "#8" + } } }, { "name": "tai_19", - "from": [15.75, 0, 6], - "to": [16, 0.25, 6.25], + "from": [ + 15.75, + 0, + 6 + ], + "to": [ + 16, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [16, 6, 15.75, 6.25], "texture": "#8"}, - "east": {"uv": [15.75, 6, 16, 6.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.75, 6, 16, 6.25], "texture": "#8"}, - "west": {"uv": [15.75, 6, 16, 6.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.75, 6, 16, 6.25], "texture": "#8"}, - "down": {"uv": [15.75, 6.25, 16, 6], "texture": "#8"} + "north": { + "uv": [ + 16, + 6, + 15.75, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.75, + 6, + 16, + 6.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.75, + 6, + 16, + 6.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.75, + 6, + 16, + 6.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.75, + 6, + 16, + 6.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.75, + 6.25, + 16, + 6 + ], + "texture": "#8" + } } }, { "name": "tai_20", - "from": [1.75, 0, 6.25], - "to": [2, 0.25, 10.5], + "from": [ + 1.75, + 0, + 6.25 + ], + "to": [ + 2, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [2, 6.25, 1.75, 6.5], "texture": "#8"}, - "east": {"uv": [1.75, 6.25, 2, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.75, 10.25, 2, 10.5], "texture": "#8"}, - "west": {"uv": [1.75, 6.25, 2, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.75, 6.25, 2, 10.5], "texture": "#8"}, - "down": {"uv": [1.75, 10.5, 2, 6.25], "texture": "#8"} + "north": { + "uv": [ + 2, + 6.25, + 1.75, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.75, + 6.25, + 2, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.75, + 10.25, + 2, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.75, + 6.25, + 2, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.75, + 6.25, + 2, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.75, + 10.5, + 2, + 6.25 + ], + "texture": "#8" + } } }, { "name": "tai_21", - "from": [12, 0, 6.25], - "to": [12.5, 0.25, 7], + "from": [ + 12, + 0, + 6.25 + ], + "to": [ + 12.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [12.5, 6.25, 12, 6.5], "texture": "#8"}, - "east": {"uv": [12.25, 6.25, 12.5, 7], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12, 6.75, 12.5, 7], "texture": "#8"}, - "west": {"uv": [12, 6.25, 12.25, 7], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12, 6.25, 12.5, 7], "texture": "#8"}, - "down": {"uv": [12, 7, 12.5, 6.25], "texture": "#8"} + "north": { + "uv": [ + 12.5, + 6.25, + 12, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.25, + 6.25, + 12.5, + 7 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12, + 6.75, + 12.5, + 7 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12, + 6.25, + 12.25, + 7 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12, + 6.25, + 12.5, + 7 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12, + 7, + 12.5, + 6.25 + ], + "texture": "#8" + } } }, { "name": "tai_22", - "from": [14.25, 0, 6.25], - "to": [14.75, 0.25, 9.75], + "from": [ + 14.25, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.25, 6.5], "texture": "#8"}, - "east": {"uv": [14.5, 6.25, 14.75, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14.25, 9.5, 14.75, 9.75], "texture": "#8"}, - "west": {"uv": [14.25, 6.25, 14.5, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14.25, 6.25, 14.75, 9.75], "texture": "#8"}, - "down": {"uv": [14.25, 9.75, 14.75, 6.25], "texture": "#8"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.25, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.75, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14.25, + 6.25, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14.25, + 6.25, + 14.75, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.75, + 6.25 + ], + "texture": "#8" + } } }, { "name": "tai_23", - "from": [1.5, 0, 6.5], - "to": [1.75, 0.25, 10.5], + "from": [ + 1.5, + 0, + 6.5 + ], + "to": [ + 1.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.75, 6.5, 1.5, 6.75], "texture": "#8"}, - "east": {"uv": [1.5, 6.5, 1.75, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.5, 10.25, 1.75, 10.5], "texture": "#8"}, - "west": {"uv": [1.5, 6.5, 1.75, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.5, 6.5, 1.75, 10.5], "texture": "#8"}, - "down": {"uv": [1.5, 10.5, 1.75, 6.5], "texture": "#8"} + "north": { + "uv": [ + 1.75, + 6.5, + 1.5, + 6.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.5, + 6.5, + 1.75, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.5, + 10.25, + 1.75, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 1.75, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.5, + 6.5, + 1.75, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.5, + 10.5, + 1.75, + 6.5 + ], + "texture": "#8" + } } }, { "name": "tai_24", - "from": [14, 0, 6.5], - "to": [14.25, 0.25, 9.75], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#8"}, - "east": {"uv": [14, 6.5, 14.25, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14, 9.5, 14.25, 9.75], "texture": "#8"}, - "west": {"uv": [14, 6.5, 14.25, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14, 6.5, 14.25, 9.75], "texture": "#8"}, - "down": {"uv": [14, 9.75, 14.25, 6.5], "texture": "#8"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14, + 9.75, + 14.25, + 6.5 + ], + "texture": "#8" + } } }, { "name": "tai_25", - "from": [15.25, 0, 6.5], - "to": [15.5, 0.25, 6.75], + "from": [ + 15.25, + 0, + 6.5 + ], + "to": [ + 15.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [15.5, 6.5, 15.25, 6.75], "texture": "#8"}, - "east": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#8"}, - "west": {"uv": [15.25, 6.5, 15.5, 6.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.25, 6.5, 15.5, 6.75], "texture": "#8"}, - "down": {"uv": [15.25, 6.75, 15.5, 6.5], "texture": "#8"} + "north": { + "uv": [ + 15.5, + 6.5, + 15.25, + 6.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.25, + 6.5, + 15.5, + 6.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.25, + 6.75, + 15.5, + 6.5 + ], + "texture": "#8" + } } }, { "name": "tai_26", - "from": [1.25, 0, 6.75], - "to": [1.5, 0.25, 10.5], + "from": [ + 1.25, + 0, + 6.75 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 6.75, 1.25, 7], "texture": "#8"}, - "east": {"uv": [1.25, 6.75, 1.5, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.25, 10.25, 1.5, 10.5], "texture": "#8"}, - "west": {"uv": [1.25, 6.75, 1.5, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.25, 6.75, 1.5, 10.5], "texture": "#8"}, - "down": {"uv": [1.25, 10.5, 1.5, 6.75], "texture": "#8"} + "north": { + "uv": [ + 1.5, + 6.75, + 1.25, + 7 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.25, + 6.75, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.25, + 6.75, + 1.5, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 1.5, + 6.75 + ], + "texture": "#8" + } } }, { "name": "tai_27", - "from": [13.75, 0, 6.75], - "to": [14, 0.25, 9.5], + "from": [ + 13.75, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14, 6.75, 13.75, 7], "texture": "#8"}, - "east": {"uv": [13.75, 6.75, 14, 9.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.75, 9.25, 14, 9.5], "texture": "#8"}, - "west": {"uv": [13.75, 6.75, 14, 9.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.75, 6.75, 14, 9.5], "texture": "#8"}, - "down": {"uv": [13.75, 9.5, 14, 6.75], "texture": "#8"} + "north": { + "uv": [ + 14, + 6.75, + 13.75, + 7 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 14, + 9.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 14, + 6.75 + ], + "texture": "#8" + } } }, { "name": "tai_28", - "from": [1, 0, 7], - "to": [1.25, 0.25, 10.25], + "from": [ + 1, + 0, + 7 + ], + "to": [ + 1.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1.25, 7, 1, 7.25], "texture": "#8"}, - "east": {"uv": [1, 7, 1.25, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1, 10, 1.25, 10.25], "texture": "#8"}, - "west": {"uv": [1, 7, 1.25, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1, 7, 1.25, 10.25], "texture": "#8"}, - "down": {"uv": [1, 10.25, 1.25, 7], "texture": "#8"} + "north": { + "uv": [ + 1.25, + 7, + 1, + 7.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1, + 7, + 1.25, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1, + 10, + 1.25, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1, + 7, + 1.25, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1, + 7, + 1.25, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1, + 10.25, + 1.25, + 7 + ], + "texture": "#8" + } } }, { "name": "tai_29", - "from": [12, 0, 7], - "to": [12.25, 0.25, 9.5], + "from": [ + 12, + 0, + 7 + ], + "to": [ + 12.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.25, 7, 12, 7.25], "texture": "#8"}, - "east": {"uv": [12, 7, 12.25, 9.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12, 9.25, 12.25, 9.5], "texture": "#8"}, - "west": {"uv": [12, 7, 12.25, 9.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12, 7, 12.25, 9.5], "texture": "#8"}, - "down": {"uv": [12, 9.5, 12.25, 7], "texture": "#8"} + "north": { + "uv": [ + 12.25, + 7, + 12, + 7.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12, + 7, + 12.25, + 9.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 9.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12, + 7, + 12.25, + 9.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12, + 9.5, + 12.25, + 7 + ], + "texture": "#8" + } } }, { "name": "tai_30", - "from": [13.5, 0, 7], - "to": [13.75, 0.25, 9.25], + "from": [ + 13.5, + 0, + 7 + ], + "to": [ + 13.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [13.75, 7, 13.5, 7.25], "texture": "#8"}, - "east": {"uv": [13.5, 7, 13.75, 9.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.5, 9, 13.75, 9.25], "texture": "#8"}, - "west": {"uv": [13.5, 7, 13.75, 9.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.5, 7, 13.75, 9.25], "texture": "#8"}, - "down": {"uv": [13.5, 9.25, 13.75, 7], "texture": "#8"} + "north": { + "uv": [ + 13.75, + 7, + 13.5, + 7.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.5, + 7, + 13.75, + 9.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 13.75, + 7 + ], + "texture": "#8" + } } }, { "name": "tai_31", - "from": [12.25, 0, 7.25], - "to": [13.5, 0.25, 9], + "from": [ + 12.25, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 7.25, 12.25, 7.5], "texture": "#8"}, - "east": {"uv": [13.25, 7.25, 13.5, 9], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.25, 8.75, 13.5, 9], "texture": "#8"}, - "west": {"uv": [12.25, 7.25, 12.5, 9], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.25, 7.25, 13.5, 9], "texture": "#8"}, - "down": {"uv": [12.25, 9, 13.5, 7.25], "texture": "#8"} + "north": { + "uv": [ + 13.5, + 7.25, + 12.25, + 7.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.25, + 8.75, + 13.5, + 9 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.25, + 7.25, + 12.5, + 9 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.25, + 7.25, + 13.5, + 9 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.25, + 9, + 13.5, + 7.25 + ], + "texture": "#8" + } } }, { "name": "tai_32", - "from": [14.75, 0, 7.25], - "to": [15, 0.25, 7.75], + "from": [ + 14.75, + 0, + 7.25 + ], + "to": [ + 15, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15, 7.25, 14.75, 7.5], "texture": "#8"}, - "east": {"uv": [14.75, 7.25, 15, 7.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14.75, 7.5, 15, 7.75], "texture": "#8"}, - "west": {"uv": [14.75, 7.25, 15, 7.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14.75, 7.25, 15, 7.75], "texture": "#8"}, - "down": {"uv": [14.75, 7.75, 15, 7.25], "texture": "#8"} + "north": { + "uv": [ + 15, + 7.25, + 14.75, + 7.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14.75, + 7.25, + 15, + 7.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14.75, + 7.25, + 15, + 7.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14.75, + 7.25, + 15, + 7.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14.75, + 7.75, + 15, + 7.25 + ], + "texture": "#8" + } } }, { "name": "tai_33", - "from": [0.75, 0, 7.5], - "to": [1, 0.25, 10.25], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [1, 7.5, 0.75, 7.75], "texture": "#8"}, - "east": {"uv": [0.75, 7.5, 1, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0.75, 10, 1, 10.25], "texture": "#8"}, - "west": {"uv": [0.75, 7.5, 1, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0.75, 7.5, 1, 10.25], "texture": "#8"}, - "down": {"uv": [0.75, 10.25, 1, 7.5], "texture": "#8"} + "north": { + "uv": [ + 1, + 7.5, + 0.75, + 7.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0.75, + 7.5, + 1, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0.75, + 10, + 1, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0.75, + 10.25, + 1, + 7.5 + ], + "texture": "#8" + } } }, { "name": "tai_34", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 10], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#8"}, - "east": {"uv": [0.5, 7.75, 0.75, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0.5, 9.75, 0.75, 10], "texture": "#8"}, - "west": {"uv": [0.5, 7.75, 0.75, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0.5, 7.75, 0.75, 10], "texture": "#8"}, - "down": {"uv": [0.5, 10, 0.75, 7.75], "texture": "#8"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 0.75, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0.5, + 10, + 0.75, + 7.75 + ], + "texture": "#8" + } } }, { "name": "tai_35", - "from": [0.25, 0, 8.25], - "to": [0.5, 0.25, 9.75], + "from": [ + 0.25, + 0, + 8.25 + ], + "to": [ + 0.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [0.5, 8.25, 0.25, 8.5], "texture": "#8"}, - "east": {"uv": [0.25, 8.25, 0.5, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0.25, 9.5, 0.5, 9.75], "texture": "#8"}, - "west": {"uv": [0.25, 8.25, 0.5, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0.25, 8.25, 0.5, 9.75], "texture": "#8"}, - "down": {"uv": [0.25, 9.75, 0.5, 8.25], "texture": "#8"} + "north": { + "uv": [ + 0.5, + 8.25, + 0.25, + 8.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0.25, + 8.25, + 0.5, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0.25, + 9.5, + 0.5, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.5, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0.5, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0.25, + 9.75, + 0.5, + 8.25 + ], + "texture": "#8" + } } }, { "name": "tai_36", - "from": [14.75, 0, 8.25], - "to": [15, 0.25, 10.25], + "from": [ + 14.75, + 0, + 8.25 + ], + "to": [ + 15, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15, 8.25, 14.75, 8.5], "texture": "#8"}, - "east": {"uv": [14.75, 8.25, 15, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14.75, 10, 15, 10.25], "texture": "#8"}, - "west": {"uv": [14.75, 8.25, 15, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14.75, 8.25, 15, 10.25], "texture": "#8"}, - "down": {"uv": [14.75, 10.25, 15, 8.25], "texture": "#8"} + "north": { + "uv": [ + 15, + 8.25, + 14.75, + 8.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14.75, + 8.25, + 15, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14.75, + 10, + 15, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14.75, + 8.25, + 15, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14.75, + 8.25, + 15, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14.75, + 10.25, + 15, + 8.25 + ], + "texture": "#8" + } } }, { "name": "tai_37", - "from": [0, 0, 8.5], - "to": [0.25, 0.25, 9.25], + "from": [ + 0, + 0, + 8.5 + ], + "to": [ + 0.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.25, 8.5, 0, 8.75], "texture": "#8"}, - "east": {"uv": [0, 8.5, 0.25, 9.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0, 9, 0.25, 9.25], "texture": "#8"}, - "west": {"uv": [0, 8.5, 0.25, 9.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0, 8.5, 0.25, 9.25], "texture": "#8"}, - "down": {"uv": [0, 9.25, 0.25, 8.5], "texture": "#8"} + "north": { + "uv": [ + 0.25, + 8.5, + 0, + 8.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 8.5, + 0.25, + 9.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 9, + 0.25, + 9.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 8.5, + 0.25, + 9.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 8.5, + 0.25, + 9.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 9.25, + 0.25, + 8.5 + ], + "texture": "#8" + } } }, { "name": "tai_38", - "from": [15, 0, 8.75], - "to": [15.25, 0.25, 10.5], + "from": [ + 15, + 0, + 8.75 + ], + "to": [ + 15.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.25, 8.75, 15, 9], "texture": "#8"}, - "east": {"uv": [15, 8.75, 15.25, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15, 10.25, 15.25, 10.5], "texture": "#8"}, - "west": {"uv": [15, 8.75, 15.25, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15, 8.75, 15.25, 10.5], "texture": "#8"}, - "down": {"uv": [15, 10.5, 15.25, 8.75], "texture": "#8"} + "north": { + "uv": [ + 15.25, + 8.75, + 15, + 9 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15, + 10.25, + 15.25, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15, + 8.75, + 15.25, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15, + 10.5, + 15.25, + 8.75 + ], + "texture": "#8" + } } }, { "name": "tai_39", - "from": [15.25, 0, 9.25], - "to": [15.5, 0.25, 10.5], + "from": [ + 15.25, + 0, + 9.25 + ], + "to": [ + 15.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.5, 9.25, 15.25, 9.5], "texture": "#8"}, - "east": {"uv": [15.25, 9.25, 15.5, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.25, 10.25, 15.5, 10.5], "texture": "#8"}, - "west": {"uv": [15.25, 9.25, 15.5, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.25, 9.25, 15.5, 10.5], "texture": "#8"}, - "down": {"uv": [15.25, 10.5, 15.5, 9.25], "texture": "#8"} + "north": { + "uv": [ + 15.5, + 9.25, + 15.25, + 9.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.25, + 9.25, + 15.5, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.25, + 10.25, + 15.5, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.25, + 9.25, + 15.5, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.25, + 9.25, + 15.5, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.25, + 10.5, + 15.5, + 9.25 + ], + "texture": "#8" + } } }, { "name": "tai_40", - "from": [11.5, 0, 9.75], - "to": [11.75, 0.25, 10], + "from": [ + 11.5, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.75, 9.75, 11.5, 10], "texture": "#8"}, - "east": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11.5, 9.75, 11.75, 10], "texture": "#8"}, - "west": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11.5, 9.75, 11.75, 10], "texture": "#8"}, - "down": {"uv": [11.5, 10, 11.75, 9.75], "texture": "#8"} + "north": { + "uv": [ + 11.75, + 9.75, + 11.5, + 10 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11.5, + 10, + 11.75, + 9.75 + ], + "texture": "#8" + } } }, { "name": "tai_41", - "from": [14.5, 0, 9.75], - "to": [14.75, 0.25, 10], + "from": [ + 14.5, + 0, + 9.75 + ], + "to": [ + 14.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14.75, 9.75, 14.5, 10], "texture": "#8"}, - "east": {"uv": [14.5, 9.75, 14.75, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#8"}, - "west": {"uv": [14.5, 9.75, 14.75, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14.5, 9.75, 14.75, 10], "texture": "#8"}, - "down": {"uv": [14.5, 10, 14.75, 9.75], "texture": "#8"} + "north": { + "uv": [ + 14.75, + 9.75, + 14.5, + 10 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14.5, + 9.75, + 14.75, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14.5, + 10, + 14.75, + 9.75 + ], + "texture": "#8" + } } }, { "name": "tai_42", - "from": [15.5, 0, 9.75], - "to": [15.75, 0.25, 10.5], + "from": [ + 15.5, + 0, + 9.75 + ], + "to": [ + 15.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15.75, 9.75, 15.5, 10], "texture": "#8"}, - "east": {"uv": [15.5, 9.75, 15.75, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.5, 10.25, 15.75, 10.5], "texture": "#8"}, - "west": {"uv": [15.5, 9.75, 15.75, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.5, 9.75, 15.75, 10.5], "texture": "#8"}, - "down": {"uv": [15.5, 10.5, 15.75, 9.75], "texture": "#8"} + "north": { + "uv": [ + 15.75, + 9.75, + 15.5, + 10 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.5, + 10.25, + 15.75, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.5, + 10.5, + 15.75, + 9.75 + ], + "texture": "#8" + } } }, { "name": "tai_43", - "from": [15.75, 0, 10], - "to": [16, 0.25, 10.25], + "from": [ + 15.75, + 0, + 10 + ], + "to": [ + 16, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [16, 10, 15.75, 10.25], "texture": "#8"}, - "east": {"uv": [15.75, 10, 16, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.75, 10, 16, 10.25], "texture": "#8"}, - "west": {"uv": [15.75, 10, 16, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.75, 10, 16, 10.25], "texture": "#8"}, - "down": {"uv": [15.75, 10.25, 16, 10], "texture": "#8"} + "north": { + "uv": [ + 16, + 10, + 15.75, + 10.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.75, + 10, + 16, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.75, + 10, + 16, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.75, + 10, + 16, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.75, + 10, + 16, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.75, + 10.25, + 16, + 10 + ], + "texture": "#8" + } } }, { "name": "tai_44", - "from": [10.75, 0, 10.25], - "to": [11.25, 0.25, 10.5], + "from": [ + 10.75, + 0, + 10.25 + ], + "to": [ + 11.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 10.25, 10.75, 10.5], "texture": "#8"}, - "east": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10.75, 10.25, 11.25, 10.5], "texture": "#8"}, - "west": {"uv": [10.75, 10.25, 11, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10.75, 10.25, 11.25, 10.5], "texture": "#8"}, - "down": {"uv": [10.75, 10.5, 11.25, 10.25], "texture": "#8"} + "north": { + "uv": [ + 11.25, + 10.25, + 10.75, + 10.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10.75, + 10.25, + 11.25, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10.75, + 10.25, + 11, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10.75, + 10.25, + 11.25, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10.75, + 10.5, + 11.25, + 10.25 + ], + "texture": "#8" + } } }, { "name": "tai_45", - "from": [3, 0, 10.75], - "to": [3.25, 0.25, 11], + "from": [ + 3, + 0, + 10.75 + ], + "to": [ + 3.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [3.25, 10.75, 3, 11], "texture": "#8"}, - "east": {"uv": [3, 10.75, 3.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3, 10.75, 3.25, 11], "texture": "#8"}, - "west": {"uv": [3, 10.75, 3.25, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3, 10.75, 3.25, 11], "texture": "#8"}, - "down": {"uv": [3, 11, 3.25, 10.75], "texture": "#8"} + "north": { + "uv": [ + 3.25, + 10.75, + 3, + 11 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3, + 10.75, + 3.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3, + 10.75, + 3.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3, + 10.75, + 3.25, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3, + 10.75, + 3.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3, + 11, + 3.25, + 10.75 + ], + "texture": "#8" + } } }, { "name": "tai_46", - "from": [9.75, 0, 10.75], - "to": [10.25, 0.25, 11], + "from": [ + 9.75, + 0, + 10.75 + ], + "to": [ + 10.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.25, 10.75, 9.75, 11], "texture": "#8"}, - "east": {"uv": [10, 10.75, 10.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#8"}, - "west": {"uv": [9.75, 10.75, 10, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#8"}, - "down": {"uv": [9.75, 11, 10.25, 10.75], "texture": "#8"} + "north": { + "uv": [ + 10.25, + 10.75, + 9.75, + 11 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10, + 10.75, + 10.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.75, + 10.75, + 10, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.75, + 11, + 10.25, + 10.75 + ], + "texture": "#8" + } } }, { "name": "tai_47", - "from": [3.5, 0, 11], - "to": [3.75, 0.25, 11.25], + "from": [ + 3.5, + 0, + 11 + ], + "to": [ + 3.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [3.75, 11, 3.5, 11.25], "texture": "#8"}, - "east": {"uv": [3.5, 11, 3.75, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3.5, 11, 3.75, 11.25], "texture": "#8"}, - "west": {"uv": [3.5, 11, 3.75, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3.5, 11, 3.75, 11.25], "texture": "#8"}, - "down": {"uv": [3.5, 11.25, 3.75, 11], "texture": "#8"} + "north": { + "uv": [ + 3.75, + 11, + 3.5, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3.5, + 11, + 3.75, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3.5, + 11, + 3.75, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3.5, + 11, + 3.75, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3.5, + 11, + 3.75, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3.5, + 11.25, + 3.75, + 11 + ], + "texture": "#8" + } } }, { "name": "tai_48", - "from": [6.5, 0, 11], - "to": [7, 0.25, 11.75], + "from": [ + 6.5, + 0, + 11 + ], + "to": [ + 7, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7, 11, 6.5, 11.25], "texture": "#8"}, - "east": {"uv": [6.75, 11, 7, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6.5, 11.5, 7, 11.75], "texture": "#8"}, - "west": {"uv": [6.5, 11, 6.75, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6.5, 11, 7, 11.75], "texture": "#8"}, - "down": {"uv": [6.5, 11.75, 7, 11], "texture": "#8"} + "north": { + "uv": [ + 7, + 11, + 6.5, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.75, + 11, + 7, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 7, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6.5, + 11, + 6.75, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6.5, + 11, + 7, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6.5, + 11.75, + 7, + 11 + ], + "texture": "#8" + } } }, { "name": "tai_49", - "from": [8.75, 0, 11], - "to": [9, 0.25, 11.25], + "from": [ + 8.75, + 0, + 11 + ], + "to": [ + 9, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9, 11, 8.75, 11.25], "texture": "#8"}, - "east": {"uv": [8.75, 11, 9, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [8.75, 11, 9, 11.25], "texture": "#8"}, - "west": {"uv": [8.75, 11, 9, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [8.75, 11, 9, 11.25], "texture": "#8"}, - "down": {"uv": [8.75, 11.25, 9, 11], "texture": "#8"} + "north": { + "uv": [ + 9, + 11, + 8.75, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 8.75, + 11, + 9, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 8.75, + 11.25, + 9, + 11 + ], + "texture": "#8" + } } }, { "name": "tai_50", - "from": [5.5, 0, 11.25], - "to": [5.75, 0.25, 11.5], + "from": [ + 5.5, + 0, + 11.25 + ], + "to": [ + 5.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.75, 11.25, 5.5, 11.5], "texture": "#8"}, - "east": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#8"}, - "west": {"uv": [5.5, 11.25, 5.75, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#8"}, - "down": {"uv": [5.5, 11.5, 5.75, 11.25], "texture": "#8"} + "north": { + "uv": [ + 5.75, + 11.25, + 5.5, + 11.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 5.75, + 11.25 + ], + "texture": "#8" + } } }, { "name": "tai_51", - "from": [7, 0, 11.25], - "to": [7.25, 0.25, 11.75], + "from": [ + 7, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7.25, 11.25, 7, 11.5], "texture": "#8"}, - "east": {"uv": [7, 11.25, 7.25, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7, 11.5, 7.25, 11.75], "texture": "#8"}, - "west": {"uv": [7, 11.25, 7.25, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7, 11.25, 7.25, 11.75], "texture": "#8"}, - "down": {"uv": [7, 11.75, 7.25, 11.25], "texture": "#8"} + "north": { + "uv": [ + 7.25, + 11.25, + 7, + 11.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7, + 11.5, + 7.25, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7, + 11.25, + 7.25, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7, + 11.25, + 7.25, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7, + 11.75, + 7.25, + 11.25 + ], + "texture": "#8" + } } }, { "name": "tai_52", - "from": [6, 0, 11.5], - "to": [6.5, 0.25, 11.75], + "from": [ + 6, + 0, + 11.5 + ], + "to": [ + 6.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6.5, 11.5, 6, 11.75], "texture": "#8"}, - "east": {"uv": [6.25, 11.5, 6.5, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6, 11.5, 6.5, 11.75], "texture": "#8"}, - "west": {"uv": [6, 11.5, 6.25, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6, 11.5, 6.5, 11.75], "texture": "#8"}, - "down": {"uv": [6, 11.75, 6.5, 11.5], "texture": "#8"} + "north": { + "uv": [ + 6.5, + 11.5, + 6, + 11.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.25, + 11.5, + 6.5, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6, + 11.5, + 6.5, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6, + 11.5, + 6.25, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6, + 11.5, + 6.5, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6, + 11.75, + 6.5, + 11.5 + ], + "texture": "#8" + } } }, { "name": "tai_53", - "from": [6.75, 0, 11.75], - "to": [7, 0.25, 12], + "from": [ + 6.75, + 0, + 11.75 + ], + "to": [ + 7, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7, 11.75, 6.75, 12], "texture": "#8"}, - "east": {"uv": [6.75, 11.75, 7, 12], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6.75, 11.75, 7, 12], "texture": "#8"}, - "west": {"uv": [6.75, 11.75, 7, 12], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6.75, 11.75, 7, 12], "texture": "#8"}, - "down": {"uv": [6.75, 12, 7, 11.75], "texture": "#8"} + "north": { + "uv": [ + 7, + 11.75, + 6.75, + 12 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6.75, + 11.75, + 7, + 12 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6.75, + 12, + 7, + 11.75 + ], + "texture": "#8" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 10, 15], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 10, + 15 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "tai", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/tanago.json b/pack/assets/minecraft/models/fish/tanago.json index a1e8586b..ce2c6771 100644 --- a/pack/assets/minecraft/models/fish/tanago.json +++ b/pack/assets/minecraft/models/fish/tanago.json @@ -2,928 +2,4970 @@ "__name": "タナゴ", "credit": "Made with Blockbench", "textures": { - "0": "fish/tanago", - "particle": "fish/tanago" + "0": "item/fish/tanago", + "particle": "item/fish/tanago" }, "elements": [ { "name": "tanago_0", - "from": [7.75, 0, 1.25], - "to": [8.75, 0.25, 1.5], + "from": [ + 7.75, + 0, + 1.25 + ], + "to": [ + 8.75, + 0.25, + 1.5 + ], "faces": { - "north": {"uv": [8.75, 1.25, 7.75, 1.5], "texture": "#0"}, - "east": {"uv": [8.5, 1.25, 8.75, 1.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 1.25, 8.75, 1.5], "texture": "#0"}, - "west": {"uv": [7.75, 1.25, 8, 1.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 1.25, 8.75, 1.5], "texture": "#0"}, - "down": {"uv": [7.75, 1.5, 8.75, 1.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 1.25, + 7.75, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 1.25, + 8.75, + 1.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 1.25, + 8, + 1.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 1.5, + 8.75, + 1.25 + ], + "texture": "#0" + } } }, { "name": "tanago_1", - "from": [7, 0, 1.5], - "to": [9.25, 0.25, 1.75], + "from": [ + 7, + 0, + 1.5 + ], + "to": [ + 9.25, + 0.25, + 1.75 + ], "faces": { - "north": {"uv": [9.25, 1.5, 7, 1.75], "texture": "#0"}, - "east": {"uv": [9, 1.5, 9.25, 1.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 1.5, 9.25, 1.75], "texture": "#0"}, - "west": {"uv": [7, 1.5, 7.25, 1.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 1.5, 9.25, 1.75], "texture": "#0"}, - "down": {"uv": [7, 1.75, 9.25, 1.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 1.5, + 7, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 1.5, + 7.25, + 1.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 1.75, + 9.25, + 1.5 + ], + "texture": "#0" + } } }, { "name": "tanago_2", - "from": [6.75, 0, 1.75], - "to": [9.75, 0.25, 2], + "from": [ + 6.75, + 0, + 1.75 + ], + "to": [ + 9.75, + 0.25, + 2 + ], "faces": { - "north": {"uv": [9.75, 1.75, 6.75, 2], "texture": "#0"}, - "east": {"uv": [9.5, 1.75, 9.75, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 1.75, 9.75, 2], "texture": "#0"}, - "west": {"uv": [6.75, 1.75, 7, 2], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 1.75, 9.75, 2], "texture": "#0"}, - "down": {"uv": [6.75, 2, 9.75, 1.75], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 1.75, + 6.75, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 1.75, + 9.75, + 2 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 1.75, + 9.75, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 1.75, + 7, + 2 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 1.75, + 9.75, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 2, + 9.75, + 1.75 + ], + "texture": "#0" + } } }, { "name": "tanago_3", - "from": [6.75, 0, 2], - "to": [10, 0.25, 2.25], + "from": [ + 6.75, + 0, + 2 + ], + "to": [ + 10, + 0.25, + 2.25 + ], "faces": { - "north": {"uv": [10, 2, 6.75, 2.25], "texture": "#0"}, - "east": {"uv": [9.75, 2, 10, 2.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 2, 10, 2.25], "texture": "#0"}, - "west": {"uv": [6.75, 2, 7, 2.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 2, 10, 2.25], "texture": "#0"}, - "down": {"uv": [6.75, 2.25, 10, 2], "texture": "#0"} + "north": { + "uv": [ + 10, + 2, + 6.75, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 2, + 10, + 2.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 2, + 10, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 2, + 7, + 2.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 2, + 10, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 2.25, + 10, + 2 + ], + "texture": "#0" + } } }, { "name": "tanago_4", - "from": [6.5, 0, 2.25], - "to": [10.25, 0.25, 2.5], + "from": [ + 6.5, + 0, + 2.25 + ], + "to": [ + 10.25, + 0.25, + 2.5 + ], "faces": { - "north": {"uv": [10.25, 2.25, 6.5, 2.5], "texture": "#0"}, - "east": {"uv": [10, 2.25, 10.25, 2.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 2.25, 10.25, 2.5], "texture": "#0"}, - "west": {"uv": [6.5, 2.25, 6.75, 2.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 2.25, 10.25, 2.5], "texture": "#0"}, - "down": {"uv": [6.5, 2.5, 10.25, 2.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 2.25, + 6.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 2.25, + 10.25, + 2.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.25, + 10.25, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 2.25, + 6.75, + 2.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2.25, + 10.25, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 2.5, + 10.25, + 2.25 + ], + "texture": "#0" + } } }, { "name": "tanago_5", - "from": [6.5, 0, 2.5], - "to": [10.5, 0.25, 2.75], + "from": [ + 6.5, + 0, + 2.5 + ], + "to": [ + 10.5, + 0.25, + 2.75 + ], "faces": { - "north": {"uv": [10.5, 2.5, 6.5, 2.75], "texture": "#0"}, - "east": {"uv": [10.25, 2.5, 10.5, 2.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 2.5, 10.5, 2.75], "texture": "#0"}, - "west": {"uv": [6.5, 2.5, 6.75, 2.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 2.5, 10.5, 2.75], "texture": "#0"}, - "down": {"uv": [6.5, 2.75, 10.5, 2.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 2.5, + 6.5, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 2.5, + 10.5, + 2.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 2.5, + 6.75, + 2.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 2.75, + 10.5, + 2.5 + ], + "texture": "#0" + } } }, { "name": "tanago_6", - "from": [6.25, 0, 2.75], - "to": [10.75, 0.25, 3], + "from": [ + 6.25, + 0, + 2.75 + ], + "to": [ + 10.75, + 0.25, + 3 + ], "faces": { - "north": {"uv": [10.75, 2.75, 6.25, 3], "texture": "#0"}, - "east": {"uv": [10.5, 2.75, 10.75, 3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 2.75, 10.75, 3], "texture": "#0"}, - "west": {"uv": [6.25, 2.75, 6.5, 3], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 2.75, 10.75, 3], "texture": "#0"}, - "down": {"uv": [6.25, 3, 10.75, 2.75], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 2.75, + 6.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 2.75, + 10.75, + 3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 2.75, + 10.75, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 2.75, + 6.5, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 2.75, + 10.75, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 3, + 10.75, + 2.75 + ], + "texture": "#0" + } } }, { "name": "tanago_7", - "from": [6.25, 0, 3], - "to": [11, 0.25, 3.25], + "from": [ + 6.25, + 0, + 3 + ], + "to": [ + 11, + 0.25, + 3.25 + ], "faces": { - "north": {"uv": [11, 3, 6.25, 3.25], "texture": "#0"}, - "east": {"uv": [10.75, 3, 11, 3.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 3, 11, 3.25], "texture": "#0"}, - "west": {"uv": [6.25, 3, 6.5, 3.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 3, 11, 3.25], "texture": "#0"}, - "down": {"uv": [6.25, 3.25, 11, 3], "texture": "#0"} + "north": { + "uv": [ + 11, + 3, + 6.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 3, + 11, + 3.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 3, + 11, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3, + 6.5, + 3.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 3, + 11, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 3.25, + 11, + 3 + ], + "texture": "#0" + } } }, { "name": "tanago_8", - "from": [6.25, 0, 3.25], - "to": [11, 0.25, 3.5], + "from": [ + 6.25, + 0, + 3.25 + ], + "to": [ + 11, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [11, 3.25, 6.25, 3.5], "texture": "#0"}, - "east": {"uv": [10.75, 3.25, 11, 3.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 3.25, 11, 3.5], "texture": "#0"}, - "west": {"uv": [6.25, 3.25, 6.5, 3.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 3.25, 11, 3.5], "texture": "#0"}, - "down": {"uv": [6.25, 3.5, 11, 3.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 3.25, + 6.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 3.25, + 11, + 3.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 3.25, + 11, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.25, + 6.5, + 3.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 3.25, + 11, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 3.5, + 11, + 3.25 + ], + "texture": "#0" + } } }, { "name": "tanago_9", - "from": [6, 0, 3.5], - "to": [11.25, 0.25, 3.75], + "from": [ + 6, + 0, + 3.5 + ], + "to": [ + 11.25, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [11.25, 3.5, 6, 3.75], "texture": "#0"}, - "east": {"uv": [11, 3.5, 11.25, 3.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 3.5, 11.25, 3.75], "texture": "#0"}, - "west": {"uv": [6, 3.5, 6.25, 3.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 3.5, 11.25, 3.75], "texture": "#0"}, - "down": {"uv": [6, 3.75, 11.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 3.5, + 11.25, + 3.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3.5, + 11.25, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3.5, + 6.25, + 3.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 3.5, + 11.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 3.75, + 11.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "tanago_10", - "from": [4.5, 0, 3.75], - "to": [11.25, 0.25, 4], + "from": [ + 4.5, + 0, + 3.75 + ], + "to": [ + 11.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [11.25, 3.75, 4.5, 4], "texture": "#0"}, - "east": {"uv": [11, 3.75, 11.25, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 3.75, 11.25, 4], "texture": "#0"}, - "west": {"uv": [4.5, 3.75, 4.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 3.75, 11.25, 4], "texture": "#0"}, - "down": {"uv": [4.5, 4, 11.25, 3.75], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 3.75, + 4.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 3.75, + 11.25, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.75, + 11.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3.75, + 4.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3.75, + 11.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4, + 11.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "tanago_11", - "from": [4, 0, 4], - "to": [11.5, 0.25, 4.25], + "from": [ + 4, + 0, + 4 + ], + "to": [ + 11.5, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [11.5, 4, 4, 4.25], "texture": "#0"}, - "east": {"uv": [11.25, 4, 11.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 4, 11.5, 4.25], "texture": "#0"}, - "west": {"uv": [4, 4, 4.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 4, 11.5, 4.25], "texture": "#0"}, - "down": {"uv": [4, 4.25, 11.5, 4], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4, + 4, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4, + 11.5, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 4, + 11.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4, + 4.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4, + 11.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4.25, + 11.5, + 4 + ], + "texture": "#0" + } } }, { "name": "tanago_12", - "from": [3.75, 0, 4.25], - "to": [11.5, 0.25, 4.5], + "from": [ + 3.75, + 0, + 4.25 + ], + "to": [ + 11.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [11.5, 4.25, 3.75, 4.5], "texture": "#0"}, - "east": {"uv": [11.25, 4.25, 11.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 4.25, 11.5, 4.5], "texture": "#0"}, - "west": {"uv": [3.75, 4.25, 4, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 4.25, 11.5, 4.5], "texture": "#0"}, - "down": {"uv": [3.75, 4.5, 11.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 4.25, + 3.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 4.25, + 11.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 4.25, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4.25, + 4, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 4.25, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 4.5, + 11.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "tanago_13", - "from": [3.25, 0, 4.5], - "to": [11.75, 0.25, 4.75], + "from": [ + 3.25, + 0, + 4.5 + ], + "to": [ + 11.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [11.75, 4.5, 3.25, 4.75], "texture": "#0"}, - "east": {"uv": [11.5, 4.5, 11.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 4.5, 11.75, 4.75], "texture": "#0"}, - "west": {"uv": [3.25, 4.5, 3.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 4.5, 11.75, 4.75], "texture": "#0"}, - "down": {"uv": [3.25, 4.75, 11.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 4.5, + 3.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 4.5, + 11.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 4.5, + 11.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 4.5, + 3.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4.5, + 11.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 4.75, + 11.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "tanago_14", - "from": [15.25, 0, 4.5], - "to": [15.75, 0.25, 4.75], + "from": [ + 15.25, + 0, + 4.5 + ], + "to": [ + 15.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [15.75, 4.5, 15.25, 4.75], "texture": "#0"}, - "east": {"uv": [15.5, 4.5, 15.75, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 4.5, 15.75, 4.75], "texture": "#0"}, - "west": {"uv": [15.25, 4.5, 15.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 4.5, 15.75, 4.75], "texture": "#0"}, - "down": {"uv": [15.25, 4.75, 15.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 4.5, + 15.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 4.5, + 15.75, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 4.5, + 15.75, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 4.5, + 15.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 4.5, + 15.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 4.75, + 15.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "tanago_15", - "from": [3, 0, 4.75], - "to": [11.75, 0.25, 5], + "from": [ + 3, + 0, + 4.75 + ], + "to": [ + 11.75, + 0.25, + 5 + ], "faces": { - "north": {"uv": [11.75, 4.75, 3, 5], "texture": "#0"}, - "east": {"uv": [11.5, 4.75, 11.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 4.75, 11.75, 5], "texture": "#0"}, - "west": {"uv": [3, 4.75, 3.25, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 4.75, 11.75, 5], "texture": "#0"}, - "down": {"uv": [3, 5, 11.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 4.75, + 3, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 4.75, + 11.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4.75, + 11.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 4.75, + 3.25, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 4.75, + 11.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5, + 11.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "tanago_16", - "from": [14.75, 0, 4.75], - "to": [15.75, 0.25, 5], + "from": [ + 14.75, + 0, + 4.75 + ], + "to": [ + 15.75, + 0.25, + 5 + ], "faces": { - "north": {"uv": [15.75, 4.75, 14.75, 5], "texture": "#0"}, - "east": {"uv": [15.5, 4.75, 15.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 4.75, 15.75, 5], "texture": "#0"}, - "west": {"uv": [14.75, 4.75, 15, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 4.75, 15.75, 5], "texture": "#0"}, - "down": {"uv": [14.75, 5, 15.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 4.75, + 14.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 4.75, + 15.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 4.75, + 15.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 4.75, + 15, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 4.75, + 15.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 5, + 15.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "tanago_17", - "from": [2.75, 0, 5], - "to": [12, 0.25, 5.25], + "from": [ + 2.75, + 0, + 5 + ], + "to": [ + 12, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [12, 5, 2.75, 5.25], "texture": "#0"}, - "east": {"uv": [11.75, 5, 12, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 5, 12, 5.25], "texture": "#0"}, - "west": {"uv": [2.75, 5, 3, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 5, 12, 5.25], "texture": "#0"}, - "down": {"uv": [2.75, 5.25, 12, 5], "texture": "#0"} + "north": { + "uv": [ + 12, + 5, + 2.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5, + 12, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 5, + 12, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 5, + 3, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 5, + 12, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 5.25, + 12, + 5 + ], + "texture": "#0" + } } }, { "name": "tanago_18", - "from": [14.25, 0, 5], - "to": [15.75, 0.25, 5.25], + "from": [ + 14.25, + 0, + 5 + ], + "to": [ + 15.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [15.75, 5, 14.25, 5.25], "texture": "#0"}, - "east": {"uv": [15.5, 5, 15.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 5, 15.75, 5.25], "texture": "#0"}, - "west": {"uv": [14.25, 5, 14.5, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 5, 15.75, 5.25], "texture": "#0"}, - "down": {"uv": [14.25, 5.25, 15.75, 5], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 5, + 14.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 5, + 15.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 5, + 15.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 5, + 14.5, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 5, + 15.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 5.25, + 15.75, + 5 + ], + "texture": "#0" + } } }, { "name": "tanago_19", - "from": [2.5, 0, 5.25], - "to": [12, 0.25, 5.5], + "from": [ + 2.5, + 0, + 5.25 + ], + "to": [ + 12, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [12, 5.25, 2.5, 5.5], "texture": "#0"}, - "east": {"uv": [11.75, 5.25, 12, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 5.25, 12, 5.5], "texture": "#0"}, - "west": {"uv": [2.5, 5.25, 2.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 5.25, 12, 5.5], "texture": "#0"}, - "down": {"uv": [2.5, 5.5, 12, 5.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.25, + 2.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.25, + 12, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 5.25, + 12, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.25, + 2.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 5.25, + 12, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 5.5, + 12, + 5.25 + ], + "texture": "#0" + } } }, { "name": "tanago_20", - "from": [14, 0, 5.25], - "to": [15.75, 0.25, 5.5], + "from": [ + 14, + 0, + 5.25 + ], + "to": [ + 15.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [15.75, 5.25, 14, 5.5], "texture": "#0"}, - "east": {"uv": [15.5, 5.25, 15.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 5.25, 15.75, 5.5], "texture": "#0"}, - "west": {"uv": [14, 5.25, 14.25, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 5.25, 15.75, 5.5], "texture": "#0"}, - "down": {"uv": [14, 5.5, 15.75, 5.25], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 5.25, + 14, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 5.25, + 15.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 5.25, + 15.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.25, + 14.25, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 5.25, + 15.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 5.5, + 15.75, + 5.25 + ], + "texture": "#0" + } } }, { "name": "tanago_21", - "from": [2.25, 0, 5.5], - "to": [12, 0.25, 5.75], + "from": [ + 2.25, + 0, + 5.5 + ], + "to": [ + 12, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [12, 5.5, 2.25, 5.75], "texture": "#0"}, - "east": {"uv": [11.75, 5.5, 12, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 5.5, 12, 5.75], "texture": "#0"}, - "west": {"uv": [2.25, 5.5, 2.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 5.5, 12, 5.75], "texture": "#0"}, - "down": {"uv": [2.25, 5.75, 12, 5.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.5, + 2.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.5, + 12, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 5.5, + 12, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 5.5, + 2.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 12, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 5.75, + 12, + 5.5 + ], + "texture": "#0" + } } }, { "name": "tanago_22", - "from": [13.75, 0, 5.5], - "to": [15.5, 0.25, 5.75], + "from": [ + 13.75, + 0, + 5.5 + ], + "to": [ + 15.5, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [15.5, 5.5, 13.75, 5.75], "texture": "#0"}, - "east": {"uv": [15.25, 5.5, 15.5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 5.5, 15.5, 5.75], "texture": "#0"}, - "west": {"uv": [13.75, 5.5, 14, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5.5, 15.5, 5.75], "texture": "#0"}, - "down": {"uv": [13.75, 5.75, 15.5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 5.5, + 13.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 5.5, + 15.5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 5.5, + 15.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5.5, + 14, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.5, + 15.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 5.75, + 15.5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "tanago_23", - "from": [2, 0, 5.75], - "to": [12, 0.25, 6], + "from": [ + 2, + 0, + 5.75 + ], + "to": [ + 12, + 0.25, + 6 + ], "faces": { - "north": {"uv": [12, 5.75, 2, 6], "texture": "#0"}, - "east": {"uv": [11.75, 5.75, 12, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 5.75, 12, 6], "texture": "#0"}, - "west": {"uv": [2, 5.75, 2.25, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 5.75, 12, 6], "texture": "#0"}, - "down": {"uv": [2, 6, 12, 5.75], "texture": "#0"} + "north": { + "uv": [ + 12, + 5.75, + 2, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 5.75, + 12, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5.75, + 12, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.25, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.75, + 12, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6, + 12, + 5.75 + ], + "texture": "#0" + } } }, { "name": "tanago_24", - "from": [13.5, 0, 5.75], - "to": [15.5, 0.25, 6], + "from": [ + 13.5, + 0, + 5.75 + ], + "to": [ + 15.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.5, 5.75, 13.5, 6], "texture": "#0"}, - "east": {"uv": [15.25, 5.75, 15.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 5.75, 15.5, 6], "texture": "#0"}, - "west": {"uv": [13.5, 5.75, 13.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 5.75, 15.5, 6], "texture": "#0"}, - "down": {"uv": [13.5, 6, 15.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 5.75, + 13.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 5.75, + 15.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 5.75, + 13.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 5.75, + 15.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 6, + 15.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "tanago_25", - "from": [1.5, 0, 6], - "to": [11.75, 0.25, 6.25], + "from": [ + 1.5, + 0, + 6 + ], + "to": [ + 11.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [11.75, 6, 1.5, 6.25], "texture": "#0"}, - "east": {"uv": [11.5, 6, 11.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6, 11.75, 6.25], "texture": "#0"}, - "west": {"uv": [1.5, 6, 1.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6, 11.75, 6.25], "texture": "#0"}, - "down": {"uv": [1.5, 6.25, 11.75, 6], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 6, + 1.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 6, + 11.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6, + 1.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6, + 11.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.25, + 11.75, + 6 + ], + "texture": "#0" + } } }, { "name": "tanago_26", - "from": [13.25, 0, 6], - "to": [15.25, 0.25, 6.25], + "from": [ + 13.25, + 0, + 6 + ], + "to": [ + 15.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [15.25, 6, 13.25, 6.25], "texture": "#0"}, - "east": {"uv": [15, 6, 15.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 6, 15.25, 6.25], "texture": "#0"}, - "west": {"uv": [13.25, 6, 13.5, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 6, 15.25, 6.25], "texture": "#0"}, - "down": {"uv": [13.25, 6.25, 15.25, 6], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6, + 13.25, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6, + 15.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 6, + 15.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 6, + 13.5, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6, + 15.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 6.25, + 15.25, + 6 + ], + "texture": "#0" + } } }, { "name": "tanago_27", - "from": [1.25, 0, 6.25], - "to": [11, 0.25, 6.5], + "from": [ + 1.25, + 0, + 6.25 + ], + "to": [ + 11, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [11, 6.25, 1.25, 6.5], "texture": "#0"}, - "east": {"uv": [10.75, 6.25, 11, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 6.25, 11, 6.5], "texture": "#0"}, - "west": {"uv": [1.25, 6.25, 1.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.25, 11, 6.5], "texture": "#0"}, - "down": {"uv": [1.25, 6.5, 11, 6.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 6.25, + 1.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 6.25, + 11, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.25, + 1.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.25, + 11, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 6.5, + 11, + 6.25 + ], + "texture": "#0" + } } }, { "name": "tanago_28", - "from": [13, 0, 6.25], - "to": [15.25, 0.25, 6.5], + "from": [ + 13, + 0, + 6.25 + ], + "to": [ + 15.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.25, 6.25, 13, 6.5], "texture": "#0"}, - "east": {"uv": [15, 6.25, 15.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 6.25, 15.25, 6.5], "texture": "#0"}, - "west": {"uv": [13, 6.25, 13.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.25, 15.25, 6.5], "texture": "#0"}, - "down": {"uv": [13, 6.5, 15.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 6.25, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 6.25, + 15.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 6.5, + 15.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "tanago_29", - "from": [0.75, 0, 6.5], - "to": [12, 0.25, 6.75], + "from": [ + 0.75, + 0, + 6.5 + ], + "to": [ + 12, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [12, 6.5, 0.75, 6.75], "texture": "#0"}, - "east": {"uv": [11.75, 6.5, 12, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 6.5, 12, 6.75], "texture": "#0"}, - "west": {"uv": [0.75, 6.5, 1, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 6.5, 12, 6.75], "texture": "#0"}, - "down": {"uv": [0.75, 6.75, 12, 6.5], "texture": "#0"} + "north": { + "uv": [ + 12, + 6.5, + 0.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 6.5, + 12, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 6.5, + 1, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 6.5, + 12, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 6.75, + 12, + 6.5 + ], + "texture": "#0" + } } }, { "name": "tanago_30", - "from": [12.75, 0, 6.5], - "to": [14.75, 0.25, 6.75], + "from": [ + 12.75, + 0, + 6.5 + ], + "to": [ + 14.75, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [14.75, 6.5, 12.75, 6.75], "texture": "#0"}, - "east": {"uv": [14.5, 6.5, 14.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 6.5, 14.75, 6.75], "texture": "#0"}, - "west": {"uv": [12.75, 6.5, 13, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.5, 14.75, 6.75], "texture": "#0"}, - "down": {"uv": [12.75, 6.75, 14.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 6.5, + 12.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 6.5, + 14.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.5, + 13, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.5, + 14.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 6.75, + 14.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "tanago_31", - "from": [0.5, 0, 6.75], - "to": [14.5, 0.25, 7], + "from": [ + 0.5, + 0, + 6.75 + ], + "to": [ + 14.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [14.5, 6.75, 0.5, 7], "texture": "#0"}, - "east": {"uv": [14.25, 6.75, 14.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 6.75, 14.5, 7], "texture": "#0"}, - "west": {"uv": [0.5, 6.75, 0.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 6.75, 14.5, 7], "texture": "#0"}, - "down": {"uv": [0.5, 7, 14.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.75, + 0.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 6.75, + 0.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 6.75, + 14.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 7, + 14.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "tanago_32", - "from": [0.25, 0, 7], - "to": [14.5, 0.25, 7.25], + "from": [ + 0.25, + 0, + 7 + ], + "to": [ + 14.5, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [14.5, 7, 0.25, 7.25], "texture": "#0"}, - "east": {"uv": [14.25, 7, 14.5, 7.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7, 14.5, 7.25], "texture": "#0"}, - "west": {"uv": [0.25, 7, 0.5, 7.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7, 14.5, 7.25], "texture": "#0"}, - "down": {"uv": [0.25, 7.25, 14.5, 7], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7, + 0.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7, + 14.5, + 7.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7, + 0.5, + 7.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7, + 14.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 7.25, + 14.5, + 7 + ], + "texture": "#0" + } } }, { "name": "tanago_33", - "from": [0.25, 0, 7.25], - "to": [14.25, 0.25, 7.5], + "from": [ + 0.25, + 0, + 7.25 + ], + "to": [ + 14.25, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [14.25, 7.25, 0.25, 7.5], "texture": "#0"}, - "east": {"uv": [14, 7.25, 14.25, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7.25, 14.25, 7.5], "texture": "#0"}, - "west": {"uv": [0.25, 7.25, 0.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.25, 14.25, 7.5], "texture": "#0"}, - "down": {"uv": [0.25, 7.5, 14.25, 7.25], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 7.25, + 0.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.25, + 14.25, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.25, + 0.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.25, + 14.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 7.5, + 14.25, + 7.25 + ], + "texture": "#0" + } } }, { "name": "tanago_34", - "from": [0.25, 0, 7.5], - "to": [14.5, 0.25, 7.75], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [14.5, 7.5, 0.25, 7.75], "texture": "#0"}, - "east": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7.5, 14.5, 7.75], "texture": "#0"}, - "west": {"uv": [0.25, 7.5, 0.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.5, 14.5, 7.75], "texture": "#0"}, - "down": {"uv": [0.25, 7.75, 14.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7.5, + 0.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 7.75, + 14.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "tanago_34", - "from": [0.25, 0, 7.5], - "to": [14.5, 0.25, 7.75], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 7.75 + ], "color": 1, "faces": { - "north": {"uv": [14.5, 7.5, 0.25, 7.75], "texture": "#missing"}, - "east": {"uv": [14.25, 7.5, 14.5, 7.75], "rotation": 90, "texture": "#missing"}, - "south": {"uv": [0.25, 7.5, 14.5, 7.75], "texture": "#missing"}, - "west": {"uv": [0.25, 7.5, 0.5, 7.75], "rotation": 270, "texture": "#missing"}, - "up": {"uv": [0.25, 7.5, 14.5, 7.75], "texture": "#missing"}, - "down": {"uv": [0.25, 7.75, 14.5, 7.5], "texture": "#missing"} + "north": { + "uv": [ + 14.5, + 7.5, + 0.25, + 7.75 + ], + "texture": "#missing" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 7.75 + ], + "rotation": 90, + "texture": "#missing" + }, + "south": { + "uv": [ + 0.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 7.75 + ], + "rotation": 270, + "texture": "#missing" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 14.5, + 7.75 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0.25, + 7.75, + 14.5, + 7.5 + ], + "texture": "#missing" + } } }, { "name": "tanago_35", - "from": [0.25, 0, 7.75], - "to": [14.5, 0.25, 8], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 14.5, + 0.25, + 8 + ], "faces": { - "north": {"uv": [14.5, 7.75, 0.25, 8], "texture": "#0"}, - "east": {"uv": [14.25, 7.75, 14.5, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.25, 7.75, 14.5, 8], "texture": "#0"}, - "west": {"uv": [0.25, 7.75, 0.5, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.25, 7.75, 14.5, 8], "texture": "#0"}, - "down": {"uv": [0.25, 8, 14.5, 7.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 7.75, + 0.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 7.75, + 14.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 8, + 14.5, + 7.75 + ], + "texture": "#0" + } } }, { "name": "tanago_36", - "from": [0.5, 0, 8], - "to": [14.75, 0.25, 8.25], + "from": [ + 0.5, + 0, + 8 + ], + "to": [ + 14.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [14.75, 8, 0.5, 8.25], "texture": "#0"}, - "east": {"uv": [14.5, 8, 14.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 8, 14.75, 8.25], "texture": "#0"}, - "west": {"uv": [0.5, 8, 0.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 8, 14.75, 8.25], "texture": "#0"}, - "down": {"uv": [0.5, 8.25, 14.75, 8], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8, + 14.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 14.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 14.75, + 8 + ], + "texture": "#0" + } } }, { "name": "tanago_37", - "from": [0.75, 0, 8.25], - "to": [14.75, 0.25, 8.5], + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 14.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.75, 8.25, 0.75, 8.5], "texture": "#0"}, - "east": {"uv": [14.5, 8.25, 14.75, 8.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 8.25, 14.75, 8.5], "texture": "#0"}, - "west": {"uv": [0.75, 8.25, 1, 8.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 8.25, 14.75, 8.5], "texture": "#0"}, - "down": {"uv": [0.75, 8.5, 14.75, 8.25], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 8.25, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 8.25, + 14.75, + 8.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 14.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 8.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 14.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 8.5, + 14.75, + 8.25 + ], + "texture": "#0" + } } }, { "name": "tanago_38", - "from": [1, 0, 8.5], - "to": [12.25, 0.25, 8.75], + "from": [ + 1, + 0, + 8.5 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 8.5, 1, 8.75], "texture": "#0"}, - "east": {"uv": [12, 8.5, 12.25, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 8.5, 12.25, 8.75], "texture": "#0"}, - "west": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 8.5, 12.25, 8.75], "texture": "#0"}, - "down": {"uv": [1, 8.75, 12.25, 8.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8.5, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.5, + 12.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.75, + 12.25, + 8.5 + ], + "texture": "#0" + } } }, { "name": "tanago_39", - "from": [12.5, 0, 8.5], - "to": [15, 0.25, 8.75], + "from": [ + 12.5, + 0, + 8.5 + ], + "to": [ + 15, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15, 8.5, 12.5, 8.75], "texture": "#0"}, - "east": {"uv": [14.75, 8.5, 15, 8.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 8.5, 15, 8.75], "texture": "#0"}, - "west": {"uv": [12.5, 8.5, 12.75, 8.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 8.5, 15, 8.75], "texture": "#0"}, - "down": {"uv": [12.5, 8.75, 15, 8.5], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.5, + 12.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.5, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.5, + 12.75, + 8.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 8.5, + 15, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 8.75, + 15, + 8.5 + ], + "texture": "#0" + } } }, { "name": "tanago_40", - "from": [1.25, 0, 8.75], - "to": [11.75, 0.25, 9], + "from": [ + 1.25, + 0, + 8.75 + ], + "to": [ + 11.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [11.75, 8.75, 1.25, 9], "texture": "#0"}, - "east": {"uv": [11.5, 8.75, 11.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 8.75, 11.75, 9], "texture": "#0"}, - "west": {"uv": [1.25, 8.75, 1.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 8.75, 11.75, 9], "texture": "#0"}, - "down": {"uv": [1.25, 9, 11.75, 8.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 8.75, + 1.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 8.75, + 11.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.75, + 11.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9, + 11.75, + 8.75 + ], + "texture": "#0" + } } }, { "name": "tanago_41", - "from": [13.25, 0, 8.75], - "to": [15, 0.25, 9], + "from": [ + 13.25, + 0, + 8.75 + ], + "to": [ + 15, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15, 8.75, 13.25, 9], "texture": "#0"}, - "east": {"uv": [14.75, 8.75, 15, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 8.75, 15, 9], "texture": "#0"}, - "west": {"uv": [13.25, 8.75, 13.5, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 8.75, 15, 9], "texture": "#0"}, - "down": {"uv": [13.25, 9, 15, 8.75], "texture": "#0"} + "north": { + "uv": [ + 15, + 8.75, + 13.25, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 8.75, + 15, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 8.75, + 13.5, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.75, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 15, + 8.75 + ], + "texture": "#0" + } } }, { "name": "tanago_42", - "from": [1.5, 0, 9], - "to": [12.25, 0.25, 9.25], + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 12.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.25, 9, 1.5, 9.25], "texture": "#0"}, - "east": {"uv": [12, 9, 12.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9, 12.25, 9.25], "texture": "#0"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 9, 12.25, 9.25], "texture": "#0"}, - "down": {"uv": [1.5, 9.25, 12.25, 9], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9, + 12.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 12.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 9, + 12.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 12.25, + 9 + ], + "texture": "#0" + } } }, { "name": "tanago_43", - "from": [13.5, 0, 9], - "to": [15.25, 0.25, 9.25], + "from": [ + 13.5, + 0, + 9 + ], + "to": [ + 15.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15.25, 9, 13.5, 9.25], "texture": "#0"}, - "east": {"uv": [15, 9, 15.25, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9, 15.25, 9.25], "texture": "#0"}, - "west": {"uv": [13.5, 9, 13.75, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 9, 15.25, 9.25], "texture": "#0"}, - "down": {"uv": [13.5, 9.25, 15.25, 9], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 9, + 13.75, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 9.25, + 15.25, + 9 + ], + "texture": "#0" + } } }, { "name": "tanago_44", - "from": [1.75, 0, 9.25], - "to": [12.25, 0.25, 9.5], + "from": [ + 1.75, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.25, 9.25, 1.75, 9.5], "texture": "#0"}, - "east": {"uv": [12, 9.25, 12.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 12.25, 9.5], "texture": "#0"}, - "west": {"uv": [1.75, 9.25, 2, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 12.25, 9.5], "texture": "#0"}, - "down": {"uv": [1.75, 9.5, 12.25, 9.25], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.25, + 1.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9.25, + 2, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 12.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 9.5, + 12.25, + 9.25 + ], + "texture": "#0" + } } }, { "name": "tanago_45", - "from": [13.75, 0, 9.25], - "to": [15.5, 0.25, 9.5], + "from": [ + 13.75, + 0, + 9.25 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 9.25, 13.75, 9.5], "texture": "#0"}, - "east": {"uv": [15.25, 9.25, 15.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.25, 15.5, 9.5], "texture": "#0"}, - "west": {"uv": [13.75, 9.25, 14, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 9.25, 15.5, 9.5], "texture": "#0"}, - "down": {"uv": [13.75, 9.5, 15.5, 9.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9.25, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 9.25, + 14, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 9.5, + 15.5, + 9.25 + ], + "texture": "#0" + } } }, { "name": "tanago_46", - "from": [2, 0, 9.5], - "to": [12.25, 0.25, 9.75], + "from": [ + 2, + 0, + 9.5 + ], + "to": [ + 12.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.25, 9.5, 2, 9.75], "texture": "#0"}, - "east": {"uv": [12, 9.5, 12.25, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 9.5, 12.25, 9.75], "texture": "#0"}, - "west": {"uv": [2, 9.5, 2.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 9.5, 12.25, 9.75], "texture": "#0"}, - "down": {"uv": [2, 9.75, 12.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.5, + 2, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.5, + 12.25, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.5, + 12.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9.5, + 12.25, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 9.75, + 12.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "tanago_47", - "from": [14, 0, 9.5], - "to": [15.5, 0.25, 9.75], + "from": [ + 14, + 0, + 9.5 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 9.5, 14, 9.75], "texture": "#0"}, - "east": {"uv": [15.25, 9.5, 15.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.5, 15.5, 9.75], "texture": "#0"}, - "west": {"uv": [14, 9.5, 14.25, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 9.5, 15.5, 9.75], "texture": "#0"}, - "down": {"uv": [14, 9.75, 15.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 9.5, + 14, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.5, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 9.5, + 14.25, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 9.5, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9.75, + 15.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "tanago_48", - "from": [2.25, 0, 9.75], - "to": [12.25, 0.25, 10], + "from": [ + 2.25, + 0, + 9.75 + ], + "to": [ + 12.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [12.25, 9.75, 2.25, 10], "texture": "#0"}, - "east": {"uv": [12, 9.75, 12.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 9.75, 12.25, 10], "texture": "#0"}, - "west": {"uv": [2.25, 9.75, 2.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 9.75, 12.25, 10], "texture": "#0"}, - "down": {"uv": [2.25, 10, 12.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 9.75, + 2.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 9.75, + 12.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 12.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 9.75, + 2.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 9.75, + 12.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10, + 12.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "tanago_49", - "from": [14.25, 0, 9.75], - "to": [15.75, 0.25, 10], + "from": [ + 14.25, + 0, + 9.75 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.75, 14.25, 10], "texture": "#0"}, - "east": {"uv": [15.5, 9.75, 15.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.75, 15.75, 10], "texture": "#0"}, - "west": {"uv": [14.25, 9.75, 14.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 9.75, 15.75, 10], "texture": "#0"}, - "down": {"uv": [14.25, 10, 15.75, 9.75], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 9.75, + 14.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.75, + 15.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 9.75, + 14.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 9.75, + 15.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 10, + 15.75, + 9.75 + ], + "texture": "#0" + } } }, { "name": "tanago_50", - "from": [2.75, 0, 10], - "to": [12.25, 0.25, 10.25], + "from": [ + 2.75, + 0, + 10 + ], + "to": [ + 12.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [12.25, 10, 2.75, 10.25], "texture": "#0"}, - "east": {"uv": [12, 10, 12.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 10, 12.25, 10.25], "texture": "#0"}, - "west": {"uv": [2.75, 10, 3, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 10, 12.25, 10.25], "texture": "#0"}, - "down": {"uv": [2.75, 10.25, 12.25, 10], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 10, + 2.75, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 10, + 12.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 10, + 12.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 10, + 3, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 10, + 12.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 10.25, + 12.25, + 10 + ], + "texture": "#0" + } } }, { "name": "tanago_51", - "from": [14.5, 0, 10], - "to": [15.75, 0.25, 10.25], + "from": [ + 14.5, + 0, + 10 + ], + "to": [ + 15.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.75, 10, 14.5, 10.25], "texture": "#0"}, - "east": {"uv": [15.5, 10, 15.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 10, 15.75, 10.25], "texture": "#0"}, - "west": {"uv": [14.5, 10, 14.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 10, 15.75, 10.25], "texture": "#0"}, - "down": {"uv": [14.5, 10.25, 15.75, 10], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 10, + 14.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 10, + 15.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10, + 15.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 10, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 10, + 15.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 15.75, + 10 + ], + "texture": "#0" + } } }, { "name": "tanago_52", - "from": [3.25, 0, 10.25], - "to": [12, 0.25, 10.5], + "from": [ + 3.25, + 0, + 10.25 + ], + "to": [ + 12, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12, 10.25, 3.25, 10.5], "texture": "#0"}, - "east": {"uv": [11.75, 10.25, 12, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 10.25, 12, 10.5], "texture": "#0"}, - "west": {"uv": [3.25, 10.25, 3.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 10.25, 12, 10.5], "texture": "#0"}, - "down": {"uv": [3.25, 10.5, 12, 10.25], "texture": "#0"} + "north": { + "uv": [ + 12, + 10.25, + 3.25, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 10.25, + 12, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 10.25, + 3.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 10.25, + 12, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 10.5, + 12, + 10.25 + ], + "texture": "#0" + } } }, { "name": "tanago_53", - "from": [3.75, 0, 10.5], - "to": [11.75, 0.25, 10.75], + "from": [ + 3.75, + 0, + 10.5 + ], + "to": [ + 11.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.75, 10.5, 3.75, 10.75], "texture": "#0"}, - "east": {"uv": [11.5, 10.5, 11.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 10.5, 11.75, 10.75], "texture": "#0"}, - "west": {"uv": [3.75, 10.5, 4, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 10.5, 11.75, 10.75], "texture": "#0"}, - "down": {"uv": [3.75, 10.75, 11.75, 10.5], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 10.5, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 11.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 10.5, + 4, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.5, + 11.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 10.75, + 11.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "tanago_54", - "from": [4.25, 0, 10.75], - "to": [11.75, 0.25, 11], + "from": [ + 4.25, + 0, + 10.75 + ], + "to": [ + 11.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.75, 10.75, 4.25, 11], "texture": "#0"}, - "east": {"uv": [11.5, 10.75, 11.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 10.75, 11.75, 11], "texture": "#0"}, - "west": {"uv": [4.25, 10.75, 4.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 10.75, 11.75, 11], "texture": "#0"}, - "down": {"uv": [4.25, 11, 11.75, 10.75], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 10.75, + 4.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 10.75, + 11.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.75, + 11.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 10.75, + 4.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.75, + 11.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 11, + 11.75, + 10.75 + ], + "texture": "#0" + } } }, { "name": "tanago_55", - "from": [5, 0, 11], - "to": [6.75, 0.25, 11.25], + "from": [ + 5, + 0, + 11 + ], + "to": [ + 6.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [6.75, 11, 5, 11.25], "texture": "#0"}, - "east": {"uv": [6.5, 11, 6.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 11, 6.75, 11.25], "texture": "#0"}, - "west": {"uv": [5, 11, 5.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 11, 6.75, 11.25], "texture": "#0"}, - "down": {"uv": [5, 11.25, 6.75, 11], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11, + 5, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11, + 6.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 11, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 11, + 5.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 11, + 6.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 11.25, + 6.75, + 11 + ], + "texture": "#0" + } } }, { "name": "tanago_56", - "from": [7, 0, 11], - "to": [11.5, 0.25, 11.25], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 11.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11.5, 11, 7, 11.25], "texture": "#0"}, - "east": {"uv": [11.25, 11, 11.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11, 11.5, 11.25], "texture": "#0"}, - "west": {"uv": [7, 11, 7.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11, 11.5, 11.25], "texture": "#0"}, - "down": {"uv": [7, 11.25, 11.5, 11], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 11, + 7, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 11, + 11.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11, + 11.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11, + 7.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11, + 11.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11.25, + 11.5, + 11 + ], + "texture": "#0" + } } }, { "name": "tanago_57", - "from": [5.25, 0, 11.25], - "to": [7, 0.25, 11.5], + "from": [ + 5.25, + 0, + 11.25 + ], + "to": [ + 7, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [7, 11.25, 5.25, 11.5], "texture": "#0"}, - "east": {"uv": [6.75, 11.25, 7, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 11.25, 7, 11.5], "texture": "#0"}, - "west": {"uv": [5.25, 11.25, 5.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 11.25, 7, 11.5], "texture": "#0"}, - "down": {"uv": [5.25, 11.5, 7, 11.25], "texture": "#0"} + "north": { + "uv": [ + 7, + 11.25, + 5.25, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 11.25, + 7, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 11.25, + 7, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 11.25, + 5.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 11.25, + 7, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 11.5, + 7, + 11.25 + ], + "texture": "#0" + } } }, { "name": "tanago_58", - "from": [7.5, 0, 11.25], - "to": [11, 0.25, 11.5], + "from": [ + 7.5, + 0, + 11.25 + ], + "to": [ + 11, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11, 11.25, 7.5, 11.5], "texture": "#0"}, - "east": {"uv": [10.75, 11.25, 11, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 11.25, 11, 11.5], "texture": "#0"}, - "west": {"uv": [7.5, 11.25, 7.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 11.25, 11, 11.5], "texture": "#0"}, - "down": {"uv": [7.5, 11.5, 11, 11.25], "texture": "#0"} + "north": { + "uv": [ + 11, + 11.25, + 7.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 11.25, + 11, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 11.25, + 7.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 11.25, + 11, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 11.5, + 11, + 11.25 + ], + "texture": "#0" + } } }, { "name": "tanago_59", - "from": [5.75, 0, 11.5], - "to": [7.25, 0.25, 11.75], + "from": [ + 5.75, + 0, + 11.5 + ], + "to": [ + 7.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7.25, 11.5, 5.75, 11.75], "texture": "#0"}, - "east": {"uv": [7, 11.5, 7.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 11.5, 7.25, 11.75], "texture": "#0"}, - "west": {"uv": [5.75, 11.5, 6, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 11.5, 7.25, 11.75], "texture": "#0"}, - "down": {"uv": [5.75, 11.75, 7.25, 11.5], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 11.5, + 5.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11.5, + 7.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 11.5, + 7.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 11.5, + 6, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 11.5, + 7.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 11.75, + 7.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "tanago_60", - "from": [7.75, 0, 11.5], - "to": [10.75, 0.25, 11.75], + "from": [ + 7.75, + 0, + 11.5 + ], + "to": [ + 10.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10.75, 11.5, 7.75, 11.75], "texture": "#0"}, - "east": {"uv": [10.5, 11.5, 10.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 11.5, 10.75, 11.75], "texture": "#0"}, - "west": {"uv": [7.75, 11.5, 8, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 11.5, 10.75, 11.75], "texture": "#0"}, - "down": {"uv": [7.75, 11.75, 10.75, 11.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 11.5, + 7.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 11.5, + 10.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 11.5, + 10.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 11.5, + 8, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 11.5, + 10.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 11.75, + 10.75, + 11.5 + ], + "texture": "#0" + } } }, { "name": "tanago_61", - "from": [6.25, 0, 11.75], - "to": [7.25, 0.25, 12], + "from": [ + 6.25, + 0, + 11.75 + ], + "to": [ + 7.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [7.25, 11.75, 6.25, 12], "texture": "#0"}, - "east": {"uv": [7, 11.75, 7.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 11.75, 7.25, 12], "texture": "#0"}, - "west": {"uv": [6.25, 11.75, 6.5, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 11.75, 7.25, 12], "texture": "#0"}, - "down": {"uv": [6.25, 12, 7.25, 11.75], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 11.75, + 6.25, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11.75, + 7.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 11.75, + 7.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 11.75, + 6.5, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 11.75, + 7.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 12, + 7.25, + 11.75 + ], + "texture": "#0" + } } }, { "name": "tanago_62", - "from": [8, 0, 11.75], - "to": [10.5, 0.25, 12], + "from": [ + 8, + 0, + 11.75 + ], + "to": [ + 10.5, + 0.25, + 12 + ], "faces": { - "north": {"uv": [10.5, 11.75, 8, 12], "texture": "#0"}, - "east": {"uv": [10.25, 11.75, 10.5, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 11.75, 10.5, 12], "texture": "#0"}, - "west": {"uv": [8, 11.75, 8.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 11.75, 10.5, 12], "texture": "#0"}, - "down": {"uv": [8, 12, 10.5, 11.75], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 11.75, + 8, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 11.75, + 10.5, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 11.75, + 10.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11.75, + 8.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 11.75, + 10.5, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 12, + 10.5, + 11.75 + ], + "texture": "#0" + } } }, { "name": "tanago_63", - "from": [8, 0, 12], - "to": [10.25, 0.25, 12.25], + "from": [ + 8, + 0, + 12 + ], + "to": [ + 10.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [10.25, 12, 8, 12.25], "texture": "#0"}, - "east": {"uv": [10, 12, 10.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 12, 10.25, 12.25], "texture": "#0"}, - "west": {"uv": [8, 12, 8.25, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 12, 10.25, 12.25], "texture": "#0"}, - "down": {"uv": [8, 12.25, 10.25, 12], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 12, + 8, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 12, + 10.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 12, + 10.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 12, + 10.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 12.25, + 10.25, + 12 + ], + "texture": "#0" + } } }, { "name": "tanago_64", - "from": [8.25, 0, 12.25], - "to": [10, 0.25, 12.5], + "from": [ + 8.25, + 0, + 12.25 + ], + "to": [ + 10, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10, 12.25, 8.25, 12.5], "texture": "#0"}, - "east": {"uv": [9.75, 12.25, 10, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 12.25, 10, 12.5], "texture": "#0"}, - "west": {"uv": [8.25, 12.25, 8.5, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 12.25, 10, 12.5], "texture": "#0"}, - "down": {"uv": [8.25, 12.5, 10, 12.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 12.25, + 8.25, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 12.25, + 10, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 12.25, + 10, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 12.25, + 8.5, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 12.25, + 10, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 12.5, + 10, + 12.25 + ], + "texture": "#0" + } } }, { "name": "tanago_65", - "from": [8.5, 0, 12.5], - "to": [9.75, 0.25, 12.75], + "from": [ + 8.5, + 0, + 12.5 + ], + "to": [ + 9.75, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9.75, 12.5, 8.5, 12.75], "texture": "#0"}, - "east": {"uv": [9.5, 12.5, 9.75, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 12.5, 9.75, 12.75], "texture": "#0"}, - "west": {"uv": [8.5, 12.5, 8.75, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 12.5, 9.75, 12.75], "texture": "#0"}, - "down": {"uv": [8.5, 12.75, 9.75, 12.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 12.5, + 8.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 12.5, + 9.75, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 12.5, + 9.75, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 12.5, + 8.75, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 12.5, + 9.75, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 12.75, + 9.75, + 12.5 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.25, 1.75], - "scale": [0.2, 0.2, 0.2] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.25, + 1.75 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.25, 1.75], - "scale": [0.2, 0.2, 0.2] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.25, + 1.75 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] }, "firstperson_righthand": { - "rotation": [90, -33.75, 0], - "translation": [2.75, 0.25, 1.75], - "scale": [0.2, 0.2, 0.2] + "rotation": [ + 90, + -33.75, + 0 + ], + "translation": [ + 2.75, + 0.25, + 1.75 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] }, "firstperson_lefthand": { - "rotation": [90, -42, -180.5], - "translation": [3.25, 0.75, -0.5], - "scale": [0.2, 0.2, 0.2] + "rotation": [ + 90, + -42, + -180.5 + ], + "translation": [ + 3.25, + 0.75, + -0.5 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, -0.25, 7.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -0.25, + 7.5 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 10.75, 13] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 10.75, + 13 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0, 7.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 7.5 + ] } }, "groups": [ { "name": "tanago", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/tatunootoshigo.json b/pack/assets/minecraft/models/fish/tatunootoshigo.json index c222939e..b30b7df2 100644 --- a/pack/assets/minecraft/models/fish/tatunootoshigo.json +++ b/pack/assets/minecraft/models/fish/tatunootoshigo.json @@ -2,786 +2,4191 @@ "__name": "タツノオトシゴ", "credit": "Made with Blockbench", "textures": { - "0": "fish/tatunootosigo", - "particle": "fish/tatunootosigo" + "0": "item/fish/tatunootosigo", + "particle": "item/fish/tatunootosigo" }, "elements": [ { "name": "tatunootosigo_0", - "from": [6.75, 0, 1], - "to": [7.25, 0.25, 4.75], + "from": [ + 6.75, + 0, + 1 + ], + "to": [ + 7.25, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [7.25, 1, 6.75, 1.25], "texture": "#0"}, - "east": {"uv": [7, 1, 7.25, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 4.5, 7.25, 4.75], "texture": "#0"}, - "west": {"uv": [6.75, 1, 7, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 1, 7.25, 4.75], "texture": "#0"}, - "down": {"uv": [6.75, 4.75, 7.25, 1], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 1, + 6.75, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 1, + 7.25, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 1, + 7, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 1, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 4.75, + 7.25, + 1 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_1", - "from": [6.5, 0, 1.25], - "to": [6.75, 0.25, 5], + "from": [ + 6.5, + 0, + 1.25 + ], + "to": [ + 6.75, + 0.25, + 5 + ], "faces": { - "north": {"uv": [6.75, 1.25, 6.5, 1.5], "texture": "#0"}, - "east": {"uv": [6.5, 1.25, 6.75, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 4.75, 6.75, 5], "texture": "#0"}, - "west": {"uv": [6.5, 1.25, 6.75, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 1.25, 6.75, 5], "texture": "#0"}, - "down": {"uv": [6.5, 5, 6.75, 1.25], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 1.25, + 6.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 1.25, + 6.75, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4.75, + 6.75, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 6.75, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 1.25, + 6.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6.75, + 1.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_2", - "from": [7.25, 0, 1.25], - "to": [7.5, 0.25, 4.75], + "from": [ + 7.25, + 0, + 1.25 + ], + "to": [ + 7.5, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [7.5, 1.25, 7.25, 1.5], "texture": "#0"}, - "east": {"uv": [7.25, 1.25, 7.5, 4.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 4.5, 7.5, 4.75], "texture": "#0"}, - "west": {"uv": [7.25, 1.25, 7.5, 4.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 1.25, 7.5, 4.75], "texture": "#0"}, - "down": {"uv": [7.25, 4.75, 7.5, 1.25], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 1.25, + 7.25, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 1.25, + 7.5, + 4.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 1.25, + 7.5, + 4.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 1.25, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4.75, + 7.5, + 1.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_3", - "from": [6.25, 0, 2], - "to": [6.5, 0.25, 5], + "from": [ + 6.25, + 0, + 2 + ], + "to": [ + 6.5, + 0.25, + 5 + ], "faces": { - "north": {"uv": [6.5, 2, 6.25, 2.25], "texture": "#0"}, - "east": {"uv": [6.25, 2, 6.5, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 4.75, 6.5, 5], "texture": "#0"}, - "west": {"uv": [6.25, 2, 6.5, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 2, 6.5, 5], "texture": "#0"}, - "down": {"uv": [6.25, 5, 6.5, 2], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 2, + 6.25, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2, + 6.5, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.75, + 6.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 2, + 6.5, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 2, + 6.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5, + 6.5, + 2 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_4", - "from": [8, 0, 2], - "to": [8.5, 0.25, 10.75], + "from": [ + 8, + 0, + 2 + ], + "to": [ + 8.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.5, 2, 8, 2.25], "texture": "#0"}, - "east": {"uv": [8.25, 2, 8.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 10.5, 8.5, 10.75], "texture": "#0"}, - "west": {"uv": [8, 2, 8.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 2, 8.5, 10.75], "texture": "#0"}, - "down": {"uv": [8, 10.75, 8.5, 2], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 2, + 8, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2, + 8.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 2, + 8.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 10.75, + 8.5, + 2 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_5", - "from": [7.5, 0, 2.25], - "to": [8, 0.25, 4.5], + "from": [ + 7.5, + 0, + 2.25 + ], + "to": [ + 8, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [8, 2.25, 7.5, 2.5], "texture": "#0"}, - "east": {"uv": [7.75, 2.25, 8, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 4.25, 8, 4.5], "texture": "#0"}, - "west": {"uv": [7.5, 2.25, 7.75, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 2.25, 8, 4.5], "texture": "#0"}, - "down": {"uv": [7.5, 4.5, 8, 2.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 2.25, + 7.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 2.25, + 8, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.25, + 7.75, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 2.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 4.5, + 8, + 2.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_6", - "from": [8.5, 0, 2.25], - "to": [8.75, 0.25, 2.5], + "from": [ + 8.5, + 0, + 2.25 + ], + "to": [ + 8.75, + 0.25, + 2.5 + ], "faces": { - "north": {"uv": [8.75, 2.25, 8.5, 2.5], "texture": "#0"}, - "east": {"uv": [8.5, 2.25, 8.75, 2.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 2.25, 8.75, 2.5], "texture": "#0"}, - "west": {"uv": [8.5, 2.25, 8.75, 2.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 2.25, 8.75, 2.5], "texture": "#0"}, - "down": {"uv": [8.5, 2.5, 8.75, 2.25], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 2.25, + 8.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2.25, + 8.75, + 2.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 2.25, + 8.75, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.25, + 8.75, + 2.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 2.25, + 8.75, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 2.5, + 8.75, + 2.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_7", - "from": [6, 0, 2.5], - "to": [6.25, 0.25, 5.25], + "from": [ + 6, + 0, + 2.5 + ], + "to": [ + 6.25, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [6.25, 2.5, 6, 2.75], "texture": "#0"}, - "east": {"uv": [6, 2.5, 6.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 5, 6.25, 5.25], "texture": "#0"}, - "west": {"uv": [6, 2.5, 6.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 2.5, 6.25, 5.25], "texture": "#0"}, - "down": {"uv": [6, 5.25, 6.25, 2.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 2.5, + 6, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2.5, + 6.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5, + 6.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2.5, + 6.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 2.5, + 6.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.25, + 6.25, + 2.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_8", - "from": [5.75, 0, 2.75], - "to": [6, 0.25, 5.25], + "from": [ + 5.75, + 0, + 2.75 + ], + "to": [ + 6, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [6, 2.75, 5.75, 3], "texture": "#0"}, - "east": {"uv": [5.75, 2.75, 6, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 5, 6, 5.25], "texture": "#0"}, - "west": {"uv": [5.75, 2.75, 6, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 2.75, 6, 5.25], "texture": "#0"}, - "down": {"uv": [5.75, 5.25, 6, 2.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 2.75, + 5.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 2.75, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 2.75, + 6, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 2.75, + 6, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.25, + 6, + 2.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_9", - "from": [5.5, 0, 3], - "to": [5.75, 0.25, 5.5], + "from": [ + 5.5, + 0, + 3 + ], + "to": [ + 5.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [5.75, 3, 5.5, 3.25], "texture": "#0"}, - "east": {"uv": [5.5, 3, 5.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 5.25, 5.75, 5.5], "texture": "#0"}, - "west": {"uv": [5.5, 3, 5.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 3, 5.75, 5.5], "texture": "#0"}, - "down": {"uv": [5.5, 5.5, 5.75, 3], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 3, + 5.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 3, + 5.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3, + 5.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.5, + 5.75, + 3 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_10", - "from": [8.5, 0, 3], - "to": [9.75, 0.25, 4], + "from": [ + 8.5, + 0, + 3 + ], + "to": [ + 9.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [9.75, 3, 8.5, 3.25], "texture": "#0"}, - "east": {"uv": [9.5, 3, 9.75, 4], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 3.75, 9.75, 4], "texture": "#0"}, - "west": {"uv": [8.5, 3, 8.75, 4], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 3, 9.75, 4], "texture": "#0"}, - "down": {"uv": [8.5, 4, 9.75, 3], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 3, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3, + 9.75, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.75, + 9.75, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.75, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3, + 9.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 4, + 9.75, + 3 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_11", - "from": [5.25, 0, 3.25], - "to": [5.5, 0.25, 5.5], + "from": [ + 5.25, + 0, + 3.25 + ], + "to": [ + 5.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [5.5, 3.25, 5.25, 3.5], "texture": "#0"}, - "east": {"uv": [5.25, 3.25, 5.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 5.25, 5.5, 5.5], "texture": "#0"}, - "west": {"uv": [5.25, 3.25, 5.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 3.25, 5.5, 5.5], "texture": "#0"}, - "down": {"uv": [5.25, 5.5, 5.5, 3.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 3.25, + 5.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.25, + 5.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 5.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3.25, + 5.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 3.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.5, + 5.5, + 3.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_12", - "from": [9.75, 0, 3.25], - "to": [10, 0.25, 3.5], + "from": [ + 9.75, + 0, + 3.25 + ], + "to": [ + 10, + 0.25, + 3.5 + ], "faces": { - "north": {"uv": [10, 3.25, 9.75, 3.5], "texture": "#0"}, - "east": {"uv": [9.75, 3.25, 10, 3.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 3.25, 10, 3.5], "texture": "#0"}, - "west": {"uv": [9.75, 3.25, 10, 3.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 3.25, 10, 3.5], "texture": "#0"}, - "down": {"uv": [9.75, 3.5, 10, 3.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 3.25, + 9.75, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 3.25, + 10, + 3.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 3.25, + 10, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 3.25, + 10, + 3.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 3.25, + 10, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 3.5, + 10, + 3.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_13", - "from": [5, 0, 3.75], - "to": [5.25, 0.25, 5.75], + "from": [ + 5, + 0, + 3.75 + ], + "to": [ + 5.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [5.25, 3.75, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 3.75, 5.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 5.5, 5.25, 5.75], "texture": "#0"}, - "west": {"uv": [5, 3.75, 5.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 3.75, 5.25, 5.75], "texture": "#0"}, - "down": {"uv": [5, 5.75, 5.25, 3.75], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 3.75, + 5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 3.75, + 5.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 3.75, + 5.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 3.75, + 5.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5.75, + 5.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_14", - "from": [8.5, 0, 4], - "to": [9.5, 0.25, 5.5], + "from": [ + 8.5, + 0, + 4 + ], + "to": [ + 9.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [9.5, 4, 8.5, 4.25], "texture": "#0"}, - "east": {"uv": [9.25, 4, 9.5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [8.5, 4, 8.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 4, 9.5, 5.5], "texture": "#0"}, - "down": {"uv": [8.5, 5.5, 9.5, 4], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 4, + 9.5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.25, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 8.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 9.5, + 4 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_15", - "from": [9.5, 0, 4.5], - "to": [9.75, 0.25, 5.5], + "from": [ + 9.5, + 0, + 4.5 + ], + "to": [ + 9.75, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [9.75, 4.5, 9.5, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.5, 9.75, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 5.25, 9.75, 5.5], "texture": "#0"}, - "west": {"uv": [9.5, 4.5, 9.75, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 4.5, 9.75, 5.5], "texture": "#0"}, - "down": {"uv": [9.5, 5.5, 9.75, 4.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.75, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.25, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4.5, + 9.75, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.5, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5.5, + 9.75, + 4.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_16", - "from": [4.25, 0, 4.75], - "to": [5, 0.25, 5.5], + "from": [ + 4.25, + 0, + 4.75 + ], + "to": [ + 5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [5, 4.75, 4.25, 5], "texture": "#0"}, - "east": {"uv": [4.75, 4.75, 5, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 5.25, 5, 5.5], "texture": "#0"}, - "west": {"uv": [4.25, 4.75, 4.5, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.75, 5, 5.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.5, 5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5, + 4.75, + 4.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.75, + 5, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 5.25, + 5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.75, + 5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.5, + 5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_17", - "from": [7.75, 0, 4.75], - "to": [8, 0.25, 10.5], + "from": [ + 7.75, + 0, + 4.75 + ], + "to": [ + 8, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8, 4.75, 7.75, 5], "texture": "#0"}, - "east": {"uv": [7.75, 4.75, 8, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 10.25, 8, 10.5], "texture": "#0"}, - "west": {"uv": [7.75, 4.75, 8, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4.75, 8, 10.5], "texture": "#0"}, - "down": {"uv": [7.75, 10.5, 8, 4.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 4.75, + 7.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.75, + 8, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 10.25, + 8, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4.75, + 8, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.75, + 8, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 10.5, + 8, + 4.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_18", - "from": [9.75, 0, 4.75], - "to": [10, 0.25, 5.25], + "from": [ + 9.75, + 0, + 4.75 + ], + "to": [ + 10, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [10, 4.75, 9.75, 5], "texture": "#0"}, - "east": {"uv": [9.75, 4.75, 10, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 5, 10, 5.25], "texture": "#0"}, - "west": {"uv": [9.75, 4.75, 10, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 4.75, 10, 5.25], "texture": "#0"}, - "down": {"uv": [9.75, 5.25, 10, 4.75], "texture": "#0"} + "north": { + "uv": [ + 10, + 4.75, + 9.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4.75, + 10, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 4.75, + 10, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 4.75, + 10, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 5.25, + 10, + 4.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_19", - "from": [4, 0, 5], - "to": [4.25, 0.25, 5.25], + "from": [ + 4, + 0, + 5 + ], + "to": [ + 4.25, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [4.25, 5, 4, 5.25], "texture": "#0"}, - "east": {"uv": [4, 5, 4.25, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 5, 4.25, 5.25], "texture": "#0"}, - "west": {"uv": [4, 5, 4.25, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5, 4.25, 5.25], "texture": "#0"}, - "down": {"uv": [4, 5.25, 4.25, 5], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 5, + 4, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5, + 4.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5.25, + 4.25, + 5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_20", - "from": [7.25, 0, 5], - "to": [7.75, 0.25, 10], + "from": [ + 7.25, + 0, + 5 + ], + "to": [ + 7.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.75, 5, 7.25, 5.25], "texture": "#0"}, - "east": {"uv": [7.5, 5, 7.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 9.75, 7.75, 10], "texture": "#0"}, - "west": {"uv": [7.25, 5, 7.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 5, 7.75, 10], "texture": "#0"}, - "down": {"uv": [7.25, 10, 7.75, 5], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 5, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5, + 7.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 5, + 7.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5, + 7.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 10, + 7.75, + 5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_21", - "from": [7, 0, 5.25], - "to": [7.25, 0.25, 10], + "from": [ + 7, + 0, + 5.25 + ], + "to": [ + 7.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7.25, 5.25, 7, 5.5], "texture": "#0"}, - "east": {"uv": [7, 5.25, 7.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 9.75, 7.25, 10], "texture": "#0"}, - "west": {"uv": [7, 5.25, 7.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 5.25, 7.25, 10], "texture": "#0"}, - "down": {"uv": [7, 10, 7.25, 5.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 5.25, + 7, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.25, + 7.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10, + 7.25, + 5.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_22", - "from": [4.5, 0, 5.5], - "to": [5, 0.25, 5.75], + "from": [ + 4.5, + 0, + 5.5 + ], + "to": [ + 5, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [5, 5.5, 4.5, 5.75], "texture": "#0"}, - "east": {"uv": [4.75, 5.5, 5, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 5.5, 5, 5.75], "texture": "#0"}, - "west": {"uv": [4.5, 5.5, 4.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 5.5, 5, 5.75], "texture": "#0"}, - "down": {"uv": [4.5, 5.75, 5, 5.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5.5, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 5.5, + 5, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5.5, + 5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.5, + 5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.75, + 5, + 5.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_23", - "from": [6.75, 0, 5.5], - "to": [7, 0.25, 10], + "from": [ + 6.75, + 0, + 5.5 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 5.5, 6.75, 5.75], "texture": "#0"}, - "east": {"uv": [6.75, 5.5, 7, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#0"}, - "west": {"uv": [6.75, 5.5, 7, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 5.5, 7, 10], "texture": "#0"}, - "down": {"uv": [6.75, 10, 7, 5.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5.5, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 7, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 5.5, + 7, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 5.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_24", - "from": [8.5, 0, 5.5], - "to": [9.25, 0.25, 6], + "from": [ + 8.5, + 0, + 5.5 + ], + "to": [ + 9.25, + 0.25, + 6 + ], "faces": { - "north": {"uv": [9.25, 5.5, 8.5, 5.75], "texture": "#0"}, - "east": {"uv": [9, 5.5, 9.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.75, 9.25, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5.5, 8.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 5.5, 9.25, 6], "texture": "#0"}, - "down": {"uv": [8.5, 6, 9.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 9.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6, + 9.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_25", - "from": [6.5, 0, 5.75], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.5, + 0, + 5.75 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 5.75, 6.5, 6], "texture": "#0"}, - "east": {"uv": [6.5, 5.75, 6.75, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#0"}, - "west": {"uv": [6.5, 5.75, 6.75, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 5.75, 6.75, 9.75], "texture": "#0"}, - "down": {"uv": [6.5, 9.75, 6.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 5.75, + 6.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5.75, + 6.75, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_26", - "from": [8.5, 0, 6], - "to": [9, 0.25, 13], + "from": [ + 8.5, + 0, + 6 + ], + "to": [ + 9, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9, 6, 8.5, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 6, 9, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 12.75, 9, 13], "texture": "#0"}, - "west": {"uv": [8.5, 6, 8.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 6, 9, 13], "texture": "#0"}, - "down": {"uv": [8.5, 13, 9, 6], "texture": "#0"} + "north": { + "uv": [ + 9, + 6, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6, + 9, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 12.75, + 9, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6, + 8.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6, + 9, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 13, + 9, + 6 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_27", - "from": [6.25, 0, 6.25], - "to": [6.5, 0.25, 9.75], + "from": [ + 6.25, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 6.25, 6.25, 6.5], "texture": "#0"}, - "east": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.25, 9.5, 6.5, 9.75], "texture": "#0"}, - "west": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.25, 6.25, 6.5, 9.75], "texture": "#0"}, - "down": {"uv": [6.25, 9.75, 6.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 6.25, + 6.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.75, + 6.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_28", - "from": [9, 0, 6.25], - "to": [9.5, 0.25, 7], + "from": [ + 9, + 0, + 6.25 + ], + "to": [ + 9.5, + 0.25, + 7 + ], "faces": { - "north": {"uv": [9.5, 6.25, 9, 6.5], "texture": "#0"}, - "east": {"uv": [9.25, 6.25, 9.5, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6.75, 9.5, 7], "texture": "#0"}, - "west": {"uv": [9, 6.25, 9.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 6.25, 9.5, 7], "texture": "#0"}, - "down": {"uv": [9, 7, 9.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 6.25, + 9, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 6.25, + 9.5, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6.75, + 9.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.25, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7, + 9.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_29", - "from": [6, 0, 6.5], - "to": [6.25, 0.25, 9.5], + "from": [ + 6, + 0, + 6.5 + ], + "to": [ + 6.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [6.25, 6.5, 6, 6.75], "texture": "#0"}, - "east": {"uv": [6, 6.5, 6.25, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9.25, 6.25, 9.5], "texture": "#0"}, - "west": {"uv": [6, 6.5, 6.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 6.5, 6.25, 9.5], "texture": "#0"}, - "down": {"uv": [6, 9.5, 6.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 6.25, + 6.5, + 6, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.5, + 6.25, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.25, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.5, + 6.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.5, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9.5, + 6.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_30", - "from": [9.5, 0, 6.5], - "to": [9.75, 0.25, 6.75], + "from": [ + 9.5, + 0, + 6.5 + ], + "to": [ + 9.75, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [9.75, 6.5, 9.5, 6.75], "texture": "#0"}, - "east": {"uv": [9.5, 6.5, 9.75, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 6.5, 9.75, 6.75], "texture": "#0"}, - "west": {"uv": [9.5, 6.5, 9.75, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 6.5, 9.75, 6.75], "texture": "#0"}, - "down": {"uv": [9.5, 6.75, 9.75, 6.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 6.5, + 9.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.75, + 9.75, + 6.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_31", - "from": [9.75, 0, 7], - "to": [10.5, 0.25, 9.75], + "from": [ + 9.75, + 0, + 7 + ], + "to": [ + 10.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.5, 7, 9.75, 7.25], "texture": "#0"}, - "east": {"uv": [10.25, 7, 10.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 9.5, 10.5, 9.75], "texture": "#0"}, - "west": {"uv": [9.75, 7, 10, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 7, 10.5, 9.75], "texture": "#0"}, - "down": {"uv": [9.75, 9.75, 10.5, 7], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 7, + 9.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 7, + 10.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 10.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 7, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 7, + 10.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 10.5, + 7 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_32", - "from": [5.75, 0, 7.25], - "to": [6, 0.25, 9.25], + "from": [ + 5.75, + 0, + 7.25 + ], + "to": [ + 6, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [6, 7.25, 5.75, 7.5], "texture": "#0"}, - "east": {"uv": [5.75, 7.25, 6, 9.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 9, 6, 9.25], "texture": "#0"}, - "west": {"uv": [5.75, 7.25, 6, 9.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 7.25, 6, 9.25], "texture": "#0"}, - "down": {"uv": [5.75, 9.25, 6, 7.25], "texture": "#0"} + "north": { + "uv": [ + 6, + 7.25, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.25, + 6, + 9.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.25, + 6, + 9.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.25, + 6, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 9.25, + 6, + 7.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_33", - "from": [9.5, 0, 7.25], - "to": [9.75, 0.25, 9.5], + "from": [ + 9.5, + 0, + 7.25 + ], + "to": [ + 9.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.75, 7.25, 9.5, 7.5], "texture": "#0"}, - "east": {"uv": [9.5, 7.25, 9.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 9.25, 9.75, 9.5], "texture": "#0"}, - "west": {"uv": [9.5, 7.25, 9.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 7.25, 9.75, 9.5], "texture": "#0"}, - "down": {"uv": [9.5, 9.5, 9.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 7.25, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7.25, + 9.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.25, + 9.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.25, + 9.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_34", - "from": [10.5, 0, 7.25], - "to": [10.75, 0.25, 8], + "from": [ + 10.5, + 0, + 7.25 + ], + "to": [ + 10.75, + 0.25, + 8 + ], "faces": { - "north": {"uv": [10.75, 7.25, 10.5, 7.5], "texture": "#0"}, - "east": {"uv": [10.5, 7.25, 10.75, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 7.75, 10.75, 8], "texture": "#0"}, - "west": {"uv": [10.5, 7.25, 10.75, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 7.25, 10.75, 8], "texture": "#0"}, - "down": {"uv": [10.5, 8, 10.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 7.25, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.75, + 10.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 7.25, + 10.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8, + 10.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_35", - "from": [9, 0, 7.5], - "to": [9.5, 0.25, 9.5], + "from": [ + 9, + 0, + 7.5 + ], + "to": [ + 9.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9.5, 7.5, 9, 7.75], "texture": "#0"}, - "east": {"uv": [9.25, 7.5, 9.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9.25, 9.5, 9.5], "texture": "#0"}, - "west": {"uv": [9, 7.5, 9.25, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7.5, 9.5, 9.5], "texture": "#0"}, - "down": {"uv": [9, 9.5, 9.5, 7.5], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 7.5, + 9.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.25, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.5, + 9.25, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.5, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.5, + 9.5, + 7.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_36", - "from": [5.5, 0, 7.75], - "to": [5.75, 0.25, 8.25], + "from": [ + 5.5, + 0, + 7.75 + ], + "to": [ + 5.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [5.75, 7.75, 5.5, 8], "texture": "#0"}, - "east": {"uv": [5.5, 7.75, 5.75, 8.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 8, 5.75, 8.25], "texture": "#0"}, - "west": {"uv": [5.5, 7.75, 5.75, 8.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 7.75, 5.75, 8.25], "texture": "#0"}, - "down": {"uv": [5.5, 8.25, 5.75, 7.75], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 7.75, + 5.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 8.25, + 5.75, + 7.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_37", - "from": [9, 0, 9.5], - "to": [9.25, 0.25, 13], + "from": [ + 9, + 0, + 9.5 + ], + "to": [ + 9.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.25, 9.5, 9, 9.75], "texture": "#0"}, - "east": {"uv": [9, 9.5, 9.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 12.75, 9.25, 13], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.5, 9.25, 13], "texture": "#0"}, - "down": {"uv": [9, 13, 9.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.5, + 9.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 12.75, + 9.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.5, + 9.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 13, + 9.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_38", - "from": [10, 0, 9.75], - "to": [10.25, 0.25, 10], + "from": [ + 10, + 0, + 9.75 + ], + "to": [ + 10.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.25, 9.75, 10, 10], "texture": "#0"}, - "east": {"uv": [10, 9.75, 10.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10, 9.75, 10.25, 10], "texture": "#0"}, - "west": {"uv": [10, 9.75, 10.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10, 9.75, 10.25, 10], "texture": "#0"}, - "down": {"uv": [10, 10, 10.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 9.75, + 10, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 9.75, + 10.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10, + 10.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_39", - "from": [7.5, 0, 10], - "to": [7.75, 0.25, 10.25], + "from": [ + 7.5, + 0, + 10 + ], + "to": [ + 7.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.75, 10, 7.5, 10.25], "texture": "#0"}, - "east": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#0"}, - "west": {"uv": [7.5, 10, 7.75, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 10, 7.75, 10.25], "texture": "#0"}, - "down": {"uv": [7.5, 10.25, 7.75, 10], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_40", - "from": [9.25, 0, 10], - "to": [9.5, 0.25, 13], + "from": [ + 9.25, + 0, + 10 + ], + "to": [ + 9.5, + 0.25, + 13 + ], "faces": { - "north": {"uv": [9.5, 10, 9.25, 10.25], "texture": "#0"}, - "east": {"uv": [9.25, 10, 9.5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 12.75, 9.5, 13], "texture": "#0"}, - "west": {"uv": [9.25, 10, 9.5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 10, 9.5, 13], "texture": "#0"}, - "down": {"uv": [9.25, 13, 9.5, 10], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 10, + 9.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 10, + 9.5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 12.75, + 9.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 10, + 9.5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 10, + 9.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 13, + 9.5, + 10 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_41", - "from": [9.5, 0, 10.25], - "to": [9.75, 0.25, 12.75], + "from": [ + 9.5, + 0, + 10.25 + ], + "to": [ + 9.75, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [9.75, 10.25, 9.5, 10.5], "texture": "#0"}, - "east": {"uv": [9.5, 10.25, 9.75, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 12.5, 9.75, 12.75], "texture": "#0"}, - "west": {"uv": [9.5, 10.25, 9.75, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 10.25, 9.75, 12.75], "texture": "#0"}, - "down": {"uv": [9.5, 12.75, 9.75, 10.25], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 10.25, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 10.25, + 9.75, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 12.5, + 9.75, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.25, + 9.75, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.25, + 9.75, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 12.75, + 9.75, + 10.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_42", - "from": [8.25, 0, 10.75], - "to": [8.5, 0.25, 11], + "from": [ + 8.25, + 0, + 10.75 + ], + "to": [ + 8.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.5, 10.75, 8.25, 11], "texture": "#0"}, - "east": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "west": {"uv": [8.25, 10.75, 8.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 10.75, 8.5, 11], "texture": "#0"}, - "down": {"uv": [8.25, 11, 8.5, 10.75], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 10.75, + 8.25, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 10.75, + 8.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11, + 8.5, + 10.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_43", - "from": [7.25, 0, 11], - "to": [7.75, 0.25, 11.75], + "from": [ + 7.25, + 0, + 11 + ], + "to": [ + 7.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [7.75, 11, 7.25, 11.25], "texture": "#0"}, - "east": {"uv": [7.5, 11, 7.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 11.5, 7.75, 11.75], "texture": "#0"}, - "west": {"uv": [7.25, 11, 7.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 11, 7.75, 11.75], "texture": "#0"}, - "down": {"uv": [7.25, 11.75, 7.75, 11], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 11, + 7.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11, + 7.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 11.5, + 7.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 11, + 7.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 11, + 7.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11.75, + 7.75, + 11 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_44", - "from": [7, 0, 11.25], - "to": [7.25, 0.25, 13], + "from": [ + 7, + 0, + 11.25 + ], + "to": [ + 7.25, + 0.25, + 13 + ], "faces": { - "north": {"uv": [7.25, 11.25, 7, 11.5], "texture": "#0"}, - "east": {"uv": [7, 11.25, 7.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 12.75, 7.25, 13], "texture": "#0"}, - "west": {"uv": [7, 11.25, 7.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11.25, 7.25, 13], "texture": "#0"}, - "down": {"uv": [7, 13, 7.25, 11.25], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 11.25, + 7, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11.25, + 7.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12.75, + 7.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11.25, + 7.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11.25, + 7.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 13, + 7.25, + 11.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_45", - "from": [7.75, 0, 11.25], - "to": [8, 0.25, 13.5], + "from": [ + 7.75, + 0, + 11.25 + ], + "to": [ + 8, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [8, 11.25, 7.75, 11.5], "texture": "#0"}, - "east": {"uv": [7.75, 11.25, 8, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 13.25, 8, 13.5], "texture": "#0"}, - "west": {"uv": [7.75, 11.25, 8, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 11.25, 8, 13.5], "texture": "#0"}, - "down": {"uv": [7.75, 13.5, 8, 11.25], "texture": "#0"} + "north": { + "uv": [ + 8, + 11.25, + 7.75, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 11.25, + 8, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 13.25, + 8, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 11.25, + 8, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 11.25, + 8, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 13.5, + 8, + 11.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_46", - "from": [9.75, 0, 11.25], - "to": [10, 0.25, 11.75], + "from": [ + 9.75, + 0, + 11.25 + ], + "to": [ + 10, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10, 11.25, 9.75, 11.5], "texture": "#0"}, - "east": {"uv": [9.75, 11.25, 10, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 11.5, 10, 11.75], "texture": "#0"}, - "west": {"uv": [9.75, 11.25, 10, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 11.25, 10, 11.75], "texture": "#0"}, - "down": {"uv": [9.75, 11.75, 10, 11.25], "texture": "#0"} + "north": { + "uv": [ + 10, + 11.25, + 9.75, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 11.25, + 10, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 11.25, + 10, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 11.25, + 10, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 11.75, + 10, + 11.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_47", - "from": [6.75, 0, 11.5], - "to": [7, 0.25, 12.75], + "from": [ + 6.75, + 0, + 11.5 + ], + "to": [ + 7, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [7, 11.5, 6.75, 11.75], "texture": "#0"}, - "east": {"uv": [6.75, 11.5, 7, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.75, 12.5, 7, 12.75], "texture": "#0"}, - "west": {"uv": [6.75, 11.5, 7, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.75, 11.5, 7, 12.75], "texture": "#0"}, - "down": {"uv": [6.75, 12.75, 7, 11.5], "texture": "#0"} + "north": { + "uv": [ + 7, + 11.5, + 6.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 11.5, + 7, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 12.5, + 7, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 11.5, + 7, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 11.5, + 7, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 12.75, + 7, + 11.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_48", - "from": [8, 0, 11.5], - "to": [8.25, 0.25, 12.25], + "from": [ + 8, + 0, + 11.5 + ], + "to": [ + 8.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8.25, 11.5, 8, 11.75], "texture": "#0"}, - "east": {"uv": [8, 11.5, 8.25, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 12, 8.25, 12.25], "texture": "#0"}, - "west": {"uv": [8, 11.5, 8.25, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 11.5, 8.25, 12.25], "texture": "#0"}, - "down": {"uv": [8, 12.25, 8.25, 11.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 11.5, + 8, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 11.5, + 8.25, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 12, + 8.25, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11.5, + 8.25, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 11.5, + 8.25, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 12.25, + 8.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_49", - "from": [6.5, 0, 11.75], - "to": [6.75, 0.25, 12.5], + "from": [ + 6.5, + 0, + 11.75 + ], + "to": [ + 6.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [6.75, 11.75, 6.5, 12], "texture": "#0"}, - "east": {"uv": [6.5, 11.75, 6.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5, 12.25, 6.75, 12.5], "texture": "#0"}, - "west": {"uv": [6.5, 11.75, 6.75, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5, 11.75, 6.75, 12.5], "texture": "#0"}, - "down": {"uv": [6.5, 12.5, 6.75, 11.75], "texture": "#0"} + "north": { + "uv": [ + 6.75, + 11.75, + 6.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12.25, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 11.75, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 12.5, + 6.75, + 11.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_50", - "from": [7.5, 0, 11.75], - "to": [7.75, 0.25, 12.25], + "from": [ + 7.5, + 0, + 11.75 + ], + "to": [ + 7.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.75, 11.75, 7.5, 12], "texture": "#0"}, - "east": {"uv": [7.5, 11.75, 7.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 12, 7.75, 12.25], "texture": "#0"}, - "west": {"uv": [7.5, 11.75, 7.75, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 11.75, 7.75, 12.25], "texture": "#0"}, - "down": {"uv": [7.5, 12.25, 7.75, 11.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 11.75, + 7.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11.75, + 7.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 12, + 7.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 11.75, + 7.75, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 11.75, + 7.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 12.25, + 7.75, + 11.75 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_51", - "from": [8.25, 0, 12.25], - "to": [8.5, 0.25, 13.5], + "from": [ + 8.25, + 0, + 12.25 + ], + "to": [ + 8.5, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [8.5, 12.25, 8.25, 12.5], "texture": "#0"}, - "east": {"uv": [8.25, 12.25, 8.5, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 13.25, 8.5, 13.5], "texture": "#0"}, - "west": {"uv": [8.25, 12.25, 8.5, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 12.25, 8.5, 13.5], "texture": "#0"}, - "down": {"uv": [8.25, 13.5, 8.5, 12.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 12.25, + 8.25, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 12.25, + 8.5, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 13.25, + 8.5, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 12.25, + 8.5, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 12.25, + 8.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 13.5, + 8.5, + 12.25 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_52", - "from": [7.25, 0, 12.5], - "to": [7.75, 0.25, 13.25], + "from": [ + 7.25, + 0, + 12.5 + ], + "to": [ + 7.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [7.75, 12.5, 7.25, 12.75], "texture": "#0"}, - "east": {"uv": [7.5, 12.5, 7.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 13, 7.75, 13.25], "texture": "#0"}, - "west": {"uv": [7.25, 12.5, 7.5, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 12.5, 7.75, 13.25], "texture": "#0"}, - "down": {"uv": [7.25, 13.25, 7.75, 12.5], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 12.5, + 7.25, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 12.5, + 7.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 13, + 7.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 12.5, + 7.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 13.25, + 7.75, + 12.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_53", - "from": [8, 0, 12.5], - "to": [8.25, 0.25, 13.5], + "from": [ + 8, + 0, + 12.5 + ], + "to": [ + 8.25, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [8.25, 12.5, 8, 12.75], "texture": "#0"}, - "east": {"uv": [8, 12.5, 8.25, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 13.25, 8.25, 13.5], "texture": "#0"}, - "west": {"uv": [8, 12.5, 8.25, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 12.5, 8.25, 13.5], "texture": "#0"}, - "down": {"uv": [8, 13.5, 8.25, 12.5], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 12.5, + 8, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 12.5, + 8.25, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 13.25, + 8.25, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 12.5, + 8.25, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 12.5, + 8.25, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 13.5, + 8.25, + 12.5 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_54", - "from": [8.5, 0, 13], - "to": [8.75, 0.25, 13.25], + "from": [ + 8.5, + 0, + 13 + ], + "to": [ + 8.75, + 0.25, + 13.25 + ], "faces": { - "north": {"uv": [8.75, 13, 8.5, 13.25], "texture": "#0"}, - "east": {"uv": [8.5, 13, 8.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 13, 8.75, 13.25], "texture": "#0"}, - "west": {"uv": [8.5, 13, 8.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 13, 8.75, 13.25], "texture": "#0"}, - "down": {"uv": [8.5, 13.25, 8.75, 13], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 13, + 8.5, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 13, + 8.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 13, + 8.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 13, + 8.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 13, + 8.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 13.25, + 8.75, + 13 + ], + "texture": "#0" + } } }, { "name": "tatunootosigo_55", - "from": [7.5, 0, 13.25], - "to": [7.75, 0.25, 13.5], + "from": [ + 7.5, + 0, + 13.25 + ], + "to": [ + 7.75, + 0.25, + 13.5 + ], "faces": { - "north": {"uv": [7.75, 13.25, 7.5, 13.5], "texture": "#0"}, - "east": {"uv": [7.5, 13.25, 7.75, 13.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.5, 13.25, 7.75, 13.5], "texture": "#0"}, - "west": {"uv": [7.5, 13.25, 7.75, 13.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.5, 13.25, 7.75, 13.5], "texture": "#0"}, - "down": {"uv": [7.5, 13.5, 7.75, 13.25], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 13.25, + 7.5, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 13.25, + 7.75, + 13.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 13.25, + 7.75, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 13.25, + 7.75, + 13.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 13.25, + 7.75, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 13.5, + 7.75, + 13.25 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 2], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 2 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0.5, 8, -3.75], - "scale": [0.24, 0.24, 0.24] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.5, + 8, + -3.75 + ], + "scale": [ + 0.24, + 0.24, + 0.24 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "tatunootosigo", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/thirapia.json b/pack/assets/minecraft/models/fish/thirapia.json index 3d6e6f6f..948e076f 100644 --- a/pack/assets/minecraft/models/fish/thirapia.json +++ b/pack/assets/minecraft/models/fish/thirapia.json @@ -2,852 +2,4552 @@ "__name": "ティラピア", "credit": "Made with Blockbench", "textures": { - "8": "fish/thirapia", - "particle": "fish/raigyo" + "8": "item/fish/thirapia", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "thirapia_0", - "from": [7, 0, 3.5], - "to": [7.25, 0.25, 12.5], + "from": [ + 7, + 0, + 3.5 + ], + "to": [ + 7.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.25, 3.5, 7, 3.75], "texture": "#8"}, - "east": {"uv": [7, 3.5, 7.25, 12.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7, 12.25, 7.25, 12.5], "texture": "#8"}, - "west": {"uv": [7, 3.5, 7.25, 12.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7, 3.5, 7.25, 12.5], "texture": "#8"}, - "down": {"uv": [7, 12.5, 7.25, 3.5], "texture": "#8"} + "north": { + "uv": [ + 7.25, + 3.5, + 7, + 3.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7, + 3.5, + 7.25, + 12.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7, + 12.25, + 7.25, + 12.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7, + 3.5, + 7.25, + 12.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7, + 3.5, + 7.25, + 12.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7, + 12.5, + 7.25, + 3.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_1", - "from": [8, 0, 3.5], - "to": [8.25, 0.25, 10.75], + "from": [ + 8, + 0, + 3.5 + ], + "to": [ + 8.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.25, 3.5, 8, 3.75], "texture": "#8"}, - "east": {"uv": [8, 3.5, 8.25, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [8, 10.5, 8.25, 10.75], "texture": "#8"}, - "west": {"uv": [8, 3.5, 8.25, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [8, 3.5, 8.25, 10.75], "texture": "#8"}, - "down": {"uv": [8, 10.75, 8.25, 3.5], "texture": "#8"} + "north": { + "uv": [ + 8.25, + 3.5, + 8, + 3.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 8, + 3.5, + 8.25, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 8, + 3.5, + 8.25, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 8, + 3.5, + 8.25, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 8, + 10.75, + 8.25, + 3.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_2", - "from": [5.75, 0, 3.75], - "to": [6.25, 0.25, 11.75], + "from": [ + 5.75, + 0, + 3.75 + ], + "to": [ + 6.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [6.25, 3.75, 5.75, 4], "texture": "#8"}, - "east": {"uv": [6, 3.75, 6.25, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.75, 11.5, 6.25, 11.75], "texture": "#8"}, - "west": {"uv": [5.75, 3.75, 6, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.75, 3.75, 6.25, 11.75], "texture": "#8"}, - "down": {"uv": [5.75, 11.75, 6.25, 3.75], "texture": "#8"} + "north": { + "uv": [ + 6.25, + 3.75, + 5.75, + 4 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6, + 3.75, + 6.25, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.75, + 11.5, + 6.25, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.75, + 3.75, + 6, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.75, + 3.75, + 6.25, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.75, + 11.75, + 6.25, + 3.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_3", - "from": [6.75, 0, 3.75], - "to": [7, 0.25, 12.25], + "from": [ + 6.75, + 0, + 3.75 + ], + "to": [ + 7, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7, 3.75, 6.75, 4], "texture": "#8"}, - "east": {"uv": [6.75, 3.75, 7, 12.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6.75, 12, 7, 12.25], "texture": "#8"}, - "west": {"uv": [6.75, 3.75, 7, 12.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6.75, 3.75, 7, 12.25], "texture": "#8"}, - "down": {"uv": [6.75, 12.25, 7, 3.75], "texture": "#8"} + "north": { + "uv": [ + 7, + 3.75, + 6.75, + 4 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7, + 12.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6.75, + 12, + 7, + 12.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6.75, + 3.75, + 7, + 12.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6.75, + 3.75, + 7, + 12.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6.75, + 12.25, + 7, + 3.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_4", - "from": [7.25, 0, 3.75], - "to": [8, 0.25, 10.75], + "from": [ + 7.25, + 0, + 3.75 + ], + "to": [ + 8, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8, 3.75, 7.25, 4], "texture": "#8"}, - "east": {"uv": [7.75, 3.75, 8, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7.25, 10.5, 8, 10.75], "texture": "#8"}, - "west": {"uv": [7.25, 3.75, 7.5, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7.25, 3.75, 8, 10.75], "texture": "#8"}, - "down": {"uv": [7.25, 10.75, 8, 3.75], "texture": "#8"} + "north": { + "uv": [ + 8, + 3.75, + 7.25, + 4 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7.75, + 3.75, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7.25, + 10.5, + 8, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7.25, + 3.75, + 7.5, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7.25, + 3.75, + 8, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7.25, + 10.75, + 8, + 3.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_5", - "from": [8.25, 0, 3.75], - "to": [9.25, 0.25, 11], + "from": [ + 8.25, + 0, + 3.75 + ], + "to": [ + 9.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9.25, 3.75, 8.25, 4], "texture": "#8"}, - "east": {"uv": [9, 3.75, 9.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [8.25, 10.75, 9.25, 11], "texture": "#8"}, - "west": {"uv": [8.25, 3.75, 8.5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [8.25, 3.75, 9.25, 11], "texture": "#8"}, - "down": {"uv": [8.25, 11, 9.25, 3.75], "texture": "#8"} + "north": { + "uv": [ + 9.25, + 3.75, + 8.25, + 4 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9, + 3.75, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 9.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 8.25, + 3.75, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 8.25, + 3.75, + 9.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 8.25, + 11, + 9.25, + 3.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_6", - "from": [5.5, 0, 4], - "to": [5.75, 0.25, 11.5], + "from": [ + 5.5, + 0, + 4 + ], + "to": [ + 5.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [5.75, 4, 5.5, 4.25], "texture": "#8"}, - "east": {"uv": [5.5, 4, 5.75, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.5, 11.25, 5.75, 11.5], "texture": "#8"}, - "west": {"uv": [5.5, 4, 5.75, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.5, 4, 5.75, 11.5], "texture": "#8"}, - "down": {"uv": [5.5, 11.5, 5.75, 4], "texture": "#8"} + "north": { + "uv": [ + 5.75, + 4, + 5.5, + 4.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5.5, + 4, + 5.75, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.5, + 11.25, + 5.75, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.5, + 4, + 5.75, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.5, + 4, + 5.75, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.5, + 11.5, + 5.75, + 4 + ], + "texture": "#8" + } } }, { "name": "thirapia_7", - "from": [6.25, 0, 4], - "to": [6.75, 0.25, 12.25], + "from": [ + 6.25, + 0, + 4 + ], + "to": [ + 6.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [6.75, 4, 6.25, 4.25], "texture": "#8"}, - "east": {"uv": [6.5, 4, 6.75, 12.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6.25, 12, 6.75, 12.25], "texture": "#8"}, - "west": {"uv": [6.25, 4, 6.5, 12.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6.25, 4, 6.75, 12.25], "texture": "#8"}, - "down": {"uv": [6.25, 12.25, 6.75, 4], "texture": "#8"} + "north": { + "uv": [ + 6.75, + 4, + 6.25, + 4.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6.5, + 4, + 6.75, + 12.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6.25, + 12, + 6.75, + 12.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6.25, + 4, + 6.5, + 12.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6.25, + 4, + 6.75, + 12.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6.25, + 12.25, + 6.75, + 4 + ], + "texture": "#8" + } } }, { "name": "thirapia_8", - "from": [9.25, 0, 4], - "to": [10, 0.25, 11.25], + "from": [ + 9.25, + 0, + 4 + ], + "to": [ + 10, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [10, 4, 9.25, 4.25], "texture": "#8"}, - "east": {"uv": [9.75, 4, 10, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.25, 11, 10, 11.25], "texture": "#8"}, - "west": {"uv": [9.25, 4, 9.5, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.25, 4, 10, 11.25], "texture": "#8"}, - "down": {"uv": [9.25, 11.25, 10, 4], "texture": "#8"} + "north": { + "uv": [ + 10, + 4, + 9.25, + 4.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9.75, + 4, + 10, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.25, + 11, + 10, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.25, + 4, + 9.5, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.25, + 4, + 10, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.25, + 11.25, + 10, + 4 + ], + "texture": "#8" + } } }, { "name": "thirapia_9", - "from": [5.25, 0, 4.25], - "to": [5.5, 0.25, 11.25], + "from": [ + 5.25, + 0, + 4.25 + ], + "to": [ + 5.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [5.5, 4.25, 5.25, 4.5], "texture": "#8"}, - "east": {"uv": [5.25, 4.25, 5.5, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5.25, 11, 5.5, 11.25], "texture": "#8"}, - "west": {"uv": [5.25, 4.25, 5.5, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5.25, 4.25, 5.5, 11.25], "texture": "#8"}, - "down": {"uv": [5.25, 11.25, 5.5, 4.25], "texture": "#8"} + "north": { + "uv": [ + 5.5, + 4.25, + 5.25, + 4.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5.25, + 4.25, + 5.5, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5.25, + 11, + 5.5, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5.25, + 4.25, + 5.5, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5.25, + 4.25, + 5.5, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5.25, + 11.25, + 5.5, + 4.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_10", - "from": [10, 0, 4.25], - "to": [11, 0.25, 11], + "from": [ + 10, + 0, + 4.25 + ], + "to": [ + 11, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11, 4.25, 10, 4.5], "texture": "#8"}, - "east": {"uv": [10.75, 4.25, 11, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10, 10.75, 11, 11], "texture": "#8"}, - "west": {"uv": [10, 4.25, 10.25, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10, 4.25, 11, 11], "texture": "#8"}, - "down": {"uv": [10, 11, 11, 4.25], "texture": "#8"} + "north": { + "uv": [ + 11, + 4.25, + 10, + 4.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10.75, + 4.25, + 11, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10, + 10.75, + 11, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10, + 4.25, + 10.25, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10, + 4.25, + 11, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10, + 11, + 11, + 4.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_11", - "from": [11, 0, 4.5], - "to": [12.75, 0.25, 6.25], + "from": [ + 11, + 0, + 4.5 + ], + "to": [ + 12.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [12.75, 4.5, 11, 4.75], "texture": "#8"}, - "east": {"uv": [12.5, 4.5, 12.75, 6.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11, 6, 12.75, 6.25], "texture": "#8"}, - "west": {"uv": [11, 4.5, 11.25, 6.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11, 4.5, 12.75, 6.25], "texture": "#8"}, - "down": {"uv": [11, 6.25, 12.75, 4.5], "texture": "#8"} + "north": { + "uv": [ + 12.75, + 4.5, + 11, + 4.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.5, + 4.5, + 12.75, + 6.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11, + 6, + 12.75, + 6.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11, + 4.5, + 11.25, + 6.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11, + 4.5, + 12.75, + 6.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11, + 6.25, + 12.75, + 4.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_12", - "from": [12.75, 0, 4.5], - "to": [13, 0.25, 6], + "from": [ + 12.75, + 0, + 4.5 + ], + "to": [ + 13, + 0.25, + 6 + ], "faces": { - "north": {"uv": [13, 4.5, 12.75, 4.75], "texture": "#8"}, - "east": {"uv": [12.75, 4.5, 13, 6], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.75, 5.75, 13, 6], "texture": "#8"}, - "west": {"uv": [12.75, 4.5, 13, 6], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.75, 4.5, 13, 6], "texture": "#8"}, - "down": {"uv": [12.75, 6, 13, 4.5], "texture": "#8"} + "north": { + "uv": [ + 13, + 4.5, + 12.75, + 4.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.75, + 4.5, + 13, + 6 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.75, + 5.75, + 13, + 6 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.75, + 4.5, + 13, + 6 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.75, + 4.5, + 13, + 6 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.75, + 6, + 13, + 4.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_13", - "from": [5, 0, 4.75], - "to": [5.25, 0.25, 11], + "from": [ + 5, + 0, + 4.75 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 4.75, 5, 5], "texture": "#8"}, - "east": {"uv": [5, 4.75, 5.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [5, 10.75, 5.25, 11], "texture": "#8"}, - "west": {"uv": [5, 4.75, 5.25, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [5, 4.75, 5.25, 11], "texture": "#8"}, - "down": {"uv": [5, 11, 5.25, 4.75], "texture": "#8"} + "north": { + "uv": [ + 5.25, + 4.75, + 5, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 5, + 4.75, + 5.25, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 5, + 4.75, + 5.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 5, + 11, + 5.25, + 4.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_14", - "from": [13, 0, 4.75], - "to": [13.5, 0.25, 5.5], + "from": [ + 13, + 0, + 4.75 + ], + "to": [ + 13.5, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [13.5, 4.75, 13, 5], "texture": "#8"}, - "east": {"uv": [13.25, 4.75, 13.5, 5.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13, 5.25, 13.5, 5.5], "texture": "#8"}, - "west": {"uv": [13, 4.75, 13.25, 5.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13, 4.75, 13.5, 5.5], "texture": "#8"}, - "down": {"uv": [13, 5.5, 13.5, 4.75], "texture": "#8"} + "north": { + "uv": [ + 13.5, + 4.75, + 13, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.25, + 4.75, + 13.5, + 5.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13, + 5.25, + 13.5, + 5.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13, + 4.75, + 13.25, + 5.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13, + 4.75, + 13.5, + 5.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13, + 5.5, + 13.5, + 4.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_15", - "from": [4.75, 0, 5], - "to": [5, 0.25, 11], + "from": [ + 4.75, + 0, + 5 + ], + "to": [ + 5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5, 5, 4.75, 5.25], "texture": "#8"}, - "east": {"uv": [4.75, 5, 5, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [4.75, 10.75, 5, 11], "texture": "#8"}, - "west": {"uv": [4.75, 5, 5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [4.75, 5, 5, 11], "texture": "#8"}, - "down": {"uv": [4.75, 11, 5, 5], "texture": "#8"} + "north": { + "uv": [ + 5, + 5, + 4.75, + 5.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 4.75, + 5, + 5, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 4.75, + 10.75, + 5, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 4.75, + 5, + 5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 4.75, + 5, + 5, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 4.75, + 11, + 5, + 5 + ], + "texture": "#8" + } } }, { "name": "thirapia_16", - "from": [13.5, 0, 5], - "to": [13.75, 0.25, 5.25], + "from": [ + 13.5, + 0, + 5 + ], + "to": [ + 13.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [13.75, 5, 13.5, 5.25], "texture": "#8"}, - "east": {"uv": [13.5, 5, 13.75, 5.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.5, 5, 13.75, 5.25], "texture": "#8"}, - "west": {"uv": [13.5, 5, 13.75, 5.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.5, 5, 13.75, 5.25], "texture": "#8"}, - "down": {"uv": [13.5, 5.25, 13.75, 5], "texture": "#8"} + "north": { + "uv": [ + 13.75, + 5, + 13.5, + 5.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.5, + 5, + 13.75, + 5.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.5, + 5, + 13.75, + 5.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.5, + 5, + 13.75, + 5.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.5, + 5, + 13.75, + 5.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.5, + 5.25, + 13.75, + 5 + ], + "texture": "#8" + } } }, { "name": "thirapia_17", - "from": [4.25, 0, 5.25], - "to": [4.75, 0.25, 11], + "from": [ + 4.25, + 0, + 5.25 + ], + "to": [ + 4.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.75, 5.25, 4.25, 5.5], "texture": "#8"}, - "east": {"uv": [4.5, 5.25, 4.75, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [4.25, 10.75, 4.75, 11], "texture": "#8"}, - "west": {"uv": [4.25, 5.25, 4.5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [4.25, 5.25, 4.75, 11], "texture": "#8"}, - "down": {"uv": [4.25, 11, 4.75, 5.25], "texture": "#8"} + "north": { + "uv": [ + 4.75, + 5.25, + 4.25, + 5.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 4.5, + 5.25, + 4.75, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 4.25, + 10.75, + 4.75, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 4.25, + 5.25, + 4.5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 4.25, + 5.25, + 4.75, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 4.25, + 11, + 4.75, + 5.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_18", - "from": [3.75, 0, 5.5], - "to": [4.25, 0.25, 11], + "from": [ + 3.75, + 0, + 5.5 + ], + "to": [ + 4.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [4.25, 5.5, 3.75, 5.75], "texture": "#8"}, - "east": {"uv": [4, 5.5, 4.25, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3.75, 10.75, 4.25, 11], "texture": "#8"}, - "west": {"uv": [3.75, 5.5, 4, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3.75, 5.5, 4.25, 11], "texture": "#8"}, - "down": {"uv": [3.75, 11, 4.25, 5.5], "texture": "#8"} + "north": { + "uv": [ + 4.25, + 5.5, + 3.75, + 5.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 4, + 5.5, + 4.25, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3.75, + 10.75, + 4.25, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3.75, + 5.5, + 4, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3.75, + 5.5, + 4.25, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3.75, + 11, + 4.25, + 5.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_19", - "from": [13, 0, 5.5], - "to": [13.25, 0.25, 5.75], + "from": [ + 13, + 0, + 5.5 + ], + "to": [ + 13.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [13.25, 5.5, 13, 5.75], "texture": "#8"}, - "east": {"uv": [13, 5.5, 13.25, 5.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13, 5.5, 13.25, 5.75], "texture": "#8"}, - "west": {"uv": [13, 5.5, 13.25, 5.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13, 5.5, 13.25, 5.75], "texture": "#8"}, - "down": {"uv": [13, 5.75, 13.25, 5.5], "texture": "#8"} + "north": { + "uv": [ + 13.25, + 5.5, + 13, + 5.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13, + 5.5, + 13.25, + 5.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13, + 5.5, + 13.25, + 5.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13, + 5.5, + 13.25, + 5.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13, + 5.5, + 13.25, + 5.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13, + 5.75, + 13.25, + 5.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_20", - "from": [14, 0, 5.5], - "to": [15, 0.25, 10.5], + "from": [ + 14, + 0, + 5.5 + ], + "to": [ + 15, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15, 5.5, 14, 5.75], "texture": "#8"}, - "east": {"uv": [14.75, 5.5, 15, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [14, 10.25, 15, 10.5], "texture": "#8"}, - "west": {"uv": [14, 5.5, 14.25, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [14, 5.5, 15, 10.5], "texture": "#8"}, - "down": {"uv": [14, 10.5, 15, 5.5], "texture": "#8"} + "north": { + "uv": [ + 15, + 5.5, + 14, + 5.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 14.75, + 5.5, + 15, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 14, + 10.25, + 15, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 14, + 5.5, + 14.25, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 14, + 5.5, + 15, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 14, + 10.5, + 15, + 5.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_21", - "from": [3.25, 0, 5.75], - "to": [3.75, 0.25, 10.75], + "from": [ + 3.25, + 0, + 5.75 + ], + "to": [ + 3.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [3.75, 5.75, 3.25, 6], "texture": "#8"}, - "east": {"uv": [3.5, 5.75, 3.75, 10.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3.25, 10.5, 3.75, 10.75], "texture": "#8"}, - "west": {"uv": [3.25, 5.75, 3.5, 10.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3.25, 5.75, 3.75, 10.75], "texture": "#8"}, - "down": {"uv": [3.25, 10.75, 3.75, 5.75], "texture": "#8"} + "north": { + "uv": [ + 3.75, + 5.75, + 3.25, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3.5, + 5.75, + 3.75, + 10.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3.25, + 10.5, + 3.75, + 10.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3.25, + 5.75, + 3.5, + 10.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3.25, + 5.75, + 3.75, + 10.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3.25, + 10.75, + 3.75, + 5.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_22", - "from": [13.5, 0, 5.75], - "to": [14, 0.25, 10.25], + "from": [ + 13.5, + 0, + 5.75 + ], + "to": [ + 14, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14, 5.75, 13.5, 6], "texture": "#8"}, - "east": {"uv": [13.75, 5.75, 14, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.5, 10, 14, 10.25], "texture": "#8"}, - "west": {"uv": [13.5, 5.75, 13.75, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.5, 5.75, 14, 10.25], "texture": "#8"}, - "down": {"uv": [13.5, 10.25, 14, 5.75], "texture": "#8"} + "north": { + "uv": [ + 14, + 5.75, + 13.5, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.75, + 5.75, + 14, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.5, + 10, + 14, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.5, + 5.75, + 13.75, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.5, + 5.75, + 14, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.5, + 10.25, + 14, + 5.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_23", - "from": [15, 0, 5.75], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 5.75, 15, 6], "texture": "#8"}, - "east": {"uv": [15, 5.75, 15.25, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#8"}, - "west": {"uv": [15, 5.75, 15.25, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15, 5.75, 15.25, 10.25], "texture": "#8"}, - "down": {"uv": [15, 10.25, 15.25, 5.75], "texture": "#8"} + "north": { + "uv": [ + 15.25, + 5.75, + 15, + 6 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15, + 5.75, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.25, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 5.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_24", - "from": [3, 0, 6], - "to": [3.25, 0.25, 10.5], + "from": [ + 3, + 0, + 6 + ], + "to": [ + 3.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3.25, 6, 3, 6.25], "texture": "#8"}, - "east": {"uv": [3, 6, 3.25, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [3, 10.25, 3.25, 10.5], "texture": "#8"}, - "west": {"uv": [3, 6, 3.25, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [3, 6, 3.25, 10.5], "texture": "#8"}, - "down": {"uv": [3, 10.5, 3.25, 6], "texture": "#8"} + "north": { + "uv": [ + 3.25, + 6, + 3, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 3, + 10.25, + 3.25, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 3, + 6, + 3.25, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 3, + 10.5, + 3.25, + 6 + ], + "texture": "#8" + } } }, { "name": "thirapia_25", - "from": [13.25, 0, 6], - "to": [13.5, 0.25, 10], + "from": [ + 13.25, + 0, + 6 + ], + "to": [ + 13.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.5, 6, 13.25, 6.25], "texture": "#8"}, - "east": {"uv": [13.25, 6, 13.5, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.25, 9.75, 13.5, 10], "texture": "#8"}, - "west": {"uv": [13.25, 6, 13.5, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.25, 6, 13.5, 10], "texture": "#8"}, - "down": {"uv": [13.25, 10, 13.5, 6], "texture": "#8"} + "north": { + "uv": [ + 13.5, + 6, + 13.25, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.25, + 6, + 13.5, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.25, + 9.75, + 13.5, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.25, + 6, + 13.5, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.25, + 6, + 13.5, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.25, + 10, + 13.5, + 6 + ], + "texture": "#8" + } } }, { "name": "thirapia_26", - "from": [15.25, 0, 6], - "to": [15.5, 0.25, 7.75], + "from": [ + 15.25, + 0, + 6 + ], + "to": [ + 15.5, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.5, 6, 15.25, 6.25], "texture": "#8"}, - "east": {"uv": [15.25, 6, 15.5, 7.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.25, 7.5, 15.5, 7.75], "texture": "#8"}, - "west": {"uv": [15.25, 6, 15.5, 7.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.25, 6, 15.5, 7.75], "texture": "#8"}, - "down": {"uv": [15.25, 7.75, 15.5, 6], "texture": "#8"} + "north": { + "uv": [ + 15.5, + 6, + 15.25, + 6.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.25, + 7.5, + 15.5, + 7.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.25, + 6, + 15.5, + 7.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.25, + 7.75, + 15.5, + 6 + ], + "texture": "#8" + } } }, { "name": "thirapia_27", - "from": [2.5, 0, 6.25], - "to": [3, 0.25, 10.25], + "from": [ + 2.5, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3, 6.25, 2.5, 6.5], "texture": "#8"}, - "east": {"uv": [2.75, 6.25, 3, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2.5, 10, 3, 10.25], "texture": "#8"}, - "west": {"uv": [2.5, 6.25, 2.75, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2.5, 6.25, 3, 10.25], "texture": "#8"}, - "down": {"uv": [2.5, 10.25, 3, 6.25], "texture": "#8"} + "north": { + "uv": [ + 3, + 6.25, + 2.5, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2.5, + 10, + 3, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2.5, + 6.25, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2.5, + 6.25, + 3, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 3, + 6.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_28", - "from": [11, 0, 6.25], - "to": [12.25, 0.25, 6.5], + "from": [ + 11, + 0, + 6.25 + ], + "to": [ + 12.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [12.25, 6.25, 11, 6.5], "texture": "#8"}, - "east": {"uv": [12, 6.25, 12.25, 6.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11, 6.25, 12.25, 6.5], "texture": "#8"}, - "west": {"uv": [11, 6.25, 11.25, 6.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11, 6.25, 12.25, 6.5], "texture": "#8"}, - "down": {"uv": [11, 6.5, 12.25, 6.25], "texture": "#8"} + "north": { + "uv": [ + 12.25, + 6.25, + 11, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12, + 6.25, + 12.25, + 6.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11, + 6.25, + 12.25, + 6.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11, + 6.25, + 11.25, + 6.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11, + 6.25, + 12.25, + 6.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11, + 6.5, + 12.25, + 6.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_29", - "from": [12.75, 0, 6.25], - "to": [13.25, 0.25, 9.75], + "from": [ + 12.75, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.25, 6.25, 12.75, 6.5], "texture": "#8"}, - "east": {"uv": [13, 6.25, 13.25, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.75, 9.5, 13.25, 9.75], "texture": "#8"}, - "west": {"uv": [12.75, 6.25, 13, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.75, 6.25, 13.25, 9.75], "texture": "#8"}, - "down": {"uv": [12.75, 9.75, 13.25, 6.25], "texture": "#8"} + "north": { + "uv": [ + 13.25, + 6.25, + 12.75, + 6.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.75, + 9.5, + 13.25, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.75, + 6.25, + 13, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.75, + 6.25, + 13.25, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.75, + 9.75, + 13.25, + 6.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_30", - "from": [2.25, 0, 6.5], - "to": [2.5, 0.25, 10.25], + "from": [ + 2.25, + 0, + 6.5 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 6.5, 2.25, 6.75], "texture": "#8"}, - "east": {"uv": [2.25, 6.5, 2.5, 10.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#8"}, - "west": {"uv": [2.25, 6.5, 2.5, 10.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2.25, 6.5, 2.5, 10.25], "texture": "#8"}, - "down": {"uv": [2.25, 10.25, 2.5, 6.5], "texture": "#8"} + "north": { + "uv": [ + 2.5, + 6.5, + 2.25, + 6.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2.25, + 6.5, + 2.5, + 10.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 6.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_31", - "from": [12.5, 0, 6.5], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 6.5 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 6.5, 12.5, 6.75], "texture": "#8"}, - "east": {"uv": [12.5, 6.5, 12.75, 9.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#8"}, - "west": {"uv": [12.5, 6.5, 12.75, 9.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.5, 6.5, 12.75, 9.5], "texture": "#8"}, - "down": {"uv": [12.5, 9.5, 12.75, 6.5], "texture": "#8"} + "north": { + "uv": [ + 12.75, + 6.5, + 12.5, + 6.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.5, + 6.5, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.5, + 6.5, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 12.75, + 9.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 6.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_32", - "from": [1.75, 0, 6.75], - "to": [2.25, 0.25, 10], + "from": [ + 1.75, + 0, + 6.75 + ], + "to": [ + 2.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.25, 6.75, 1.75, 7], "texture": "#8"}, - "east": {"uv": [2, 6.75, 2.25, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.75, 9.75, 2.25, 10], "texture": "#8"}, - "west": {"uv": [1.75, 6.75, 2, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.75, 6.75, 2.25, 10], "texture": "#8"}, - "down": {"uv": [1.75, 10, 2.25, 6.75], "texture": "#8"} + "north": { + "uv": [ + 2.25, + 6.75, + 1.75, + 7 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2, + 6.75, + 2.25, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2.25, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 2, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.75, + 6.75, + 2.25, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.75, + 10, + 2.25, + 6.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_33", - "from": [11, 0, 6.75], - "to": [12.5, 0.25, 9], + "from": [ + 11, + 0, + 6.75 + ], + "to": [ + 12.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.5, 6.75, 11, 7], "texture": "#8"}, - "east": {"uv": [12.25, 6.75, 12.5, 9], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11, 8.75, 12.5, 9], "texture": "#8"}, - "west": {"uv": [11, 6.75, 11.25, 9], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11, 6.75, 12.5, 9], "texture": "#8"}, - "down": {"uv": [11, 9, 12.5, 6.75], "texture": "#8"} + "north": { + "uv": [ + 12.5, + 6.75, + 11, + 7 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.25, + 6.75, + 12.5, + 9 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11, + 8.75, + 12.5, + 9 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11, + 6.75, + 11.25, + 9 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11, + 6.75, + 12.5, + 9 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11, + 9, + 12.5, + 6.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_34", - "from": [1.5, 0, 7], - "to": [1.75, 0.25, 9.75], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 1.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.75, 7, 1.5, 7.25], "texture": "#8"}, - "east": {"uv": [1.5, 7, 1.75, 9.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.5, 9.5, 1.75, 9.75], "texture": "#8"}, - "west": {"uv": [1.5, 7, 1.75, 9.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.5, 7, 1.75, 9.75], "texture": "#8"}, - "down": {"uv": [1.5, 9.75, 1.75, 7], "texture": "#8"} + "north": { + "uv": [ + 1.75, + 7, + 1.5, + 7.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.75, + 9.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.5, + 7, + 1.75, + 9.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.5, + 9.75, + 1.75, + 7 + ], + "texture": "#8" + } } }, { "name": "thirapia_35", - "from": [0.75, 0, 7.25], - "to": [1.5, 0.25, 9], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 7.25, 0.75, 7.5], "texture": "#8"}, - "east": {"uv": [1.25, 7.25, 1.5, 9], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0.75, 8.75, 1.5, 9], "texture": "#8"}, - "west": {"uv": [0.75, 7.25, 1, 9], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0.75, 7.25, 1.5, 9], "texture": "#8"}, - "down": {"uv": [0.75, 9, 1.5, 7.25], "texture": "#8"} + "north": { + "uv": [ + 1.5, + 7.25, + 0.75, + 7.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 1.5, + 9 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 9 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1.5, + 9 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0.75, + 9, + 1.5, + 7.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_36", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 8.25], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#8"}, - "east": {"uv": [0.5, 7.5, 0.75, 8.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [0.5, 8, 0.75, 8.25], "texture": "#8"}, - "west": {"uv": [0.5, 7.5, 0.75, 8.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [0.5, 7.5, 0.75, 8.25], "texture": "#8"}, - "down": {"uv": [0.5, 8.25, 0.75, 7.5], "texture": "#8"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.75, + 8.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0.5, + 8.25, + 0.75, + 7.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_37", - "from": [15.25, 0, 8.25], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 8.25 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 8.25, 15.25, 8.5], "texture": "#8"}, - "east": {"uv": [15.25, 8.25, 15.5, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#8"}, - "west": {"uv": [15.25, 8.25, 15.5, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [15.25, 8.25, 15.5, 10], "texture": "#8"}, - "down": {"uv": [15.25, 10, 15.5, 8.25], "texture": "#8"} + "north": { + "uv": [ + 15.5, + 8.25, + 15.25, + 8.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 15.25, + 8.25, + 15.5, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 8.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_38", - "from": [1, 0, 9], - "to": [1.5, 0.25, 9.25], + "from": [ + 1, + 0, + 9 + ], + "to": [ + 1.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [1.5, 9, 1, 9.25], "texture": "#8"}, - "east": {"uv": [1.25, 9, 1.5, 9.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1, 9, 1.5, 9.25], "texture": "#8"}, - "west": {"uv": [1, 9, 1.25, 9.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1, 9, 1.5, 9.25], "texture": "#8"}, - "down": {"uv": [1, 9.25, 1.5, 9], "texture": "#8"} + "north": { + "uv": [ + 1.5, + 9, + 1, + 9.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1, + 9, + 1.25, + 9.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1, + 9.25, + 1.5, + 9 + ], + "texture": "#8" + } } }, { "name": "thirapia_39", - "from": [11, 0, 9], - "to": [12, 0.25, 11.5], + "from": [ + 11, + 0, + 9 + ], + "to": [ + 12, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12, 9, 11, 9.25], "texture": "#8"}, - "east": {"uv": [11.75, 9, 12, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11, 11.25, 12, 11.5], "texture": "#8"}, - "west": {"uv": [11, 9, 11.25, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11, 9, 12, 11.5], "texture": "#8"}, - "down": {"uv": [11, 11.5, 12, 9], "texture": "#8"} + "north": { + "uv": [ + 12, + 9, + 11, + 9.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11.75, + 9, + 12, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11, + 11.25, + 12, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11, + 9, + 11.25, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11, + 9, + 12, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11, + 11.5, + 12, + 9 + ], + "texture": "#8" + } } }, { "name": "thirapia_40", - "from": [12.25, 0, 9], - "to": [12.5, 0.25, 9.25], + "from": [ + 12.25, + 0, + 9 + ], + "to": [ + 12.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.5, 9, 12.25, 9.25], "texture": "#8"}, - "east": {"uv": [12.25, 9, 12.5, 9.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.25, 9, 12.5, 9.25], "texture": "#8"}, - "west": {"uv": [12.25, 9, 12.5, 9.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.25, 9, 12.5, 9.25], "texture": "#8"}, - "down": {"uv": [12.25, 9.25, 12.5, 9], "texture": "#8"} + "north": { + "uv": [ + 12.5, + 9, + 12.25, + 9.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.25, + 9, + 12.5, + 9.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.25, + 9.25, + 12.5, + 9 + ], + "texture": "#8" + } } }, { "name": "thirapia_41", - "from": [1.25, 0, 9.25], - "to": [1.5, 0.25, 9.5], + "from": [ + 1.25, + 0, + 9.25 + ], + "to": [ + 1.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 9.25, 1.25, 9.5], "texture": "#8"}, - "east": {"uv": [1.25, 9.25, 1.5, 9.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#8"}, - "west": {"uv": [1.25, 9.25, 1.5, 9.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#8"}, - "down": {"uv": [1.25, 9.5, 1.5, 9.25], "texture": "#8"} + "north": { + "uv": [ + 1.5, + 9.25, + 1.25, + 9.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_42", - "from": [12, 0, 9.25], - "to": [12.25, 0.25, 11.75], + "from": [ + 12, + 0, + 9.25 + ], + "to": [ + 12.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [12.25, 9.25, 12, 9.5], "texture": "#8"}, - "east": {"uv": [12, 9.25, 12.25, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12, 11.5, 12.25, 11.75], "texture": "#8"}, - "west": {"uv": [12, 9.25, 12.25, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12, 9.25, 12.25, 11.75], "texture": "#8"}, - "down": {"uv": [12, 11.75, 12.25, 9.25], "texture": "#8"} + "north": { + "uv": [ + 12.25, + 9.25, + 12, + 9.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12, + 9.25, + 12.25, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12, + 11.5, + 12.25, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12, + 9.25, + 12.25, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12, + 9.25, + 12.25, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12, + 11.75, + 12.25, + 9.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_43", - "from": [12.25, 0, 9.5], - "to": [12.5, 0.25, 11.75], + "from": [ + 12.25, + 0, + 9.5 + ], + "to": [ + 12.5, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [12.5, 9.5, 12.25, 9.75], "texture": "#8"}, - "east": {"uv": [12.25, 9.5, 12.5, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.25, 11.5, 12.5, 11.75], "texture": "#8"}, - "west": {"uv": [12.25, 9.5, 12.5, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.25, 9.5, 12.5, 11.75], "texture": "#8"}, - "down": {"uv": [12.25, 11.75, 12.5, 9.5], "texture": "#8"} + "north": { + "uv": [ + 12.5, + 9.5, + 12.25, + 9.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.25, + 9.5, + 12.5, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.25, + 11.5, + 12.5, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.25, + 9.5, + 12.5, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.25, + 9.5, + 12.5, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.25, + 11.75, + 12.5, + 9.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_44", - "from": [12.5, 0, 9.75], - "to": [12.75, 0.25, 11.5], + "from": [ + 12.5, + 0, + 9.75 + ], + "to": [ + 12.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.75, 9.75, 12.5, 10], "texture": "#8"}, - "east": {"uv": [12.5, 9.75, 12.75, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.5, 11.25, 12.75, 11.5], "texture": "#8"}, - "west": {"uv": [12.5, 9.75, 12.75, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.5, 9.75, 12.75, 11.5], "texture": "#8"}, - "down": {"uv": [12.5, 11.5, 12.75, 9.75], "texture": "#8"} + "north": { + "uv": [ + 12.75, + 9.75, + 12.5, + 10 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.5, + 9.75, + 12.75, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.5, + 11.25, + 12.75, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.5, + 9.75, + 12.75, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.5, + 9.75, + 12.75, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.5, + 11.5, + 12.75, + 9.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_45", - "from": [13, 0, 9.75], - "to": [13.25, 0.25, 10], + "from": [ + 13, + 0, + 9.75 + ], + "to": [ + 13.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [13.25, 9.75, 13, 10], "texture": "#8"}, - "east": {"uv": [13, 9.75, 13.25, 10], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13, 9.75, 13.25, 10], "texture": "#8"}, - "west": {"uv": [13, 9.75, 13.25, 10], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13, 9.75, 13.25, 10], "texture": "#8"}, - "down": {"uv": [13, 10, 13.25, 9.75], "texture": "#8"} + "north": { + "uv": [ + 13.25, + 9.75, + 13, + 10 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13, + 9.75, + 13.25, + 10 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13, + 10, + 13.25, + 9.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_46", - "from": [12.75, 0, 10], - "to": [13, 0.25, 11.5], + "from": [ + 12.75, + 0, + 10 + ], + "to": [ + 13, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [13, 10, 12.75, 10.25], "texture": "#8"}, - "east": {"uv": [12.75, 10, 13, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [12.75, 11.25, 13, 11.5], "texture": "#8"}, - "west": {"uv": [12.75, 10, 13, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [12.75, 10, 13, 11.5], "texture": "#8"}, - "down": {"uv": [12.75, 11.5, 13, 10], "texture": "#8"} + "north": { + "uv": [ + 13, + 10, + 12.75, + 10.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 12.75, + 10, + 13, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 12.75, + 11.25, + 13, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 12.75, + 10, + 13, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 12.75, + 10, + 13, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 12.75, + 11.5, + 13, + 10 + ], + "texture": "#8" + } } }, { "name": "thirapia_47", - "from": [2.75, 0, 10.25], - "to": [3, 0.25, 10.5], + "from": [ + 2.75, + 0, + 10.25 + ], + "to": [ + 3, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [3, 10.25, 2.75, 10.5], "texture": "#8"}, - "east": {"uv": [2.75, 10.25, 3, 10.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [2.75, 10.25, 3, 10.5], "texture": "#8"}, - "west": {"uv": [2.75, 10.25, 3, 10.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [2.75, 10.25, 3, 10.5], "texture": "#8"}, - "down": {"uv": [2.75, 10.5, 3, 10.25], "texture": "#8"} + "north": { + "uv": [ + 3, + 10.25, + 2.75, + 10.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 2.75, + 10.25, + 3, + 10.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 2.75, + 10.5, + 3, + 10.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_48", - "from": [13, 0, 10.25], - "to": [13.25, 0.25, 11.25], + "from": [ + 13, + 0, + 10.25 + ], + "to": [ + 13.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.25, 10.25, 13, 10.5], "texture": "#8"}, - "east": {"uv": [13, 10.25, 13.25, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13, 11, 13.25, 11.25], "texture": "#8"}, - "west": {"uv": [13, 10.25, 13.25, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13, 10.25, 13.25, 11.25], "texture": "#8"}, - "down": {"uv": [13, 11.25, 13.25, 10.25], "texture": "#8"} + "north": { + "uv": [ + 13.25, + 10.25, + 13, + 10.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13, + 10.25, + 13.25, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13, + 11, + 13.25, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13, + 10.25, + 13.25, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13, + 10.25, + 13.25, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13, + 11.25, + 13.25, + 10.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_49", - "from": [13.25, 0, 10.5], - "to": [13.5, 0.25, 11], + "from": [ + 13.25, + 0, + 10.5 + ], + "to": [ + 13.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [13.5, 10.5, 13.25, 10.75], "texture": "#8"}, - "east": {"uv": [13.25, 10.5, 13.5, 11], "rotation": 90, "texture": "#8"}, - "south": {"uv": [13.25, 10.75, 13.5, 11], "texture": "#8"}, - "west": {"uv": [13.25, 10.5, 13.5, 11], "rotation": 270, "texture": "#8"}, - "up": {"uv": [13.25, 10.5, 13.5, 11], "texture": "#8"}, - "down": {"uv": [13.25, 11, 13.5, 10.5], "texture": "#8"} + "north": { + "uv": [ + 13.5, + 10.5, + 13.25, + 10.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 13.25, + 10.5, + 13.5, + 11 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 13.25, + 10.75, + 13.5, + 11 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 13.25, + 10.5, + 13.5, + 11 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 13.25, + 10.5, + 13.5, + 11 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 13.25, + 11, + 13.5, + 10.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_50", - "from": [7.25, 0, 10.75], - "to": [7.5, 0.25, 12.5], + "from": [ + 7.25, + 0, + 10.75 + ], + "to": [ + 7.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.5, 10.75, 7.25, 11], "texture": "#8"}, - "east": {"uv": [7.25, 10.75, 7.5, 12.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7.25, 12.25, 7.5, 12.5], "texture": "#8"}, - "west": {"uv": [7.25, 10.75, 7.5, 12.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7.25, 10.75, 7.5, 12.5], "texture": "#8"}, - "down": {"uv": [7.25, 12.5, 7.5, 10.75], "texture": "#8"} + "north": { + "uv": [ + 7.5, + 10.75, + 7.25, + 11 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7.25, + 10.75, + 7.5, + 12.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7.25, + 12.25, + 7.5, + 12.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7.25, + 10.75, + 7.5, + 12.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7.25, + 10.75, + 7.5, + 12.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7.25, + 12.5, + 7.5, + 10.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_51", - "from": [9, 0, 11], - "to": [9.25, 0.25, 11.25], + "from": [ + 9, + 0, + 11 + ], + "to": [ + 9.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.25, 11, 9, 11.25], "texture": "#8"}, - "east": {"uv": [9, 11, 9.25, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9, 11, 9.25, 11.25], "texture": "#8"}, - "west": {"uv": [9, 11, 9.25, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9, 11, 9.25, 11.25], "texture": "#8"}, - "down": {"uv": [9, 11.25, 9.25, 11], "texture": "#8"} + "north": { + "uv": [ + 9.25, + 11, + 9, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9, + 11.25, + 9.25, + 11 + ], + "texture": "#8" + } } }, { "name": "thirapia_52", - "from": [10, 0, 11], - "to": [10.25, 0.25, 11.5], + "from": [ + 10, + 0, + 11 + ], + "to": [ + 10.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.25, 11, 10, 11.25], "texture": "#8"}, - "east": {"uv": [10, 11, 10.25, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10, 11.25, 10.25, 11.5], "texture": "#8"}, - "west": {"uv": [10, 11, 10.25, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10, 11, 10.25, 11.5], "texture": "#8"}, - "down": {"uv": [10, 11.5, 10.25, 11], "texture": "#8"} + "north": { + "uv": [ + 10.25, + 11, + 10, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10, + 11, + 10.25, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10, + 11.25, + 10.25, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10, + 11, + 10.25, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10, + 11, + 10.25, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10, + 11.5, + 10.25, + 11 + ], + "texture": "#8" + } } }, { "name": "thirapia_53", - "from": [10.5, 0, 11], - "to": [11, 0.25, 11.25], + "from": [ + 10.5, + 0, + 11 + ], + "to": [ + 11, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [11, 11, 10.5, 11.25], "texture": "#8"}, - "east": {"uv": [10.75, 11, 11, 11.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10.5, 11, 11, 11.25], "texture": "#8"}, - "west": {"uv": [10.5, 11, 10.75, 11.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10.5, 11, 11, 11.25], "texture": "#8"}, - "down": {"uv": [10.5, 11.25, 11, 11], "texture": "#8"} + "north": { + "uv": [ + 11, + 11, + 10.5, + 11.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10.75, + 11, + 11, + 11.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10.5, + 11, + 11, + 11.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10.5, + 11, + 10.75, + 11.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10.5, + 11, + 11, + 11.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10.5, + 11.25, + 11, + 11 + ], + "texture": "#8" + } } }, { "name": "thirapia_54", - "from": [7.5, 0, 11.25], - "to": [7.75, 0.25, 12.5], + "from": [ + 7.5, + 0, + 11.25 + ], + "to": [ + 7.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [7.75, 11.25, 7.5, 11.5], "texture": "#8"}, - "east": {"uv": [7.5, 11.25, 7.75, 12.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7.5, 12.25, 7.75, 12.5], "texture": "#8"}, - "west": {"uv": [7.5, 11.25, 7.75, 12.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7.5, 11.25, 7.75, 12.5], "texture": "#8"}, - "down": {"uv": [7.5, 12.5, 7.75, 11.25], "texture": "#8"} + "north": { + "uv": [ + 7.75, + 11.25, + 7.5, + 11.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7.5, + 11.25, + 7.75, + 12.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7.5, + 12.25, + 7.75, + 12.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7.5, + 11.25, + 7.75, + 12.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7.5, + 11.25, + 7.75, + 12.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7.5, + 12.5, + 7.75, + 11.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_55", - "from": [9.5, 0, 11.25], - "to": [10, 0.25, 11.5], + "from": [ + 9.5, + 0, + 11.25 + ], + "to": [ + 10, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10, 11.25, 9.5, 11.5], "texture": "#8"}, - "east": {"uv": [9.75, 11.25, 10, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.5, 11.25, 10, 11.5], "texture": "#8"}, - "west": {"uv": [9.5, 11.25, 9.75, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.5, 11.25, 10, 11.5], "texture": "#8"}, - "down": {"uv": [9.5, 11.5, 10, 11.25], "texture": "#8"} + "north": { + "uv": [ + 10, + 11.25, + 9.5, + 11.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9.75, + 11.25, + 10, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.5, + 11.25, + 10, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.5, + 11.25, + 9.75, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.5, + 11.25, + 10, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.5, + 11.5, + 10, + 11.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_56", - "from": [10.75, 0, 11.25], - "to": [11, 0.25, 11.5], + "from": [ + 10.75, + 0, + 11.25 + ], + "to": [ + 11, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [11, 11.25, 10.75, 11.5], "texture": "#8"}, - "east": {"uv": [10.75, 11.25, 11, 11.5], "rotation": 90, "texture": "#8"}, - "south": {"uv": [10.75, 11.25, 11, 11.5], "texture": "#8"}, - "west": {"uv": [10.75, 11.25, 11, 11.5], "rotation": 270, "texture": "#8"}, - "up": {"uv": [10.75, 11.25, 11, 11.5], "texture": "#8"}, - "down": {"uv": [10.75, 11.5, 11, 11.25], "texture": "#8"} + "north": { + "uv": [ + 11, + 11.25, + 10.75, + 11.5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 10.75, + 11.25, + 11, + 11.5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 10.75, + 11.5, + 11, + 11.25 + ], + "texture": "#8" + } } }, { "name": "thirapia_57", - "from": [9.75, 0, 11.5], - "to": [10, 0.25, 11.75], + "from": [ + 9.75, + 0, + 11.5 + ], + "to": [ + 10, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [10, 11.5, 9.75, 11.75], "texture": "#8"}, - "east": {"uv": [9.75, 11.5, 10, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [9.75, 11.5, 10, 11.75], "texture": "#8"}, - "west": {"uv": [9.75, 11.5, 10, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [9.75, 11.5, 10, 11.75], "texture": "#8"}, - "down": {"uv": [9.75, 11.75, 10, 11.5], "texture": "#8"} + "north": { + "uv": [ + 10, + 11.5, + 9.75, + 11.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 9.75, + 11.5, + 10, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 9.75, + 11.75, + 10, + 11.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_58", - "from": [11.25, 0, 11.5], - "to": [12, 0.25, 11.75], + "from": [ + 11.25, + 0, + 11.5 + ], + "to": [ + 12, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [12, 11.5, 11.25, 11.75], "texture": "#8"}, - "east": {"uv": [11.75, 11.5, 12, 11.75], "rotation": 90, "texture": "#8"}, - "south": {"uv": [11.25, 11.5, 12, 11.75], "texture": "#8"}, - "west": {"uv": [11.25, 11.5, 11.5, 11.75], "rotation": 270, "texture": "#8"}, - "up": {"uv": [11.25, 11.5, 12, 11.75], "texture": "#8"}, - "down": {"uv": [11.25, 11.75, 12, 11.5], "texture": "#8"} + "north": { + "uv": [ + 12, + 11.5, + 11.25, + 11.75 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 11.75, + 11.5, + 12, + 11.75 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 11.25, + 11.5, + 12, + 11.75 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 11.25, + 11.5, + 11.5, + 11.75 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 11.25, + 11.5, + 12, + 11.75 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 11.25, + 11.75, + 12, + 11.5 + ], + "texture": "#8" + } } }, { "name": "thirapia_59", - "from": [6, 0, 11.75], - "to": [6.25, 0.25, 12], + "from": [ + 6, + 0, + 11.75 + ], + "to": [ + 6.25, + 0.25, + 12 + ], "faces": { - "north": {"uv": [6.25, 11.75, 6, 12], "texture": "#8"}, - "east": {"uv": [6, 11.75, 6.25, 12], "rotation": 90, "texture": "#8"}, - "south": {"uv": [6, 11.75, 6.25, 12], "texture": "#8"}, - "west": {"uv": [6, 11.75, 6.25, 12], "rotation": 270, "texture": "#8"}, - "up": {"uv": [6, 11.75, 6.25, 12], "texture": "#8"}, - "down": {"uv": [6, 12, 6.25, 11.75], "texture": "#8"} + "north": { + "uv": [ + 6.25, + 11.75, + 6, + 12 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 6, + 11.75, + 6.25, + 12 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 6, + 12, + 6.25, + 11.75 + ], + "texture": "#8" + } } }, { "name": "thirapia_60", - "from": [7.75, 0, 12], - "to": [8, 0.25, 12.25], + "from": [ + 7.75, + 0, + 12 + ], + "to": [ + 8, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [8, 12, 7.75, 12.25], "texture": "#8"}, - "east": {"uv": [7.75, 12, 8, 12.25], "rotation": 90, "texture": "#8"}, - "south": {"uv": [7.75, 12, 8, 12.25], "texture": "#8"}, - "west": {"uv": [7.75, 12, 8, 12.25], "rotation": 270, "texture": "#8"}, - "up": {"uv": [7.75, 12, 8, 12.25], "texture": "#8"}, - "down": {"uv": [7.75, 12.25, 8, 12], "texture": "#8"} + "north": { + "uv": [ + 8, + 12, + 7.75, + 12.25 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 7.75, + 12, + 8, + 12.25 + ], + "rotation": 90, + "texture": "#8" + }, + "south": { + "uv": [ + 7.75, + 12, + 8, + 12.25 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 7.75, + 12, + 8, + 12.25 + ], + "rotation": 270, + "texture": "#8" + }, + "up": { + "uv": [ + 7.75, + 12, + 8, + 12.25 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 7.75, + 12.25, + 8, + 12 + ], + "texture": "#8" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, -0.25, 3.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + -0.25, + 3.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, -0.25, 3.75], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + -0.25, + 3.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4.25, 8], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4.25, + 8 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4.25, 8], - "scale": [0.3, 0.3, 0.3] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4.25, + 8 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4.25, 8], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4.25, + 8 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 10, 8], - "scale": [0.71, 0.71, 0.71] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 10, + 8 + ], + "scale": [ + 0.71, + 0.71, + 0.71 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "thirapia", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/tyotinankou.json b/pack/assets/minecraft/models/fish/tyotinankou.json index f039e1e2..e093649d 100644 --- a/pack/assets/minecraft/models/fish/tyotinankou.json +++ b/pack/assets/minecraft/models/fish/tyotinankou.json @@ -2,839 +2,4480 @@ "__name": "チョウチンアンコウ", "credit": "Made with Blockbench", "textures": { - "9": "fish/tyotinankou", - "particle": "fish/raigyo" + "9": "item/fish/tyotinankou", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "tyotinankou_0", - "from": [6.75, 0, 3.5], - "to": [8.5, 0.25, 3.75], + "from": [ + 6.75, + 0, + 3.5 + ], + "to": [ + 8.5, + 0.25, + 3.75 + ], "faces": { - "north": {"uv": [8.5, 3.5, 6.75, 3.75], "texture": "#9"}, - "east": {"uv": [8.25, 3.5, 8.5, 3.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [6.75, 3.5, 8.5, 3.75], "texture": "#9"}, - "west": {"uv": [6.75, 3.5, 7, 3.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [6.75, 3.5, 8.5, 3.75], "texture": "#9"}, - "down": {"uv": [6.75, 3.75, 8.5, 3.5], "texture": "#9"} + "north": { + "uv": [ + 8.5, + 3.5, + 6.75, + 3.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 8.25, + 3.5, + 8.5, + 3.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 6.75, + 3.5, + 8.5, + 3.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 6.75, + 3.5, + 7, + 3.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 6.75, + 3.5, + 8.5, + 3.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 6.75, + 3.75, + 8.5, + 3.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_1", - "from": [5.5, 0, 3.75], - "to": [6.75, 0.25, 4], + "from": [ + 5.5, + 0, + 3.75 + ], + "to": [ + 6.75, + 0.25, + 4 + ], "faces": { - "north": {"uv": [6.75, 3.75, 5.5, 4], "texture": "#9"}, - "east": {"uv": [6.5, 3.75, 6.75, 4], "rotation": 90, "texture": "#9"}, - "south": {"uv": [5.5, 3.75, 6.75, 4], "texture": "#9"}, - "west": {"uv": [5.5, 3.75, 5.75, 4], "rotation": 270, "texture": "#9"}, - "up": {"uv": [5.5, 3.75, 6.75, 4], "texture": "#9"}, - "down": {"uv": [5.5, 4, 6.75, 3.75], "texture": "#9"} + "north": { + "uv": [ + 6.75, + 3.75, + 5.5, + 4 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 6.5, + 3.75, + 6.75, + 4 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 5.5, + 3.75, + 6.75, + 4 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 5.5, + 3.75, + 5.75, + 4 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 5.5, + 3.75, + 6.75, + 4 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 5.5, + 4, + 6.75, + 3.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_2", - "from": [8.5, 0, 3.75], - "to": [10.25, 0.25, 4], + "from": [ + 8.5, + 0, + 3.75 + ], + "to": [ + 10.25, + 0.25, + 4 + ], "faces": { - "north": {"uv": [10.25, 3.75, 8.5, 4], "texture": "#9"}, - "east": {"uv": [10, 3.75, 10.25, 4], "rotation": 90, "texture": "#9"}, - "south": {"uv": [8.5, 3.75, 10.25, 4], "texture": "#9"}, - "west": {"uv": [8.5, 3.75, 8.75, 4], "rotation": 270, "texture": "#9"}, - "up": {"uv": [8.5, 3.75, 10.25, 4], "texture": "#9"}, - "down": {"uv": [8.5, 4, 10.25, 3.75], "texture": "#9"} + "north": { + "uv": [ + 10.25, + 3.75, + 8.5, + 4 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10, + 3.75, + 10.25, + 4 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 8.5, + 3.75, + 10.25, + 4 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 8.5, + 3.75, + 8.75, + 4 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 8.5, + 3.75, + 10.25, + 4 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 8.5, + 4, + 10.25, + 3.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_3", - "from": [5, 0, 4], - "to": [5.5, 0.25, 4.25], + "from": [ + 5, + 0, + 4 + ], + "to": [ + 5.5, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [5.5, 4, 5, 4.25], "texture": "#9"}, - "east": {"uv": [5.25, 4, 5.5, 4.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [5, 4, 5.5, 4.25], "texture": "#9"}, - "west": {"uv": [5, 4, 5.25, 4.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [5, 4, 5.5, 4.25], "texture": "#9"}, - "down": {"uv": [5, 4.25, 5.5, 4], "texture": "#9"} + "north": { + "uv": [ + 5.5, + 4, + 5, + 4.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 5, + 4, + 5.5, + 4.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 5, + 4, + 5.25, + 4.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 5, + 4, + 5.5, + 4.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 5, + 4.25, + 5.5, + 4 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_4", - "from": [10.25, 0, 4], - "to": [11.25, 0.25, 4.25], + "from": [ + 10.25, + 0, + 4 + ], + "to": [ + 11.25, + 0.25, + 4.25 + ], "faces": { - "north": {"uv": [11.25, 4, 10.25, 4.25], "texture": "#9"}, - "east": {"uv": [11, 4, 11.25, 4.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [10.25, 4, 11.25, 4.25], "texture": "#9"}, - "west": {"uv": [10.25, 4, 10.5, 4.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [10.25, 4, 11.25, 4.25], "texture": "#9"}, - "down": {"uv": [10.25, 4.25, 11.25, 4], "texture": "#9"} + "north": { + "uv": [ + 11.25, + 4, + 10.25, + 4.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11, + 4, + 11.25, + 4.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 10.25, + 4, + 11.25, + 4.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 10.25, + 4, + 10.5, + 4.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 10.25, + 4, + 11.25, + 4.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 10.25, + 4.25, + 11.25, + 4 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_5", - "from": [11.5, 0, 4], - "to": [11.75, 0.25, 4.75], + "from": [ + 11.5, + 0, + 4 + ], + "to": [ + 11.75, + 0.25, + 4.75 + ], "faces": { - "north": {"uv": [11.75, 4, 11.5, 4.25], "texture": "#9"}, - "east": {"uv": [11.5, 4, 11.75, 4.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.5, 4.5, 11.75, 4.75], "texture": "#9"}, - "west": {"uv": [11.5, 4, 11.75, 4.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.5, 4, 11.75, 4.75], "texture": "#9"}, - "down": {"uv": [11.5, 4.75, 11.75, 4], "texture": "#9"} + "north": { + "uv": [ + 11.75, + 4, + 11.5, + 4.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.5, + 4, + 11.75, + 4.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.5, + 4.5, + 11.75, + 4.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.5, + 4, + 11.75, + 4.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.5, + 4, + 11.75, + 4.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.5, + 4.75, + 11.75, + 4 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_6", - "from": [4.5, 0, 4.25], - "to": [5, 0.25, 4.5], + "from": [ + 4.5, + 0, + 4.25 + ], + "to": [ + 5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [5, 4.25, 4.5, 4.5], "texture": "#9"}, - "east": {"uv": [4.75, 4.25, 5, 4.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4.5, 4.25, 5, 4.5], "texture": "#9"}, - "west": {"uv": [4.5, 4.25, 4.75, 4.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4.5, 4.25, 5, 4.5], "texture": "#9"}, - "down": {"uv": [4.5, 4.5, 5, 4.25], "texture": "#9"} + "north": { + "uv": [ + 5, + 4.25, + 4.5, + 4.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4.5, + 4.25, + 5, + 4.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 4.75, + 4.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4.5, + 4.25, + 5, + 4.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4.5, + 4.5, + 5, + 4.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_7", - "from": [11.25, 0, 4.25], - "to": [11.5, 0.25, 4.5], + "from": [ + 11.25, + 0, + 4.25 + ], + "to": [ + 11.5, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [11.5, 4.25, 11.25, 4.5], "texture": "#9"}, - "east": {"uv": [11.25, 4.25, 11.5, 4.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.25, 4.25, 11.5, 4.5], "texture": "#9"}, - "west": {"uv": [11.25, 4.25, 11.5, 4.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.25, 4.25, 11.5, 4.5], "texture": "#9"}, - "down": {"uv": [11.25, 4.5, 11.5, 4.25], "texture": "#9"} + "north": { + "uv": [ + 11.5, + 4.25, + 11.25, + 4.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.25, + 4.25, + 11.5, + 4.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.25, + 4.25, + 11.5, + 4.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.25, + 4.25, + 11.5, + 4.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.25, + 4.25, + 11.5, + 4.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.25, + 4.5, + 11.5, + 4.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_8", - "from": [11.75, 0, 4.25], - "to": [12, 0.25, 4.5], + "from": [ + 11.75, + 0, + 4.25 + ], + "to": [ + 12, + 0.25, + 4.5 + ], "faces": { - "north": {"uv": [12, 4.25, 11.75, 4.5], "texture": "#9"}, - "east": {"uv": [11.75, 4.25, 12, 4.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.75, 4.25, 12, 4.5], "texture": "#9"}, - "west": {"uv": [11.75, 4.25, 12, 4.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.75, 4.25, 12, 4.5], "texture": "#9"}, - "down": {"uv": [11.75, 4.5, 12, 4.25], "texture": "#9"} + "north": { + "uv": [ + 12, + 4.25, + 11.75, + 4.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.75, + 4.25, + 12, + 4.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.75, + 4.25, + 12, + 4.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.75, + 4.25, + 12, + 4.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.75, + 4.25, + 12, + 4.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.75, + 4.5, + 12, + 4.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_9", - "from": [4.25, 0, 4.5], - "to": [4.5, 0.25, 5], + "from": [ + 4.25, + 0, + 4.5 + ], + "to": [ + 4.5, + 0.25, + 5 + ], "faces": { - "north": {"uv": [4.5, 4.5, 4.25, 4.75], "texture": "#9"}, - "east": {"uv": [4.25, 4.5, 4.5, 5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4.25, 4.75, 4.5, 5], "texture": "#9"}, - "west": {"uv": [4.25, 4.5, 4.5, 5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4.25, 4.5, 4.5, 5], "texture": "#9"}, - "down": {"uv": [4.25, 5, 4.5, 4.5], "texture": "#9"} + "north": { + "uv": [ + 4.5, + 4.5, + 4.25, + 4.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 4.25, + 4.5, + 4.5, + 5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4.25, + 4.75, + 4.5, + 5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4.25, + 4.5, + 4.5, + 5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4.25, + 4.5, + 4.5, + 5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4.25, + 5, + 4.5, + 4.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_10", - "from": [4, 0, 5], - "to": [4.25, 0.25, 12.25], + "from": [ + 4, + 0, + 5 + ], + "to": [ + 4.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [4.25, 5, 4, 5.25], "texture": "#9"}, - "east": {"uv": [4, 5, 4.25, 12.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4, 12, 4.25, 12.25], "texture": "#9"}, - "west": {"uv": [4, 5, 4.25, 12.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4, 5, 4.25, 12.25], "texture": "#9"}, - "down": {"uv": [4, 12.25, 4.25, 5], "texture": "#9"} + "north": { + "uv": [ + 4.25, + 5, + 4, + 5.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 4, + 5, + 4.25, + 12.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4, + 12, + 4.25, + 12.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4, + 5, + 4.25, + 12.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4, + 5, + 4.25, + 12.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4, + 12.25, + 4.25, + 5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_11", - "from": [5.5, 0, 5.5], - "to": [8, 0.25, 12], + "from": [ + 5.5, + 0, + 5.5 + ], + "to": [ + 8, + 0.25, + 12 + ], "faces": { - "north": {"uv": [8, 5.5, 5.5, 5.75], "texture": "#9"}, - "east": {"uv": [7.75, 5.5, 8, 12], "rotation": 90, "texture": "#9"}, - "south": {"uv": [5.5, 11.75, 8, 12], "texture": "#9"}, - "west": {"uv": [5.5, 5.5, 5.75, 12], "rotation": 270, "texture": "#9"}, - "up": {"uv": [5.5, 5.5, 8, 12], "texture": "#9"}, - "down": {"uv": [5.5, 12, 8, 5.5], "texture": "#9"} + "north": { + "uv": [ + 8, + 5.5, + 5.5, + 5.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 8, + 12 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 5.5, + 11.75, + 8, + 12 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 5.5, + 5.5, + 5.75, + 12 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 5.5, + 5.5, + 8, + 12 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 5.5, + 12, + 8, + 5.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_12", - "from": [4.75, 0, 5.75], - "to": [5.5, 0.25, 12.5], + "from": [ + 4.75, + 0, + 5.75 + ], + "to": [ + 5.5, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [5.5, 5.75, 4.75, 6], "texture": "#9"}, - "east": {"uv": [5.25, 5.75, 5.5, 12.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4.75, 12.25, 5.5, 12.5], "texture": "#9"}, - "west": {"uv": [4.75, 5.75, 5, 12.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4.75, 5.75, 5.5, 12.5], "texture": "#9"}, - "down": {"uv": [4.75, 12.5, 5.5, 5.75], "texture": "#9"} + "north": { + "uv": [ + 5.5, + 5.75, + 4.75, + 6 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 5.25, + 5.75, + 5.5, + 12.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4.75, + 12.25, + 5.5, + 12.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4.75, + 5.75, + 5, + 12.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4.75, + 5.75, + 5.5, + 12.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4.75, + 12.5, + 5.5, + 5.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_13", - "from": [8, 0, 5.75], - "to": [8.75, 0.25, 11.75], + "from": [ + 8, + 0, + 5.75 + ], + "to": [ + 8.75, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [8.75, 5.75, 8, 6], "texture": "#9"}, - "east": {"uv": [8.5, 5.75, 8.75, 11.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [8, 11.5, 8.75, 11.75], "texture": "#9"}, - "west": {"uv": [8, 5.75, 8.25, 11.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [8, 5.75, 8.75, 11.75], "texture": "#9"}, - "down": {"uv": [8, 11.75, 8.75, 5.75], "texture": "#9"} + "north": { + "uv": [ + 8.75, + 5.75, + 8, + 6 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 8.5, + 5.75, + 8.75, + 11.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 8, + 11.5, + 8.75, + 11.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 8, + 5.75, + 8.25, + 11.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 8, + 5.75, + 8.75, + 11.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 8, + 11.75, + 8.75, + 5.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_14", - "from": [12.25, 0, 5.75], - "to": [12.5, 0.25, 9.75], + "from": [ + 12.25, + 0, + 5.75 + ], + "to": [ + 12.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12.5, 5.75, 12.25, 6], "texture": "#9"}, - "east": {"uv": [12.25, 5.75, 12.5, 9.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.25, 9.5, 12.5, 9.75], "texture": "#9"}, - "west": {"uv": [12.25, 5.75, 12.5, 9.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.25, 5.75, 12.5, 9.75], "texture": "#9"}, - "down": {"uv": [12.25, 9.75, 12.5, 5.75], "texture": "#9"} + "north": { + "uv": [ + 12.5, + 5.75, + 12.25, + 6 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.25, + 9.5, + 12.5, + 9.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.25, + 5.75, + 12.5, + 9.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.25, + 9.75, + 12.5, + 5.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_15", - "from": [4.25, 0, 6], - "to": [4.75, 0.25, 12.25], + "from": [ + 4.25, + 0, + 6 + ], + "to": [ + 4.75, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [4.75, 6, 4.25, 6.25], "texture": "#9"}, - "east": {"uv": [4.5, 6, 4.75, 12.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4.25, 12, 4.75, 12.25], "texture": "#9"}, - "west": {"uv": [4.25, 6, 4.5, 12.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4.25, 6, 4.75, 12.25], "texture": "#9"}, - "down": {"uv": [4.25, 12.25, 4.75, 6], "texture": "#9"} + "north": { + "uv": [ + 4.75, + 6, + 4.25, + 6.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 4.5, + 6, + 4.75, + 12.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4.25, + 12, + 4.75, + 12.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4.25, + 6, + 4.5, + 12.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4.25, + 6, + 4.75, + 12.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4.25, + 12.25, + 4.75, + 6 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_16", - "from": [8.75, 0, 6], - "to": [9.25, 0.25, 11.75], + "from": [ + 8.75, + 0, + 6 + ], + "to": [ + 9.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [9.25, 6, 8.75, 6.25], "texture": "#9"}, - "east": {"uv": [9, 6, 9.25, 11.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [8.75, 11.5, 9.25, 11.75], "texture": "#9"}, - "west": {"uv": [8.75, 6, 9, 11.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [8.75, 6, 9.25, 11.75], "texture": "#9"}, - "down": {"uv": [8.75, 11.75, 9.25, 6], "texture": "#9"} + "north": { + "uv": [ + 9.25, + 6, + 8.75, + 6.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 9, + 6, + 9.25, + 11.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 8.75, + 11.5, + 9.25, + 11.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 8.75, + 6, + 9, + 11.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 8.75, + 6, + 9.25, + 11.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 8.75, + 11.75, + 9.25, + 6 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_17", - "from": [9.75, 0, 6], - "to": [10.25, 0.25, 11], + "from": [ + 9.75, + 0, + 6 + ], + "to": [ + 10.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [10.25, 6, 9.75, 6.25], "texture": "#9"}, - "east": {"uv": [10, 6, 10.25, 11], "rotation": 90, "texture": "#9"}, - "south": {"uv": [9.75, 10.75, 10.25, 11], "texture": "#9"}, - "west": {"uv": [9.75, 6, 10, 11], "rotation": 270, "texture": "#9"}, - "up": {"uv": [9.75, 6, 10.25, 11], "texture": "#9"}, - "down": {"uv": [9.75, 11, 10.25, 6], "texture": "#9"} + "north": { + "uv": [ + 10.25, + 6, + 9.75, + 6.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10, + 6, + 10.25, + 11 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 9.75, + 10.75, + 10.25, + 11 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 9.75, + 6, + 10, + 11 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 9.75, + 6, + 10.25, + 11 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 9.75, + 11, + 10.25, + 6 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_18", - "from": [12, 0, 6], - "to": [12.25, 0.25, 11.5], + "from": [ + 12, + 0, + 6 + ], + "to": [ + 12.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.25, 6, 12, 6.25], "texture": "#9"}, - "east": {"uv": [12, 6, 12.25, 11.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12, 11.25, 12.25, 11.5], "texture": "#9"}, - "west": {"uv": [12, 6, 12.25, 11.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12, 6, 12.25, 11.5], "texture": "#9"}, - "down": {"uv": [12, 11.5, 12.25, 6], "texture": "#9"} + "north": { + "uv": [ + 12.25, + 6, + 12, + 6.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12, + 6, + 12.25, + 11.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12, + 11.25, + 12.25, + 11.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12, + 6, + 12.25, + 11.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12, + 6, + 12.25, + 11.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12, + 11.5, + 12.25, + 6 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_19", - "from": [12.5, 0, 6], - "to": [12.75, 0.25, 9.5], + "from": [ + 12.5, + 0, + 6 + ], + "to": [ + 12.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.75, 6, 12.5, 6.25], "texture": "#9"}, - "east": {"uv": [12.5, 6, 12.75, 9.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.5, 9.25, 12.75, 9.5], "texture": "#9"}, - "west": {"uv": [12.5, 6, 12.75, 9.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.5, 6, 12.75, 9.5], "texture": "#9"}, - "down": {"uv": [12.5, 9.5, 12.75, 6], "texture": "#9"} + "north": { + "uv": [ + 12.75, + 6, + 12.5, + 6.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.75, + 9.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.5, + 9.25, + 12.75, + 9.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.5, + 6, + 12.75, + 9.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.5, + 6, + 12.75, + 9.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 12.75, + 6 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_20", - "from": [3.25, 0, 6.25], - "to": [4, 0.25, 12], + "from": [ + 3.25, + 0, + 6.25 + ], + "to": [ + 4, + 0.25, + 12 + ], "faces": { - "north": {"uv": [4, 6.25, 3.25, 6.5], "texture": "#9"}, - "east": {"uv": [3.75, 6.25, 4, 12], "rotation": 90, "texture": "#9"}, - "south": {"uv": [3.25, 11.75, 4, 12], "texture": "#9"}, - "west": {"uv": [3.25, 6.25, 3.5, 12], "rotation": 270, "texture": "#9"}, - "up": {"uv": [3.25, 6.25, 4, 12], "texture": "#9"}, - "down": {"uv": [3.25, 12, 4, 6.25], "texture": "#9"} + "north": { + "uv": [ + 4, + 6.25, + 3.25, + 6.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 3.75, + 6.25, + 4, + 12 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 3.25, + 11.75, + 4, + 12 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 3.25, + 6.25, + 3.5, + 12 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 3.25, + 6.25, + 4, + 12 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 3.25, + 12, + 4, + 6.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_21", - "from": [9.25, 0, 6.25], - "to": [9.75, 0.25, 11.25], + "from": [ + 9.25, + 0, + 6.25 + ], + "to": [ + 9.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9.75, 6.25, 9.25, 6.5], "texture": "#9"}, - "east": {"uv": [9.5, 6.25, 9.75, 11.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [9.25, 11, 9.75, 11.25], "texture": "#9"}, - "west": {"uv": [9.25, 6.25, 9.5, 11.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [9.25, 6.25, 9.75, 11.25], "texture": "#9"}, - "down": {"uv": [9.25, 11.25, 9.75, 6.25], "texture": "#9"} + "north": { + "uv": [ + 9.75, + 6.25, + 9.25, + 6.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 9.5, + 6.25, + 9.75, + 11.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 9.25, + 11, + 9.75, + 11.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 9.25, + 6.25, + 9.5, + 11.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 9.25, + 6.25, + 9.75, + 11.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 9.25, + 11.25, + 9.75, + 6.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_22", - "from": [10.25, 0, 6.25], - "to": [10.5, 0.25, 10.75], + "from": [ + 10.25, + 0, + 6.25 + ], + "to": [ + 10.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.5, 6.25, 10.25, 6.5], "texture": "#9"}, - "east": {"uv": [10.25, 6.25, 10.5, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [10.25, 10.5, 10.5, 10.75], "texture": "#9"}, - "west": {"uv": [10.25, 6.25, 10.5, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [10.25, 6.25, 10.5, 10.75], "texture": "#9"}, - "down": {"uv": [10.25, 10.75, 10.5, 6.25], "texture": "#9"} + "north": { + "uv": [ + 10.5, + 6.25, + 10.25, + 6.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10.25, + 6.25, + 10.5, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 10.25, + 10.5, + 10.5, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 10.25, + 6.25, + 10.5, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 10.25, + 6.25, + 10.5, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 10.25, + 10.75, + 10.5, + 6.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_23", - "from": [11.5, 0, 6.25], - "to": [12, 0.25, 11.25], + "from": [ + 11.5, + 0, + 6.25 + ], + "to": [ + 12, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [12, 6.25, 11.5, 6.5], "texture": "#9"}, - "east": {"uv": [11.75, 6.25, 12, 11.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.5, 11, 12, 11.25], "texture": "#9"}, - "west": {"uv": [11.5, 6.25, 11.75, 11.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.5, 6.25, 12, 11.25], "texture": "#9"}, - "down": {"uv": [11.5, 11.25, 12, 6.25], "texture": "#9"} + "north": { + "uv": [ + 12, + 6.25, + 11.5, + 6.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.75, + 6.25, + 12, + 11.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.5, + 11, + 12, + 11.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.5, + 6.25, + 11.75, + 11.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.5, + 6.25, + 12, + 11.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.5, + 11.25, + 12, + 6.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_24", - "from": [12.75, 0, 6.25], - "to": [13, 0.25, 9.5], + "from": [ + 12.75, + 0, + 6.25 + ], + "to": [ + 13, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13, 6.25, 12.75, 6.5], "texture": "#9"}, - "east": {"uv": [12.75, 6.25, 13, 9.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.75, 9.25, 13, 9.5], "texture": "#9"}, - "west": {"uv": [12.75, 6.25, 13, 9.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.75, 6.25, 13, 9.5], "texture": "#9"}, - "down": {"uv": [12.75, 9.5, 13, 6.25], "texture": "#9"} + "north": { + "uv": [ + 13, + 6.25, + 12.75, + 6.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.75, + 6.25, + 13, + 9.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.75, + 9.25, + 13, + 9.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.75, + 6.25, + 13, + 9.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.75, + 6.25, + 13, + 9.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.75, + 9.5, + 13, + 6.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_25", - "from": [2.75, 0, 6.5], - "to": [3.25, 0.25, 11.5], + "from": [ + 2.75, + 0, + 6.5 + ], + "to": [ + 3.25, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [3.25, 6.5, 2.75, 6.75], "texture": "#9"}, - "east": {"uv": [3, 6.5, 3.25, 11.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [2.75, 11.25, 3.25, 11.5], "texture": "#9"}, - "west": {"uv": [2.75, 6.5, 3, 11.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [2.75, 6.5, 3.25, 11.5], "texture": "#9"}, - "down": {"uv": [2.75, 11.5, 3.25, 6.5], "texture": "#9"} + "north": { + "uv": [ + 3.25, + 6.5, + 2.75, + 6.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 3, + 6.5, + 3.25, + 11.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 2.75, + 11.25, + 3.25, + 11.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 2.75, + 6.5, + 3, + 11.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 2.75, + 6.5, + 3.25, + 11.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 2.75, + 11.5, + 3.25, + 6.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_26", - "from": [11.25, 0, 6.5], - "to": [11.5, 0.25, 11], + "from": [ + 11.25, + 0, + 6.5 + ], + "to": [ + 11.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [11.5, 6.5, 11.25, 6.75], "texture": "#9"}, - "east": {"uv": [11.25, 6.5, 11.5, 11], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.25, 10.75, 11.5, 11], "texture": "#9"}, - "west": {"uv": [11.25, 6.5, 11.5, 11], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.25, 6.5, 11.5, 11], "texture": "#9"}, - "down": {"uv": [11.25, 11, 11.5, 6.5], "texture": "#9"} + "north": { + "uv": [ + 11.5, + 6.5, + 11.25, + 6.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.25, + 6.5, + 11.5, + 11 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.25, + 10.75, + 11.5, + 11 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.25, + 6.5, + 11.5, + 11 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.25, + 6.5, + 11.5, + 11 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.25, + 11, + 11.5, + 6.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_27", - "from": [2, 0, 6.75], - "to": [2.75, 0.25, 11], + "from": [ + 2, + 0, + 6.75 + ], + "to": [ + 2.75, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2.75, 6.75, 2, 7], "texture": "#9"}, - "east": {"uv": [2.5, 6.75, 2.75, 11], "rotation": 90, "texture": "#9"}, - "south": {"uv": [2, 10.75, 2.75, 11], "texture": "#9"}, - "west": {"uv": [2, 6.75, 2.25, 11], "rotation": 270, "texture": "#9"}, - "up": {"uv": [2, 6.75, 2.75, 11], "texture": "#9"}, - "down": {"uv": [2, 11, 2.75, 6.75], "texture": "#9"} + "north": { + "uv": [ + 2.75, + 6.75, + 2, + 7 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2.5, + 6.75, + 2.75, + 11 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 2, + 10.75, + 2.75, + 11 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 2, + 6.75, + 2.25, + 11 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 2, + 6.75, + 2.75, + 11 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 2, + 11, + 2.75, + 6.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_28", - "from": [10.5, 0, 6.75], - "to": [10.75, 0.25, 10.75], + "from": [ + 10.5, + 0, + 6.75 + ], + "to": [ + 10.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [10.75, 6.75, 10.5, 7], "texture": "#9"}, - "east": {"uv": [10.5, 6.75, 10.75, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [10.5, 10.5, 10.75, 10.75], "texture": "#9"}, - "west": {"uv": [10.5, 6.75, 10.75, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [10.5, 6.75, 10.75, 10.75], "texture": "#9"}, - "down": {"uv": [10.5, 10.75, 10.75, 6.75], "texture": "#9"} + "north": { + "uv": [ + 10.75, + 6.75, + 10.5, + 7 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10.5, + 6.75, + 10.75, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 10.5, + 10.5, + 10.75, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 10.5, + 6.75, + 10.75, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 10.5, + 6.75, + 10.75, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 10.5, + 10.75, + 10.75, + 6.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_29", - "from": [11, 0, 6.75], - "to": [11.25, 0.25, 10.75], + "from": [ + 11, + 0, + 6.75 + ], + "to": [ + 11.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.25, 6.75, 11, 7], "texture": "#9"}, - "east": {"uv": [11, 6.75, 11.25, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11, 10.5, 11.25, 10.75], "texture": "#9"}, - "west": {"uv": [11, 6.75, 11.25, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11, 6.75, 11.25, 10.75], "texture": "#9"}, - "down": {"uv": [11, 10.75, 11.25, 6.75], "texture": "#9"} + "north": { + "uv": [ + 11.25, + 6.75, + 11, + 7 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11, + 6.75, + 11.25, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11, + 10.5, + 11.25, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11, + 6.75, + 11.25, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11, + 6.75, + 11.25, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11, + 10.75, + 11.25, + 6.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_30", - "from": [1.5, 0, 7], - "to": [2, 0.25, 10.75], + "from": [ + 1.5, + 0, + 7 + ], + "to": [ + 2, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [2, 7, 1.5, 7.25], "texture": "#9"}, - "east": {"uv": [1.75, 7, 2, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1.5, 10.5, 2, 10.75], "texture": "#9"}, - "west": {"uv": [1.5, 7, 1.75, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1.5, 7, 2, 10.75], "texture": "#9"}, - "down": {"uv": [1.5, 10.75, 2, 7], "texture": "#9"} + "north": { + "uv": [ + 2, + 7, + 1.5, + 7.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 1.75, + 7, + 2, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1.5, + 10.5, + 2, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1.5, + 7, + 1.75, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1.5, + 7, + 2, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1.5, + 10.75, + 2, + 7 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_31", - "from": [10.75, 0, 7], - "to": [11, 0.25, 10.75], + "from": [ + 10.75, + 0, + 7 + ], + "to": [ + 11, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11, 7, 10.75, 7.25], "texture": "#9"}, - "east": {"uv": [10.75, 7, 11, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [10.75, 10.5, 11, 10.75], "texture": "#9"}, - "west": {"uv": [10.75, 7, 11, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [10.75, 7, 11, 10.75], "texture": "#9"}, - "down": {"uv": [10.75, 10.75, 11, 7], "texture": "#9"} + "north": { + "uv": [ + 11, + 7, + 10.75, + 7.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10.75, + 7, + 11, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 10.75, + 10.5, + 11, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 10.75, + 7, + 11, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 10.75, + 7, + 11, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 10.75, + 10.75, + 11, + 7 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_32", - "from": [13, 0, 7], - "to": [13.25, 0.25, 7.75], + "from": [ + 13, + 0, + 7 + ], + "to": [ + 13.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [13.25, 7, 13, 7.25], "texture": "#9"}, - "east": {"uv": [13, 7, 13.25, 7.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13, 7.5, 13.25, 7.75], "texture": "#9"}, - "west": {"uv": [13, 7, 13.25, 7.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13, 7, 13.25, 7.75], "texture": "#9"}, - "down": {"uv": [13, 7.75, 13.25, 7], "texture": "#9"} + "north": { + "uv": [ + 13.25, + 7, + 13, + 7.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 13, + 7, + 13.25, + 7.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13, + 7.5, + 13.25, + 7.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13, + 7, + 13.25, + 7.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13, + 7, + 13.25, + 7.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13, + 7.75, + 13.25, + 7 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_33", - "from": [1.25, 0, 7.25], - "to": [1.5, 0.25, 10.5], + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [1.5, 7.25, 1.25, 7.5], "texture": "#9"}, - "east": {"uv": [1.25, 7.25, 1.5, 10.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1.25, 10.25, 1.5, 10.5], "texture": "#9"}, - "west": {"uv": [1.25, 7.25, 1.5, 10.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1.25, 7.25, 1.5, 10.5], "texture": "#9"}, - "down": {"uv": [1.25, 10.5, 1.5, 7.25], "texture": "#9"} + "north": { + "uv": [ + 1.5, + 7.25, + 1.25, + 7.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1.25, + 10.25, + 1.5, + 10.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1.25, + 10.5, + 1.5, + 7.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_34", - "from": [14.5, 0, 7.25], - "to": [15.25, 0.25, 10.25], + "from": [ + 14.5, + 0, + 7.25 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 7.25, 14.5, 7.5], "texture": "#9"}, - "east": {"uv": [15, 7.25, 15.25, 10.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [14.5, 10, 15.25, 10.25], "texture": "#9"}, - "west": {"uv": [14.5, 7.25, 14.75, 10.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [14.5, 7.25, 15.25, 10.25], "texture": "#9"}, - "down": {"uv": [14.5, 10.25, 15.25, 7.25], "texture": "#9"} + "north": { + "uv": [ + 15.25, + 7.25, + 14.5, + 7.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 15, + 7.25, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 14.5, + 10, + 15.25, + 10.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 14.5, + 7.25, + 14.75, + 10.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 14.5, + 7.25, + 15.25, + 10.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 14.5, + 10.25, + 15.25, + 7.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_35", - "from": [1, 0, 7.5], - "to": [1.25, 0.25, 10], + "from": [ + 1, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.25, 7.5, 1, 7.75], "texture": "#9"}, - "east": {"uv": [1, 7.5, 1.25, 10], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1, 9.75, 1.25, 10], "texture": "#9"}, - "west": {"uv": [1, 7.5, 1.25, 10], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1, 7.5, 1.25, 10], "texture": "#9"}, - "down": {"uv": [1, 10, 1.25, 7.5], "texture": "#9"} + "north": { + "uv": [ + 1.25, + 7.5, + 1, + 7.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 10 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.25, + 10 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.25, + 10 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1, + 7.5, + 1.25, + 10 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1, + 10, + 1.25, + 7.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_36", - "from": [14, 0, 7.5], - "to": [14.5, 0.25, 10.25], + "from": [ + 14, + 0, + 7.5 + ], + "to": [ + 14.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [14.5, 7.5, 14, 7.75], "texture": "#9"}, - "east": {"uv": [14.25, 7.5, 14.5, 10.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [14, 10, 14.5, 10.25], "texture": "#9"}, - "west": {"uv": [14, 7.5, 14.25, 10.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [14, 7.5, 14.5, 10.25], "texture": "#9"}, - "down": {"uv": [14, 10.25, 14.5, 7.5], "texture": "#9"} + "north": { + "uv": [ + 14.5, + 7.5, + 14, + 7.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 14.25, + 7.5, + 14.5, + 10.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 14, + 10, + 14.5, + 10.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 14, + 7.5, + 14.25, + 10.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 14, + 7.5, + 14.5, + 10.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 14, + 10.25, + 14.5, + 7.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_37", - "from": [15.25, 0, 7.5], - "to": [15.5, 0.25, 10.25], + "from": [ + 15.25, + 0, + 7.5 + ], + "to": [ + 15.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.5, 7.5, 15.25, 7.75], "texture": "#9"}, - "east": {"uv": [15.25, 7.5, 15.5, 10.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [15.25, 10, 15.5, 10.25], "texture": "#9"}, - "west": {"uv": [15.25, 7.5, 15.5, 10.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [15.25, 7.5, 15.5, 10.25], "texture": "#9"}, - "down": {"uv": [15.25, 10.25, 15.5, 7.5], "texture": "#9"} + "north": { + "uv": [ + 15.5, + 7.5, + 15.25, + 7.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 15.25, + 7.5, + 15.5, + 10.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 15.25, + 10, + 15.5, + 10.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 15.25, + 7.5, + 15.5, + 10.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 15.25, + 7.5, + 15.5, + 10.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 15.25, + 10.25, + 15.5, + 7.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_38", - "from": [13.5, 0, 7.75], - "to": [14, 0.25, 10], + "from": [ + 13.5, + 0, + 7.75 + ], + "to": [ + 14, + 0.25, + 10 + ], "faces": { - "north": {"uv": [14, 7.75, 13.5, 8], "texture": "#9"}, - "east": {"uv": [13.75, 7.75, 14, 10], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13.5, 9.75, 14, 10], "texture": "#9"}, - "west": {"uv": [13.5, 7.75, 13.75, 10], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13.5, 7.75, 14, 10], "texture": "#9"}, - "down": {"uv": [13.5, 10, 14, 7.75], "texture": "#9"} + "north": { + "uv": [ + 14, + 7.75, + 13.5, + 8 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 13.75, + 7.75, + 14, + 10 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 14, + 10 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13.5, + 7.75, + 13.75, + 10 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 14, + 10 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13.5, + 10, + 14, + 7.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_39", - "from": [15.5, 0, 7.75], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15.5, 8], "texture": "#9"}, - "east": {"uv": [15.5, 7.75, 15.75, 10], "rotation": 90, "texture": "#9"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#9"}, - "west": {"uv": [15.5, 7.75, 15.75, 10], "rotation": 270, "texture": "#9"}, - "up": {"uv": [15.5, 7.75, 15.75, 10], "texture": "#9"}, - "down": {"uv": [15.5, 10, 15.75, 7.75], "texture": "#9"} + "north": { + "uv": [ + 15.75, + 7.75, + 15.5, + 8 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 15.5, + 7.75, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 15.5, + 7.75, + 15.75, + 10 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 7.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_40", - "from": [0.25, 0, 8], - "to": [0.75, 0.25, 8.75], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.75, 8, 0.25, 8.25], "texture": "#9"}, - "east": {"uv": [0.5, 8, 0.75, 8.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0.25, 8.5, 0.75, 8.75], "texture": "#9"}, - "west": {"uv": [0.25, 8, 0.5, 8.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0.25, 8, 0.75, 8.75], "texture": "#9"}, - "down": {"uv": [0.25, 8.75, 0.75, 8], "texture": "#9"} + "north": { + "uv": [ + 0.75, + 8, + 0.25, + 8.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0.5, + 8, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.75, + 8.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.75, + 8.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.75, + 8 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_41", - "from": [13, 0, 8], - "to": [13.5, 0.25, 9.5], + "from": [ + 13, + 0, + 8 + ], + "to": [ + 13.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [13.5, 8, 13, 8.25], "texture": "#9"}, - "east": {"uv": [13.25, 8, 13.5, 9.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13, 9.25, 13.5, 9.5], "texture": "#9"}, - "west": {"uv": [13, 8, 13.25, 9.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13, 8, 13.5, 9.5], "texture": "#9"}, - "down": {"uv": [13, 9.5, 13.5, 8], "texture": "#9"} + "north": { + "uv": [ + 13.5, + 8, + 13, + 8.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 13.25, + 8, + 13.5, + 9.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13, + 9.25, + 13.5, + 9.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13, + 8, + 13.25, + 9.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13, + 8, + 13.5, + 9.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13, + 9.5, + 13.5, + 8 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_42", - "from": [0, 0, 8.25], - "to": [0.25, 0.25, 8.5], + "from": [ + 0, + 0, + 8.25 + ], + "to": [ + 0.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.25, 8.25, 0, 8.5], "texture": "#9"}, - "east": {"uv": [0, 8.25, 0.25, 8.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#9"}, - "west": {"uv": [0, 8.25, 0.25, 8.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#9"}, - "down": {"uv": [0, 8.5, 0.25, 8.25], "texture": "#9"} + "north": { + "uv": [ + 0.25, + 8.25, + 0, + 8.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 8.5, + 0.25, + 8.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_43", - "from": [0.75, 0, 8.25], - "to": [1, 0.25, 9.5], + "from": [ + 0.75, + 0, + 8.25 + ], + "to": [ + 1, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [1, 8.25, 0.75, 8.5], "texture": "#9"}, - "east": {"uv": [0.75, 8.25, 1, 9.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0.75, 9.25, 1, 9.5], "texture": "#9"}, - "west": {"uv": [0.75, 8.25, 1, 9.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0.75, 8.25, 1, 9.5], "texture": "#9"}, - "down": {"uv": [0.75, 9.5, 1, 8.25], "texture": "#9"} + "north": { + "uv": [ + 1, + 8.25, + 0.75, + 8.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0.75, + 8.25, + 1, + 9.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0.75, + 9.25, + 1, + 9.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0.75, + 8.25, + 1, + 9.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0.75, + 8.25, + 1, + 9.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0.75, + 9.5, + 1, + 8.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_44", - "from": [0.5, 0, 8.75], - "to": [0.75, 0.25, 9], + "from": [ + 0.5, + 0, + 8.75 + ], + "to": [ + 0.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [0.75, 8.75, 0.5, 9], "texture": "#9"}, - "east": {"uv": [0.5, 8.75, 0.75, 9], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#9"}, - "west": {"uv": [0.5, 8.75, 0.75, 9], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0.5, 8.75, 0.75, 9], "texture": "#9"}, - "down": {"uv": [0.5, 9, 0.75, 8.75], "texture": "#9"} + "north": { + "uv": [ + 0.75, + 8.75, + 0.5, + 9 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0.5, + 8.75, + 0.75, + 9 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0.5, + 9, + 0.75, + 8.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_45", - "from": [13.25, 0, 9.5], - "to": [13.5, 0.25, 9.75], + "from": [ + 13.25, + 0, + 9.5 + ], + "to": [ + 13.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [13.5, 9.5, 13.25, 9.75], "texture": "#9"}, - "east": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#9"}, - "west": {"uv": [13.25, 9.5, 13.5, 9.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13.25, 9.5, 13.5, 9.75], "texture": "#9"}, - "down": {"uv": [13.25, 9.75, 13.5, 9.5], "texture": "#9"} + "north": { + "uv": [ + 13.5, + 9.5, + 13.25, + 9.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13.25, + 9.5, + 13.5, + 9.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13.25, + 9.75, + 13.5, + 9.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_46", - "from": [12.25, 0, 10], - "to": [13, 0.25, 10.75], + "from": [ + 12.25, + 0, + 10 + ], + "to": [ + 13, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [13, 10, 12.25, 10.25], "texture": "#9"}, - "east": {"uv": [12.75, 10, 13, 10.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.25, 10.5, 13, 10.75], "texture": "#9"}, - "west": {"uv": [12.25, 10, 12.5, 10.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.25, 10, 13, 10.75], "texture": "#9"}, - "down": {"uv": [12.25, 10.75, 13, 10], "texture": "#9"} + "north": { + "uv": [ + 13, + 10, + 12.25, + 10.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.75, + 10, + 13, + 10.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.25, + 10.5, + 13, + 10.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.25, + 10, + 12.5, + 10.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.25, + 10, + 13, + 10.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.25, + 10.75, + 13, + 10 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_47", - "from": [14.5, 0, 10.25], - "to": [15, 0.25, 10.5], + "from": [ + 14.5, + 0, + 10.25 + ], + "to": [ + 15, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15, 10.25, 14.5, 10.5], "texture": "#9"}, - "east": {"uv": [14.75, 10.25, 15, 10.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [14.5, 10.25, 15, 10.5], "texture": "#9"}, - "west": {"uv": [14.5, 10.25, 14.75, 10.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [14.5, 10.25, 15, 10.5], "texture": "#9"}, - "down": {"uv": [14.5, 10.5, 15, 10.25], "texture": "#9"} + "north": { + "uv": [ + 15, + 10.25, + 14.5, + 10.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 14.75, + 10.25, + 15, + 10.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 14.5, + 10.25, + 15, + 10.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 14.5, + 10.25, + 14.75, + 10.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 14.5, + 10.25, + 15, + 10.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 14.5, + 10.5, + 15, + 10.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_48", - "from": [1.75, 0, 10.75], - "to": [2, 0.25, 11], + "from": [ + 1.75, + 0, + 10.75 + ], + "to": [ + 2, + 0.25, + 11 + ], "faces": { - "north": {"uv": [2, 10.75, 1.75, 11], "texture": "#9"}, - "east": {"uv": [1.75, 10.75, 2, 11], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1.75, 10.75, 2, 11], "texture": "#9"}, - "west": {"uv": [1.75, 10.75, 2, 11], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1.75, 10.75, 2, 11], "texture": "#9"}, - "down": {"uv": [1.75, 11, 2, 10.75], "texture": "#9"} + "north": { + "uv": [ + 2, + 10.75, + 1.75, + 11 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 1.75, + 10.75, + 2, + 11 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1.75, + 10.75, + 2, + 11 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1.75, + 10.75, + 2, + 11 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1.75, + 10.75, + 2, + 11 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1.75, + 11, + 2, + 10.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_49", - "from": [12.25, 0, 10.75], - "to": [12.75, 0.25, 11.25], + "from": [ + 12.25, + 0, + 10.75 + ], + "to": [ + 12.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [12.75, 10.75, 12.25, 11], "texture": "#9"}, - "east": {"uv": [12.5, 10.75, 12.75, 11.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.25, 11, 12.75, 11.25], "texture": "#9"}, - "west": {"uv": [12.25, 10.75, 12.5, 11.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.25, 10.75, 12.75, 11.25], "texture": "#9"}, - "down": {"uv": [12.25, 11.25, 12.75, 10.75], "texture": "#9"} + "north": { + "uv": [ + 12.75, + 10.75, + 12.25, + 11 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.5, + 10.75, + 12.75, + 11.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.25, + 11, + 12.75, + 11.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.25, + 10.75, + 12.5, + 11.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.25, + 10.75, + 12.75, + 11.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.25, + 11.25, + 12.75, + 10.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_50", - "from": [2.25, 0, 11], - "to": [2.75, 0.25, 11.25], + "from": [ + 2.25, + 0, + 11 + ], + "to": [ + 2.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [2.75, 11, 2.25, 11.25], "texture": "#9"}, - "east": {"uv": [2.5, 11, 2.75, 11.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [2.25, 11, 2.75, 11.25], "texture": "#9"}, - "west": {"uv": [2.25, 11, 2.5, 11.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [2.25, 11, 2.75, 11.25], "texture": "#9"}, - "down": {"uv": [2.25, 11.25, 2.75, 11], "texture": "#9"} + "north": { + "uv": [ + 2.75, + 11, + 2.25, + 11.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2.5, + 11, + 2.75, + 11.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 2.25, + 11, + 2.75, + 11.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 2.25, + 11, + 2.5, + 11.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 2.25, + 11, + 2.75, + 11.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 2.25, + 11.25, + 2.75, + 11 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_51", - "from": [2.5, 0, 11.25], - "to": [2.75, 0.25, 11.5], + "from": [ + 2.5, + 0, + 11.25 + ], + "to": [ + 2.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [2.75, 11.25, 2.5, 11.5], "texture": "#9"}, - "east": {"uv": [2.5, 11.25, 2.75, 11.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [2.5, 11.25, 2.75, 11.5], "texture": "#9"}, - "west": {"uv": [2.5, 11.25, 2.75, 11.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [2.5, 11.25, 2.75, 11.5], "texture": "#9"}, - "down": {"uv": [2.5, 11.5, 2.75, 11.25], "texture": "#9"} + "north": { + "uv": [ + 2.75, + 11.25, + 2.5, + 11.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 2.5, + 11.5, + 2.75, + 11.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_52", - "from": [12.25, 0, 11.25], - "to": [12.5, 0.25, 11.5], + "from": [ + 12.25, + 0, + 11.25 + ], + "to": [ + 12.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [12.5, 11.25, 12.25, 11.5], "texture": "#9"}, - "east": {"uv": [12.25, 11.25, 12.5, 11.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [12.25, 11.25, 12.5, 11.5], "texture": "#9"}, - "west": {"uv": [12.25, 11.25, 12.5, 11.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [12.25, 11.25, 12.5, 11.5], "texture": "#9"}, - "down": {"uv": [12.25, 11.5, 12.5, 11.25], "texture": "#9"} + "north": { + "uv": [ + 12.5, + 11.25, + 12.25, + 11.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 12.25, + 11.25, + 12.5, + 11.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 12.25, + 11.5, + 12.5, + 11.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_53", - "from": [3, 0, 11.5], - "to": [3.25, 0.25, 11.75], + "from": [ + 3, + 0, + 11.5 + ], + "to": [ + 3.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [3.25, 11.5, 3, 11.75], "texture": "#9"}, - "east": {"uv": [3, 11.5, 3.25, 11.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [3, 11.5, 3.25, 11.75], "texture": "#9"}, - "west": {"uv": [3, 11.5, 3.25, 11.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [3, 11.5, 3.25, 11.75], "texture": "#9"}, - "down": {"uv": [3, 11.75, 3.25, 11.5], "texture": "#9"} + "north": { + "uv": [ + 3.25, + 11.5, + 3, + 11.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 3, + 11.5, + 3.25, + 11.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 3, + 11.5, + 3.25, + 11.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 3, + 11.5, + 3.25, + 11.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 3, + 11.5, + 3.25, + 11.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 3, + 11.75, + 3.25, + 11.5 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_54", - "from": [9.25, 0, 11.75], - "to": [9.75, 0.25, 12], + "from": [ + 9.25, + 0, + 11.75 + ], + "to": [ + 9.75, + 0.25, + 12 + ], "faces": { - "north": {"uv": [9.75, 11.75, 9.25, 12], "texture": "#9"}, - "east": {"uv": [9.5, 11.75, 9.75, 12], "rotation": 90, "texture": "#9"}, - "south": {"uv": [9.25, 11.75, 9.75, 12], "texture": "#9"}, - "west": {"uv": [9.25, 11.75, 9.5, 12], "rotation": 270, "texture": "#9"}, - "up": {"uv": [9.25, 11.75, 9.75, 12], "texture": "#9"}, - "down": {"uv": [9.25, 12, 9.75, 11.75], "texture": "#9"} + "north": { + "uv": [ + 9.75, + 11.75, + 9.25, + 12 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 9.5, + 11.75, + 9.75, + 12 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 9.25, + 11.75, + 9.75, + 12 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 9.25, + 11.75, + 9.5, + 12 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 9.25, + 11.75, + 9.75, + 12 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 9.25, + 12, + 9.75, + 11.75 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_55", - "from": [5.5, 0, 12], - "to": [7.25, 0.25, 12.25], + "from": [ + 5.5, + 0, + 12 + ], + "to": [ + 7.25, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [7.25, 12, 5.5, 12.25], "texture": "#9"}, - "east": {"uv": [7, 12, 7.25, 12.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [5.5, 12, 7.25, 12.25], "texture": "#9"}, - "west": {"uv": [5.5, 12, 5.75, 12.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [5.5, 12, 7.25, 12.25], "texture": "#9"}, - "down": {"uv": [5.5, 12.25, 7.25, 12], "texture": "#9"} + "north": { + "uv": [ + 7.25, + 12, + 5.5, + 12.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 7, + 12, + 7.25, + 12.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 5.5, + 12, + 7.25, + 12.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 5.5, + 12, + 5.75, + 12.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 5.5, + 12, + 7.25, + 12.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 5.5, + 12.25, + 7.25, + 12 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_56", - "from": [9.75, 0, 12], - "to": [10, 0.25, 12.25], + "from": [ + 9.75, + 0, + 12 + ], + "to": [ + 10, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [10, 12, 9.75, 12.25], "texture": "#9"}, - "east": {"uv": [9.75, 12, 10, 12.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [9.75, 12, 10, 12.25], "texture": "#9"}, - "west": {"uv": [9.75, 12, 10, 12.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [9.75, 12, 10, 12.25], "texture": "#9"}, - "down": {"uv": [9.75, 12.25, 10, 12], "texture": "#9"} + "north": { + "uv": [ + 10, + 12, + 9.75, + 12.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 9.75, + 12, + 10, + 12.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 9.75, + 12, + 10, + 12.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 9.75, + 12, + 10, + 12.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 9.75, + 12, + 10, + 12.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 9.75, + 12.25, + 10, + 12 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_57", - "from": [4.5, 0, 12.25], - "to": [4.75, 0.25, 12.5], + "from": [ + 4.5, + 0, + 12.25 + ], + "to": [ + 4.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [4.75, 12.25, 4.5, 12.5], "texture": "#9"}, - "east": {"uv": [4.5, 12.25, 4.75, 12.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [4.5, 12.25, 4.75, 12.5], "texture": "#9"}, - "west": {"uv": [4.5, 12.25, 4.75, 12.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [4.5, 12.25, 4.75, 12.5], "texture": "#9"}, - "down": {"uv": [4.5, 12.5, 4.75, 12.25], "texture": "#9"} + "north": { + "uv": [ + 4.75, + 12.25, + 4.5, + 12.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 4.5, + 12.25, + 4.75, + 12.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 4.5, + 12.5, + 4.75, + 12.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_58", - "from": [5.5, 0, 12.25], - "to": [5.75, 0.25, 12.5], + "from": [ + 5.5, + 0, + 12.25 + ], + "to": [ + 5.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [5.75, 12.25, 5.5, 12.5], "texture": "#9"}, - "east": {"uv": [5.5, 12.25, 5.75, 12.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [5.5, 12.25, 5.75, 12.5], "texture": "#9"}, - "west": {"uv": [5.5, 12.25, 5.75, 12.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [5.5, 12.25, 5.75, 12.5], "texture": "#9"}, - "down": {"uv": [5.5, 12.5, 5.75, 12.25], "texture": "#9"} + "north": { + "uv": [ + 5.75, + 12.25, + 5.5, + 12.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 5.5, + 12.25, + 5.75, + 12.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 5.5, + 12.25, + 5.75, + 12.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 5.5, + 12.25, + 5.75, + 12.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 5.5, + 12.25, + 5.75, + 12.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 5.5, + 12.5, + 5.75, + 12.25 + ], + "texture": "#9" + } } }, { "name": "tyotinankou_59", - "from": [10, 0, 12.25], - "to": [10.25, 0.25, 12.5], + "from": [ + 10, + 0, + 12.25 + ], + "to": [ + 10.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [10.25, 12.25, 10, 12.5], "texture": "#9"}, - "east": {"uv": [10, 12.25, 10.25, 12.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [10, 12.25, 10.25, 12.5], "texture": "#9"}, - "west": {"uv": [10, 12.25, 10.25, 12.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [10, 12.25, 10.25, 12.5], "texture": "#9"}, - "down": {"uv": [10, 12.5, 10.25, 12.25], "texture": "#9"} + "north": { + "uv": [ + 10.25, + 12.25, + 10, + 12.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 10, + 12.25, + 10.25, + 12.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 10, + 12.5, + 10.25, + 12.25 + ], + "texture": "#9" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 12.5, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 12.5, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "tyotinankou", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/ugui.json b/pack/assets/minecraft/models/fish/ugui.json index d695dab4..6de85e9d 100644 --- a/pack/assets/minecraft/models/fish/ugui.json +++ b/pack/assets/minecraft/models/fish/ugui.json @@ -2,575 +2,3024 @@ "__name": "ウグイ", "credit": "Made with Blockbench", "textures": { - "1": "fish/ugui" + "1": "item/fish/ugui" }, "elements": [ { "name": "ugui_0", - "from": [8, 0, 4.75], - "to": [8.25, 0.25, 9.5], + "from": [ + 8, + 0, + 4.75 + ], + "to": [ + 8.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.25, 4.75, 8, 5], "texture": "#1"}, - "east": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 9.25, 8.25, 9.5], "texture": "#1"}, - "west": {"uv": [8, 4.75, 8.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 4.75, 8.25, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 8.25, 4.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 4.75, + 8, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 4.75, + 8.25, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.25, + 4.75 + ], + "texture": "#1" + } } }, { "name": "ugui_1", - "from": [7.5, 0, 5], - "to": [8, 0.25, 10.75], + "from": [ + 7.5, + 0, + 5 + ], + "to": [ + 8, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8, 5, 7.5, 5.25], "texture": "#1"}, - "east": {"uv": [7.75, 5, 8, 10.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.5, 10.5, 8, 10.75], "texture": "#1"}, - "west": {"uv": [7.5, 5, 7.75, 10.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.5, 5, 8, 10.75], "texture": "#1"}, - "down": {"uv": [7.5, 10.75, 8, 5], "texture": "#1"} + "north": { + "uv": [ + 8, + 5, + 7.5, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 5, + 8, + 10.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8, + 10.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.75, + 10.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 5, + 8, + 10.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 10.75, + 8, + 5 + ], + "texture": "#1" + } } }, { "name": "ugui_2", - "from": [7.25, 0, 5.25], - "to": [7.5, 0.25, 10.5], + "from": [ + 7.25, + 0, + 5.25 + ], + "to": [ + 7.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [7.5, 5.25, 7.25, 5.5], "texture": "#1"}, - "east": {"uv": [7.25, 5.25, 7.5, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7.25, 10.25, 7.5, 10.5], "texture": "#1"}, - "west": {"uv": [7.25, 5.25, 7.5, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7.25, 5.25, 7.5, 10.5], "texture": "#1"}, - "down": {"uv": [7.25, 10.5, 7.5, 5.25], "texture": "#1"} + "north": { + "uv": [ + 7.5, + 5.25, + 7.25, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 5.25, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 10.5, + 7.5, + 5.25 + ], + "texture": "#1" + } } }, { "name": "ugui_3", - "from": [7, 0, 5.5], - "to": [7.25, 0.25, 10.25], + "from": [ + 7, + 0, + 5.5 + ], + "to": [ + 7.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7.25, 5.5, 7, 5.75], "texture": "#1"}, - "east": {"uv": [7, 5.5, 7.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [7, 10, 7.25, 10.25], "texture": "#1"}, - "west": {"uv": [7, 5.5, 7.25, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [7, 5.5, 7.25, 10.25], "texture": "#1"}, - "down": {"uv": [7, 10.25, 7.25, 5.5], "texture": "#1"} + "north": { + "uv": [ + 7.25, + 5.5, + 7, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 5.5, + 7.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10.25, + 7.25, + 5.5 + ], + "texture": "#1" + } } }, { "name": "ugui_4", - "from": [6.75, 0, 5.75], - "to": [7, 0.25, 10], + "from": [ + 6.75, + 0, + 5.75 + ], + "to": [ + 7, + 0.25, + 10 + ], "faces": { - "north": {"uv": [7, 5.75, 6.75, 6], "texture": "#1"}, - "east": {"uv": [6.75, 5.75, 7, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.75, 9.75, 7, 10], "texture": "#1"}, - "west": {"uv": [6.75, 5.75, 7, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.75, 5.75, 7, 10], "texture": "#1"}, - "down": {"uv": [6.75, 10, 7, 5.75], "texture": "#1"} + "north": { + "uv": [ + 7, + 5.75, + 6.75, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 9.75, + 7, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.75, + 5.75, + 7, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.75, + 10, + 7, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_5", - "from": [15, 0, 5.75], - "to": [15.5, 0.25, 6.5], + "from": [ + 15, + 0, + 5.75 + ], + "to": [ + 15.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [15.5, 5.75, 15, 6], "texture": "#1"}, - "east": {"uv": [15.25, 5.75, 15.5, 6.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 6.25, 15.5, 6.5], "texture": "#1"}, - "west": {"uv": [15, 5.75, 15.25, 6.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 5.75, 15.5, 6.5], "texture": "#1"}, - "down": {"uv": [15, 6.5, 15.5, 5.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 5.75, + 15, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 5.75, + 15.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 6.25, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 5.75, + 15.25, + 6.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 5.75, + 15.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 6.5, + 15.5, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_6", - "from": [15.5, 0, 5.75], - "to": [15.75, 0.25, 6], + "from": [ + 15.5, + 0, + 5.75 + ], + "to": [ + 15.75, + 0.25, + 6 + ], "faces": { - "north": {"uv": [15.75, 5.75, 15.5, 6], "texture": "#1"}, - "east": {"uv": [15.5, 5.75, 15.75, 6], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 5.75, 15.75, 6], "texture": "#1"}, - "west": {"uv": [15.5, 5.75, 15.75, 6], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 5.75, 15.75, 6], "texture": "#1"}, - "down": {"uv": [15.5, 6, 15.75, 5.75], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 5.75, + 15.5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 5.75, + 15.75, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 6, + 15.75, + 5.75 + ], + "texture": "#1" + } } }, { "name": "ugui_7", - "from": [6.5, 0, 6], - "to": [6.75, 0.25, 9.75], + "from": [ + 6.5, + 0, + 6 + ], + "to": [ + 6.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.75, 6, 6.5, 6.25], "texture": "#1"}, - "east": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 6.75, 9.75], "texture": "#1"}, - "west": {"uv": [6.5, 6, 6.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [6.5, 6, 6.75, 9.75], "texture": "#1"}, - "down": {"uv": [6.5, 9.75, 6.75, 6], "texture": "#1"} + "north": { + "uv": [ + 6.75, + 6, + 6.5, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9.5, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 6, + 6.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 9.75, + 6.75, + 6 + ], + "texture": "#1" + } } }, { "name": "ugui_8", - "from": [14.75, 0, 6], - "to": [15, 0.25, 7.5], + "from": [ + 14.75, + 0, + 6 + ], + "to": [ + 15, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15, 6, 14.75, 6.25], "texture": "#1"}, - "east": {"uv": [14.75, 6, 15, 7.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 7.25, 15, 7.5], "texture": "#1"}, - "west": {"uv": [14.75, 6, 15, 7.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 6, 15, 7.5], "texture": "#1"}, - "down": {"uv": [14.75, 7.5, 15, 6], "texture": "#1"} + "north": { + "uv": [ + 15, + 6, + 14.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 6, + 15, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15, + 6 + ], + "texture": "#1" + } } }, { "name": "ugui_9", - "from": [5.25, 0, 6.25], - "to": [6.5, 0.25, 9.75], + "from": [ + 5.25, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [6.5, 6.25, 5.25, 6.5], "texture": "#1"}, - "east": {"uv": [6.25, 6.25, 6.5, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [5.25, 9.5, 6.5, 9.75], "texture": "#1"}, - "west": {"uv": [5.25, 6.25, 5.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [5.25, 6.25, 6.5, 9.75], "texture": "#1"}, - "down": {"uv": [5.25, 9.75, 6.5, 6.25], "texture": "#1"} + "north": { + "uv": [ + 6.5, + 6.25, + 5.25, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 9.5, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 6.25, + 5.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 5.25, + 6.25, + 6.5, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 9.75, + 6.5, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ugui_10", - "from": [14.5, 0, 6.25], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.5, + 0, + 6.25 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 6.25, 14.5, 6.5], "texture": "#1"}, - "east": {"uv": [14.5, 6.25, 14.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#1"}, - "west": {"uv": [14.5, 6.25, 14.75, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.5, 6.25, 14.75, 9.5], "texture": "#1"}, - "down": {"uv": [14.5, 9.5, 14.75, 6.25], "texture": "#1"} + "north": { + "uv": [ + 14.75, + 6.25, + 14.5, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.5, + 6.25, + 14.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 6.25 + ], + "texture": "#1" + } } }, { "name": "ugui_11", - "from": [3.75, 0, 6.5], - "to": [5.25, 0.25, 9.75], + "from": [ + 3.75, + 0, + 6.5 + ], + "to": [ + 5.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [5.25, 6.5, 3.75, 6.75], "texture": "#1"}, - "east": {"uv": [5, 6.5, 5.25, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.75, 9.5, 5.25, 9.75], "texture": "#1"}, - "west": {"uv": [3.75, 6.5, 4, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.75, 6.5, 5.25, 9.75], "texture": "#1"}, - "down": {"uv": [3.75, 9.75, 5.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 5.25, + 6.5, + 3.75, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.25, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 9.5, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 4, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 5.25, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 9.75, + 5.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_12", - "from": [8.25, 0, 6.5], - "to": [8.75, 0.25, 9.5], + "from": [ + 8.25, + 0, + 6.5 + ], + "to": [ + 8.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [8.75, 6.5, 8.25, 6.75], "texture": "#1"}, - "east": {"uv": [8.5, 6.5, 8.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#1"}, - "west": {"uv": [8.25, 6.5, 8.5, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.25, 6.5, 8.75, 9.5], "texture": "#1"}, - "down": {"uv": [8.25, 9.5, 8.75, 6.5], "texture": "#1"} + "north": { + "uv": [ + 8.75, + 6.5, + 8.25, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 9.25, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.5, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.25, + 6.5, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8.75, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_13", - "from": [14, 0, 6.5], - "to": [14.5, 0.25, 9.25], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.5, 6.5, 14, 6.75], "texture": "#1"}, - "east": {"uv": [14.25, 6.5, 14.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14, 9, 14.5, 9.25], "texture": "#1"}, - "west": {"uv": [14, 6.5, 14.25, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14, 6.5, 14.5, 9.25], "texture": "#1"}, - "down": {"uv": [14, 9.25, 14.5, 6.5], "texture": "#1"} + "north": { + "uv": [ + 14.5, + 6.5, + 14, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14, + 9, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.5, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_14", - "from": [15, 0, 6.5], - "to": [15.25, 0.25, 7], + "from": [ + 15, + 0, + 6.5 + ], + "to": [ + 15.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.25, 6.5, 15, 6.75], "texture": "#1"}, - "east": {"uv": [15, 6.5, 15.25, 7], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 6.75, 15.25, 7], "texture": "#1"}, - "west": {"uv": [15, 6.5, 15.25, 7], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 6.5, 15.25, 7], "texture": "#1"}, - "down": {"uv": [15, 7, 15.25, 6.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 6.5, + 15, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 6.75, + 15.25, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 6.5, + 15.25, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 7, + 15.25, + 6.5 + ], + "texture": "#1" + } } }, { "name": "ugui_15", - "from": [3, 0, 6.75], - "to": [3.75, 0.25, 9.5], + "from": [ + 3, + 0, + 6.75 + ], + "to": [ + 3.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3.75, 6.75, 3, 7], "texture": "#1"}, - "east": {"uv": [3.5, 6.75, 3.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3, 9.25, 3.75, 9.5], "texture": "#1"}, - "west": {"uv": [3, 6.75, 3.25, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3, 6.75, 3.75, 9.5], "texture": "#1"}, - "down": {"uv": [3, 9.5, 3.75, 6.75], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 6.75, + 3, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 3.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.25, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 6.75, + 3.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9.5, + 3.75, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_16", - "from": [8.75, 0, 6.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 8.75, + 0, + 6.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 6.75, 8.75, 7], "texture": "#1"}, - "east": {"uv": [9.25, 6.75, 9.5, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9, 9.5, 9.25], "texture": "#1"}, - "west": {"uv": [8.75, 6.75, 9, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 6.75, 9.5, 9.25], "texture": "#1"}, - "down": {"uv": [8.75, 9.25, 9.5, 6.75], "texture": "#1"} + "north": { + "uv": [ + 9.5, + 6.75, + 8.75, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.25, + 6.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 9, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 6.75, + 9.5, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 9.25, + 9.5, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_17", - "from": [13.5, 0, 6.75], - "to": [14, 0.25, 9], + "from": [ + 13.5, + 0, + 6.75 + ], + "to": [ + 14, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14, 6.75, 13.5, 7], "texture": "#1"}, - "east": {"uv": [13.75, 6.75, 14, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [13.5, 8.75, 14, 9], "texture": "#1"}, - "west": {"uv": [13.5, 6.75, 13.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [13.5, 6.75, 14, 9], "texture": "#1"}, - "down": {"uv": [13.5, 9, 14, 6.75], "texture": "#1"} + "north": { + "uv": [ + 14, + 6.75, + 13.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.75, + 6.75, + 14, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 14, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 6.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 13.5, + 6.75, + 14, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.5, + 9, + 14, + 6.75 + ], + "texture": "#1" + } } }, { "name": "ugui_18", - "from": [2.25, 0, 7], - "to": [3, 0.25, 9.25], + "from": [ + 2.25, + 0, + 7 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 7, 2.25, 7.25], "texture": "#1"}, - "east": {"uv": [2.75, 7, 3, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.25, 9, 3, 9.25], "texture": "#1"}, - "west": {"uv": [2.25, 7, 2.5, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.25, 7, 3, 9.25], "texture": "#1"}, - "down": {"uv": [2.25, 9.25, 3, 7], "texture": "#1"} + "north": { + "uv": [ + 3, + 7, + 2.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 7, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 9, + 3, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 7, + 3, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 3, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_19", - "from": [9.5, 0, 7], - "to": [10.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 10.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [10.75, 7, 9.5, 7.25], "texture": "#1"}, - "east": {"uv": [10.5, 7, 10.75, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.5, 9, 10.75, 9.25], "texture": "#1"}, - "west": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.5, 7, 10.75, 9.25], "texture": "#1"}, - "down": {"uv": [9.5, 9.25, 10.75, 7], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 7, + 9.5, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 7, + 10.75, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9, + 10.75, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 7, + 10.75, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 10.75, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_20", - "from": [12.25, 0, 7], - "to": [13.5, 0.25, 8.75], + "from": [ + 12.25, + 0, + 7 + ], + "to": [ + 13.5, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [13.5, 7, 12.25, 7.25], "texture": "#1"}, - "east": {"uv": [13.25, 7, 13.5, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [12.25, 8.5, 13.5, 8.75], "texture": "#1"}, - "west": {"uv": [12.25, 7, 12.5, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12.25, 7, 13.5, 8.75], "texture": "#1"}, - "down": {"uv": [12.25, 8.75, 13.5, 7], "texture": "#1"} + "north": { + "uv": [ + 13.5, + 7, + 12.25, + 7.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.25, + 7, + 13.5, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 12.25, + 8.5, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.25, + 7, + 12.5, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 7, + 13.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 8.75, + 13.5, + 7 + ], + "texture": "#1" + } } }, { "name": "ugui_21", - "from": [1.75, 0, 7.25], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.75, + 0, + 7.25 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 7.25, 1.75, 7.5], "texture": "#1"}, - "east": {"uv": [2, 7.25, 2.25, 9.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.75, 9, 2.25, 9.25], "texture": "#1"}, - "west": {"uv": [1.75, 7.25, 2, 9.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.75, 7.25, 2.25, 9.25], "texture": "#1"}, - "down": {"uv": [1.75, 9.25, 2.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 2.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 9, + 2.25, + 9.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 9.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.75, + 7.25, + 2.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 9.25, + 2.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "ugui_22", - "from": [10.75, 0, 7.25], - "to": [12.25, 0.25, 8.75], + "from": [ + 10.75, + 0, + 7.25 + ], + "to": [ + 12.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [12.25, 7.25, 10.75, 7.5], "texture": "#1"}, - "east": {"uv": [12, 7.25, 12.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 8.5, 12.25, 8.75], "texture": "#1"}, - "west": {"uv": [10.75, 7.25, 11, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 7.25, 12.25, 8.75], "texture": "#1"}, - "down": {"uv": [10.75, 8.75, 12.25, 7.25], "texture": "#1"} + "north": { + "uv": [ + 12.25, + 7.25, + 10.75, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 7.25, + 12.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 8.5, + 12.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 7.25, + 11, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 7.25, + 12.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 8.75, + 12.25, + 7.25 + ], + "texture": "#1" + } } }, { "name": "ugui_23", - "from": [1.5, 0, 7.5], - "to": [1.75, 0.25, 9], + "from": [ + 1.5, + 0, + 7.5 + ], + "to": [ + 1.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.75, 7.5, 1.5, 7.75], "texture": "#1"}, - "east": {"uv": [1.5, 7.5, 1.75, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.5, 8.75, 1.75, 9], "texture": "#1"}, - "west": {"uv": [1.5, 7.5, 1.75, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.5, 7.5, 1.75, 9], "texture": "#1"}, - "down": {"uv": [1.5, 9, 1.75, 7.5], "texture": "#1"} + "north": { + "uv": [ + 1.75, + 7.5, + 1.5, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.75, + 1.75, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 1.75, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.75, + 7.5 + ], + "texture": "#1" + } } }, { "name": "ugui_24", - "from": [1.25, 0, 7.75], - "to": [1.5, 0.25, 9], + "from": [ + 1.25, + 0, + 7.75 + ], + "to": [ + 1.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.5, 7.75, 1.25, 8], "texture": "#1"}, - "east": {"uv": [1.25, 7.75, 1.5, 9], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1.25, 8.75, 1.5, 9], "texture": "#1"}, - "west": {"uv": [1.25, 7.75, 1.5, 9], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1.25, 7.75, 1.5, 9], "texture": "#1"}, - "down": {"uv": [1.25, 9, 1.5, 7.75], "texture": "#1"} + "north": { + "uv": [ + 1.5, + 7.75, + 1.25, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 1.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 7.75, + 1.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.25, + 9, + 1.5, + 7.75 + ], + "texture": "#1" + } } }, { "name": "ugui_25", - "from": [1, 0, 8], - "to": [1.25, 0.25, 8.25], + "from": [ + 1, + 0, + 8 + ], + "to": [ + 1.25, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [1.25, 8, 1, 8.25], "texture": "#1"}, - "east": {"uv": [1, 8, 1.25, 8.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8, 1.25, 8.25], "texture": "#1"}, - "west": {"uv": [1, 8, 1.25, 8.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8, 1.25, 8.25], "texture": "#1"}, - "down": {"uv": [1, 8.25, 1.25, 8], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8, + 1, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8, + 1.25, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.25, + 1.25, + 8 + ], + "texture": "#1" + } } }, { "name": "ugui_26", - "from": [14.75, 0, 8], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 8 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 8, 14.75, 8.25], "texture": "#1"}, - "east": {"uv": [14.75, 8, 15, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#1"}, - "west": {"uv": [14.75, 8, 15, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [14.75, 8, 15, 9.75], "texture": "#1"}, - "down": {"uv": [14.75, 9.75, 15, 8], "texture": "#1"} + "north": { + "uv": [ + 15, + 8, + 14.75, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 14.75, + 8, + 15, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 8 + ], + "texture": "#1" + } } }, { "name": "ugui_27", - "from": [1, 0, 8.5], - "to": [1.25, 0.25, 8.75], + "from": [ + 1, + 0, + 8.5 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 8.5, 1, 8.75], "texture": "#1"}, - "east": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#1"}, - "west": {"uv": [1, 8.5, 1.25, 8.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [1, 8.5, 1.25, 8.75], "texture": "#1"}, - "down": {"uv": [1, 8.75, 1.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 1.25, + 8.5, + 1, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 8.5, + 1.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 8.75, + 1.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "ugui_28", - "from": [15, 0, 8.5], - "to": [15.25, 0.25, 10], + "from": [ + 15, + 0, + 8.5 + ], + "to": [ + 15.25, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.25, 8.5, 15, 8.75], "texture": "#1"}, - "east": {"uv": [15, 8.5, 15.25, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15, 9.75, 15.25, 10], "texture": "#1"}, - "west": {"uv": [15, 8.5, 15.25, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15, 8.5, 15.25, 10], "texture": "#1"}, - "down": {"uv": [15, 10, 15.25, 8.5], "texture": "#1"} + "north": { + "uv": [ + 15.25, + 8.5, + 15, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15, + 9.75, + 15.25, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15, + 8.5, + 15.25, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15, + 10, + 15.25, + 8.5 + ], + "texture": "#1" + } } }, { "name": "ugui_29", - "from": [10.75, 0, 8.75], - "to": [11.25, 0.25, 10.25], + "from": [ + 10.75, + 0, + 8.75 + ], + "to": [ + 11.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.25, 8.75, 10.75, 9], "texture": "#1"}, - "east": {"uv": [11, 8.75, 11.25, 10.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.75, 10, 11.25, 10.25], "texture": "#1"}, - "west": {"uv": [10.75, 8.75, 11, 10.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.75, 8.75, 11.25, 10.25], "texture": "#1"}, - "down": {"uv": [10.75, 10.25, 11.25, 8.75], "texture": "#1"} + "north": { + "uv": [ + 11.25, + 8.75, + 10.75, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 8.75, + 11.25, + 10.25 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.75, + 10, + 11.25, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.75, + 8.75, + 11, + 10.25 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 8.75, + 11.25, + 10.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 10.25, + 11.25, + 8.75 + ], + "texture": "#1" + } } }, { "name": "ugui_30", - "from": [15.25, 0, 8.75], - "to": [15.5, 0.25, 10], + "from": [ + 15.25, + 0, + 8.75 + ], + "to": [ + 15.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.5, 8.75, 15.25, 9], "texture": "#1"}, - "east": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.25, 9.75, 15.5, 10], "texture": "#1"}, - "west": {"uv": [15.25, 8.75, 15.5, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.25, 8.75, 15.5, 10], "texture": "#1"}, - "down": {"uv": [15.25, 10, 15.5, 8.75], "texture": "#1"} + "north": { + "uv": [ + 15.5, + 8.75, + 15.25, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.25, + 9.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.25, + 8.75, + 15.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.25, + 10, + 15.5, + 8.75 + ], + "texture": "#1" + } } }, { "name": "ugui_31", - "from": [2.75, 0, 9.25], - "to": [3, 0.25, 9.5], + "from": [ + 2.75, + 0, + 9.25 + ], + "to": [ + 3, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [3, 9.25, 2.75, 9.5], "texture": "#1"}, - "east": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#1"}, - "west": {"uv": [2.75, 9.25, 3, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [2.75, 9.25, 3, 9.5], "texture": "#1"}, - "down": {"uv": [2.75, 9.5, 3, 9.25], "texture": "#1"} + "north": { + "uv": [ + 3, + 9.25, + 2.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 9.25, + 3, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 3, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_32", - "from": [8.75, 0, 9.25], - "to": [9, 0.25, 9.5], + "from": [ + 8.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [9, 9.25, 8.75, 9.5], "texture": "#1"}, - "east": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#1"}, - "west": {"uv": [8.75, 9.25, 9, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8.75, 9.25, 9, 9.5], "texture": "#1"}, - "down": {"uv": [8.75, 9.5, 9, 9.25], "texture": "#1"} + "north": { + "uv": [ + 9, + 9.25, + 8.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8.75, + 9.25, + 9, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 9.5, + 9, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_33", - "from": [9.75, 0, 9.25], - "to": [10.75, 0.25, 9.5], + "from": [ + 9.75, + 0, + 9.25 + ], + "to": [ + 10.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [10.75, 9.25, 9.75, 9.5], "texture": "#1"}, - "east": {"uv": [10.5, 9.25, 10.75, 9.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [9.75, 9.25, 10.75, 9.5], "texture": "#1"}, - "west": {"uv": [9.75, 9.25, 10, 9.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [9.75, 9.25, 10.75, 9.5], "texture": "#1"}, - "down": {"uv": [9.75, 9.5, 10.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.25, + 9.75, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.25, + 10.75, + 9.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 9.75, + 9.25, + 10.75, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.75, + 9.25, + 10, + 9.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 9.25, + 10.75, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.75, + 9.5, + 10.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_34", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 10], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#1"}, - "east": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.5, 9.75, 15.75, 10], "texture": "#1"}, - "west": {"uv": [15.5, 9.25, 15.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.5, 9.25, 15.75, 10], "texture": "#1"}, - "down": {"uv": [15.5, 10, 15.75, 9.25], "texture": "#1"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.5, + 9.75, + 15.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.5, + 10, + 15.75, + 9.25 + ], + "texture": "#1" + } } }, { "name": "ugui_35", - "from": [3.5, 0, 9.5], - "to": [3.75, 0.25, 9.75], + "from": [ + 3.5, + 0, + 9.5 + ], + "to": [ + 3.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [3.75, 9.5, 3.5, 9.75], "texture": "#1"}, - "east": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#1"}, - "west": {"uv": [3.5, 9.5, 3.75, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [3.5, 9.5, 3.75, 9.75], "texture": "#1"}, - "down": {"uv": [3.5, 9.75, 3.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 3.75, + 9.5, + 3.5, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 9.5, + 3.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 9.75, + 3.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "ugui_36", - "from": [10.25, 0, 9.5], - "to": [10.75, 0.25, 9.75], + "from": [ + 10.25, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [10.75, 9.5, 10.25, 9.75], "texture": "#1"}, - "east": {"uv": [10.5, 9.5, 10.75, 9.75], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.25, 9.5, 10.75, 9.75], "texture": "#1"}, - "west": {"uv": [10.25, 9.5, 10.5, 9.75], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.25, 9.5, 10.75, 9.75], "texture": "#1"}, - "down": {"uv": [10.25, 9.75, 10.75, 9.5], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.5, + 10.25, + 9.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 9.75 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.25, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.25, + 9.5, + 10.5, + 9.75 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.25, + 9.5, + 10.75, + 9.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 9.75, + 10.75, + 9.5 + ], + "texture": "#1" + } } }, { "name": "ugui_37", - "from": [8, 0, 9.75], - "to": [8.25, 0.25, 10.5], + "from": [ + 8, + 0, + 9.75 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.25, 9.75, 8, 10], "texture": "#1"}, - "east": {"uv": [8, 9.75, 8.25, 10.5], "rotation": 90, "texture": "#1"}, - "south": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#1"}, - "west": {"uv": [8, 9.75, 8.25, 10.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [8, 9.75, 8.25, 10.5], "texture": "#1"}, - "down": {"uv": [8, 10.5, 8.25, 9.75], "texture": "#1"} + "north": { + "uv": [ + 8.25, + 9.75, + 8, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9.75, + 8.25, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.25, + 9.75 + ], + "texture": "#1" + } } }, { "name": "ugui_38", - "from": [10.5, 0, 9.75], - "to": [10.75, 0.25, 10], + "from": [ + 10.5, + 0, + 9.75 + ], + "to": [ + 10.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [10.75, 9.75, 10.5, 10], "texture": "#1"}, - "east": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#1"}, - "west": {"uv": [10.5, 9.75, 10.75, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [10.5, 9.75, 10.75, 10], "texture": "#1"}, - "down": {"uv": [10.5, 10, 10.75, 9.75], "texture": "#1"} + "north": { + "uv": [ + 10.75, + 9.75, + 10.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 9.75, + 10.75, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 10, + 10.75, + 9.75 + ], + "texture": "#1" + } } }, { "name": "ugui_39", - "from": [15.75, 0, 9.75], - "to": [16, 0.25, 10], + "from": [ + 15.75, + 0, + 9.75 + ], + "to": [ + 16, + 0.25, + 10 + ], "faces": { - "north": {"uv": [16, 9.75, 15.75, 10], "texture": "#1"}, - "east": {"uv": [15.75, 9.75, 16, 10], "rotation": 90, "texture": "#1"}, - "south": {"uv": [15.75, 9.75, 16, 10], "texture": "#1"}, - "west": {"uv": [15.75, 9.75, 16, 10], "rotation": 270, "texture": "#1"}, - "up": {"uv": [15.75, 9.75, 16, 10], "texture": "#1"}, - "down": {"uv": [15.75, 10, 16, 9.75], "texture": "#1"} + "north": { + "uv": [ + 16, + 9.75, + 15.75, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 15.75, + 9.75, + 16, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 15.75, + 10, + 16, + 9.75 + ], + "texture": "#1" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, 0, 1.75], - "translation": [-1.5, 0.25, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + -1.5, + 0.25, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 1.75], - "translation": [-0.5, 1, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + -0.5, + 1, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 1.75], - "translation": [1, 1, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + 1, + 1, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 1.75], - "translation": [1, 1, 5], - "scale": [0.54648, 0.54648, 0.54648] + "rotation": [ + 90, + 0, + 1.75 + ], + "translation": [ + 1, + 1, + 5 + ], + "scale": [ + 0.54648, + 0.54648, + 0.54648 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 0] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 9] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 9 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, 8.75, 13] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 13 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0, 8.25], - "scale": [1.06055, 1.06055, 1.06055] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0, + 8.25 + ], + "scale": [ + 1.06055, + 1.06055, + 1.06055 + ] } }, "groups": [ { "name": "ugui", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/unagi.json b/pack/assets/minecraft/models/fish/unagi.json index 228eb415..9cf90a18 100644 --- a/pack/assets/minecraft/models/fish/unagi.json +++ b/pack/assets/minecraft/models/fish/unagi.json @@ -2,669 +2,3543 @@ "__name": "ウナギ", "credit": "Made with Blockbench", "textures": { - "0": "fish/unagi", - "particle": "fish/unagi" + "0": "item/fish/unagi", + "particle": "item/fish/unagi" }, "elements": [ { "name": "unagi_0", - "from": [9.25, 0, 3.5], - "to": [13.25, 0.25, 5.75], + "from": [ + 9.25, + 0, + 3.5 + ], + "to": [ + 13.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [13.25, 3.5, 9.25, 3.75], "texture": "#0"}, - "east": {"uv": [13, 3.5, 13.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5.5, 13.25, 5.75], "texture": "#0"}, - "west": {"uv": [9.25, 3.5, 9.5, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 3.5, 13.25, 5.75], "texture": "#0"}, - "down": {"uv": [9.25, 5.75, 13.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 3.5, + 9.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 3.5, + 13.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.5, + 13.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 3.5, + 9.5, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.5, + 13.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 5.75, + 13.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "unagi_1", - "from": [8.5, 0, 3.75], - "to": [9.25, 0.25, 6], + "from": [ + 8.5, + 0, + 3.75 + ], + "to": [ + 9.25, + 0.25, + 6 + ], "faces": { - "north": {"uv": [9.25, 3.75, 8.5, 4], "texture": "#0"}, - "east": {"uv": [9, 3.75, 9.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.5, 5.75, 9.25, 6], "texture": "#0"}, - "west": {"uv": [8.5, 3.75, 8.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.5, 3.75, 9.25, 6], "texture": "#0"}, - "down": {"uv": [8.5, 6, 9.25, 3.75], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 3.75, + 8.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3.75, + 9.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3.75, + 8.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 6, + 9.25, + 3.75 + ], + "texture": "#0" + } } }, { "name": "unagi_2", - "from": [13.25, 0, 3.75], - "to": [13.5, 0.25, 7.5], + "from": [ + 13.25, + 0, + 3.75 + ], + "to": [ + 13.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [13.5, 3.75, 13.25, 4], "texture": "#0"}, - "east": {"uv": [13.25, 3.75, 13.5, 7.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 7.25, 13.5, 7.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 13.5, 7.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 3.75, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [13.25, 7.5, 13.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 3.75, + 13.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 3.75, + 13.5, + 7.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 7.25, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 3.75, + 13.5, + 7.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 3.75, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 7.5, + 13.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "unagi_3", - "from": [5, 0, 4], - "to": [7.75, 0.25, 6.25], + "from": [ + 5, + 0, + 4 + ], + "to": [ + 7.75, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [7.75, 4, 5, 4.25], "texture": "#0"}, - "east": {"uv": [7.5, 4, 7.75, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6, 7.75, 6.25], "texture": "#0"}, - "west": {"uv": [5, 4, 5.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4, 7.75, 6.25], "texture": "#0"}, - "down": {"uv": [5, 6.25, 7.75, 4], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 4, + 5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4, + 7.75, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4, + 5.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.25, + 7.75, + 4 + ], + "texture": "#0" + } } }, { "name": "unagi_4", - "from": [7.75, 0, 4], - "to": [8.5, 0.25, 6], + "from": [ + 7.75, + 0, + 4 + ], + "to": [ + 8.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [8.5, 4, 7.75, 4.25], "texture": "#0"}, - "east": {"uv": [8.25, 4, 8.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 5.75, 8.5, 6], "texture": "#0"}, - "west": {"uv": [7.75, 4, 8, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 4, 8.5, 6], "texture": "#0"}, - "down": {"uv": [7.75, 6, 8.5, 4], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 4, + 8.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 4, + 8, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4, + 8.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6, + 8.5, + 4 + ], + "texture": "#0" + } } }, { "name": "unagi_5", - "from": [13.5, 0, 4], - "to": [13.75, 0.25, 7.75], + "from": [ + 13.5, + 0, + 4 + ], + "to": [ + 13.75, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [13.75, 4, 13.5, 4.25], "texture": "#0"}, - "east": {"uv": [13.5, 4, 13.75, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 7.5, 13.75, 7.75], "texture": "#0"}, - "west": {"uv": [13.5, 4, 13.75, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 4, 13.75, 7.75], "texture": "#0"}, - "down": {"uv": [13.5, 7.75, 13.75, 4], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 4, + 13.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 4, + 13.75, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 4, + 13.75, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 4, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 7.75, + 13.75, + 4 + ], + "texture": "#0" + } } }, { "name": "unagi_6", - "from": [3, 0, 4.25], - "to": [5, 0.25, 6.5], + "from": [ + 3, + 0, + 4.25 + ], + "to": [ + 5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [5, 4.25, 3, 4.5], "texture": "#0"}, - "east": {"uv": [4.75, 4.25, 5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 6.25, 5, 6.5], "texture": "#0"}, - "west": {"uv": [3, 4.25, 3.25, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 4.25, 5, 6.5], "texture": "#0"}, - "down": {"uv": [3, 6.5, 5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 5, + 4.25, + 3, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.25, + 5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 4.25, + 3.25, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 4.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.5, + 5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "unagi_7", - "from": [13.75, 0, 4.25], - "to": [14, 0.25, 11.25], + "from": [ + 13.75, + 0, + 4.25 + ], + "to": [ + 14, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [14, 4.25, 13.75, 4.5], "texture": "#0"}, - "east": {"uv": [13.75, 4.25, 14, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 11, 14, 11.25], "texture": "#0"}, - "west": {"uv": [13.75, 4.25, 14, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 4.25, 14, 11.25], "texture": "#0"}, - "down": {"uv": [13.75, 11.25, 14, 4.25], "texture": "#0"} + "north": { + "uv": [ + 14, + 4.25, + 13.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 4.25, + 14, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 11, + 14, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 4.25, + 14, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 4.25, + 14, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 11.25, + 14, + 4.25 + ], + "texture": "#0" + } } }, { "name": "unagi_8", - "from": [1.25, 0, 4.5], - "to": [3, 0.25, 6], + "from": [ + 1.25, + 0, + 4.5 + ], + "to": [ + 3, + 0.25, + 6 + ], "faces": { - "north": {"uv": [3, 4.5, 1.25, 4.75], "texture": "#0"}, - "east": {"uv": [2.75, 4.5, 3, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 5.75, 3, 6], "texture": "#0"}, - "west": {"uv": [1.25, 4.5, 1.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 4.5, 3, 6], "texture": "#0"}, - "down": {"uv": [1.25, 6, 3, 4.5], "texture": "#0"} + "north": { + "uv": [ + 3, + 4.5, + 1.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 4.5, + 3, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 5.75, + 3, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 4.5, + 1.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 4.5, + 3, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 6, + 3, + 4.5 + ], + "texture": "#0" + } } }, { "name": "unagi_9", - "from": [14, 0, 4.5], - "to": [14.25, 0.25, 11], + "from": [ + 14, + 0, + 4.5 + ], + "to": [ + 14.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.25, 4.5, 14, 4.75], "texture": "#0"}, - "east": {"uv": [14, 4.5, 14.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 10.75, 14.25, 11], "texture": "#0"}, - "west": {"uv": [14, 4.5, 14.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 4.5, 14.25, 11], "texture": "#0"}, - "down": {"uv": [14, 11, 14.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 4.5, + 14, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 4.5, + 14.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 10.75, + 14.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 4.5, + 14.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 4.5, + 14.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 11, + 14.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "unagi_10", - "from": [0.75, 0, 4.75], - "to": [1.25, 0.25, 5.5], + "from": [ + 0.75, + 0, + 4.75 + ], + "to": [ + 1.25, + 0.25, + 5.5 + ], "faces": { - "north": {"uv": [1.25, 4.75, 0.75, 5], "texture": "#0"}, - "east": {"uv": [1, 4.75, 1.25, 5.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 5.25, 1.25, 5.5], "texture": "#0"}, - "west": {"uv": [0.75, 4.75, 1, 5.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 4.75, 1.25, 5.5], "texture": "#0"}, - "down": {"uv": [0.75, 5.5, 1.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 4.75, + 0.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 4.75, + 1.25, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 5.25, + 1.25, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 4.75, + 1, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 4.75, + 1.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 5.5, + 1.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "unagi_11", - "from": [14.25, 0, 4.75], - "to": [14.5, 0.25, 11], + "from": [ + 14.25, + 0, + 4.75 + ], + "to": [ + 14.5, + 0.25, + 11 + ], "faces": { - "north": {"uv": [14.5, 4.75, 14.25, 5], "texture": "#0"}, - "east": {"uv": [14.25, 4.75, 14.5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 10.75, 14.5, 11], "texture": "#0"}, - "west": {"uv": [14.25, 4.75, 14.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 4.75, 14.5, 11], "texture": "#0"}, - "down": {"uv": [14.25, 11, 14.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 4.75, + 14.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 4.75, + 14.5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 10.75, + 14.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 4.75, + 14.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 4.75, + 14.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 11, + 14.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "unagi_12", - "from": [0.5, 0, 5], - "to": [0.75, 0.25, 5.25], + "from": [ + 0.5, + 0, + 5 + ], + "to": [ + 0.75, + 0.25, + 5.25 + ], "faces": { - "north": {"uv": [0.75, 5, 0.5, 5.25], "texture": "#0"}, - "east": {"uv": [0.5, 5, 0.75, 5.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 5, 0.75, 5.25], "texture": "#0"}, - "west": {"uv": [0.5, 5, 0.75, 5.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 5, 0.75, 5.25], "texture": "#0"}, - "down": {"uv": [0.5, 5.25, 0.75, 5], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 5, + 0.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 5, + 0.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 5, + 0.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 5, + 0.75, + 5.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 5, + 0.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 5.25, + 0.75, + 5 + ], + "texture": "#0" + } } }, { "name": "unagi_13", - "from": [14.5, 0, 5], - "to": [14.75, 0.25, 10.75], + "from": [ + 14.5, + 0, + 5 + ], + "to": [ + 14.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [14.75, 5, 14.5, 5.25], "texture": "#0"}, - "east": {"uv": [14.5, 5, 14.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 10.5, 14.75, 10.75], "texture": "#0"}, - "west": {"uv": [14.5, 5, 14.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 5, 14.75, 10.75], "texture": "#0"}, - "down": {"uv": [14.5, 10.75, 14.75, 5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 5, + 14.5, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 5, + 14.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10.5, + 14.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 5, + 14.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 5, + 14.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 10.75, + 14.75, + 5 + ], + "texture": "#0" + } } }, { "name": "unagi_14", - "from": [14.75, 0, 5.25], - "to": [15, 0.25, 10.5], + "from": [ + 14.75, + 0, + 5.25 + ], + "to": [ + 15, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [15, 5.25, 14.75, 5.5], "texture": "#0"}, - "east": {"uv": [14.75, 5.25, 15, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.75, 10.25, 15, 10.5], "texture": "#0"}, - "west": {"uv": [14.75, 5.25, 15, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.75, 5.25, 15, 10.5], "texture": "#0"}, - "down": {"uv": [14.75, 10.5, 15, 5.25], "texture": "#0"} + "north": { + "uv": [ + 15, + 5.25, + 14.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.75, + 5.25, + 15, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.75, + 10.25, + 15, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.75, + 5.25, + 15, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.75, + 5.25, + 15, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.75, + 10.5, + 15, + 5.25 + ], + "texture": "#0" + } } }, { "name": "unagi_15", - "from": [1, 0, 5.5], - "to": [1.25, 0.25, 5.75], + "from": [ + 1, + 0, + 5.5 + ], + "to": [ + 1.25, + 0.25, + 5.75 + ], "faces": { - "north": {"uv": [1.25, 5.5, 1, 5.75], "texture": "#0"}, - "east": {"uv": [1, 5.5, 1.25, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 5.5, 1.25, 5.75], "texture": "#0"}, - "west": {"uv": [1, 5.5, 1.25, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 5.5, 1.25, 5.75], "texture": "#0"}, - "down": {"uv": [1, 5.75, 1.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 5.5, + 1, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 5.5, + 1.25, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 5.5, + 1.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 5.5, + 1.25, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 5.5, + 1.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 5.75, + 1.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "unagi_16", - "from": [15, 0, 5.5], - "to": [15.25, 0.25, 10.25], + "from": [ + 15, + 0, + 5.5 + ], + "to": [ + 15.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [15.25, 5.5, 15, 5.75], "texture": "#0"}, - "east": {"uv": [15, 5.5, 15.25, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15, 10, 15.25, 10.25], "texture": "#0"}, - "west": {"uv": [15, 5.5, 15.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15, 5.5, 15.25, 10.25], "texture": "#0"}, - "down": {"uv": [15, 10.25, 15.25, 5.5], "texture": "#0"} + "north": { + "uv": [ + 15.25, + 5.5, + 15, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 5.5, + 15.25, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 5.5, + 15.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 5.5, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 10.25, + 15.25, + 5.5 + ], + "texture": "#0" + } } }, { "name": "unagi_17", - "from": [9.25, 0, 5.75], - "to": [9.5, 0.25, 6], + "from": [ + 9.25, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 6 + ], "faces": { - "north": {"uv": [9.5, 5.75, 9.25, 6], "texture": "#0"}, - "east": {"uv": [9.25, 5.75, 9.5, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 5.75, 9.5, 6], "texture": "#0"}, - "west": {"uv": [9.25, 5.75, 9.5, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 5.75, 9.5, 6], "texture": "#0"}, - "down": {"uv": [9.25, 6, 9.5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 5.75, + 9.25, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 5.75, + 9.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 6, + 9.5, + 5.75 + ], + "texture": "#0" + } } }, { "name": "unagi_18", - "from": [11.5, 0, 5.75], - "to": [13.25, 0.25, 6], + "from": [ + 11.5, + 0, + 5.75 + ], + "to": [ + 13.25, + 0.25, + 6 + ], "faces": { - "north": {"uv": [13.25, 5.75, 11.5, 6], "texture": "#0"}, - "east": {"uv": [13, 5.75, 13.25, 6], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 5.75, 13.25, 6], "texture": "#0"}, - "west": {"uv": [11.5, 5.75, 11.75, 6], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 5.75, 13.25, 6], "texture": "#0"}, - "down": {"uv": [11.5, 6, 13.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 5.75, + 11.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 5.75, + 13.25, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 5.75, + 13.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 5.75, + 11.75, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 5.75, + 13.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 6, + 13.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "unagi_19", - "from": [1.5, 0, 6], - "to": [3, 0.25, 6.25], + "from": [ + 1.5, + 0, + 6 + ], + "to": [ + 3, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [3, 6, 1.5, 6.25], "texture": "#0"}, - "east": {"uv": [2.75, 6, 3, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6, 3, 6.25], "texture": "#0"}, - "west": {"uv": [1.5, 6, 1.75, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6, 3, 6.25], "texture": "#0"}, - "down": {"uv": [1.5, 6.25, 3, 6], "texture": "#0"} + "north": { + "uv": [ + 3, + 6, + 1.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6, + 1.75, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6, + 3, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.25, + 3, + 6 + ], + "texture": "#0" + } } }, { "name": "unagi_20", - "from": [12, 0, 6], - "to": [13.25, 0.25, 6.25], + "from": [ + 12, + 0, + 6 + ], + "to": [ + 13.25, + 0.25, + 6.25 + ], "faces": { - "north": {"uv": [13.25, 6, 12, 6.25], "texture": "#0"}, - "east": {"uv": [13, 6, 13.25, 6.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 6, 13.25, 6.25], "texture": "#0"}, - "west": {"uv": [12, 6, 12.25, 6.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 6, 13.25, 6.25], "texture": "#0"}, - "down": {"uv": [12, 6.25, 13.25, 6], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6, + 12, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 13.25, + 6.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 6, + 13.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6, + 12.25, + 6.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 6, + 13.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 6.25, + 13.25, + 6 + ], + "texture": "#0" + } } }, { "name": "unagi_21", - "from": [2.25, 0, 6.25], - "to": [3, 0.25, 6.5], + "from": [ + 2.25, + 0, + 6.25 + ], + "to": [ + 3, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [3, 6.25, 2.25, 6.5], "texture": "#0"}, - "east": {"uv": [2.75, 6.25, 3, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 6.25, 3, 6.5], "texture": "#0"}, - "west": {"uv": [2.25, 6.25, 2.5, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 6.25, 3, 6.5], "texture": "#0"}, - "down": {"uv": [2.25, 6.5, 3, 6.25], "texture": "#0"} + "north": { + "uv": [ + 3, + 6.25, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6.25, + 3, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 6.25, + 2.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 6.25, + 3, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6.5, + 3, + 6.25 + ], + "texture": "#0" + } } }, { "name": "unagi_22", - "from": [5, 0, 6.25], - "to": [5.5, 0.25, 6.75], + "from": [ + 5, + 0, + 6.25 + ], + "to": [ + 5.5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [5.5, 6.25, 5, 6.5], "texture": "#0"}, - "east": {"uv": [5.25, 6.25, 5.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6.5, 5.5, 6.75], "texture": "#0"}, - "west": {"uv": [5, 6.25, 5.25, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 6.25, 5.5, 6.75], "texture": "#0"}, - "down": {"uv": [5, 6.75, 5.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 6.25, + 5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 6.25, + 5.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.25, + 5.25, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 6.25, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.75, + 5.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "unagi_23", - "from": [5.5, 0, 6.25], - "to": [6.5, 0.25, 6.5], + "from": [ + 5.5, + 0, + 6.25 + ], + "to": [ + 6.5, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [6.5, 6.25, 5.5, 6.5], "texture": "#0"}, - "east": {"uv": [6.25, 6.25, 6.5, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 6.25, 6.5, 6.5], "texture": "#0"}, - "west": {"uv": [5.5, 6.25, 5.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 6.25, 6.5, 6.5], "texture": "#0"}, - "down": {"uv": [5.5, 6.5, 6.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 6.5, + 6.25, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 6.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6.25, + 5.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 6.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 6.5, + 6.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "unagi_24", - "from": [12.5, 0, 6.25], - "to": [13.25, 0.25, 6.5], + "from": [ + 12.5, + 0, + 6.25 + ], + "to": [ + 13.25, + 0.25, + 6.5 + ], "faces": { - "north": {"uv": [13.25, 6.25, 12.5, 6.5], "texture": "#0"}, - "east": {"uv": [13, 6.25, 13.25, 6.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 6.25, 13.25, 6.5], "texture": "#0"}, - "west": {"uv": [12.5, 6.25, 12.75, 6.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 6.25, 13.25, 6.5], "texture": "#0"}, - "down": {"uv": [12.5, 6.5, 13.25, 6.25], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.25, + 12.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.25, + 13.25, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 6.25, + 13.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 6.25, + 12.75, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6.25, + 13.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 6.5, + 13.25, + 6.25 + ], + "texture": "#0" + } } }, { "name": "unagi_25", - "from": [15.25, 0, 6.25], - "to": [15.5, 0.25, 9.75], + "from": [ + 15.25, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 6.25, 15.25, 6.5], "texture": "#0"}, - "east": {"uv": [15.25, 6.25, 15.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#0"}, - "west": {"uv": [15.25, 6.25, 15.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.25, 6.25, 15.5, 9.75], "texture": "#0"}, - "down": {"uv": [15.25, 9.75, 15.5, 6.25], "texture": "#0"} + "north": { + "uv": [ + 15.5, + 6.25, + 15.25, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.25, + 6.25, + 15.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.25, + 6.25, + 15.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 9.75, + 15.5, + 6.25 + ], + "texture": "#0" + } } }, { "name": "unagi_26", - "from": [3.25, 0, 6.5], - "to": [5, 0.25, 6.75], + "from": [ + 3.25, + 0, + 6.5 + ], + "to": [ + 5, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [5, 6.5, 3.25, 6.75], "texture": "#0"}, - "east": {"uv": [4.75, 6.5, 5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 6.5, 5, 6.75], "texture": "#0"}, - "west": {"uv": [3.25, 6.5, 3.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 6.5, 5, 6.75], "texture": "#0"}, - "down": {"uv": [3.25, 6.75, 5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 6.5, + 3.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 6.5, + 5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6.75, + 5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "unagi_27", - "from": [12.75, 0, 6.5], - "to": [13.25, 0.25, 6.75], + "from": [ + 12.75, + 0, + 6.5 + ], + "to": [ + 13.25, + 0.25, + 6.75 + ], "faces": { - "north": {"uv": [13.25, 6.5, 12.75, 6.75], "texture": "#0"}, - "east": {"uv": [13, 6.5, 13.25, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 6.5, 13.25, 6.75], "texture": "#0"}, - "west": {"uv": [12.75, 6.5, 13, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 6.5, 13.25, 6.75], "texture": "#0"}, - "down": {"uv": [12.75, 6.75, 13.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.5, + 12.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.5, + 13.25, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 6.5, + 13.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 6.5, + 13, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 6.5, + 13.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 6.75, + 13.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "unagi_28", - "from": [13, 0, 6.75], - "to": [13.25, 0.25, 7], + "from": [ + 13, + 0, + 6.75 + ], + "to": [ + 13.25, + 0.25, + 7 + ], "faces": { - "north": {"uv": [13.25, 6.75, 13, 7], "texture": "#0"}, - "east": {"uv": [13, 6.75, 13.25, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 6.75, 13.25, 7], "texture": "#0"}, - "west": {"uv": [13, 6.75, 13.25, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6.75, 13.25, 7], "texture": "#0"}, - "down": {"uv": [13, 7, 13.25, 6.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 6.75, + 13, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 7, + 13.25, + 6.75 + ], + "texture": "#0" + } } }, { "name": "unagi_29", - "from": [15.5, 0, 7], - "to": [15.75, 0.25, 9], + "from": [ + 15.5, + 0, + 7 + ], + "to": [ + 15.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [15.75, 7, 15.5, 7.25], "texture": "#0"}, - "east": {"uv": [15.5, 7, 15.75, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.5, 8.75, 15.75, 9], "texture": "#0"}, - "west": {"uv": [15.5, 7, 15.75, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.5, 7, 15.75, 9], "texture": "#0"}, - "down": {"uv": [15.5, 9, 15.75, 7], "texture": "#0"} + "north": { + "uv": [ + 15.75, + 7, + 15.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 7, + 15.75, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 8.75, + 15.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 7, + 15.75, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.5, + 7, + 15.75, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.5, + 9, + 15.75, + 7 + ], + "texture": "#0" + } } }, { "name": "unagi_30", - "from": [2.5, 0, 8.75], - "to": [6, 0.25, 11], + "from": [ + 2.5, + 0, + 8.75 + ], + "to": [ + 6, + 0.25, + 11 + ], "faces": { - "north": {"uv": [6, 8.75, 2.5, 9], "texture": "#0"}, - "east": {"uv": [5.75, 8.75, 6, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 10.75, 6, 11], "texture": "#0"}, - "west": {"uv": [2.5, 8.75, 2.75, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 8.75, 6, 11], "texture": "#0"}, - "down": {"uv": [2.5, 11, 6, 8.75], "texture": "#0"} + "north": { + "uv": [ + 6, + 8.75, + 2.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8.75, + 6, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.75, + 6, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.75, + 2.75, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.75, + 6, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 11, + 6, + 8.75 + ], + "texture": "#0" + } } }, { "name": "unagi_31", - "from": [1.75, 0, 9], - "to": [2.5, 0.25, 11.5], + "from": [ + 1.75, + 0, + 9 + ], + "to": [ + 2.5, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [2.5, 9, 1.75, 9.25], "texture": "#0"}, - "east": {"uv": [2.25, 9, 2.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 11.25, 2.5, 11.5], "texture": "#0"}, - "west": {"uv": [1.75, 9, 2, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 9, 2.5, 11.5], "texture": "#0"}, - "down": {"uv": [1.75, 11.5, 2.5, 9], "texture": "#0"} + "north": { + "uv": [ + 2.5, + 9, + 1.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 9, + 2.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 11.25, + 2.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 9, + 2, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9, + 2.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 11.5, + 2.5, + 9 + ], + "texture": "#0" + } } }, { "name": "unagi_32", - "from": [6, 0, 9], - "to": [7.75, 0.25, 11.25], + "from": [ + 6, + 0, + 9 + ], + "to": [ + 7.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [7.75, 9, 6, 9.25], "texture": "#0"}, - "east": {"uv": [7.5, 9, 7.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11, 7.75, 11.25], "texture": "#0"}, - "west": {"uv": [6, 9, 6.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 9, 7.75, 11.25], "texture": "#0"}, - "down": {"uv": [6, 11.25, 7.75, 9], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 9, + 6, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9, + 7.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11, + 7.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9, + 6.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9, + 7.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11.25, + 7.75, + 9 + ], + "texture": "#0" + } } }, { "name": "unagi_33", - "from": [13.5, 0, 9], - "to": [13.75, 0.25, 11.25], + "from": [ + 13.5, + 0, + 9 + ], + "to": [ + 13.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.75, 9, 13.5, 9.25], "texture": "#0"}, - "east": {"uv": [13.5, 9, 13.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 11, 13.75, 11.25], "texture": "#0"}, - "west": {"uv": [13.5, 9, 13.75, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 9, 13.75, 11.25], "texture": "#0"}, - "down": {"uv": [13.5, 11.25, 13.75, 9], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 9, + 13.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 9, + 13.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 11, + 13.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 9, + 13.75, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 9, + 13.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 11.25, + 13.75, + 9 + ], + "texture": "#0" + } } }, { "name": "unagi_34", - "from": [1.25, 0, 9.25], - "to": [1.75, 0.25, 12.5], + "from": [ + 1.25, + 0, + 9.25 + ], + "to": [ + 1.75, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [1.75, 9.25, 1.25, 9.5], "texture": "#0"}, - "east": {"uv": [1.5, 9.25, 1.75, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 12.25, 1.75, 12.5], "texture": "#0"}, - "west": {"uv": [1.25, 9.25, 1.5, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9.25, 1.75, 12.5], "texture": "#0"}, - "down": {"uv": [1.25, 12.5, 1.75, 9.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 9.25, + 1.25, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.25, + 1.75, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 12.25, + 1.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9.25, + 1.5, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1.75, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 12.5, + 1.75, + 9.25 + ], + "texture": "#0" + } } }, { "name": "unagi_35", - "from": [7.75, 0, 9.25], - "to": [9, 0.25, 11.25], + "from": [ + 7.75, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [9, 9.25, 7.75, 9.5], "texture": "#0"}, - "east": {"uv": [8.75, 9.25, 9, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 11, 9, 11.25], "texture": "#0"}, - "west": {"uv": [7.75, 9.25, 8, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 9.25, 9, 11.25], "texture": "#0"}, - "down": {"uv": [7.75, 11.25, 9, 9.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 9.25, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 11, + 9, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.25, + 8, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.25, + 9, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 11.25, + 9, + 9.25 + ], + "texture": "#0" + } } }, { "name": "unagi_36", - "from": [1, 0, 9.5], - "to": [1.25, 0.25, 12.5], + "from": [ + 1, + 0, + 9.5 + ], + "to": [ + 1.25, + 0.25, + 12.5 + ], "faces": { - "north": {"uv": [1.25, 9.5, 1, 9.75], "texture": "#0"}, - "east": {"uv": [1, 9.5, 1.25, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1, 12.25, 1.25, 12.5], "texture": "#0"}, - "west": {"uv": [1, 9.5, 1.25, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1, 9.5, 1.25, 12.5], "texture": "#0"}, - "down": {"uv": [1, 12.5, 1.25, 9.5], "texture": "#0"} + "north": { + "uv": [ + 1.25, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9.5, + 1.25, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 12.25, + 1.25, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9.5, + 1.25, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9.5, + 1.25, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 12.5, + 1.25, + 9.5 + ], + "texture": "#0" + } } }, { "name": "unagi_37", - "from": [9, 0, 9.5], - "to": [10.75, 0.25, 11.5], + "from": [ + 9, + 0, + 9.5 + ], + "to": [ + 10.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [10.75, 9.5, 9, 9.75], "texture": "#0"}, - "east": {"uv": [10.5, 9.5, 10.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 11.25, 10.75, 11.5], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9.5, 10.75, 11.5], "texture": "#0"}, - "down": {"uv": [9, 11.5, 10.75, 9.5], "texture": "#0"} + "north": { + "uv": [ + 10.75, + 9.5, + 9, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9.5, + 10.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 11.25, + 10.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9.5, + 10.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11.5, + 10.75, + 9.5 + ], + "texture": "#0" + } } }, { "name": "unagi_38", - "from": [13.25, 0, 9.5], - "to": [13.5, 0.25, 11.25], + "from": [ + 13.25, + 0, + 9.5 + ], + "to": [ + 13.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.5, 9.5, 13.25, 9.75], "texture": "#0"}, - "east": {"uv": [13.25, 9.5, 13.5, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 11, 13.5, 11.25], "texture": "#0"}, - "west": {"uv": [13.25, 9.5, 13.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 9.5, 13.5, 11.25], "texture": "#0"}, - "down": {"uv": [13.25, 11.25, 13.5, 9.5], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 9.5, + 13.25, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 9.5, + 13.5, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 11, + 13.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 9.5, + 13.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 9.5, + 13.5, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 11.25, + 13.5, + 9.5 + ], + "texture": "#0" + } } }, { "name": "unagi_40", - "from": [0.75, 0, 9.75], - "to": [1, 0.25, 12], + "from": [ + 0.75, + 0, + 9.75 + ], + "to": [ + 1, + 0.25, + 12 + ], "faces": { - "north": {"uv": [1, 9.75, 0.75, 10], "texture": "#0"}, - "east": {"uv": [0.75, 9.75, 1, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.75, 11.75, 1, 12], "texture": "#0"}, - "west": {"uv": [0.75, 9.75, 1, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.75, 9.75, 1, 12], "texture": "#0"}, - "down": {"uv": [0.75, 12, 1, 9.75], "texture": "#0"} + "north": { + "uv": [ + 1, + 9.75, + 0.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 9.75, + 1, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 11.75, + 1, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.75, + 9.75, + 1, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 9.75, + 1, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 12, + 1, + 9.75 + ], + "texture": "#0" + } } }, { "name": "unagi_41", - "from": [10.75, 0, 9.75], - "to": [13, 0.25, 11.5], + "from": [ + 10.75, + 0, + 9.75 + ], + "to": [ + 13, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [13, 9.75, 10.75, 10], "texture": "#0"}, - "east": {"uv": [12.75, 9.75, 13, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.75, 11.25, 13, 11.5], "texture": "#0"}, - "west": {"uv": [10.75, 9.75, 11, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.75, 9.75, 13, 11.5], "texture": "#0"}, - "down": {"uv": [10.75, 11.5, 13, 9.75], "texture": "#0"} + "north": { + "uv": [ + 13, + 9.75, + 10.75, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 9.75, + 13, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 11.25, + 13, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.75, + 9.75, + 11, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 9.75, + 13, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 11.5, + 13, + 9.75 + ], + "texture": "#0" + } } }, { "name": "unagi_42", - "from": [13, 0, 9.75], - "to": [13.25, 0.25, 11.25], + "from": [ + 13, + 0, + 9.75 + ], + "to": [ + 13.25, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [13.25, 9.75, 13, 10], "texture": "#0"}, - "east": {"uv": [13, 9.75, 13.25, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 11, 13.25, 11.25], "texture": "#0"}, - "west": {"uv": [13, 9.75, 13.25, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 9.75, 13.25, 11.25], "texture": "#0"}, - "down": {"uv": [13, 11.25, 13.25, 9.75], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 9.75, + 13, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 9.75, + 13.25, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 11, + 13.25, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 9.75, + 13.25, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 9.75, + 13.25, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 11.25, + 13.25, + 9.75 + ], + "texture": "#0" + } } }, { "name": "unagi_43", - "from": [0.5, 0, 10.5], - "to": [0.75, 0.25, 11.5], + "from": [ + 0.5, + 0, + 10.5 + ], + "to": [ + 0.75, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [0.75, 10.5, 0.5, 10.75], "texture": "#0"}, - "east": {"uv": [0.5, 10.5, 0.75, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.5, 11.25, 0.75, 11.5], "texture": "#0"}, - "west": {"uv": [0.5, 10.5, 0.75, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.5, 10.5, 0.75, 11.5], "texture": "#0"}, - "down": {"uv": [0.5, 11.5, 0.75, 10.5], "texture": "#0"} + "north": { + "uv": [ + 0.75, + 10.5, + 0.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10.5, + 0.75, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 11.25, + 0.75, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 10.5, + 0.75, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10.5, + 0.75, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 11.5, + 0.75, + 10.5 + ], + "texture": "#0" + } } }, { "name": "unagi_44", - "from": [8.75, 0, 11.25], - "to": [9, 0.25, 11.5], + "from": [ + 8.75, + 0, + 11.25 + ], + "to": [ + 9, + 0.25, + 11.5 + ], "faces": { - "north": {"uv": [9, 11.25, 8.75, 11.5], "texture": "#0"}, - "east": {"uv": [8.75, 11.25, 9, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.75, 11.25, 9, 11.5], "texture": "#0"}, - "west": {"uv": [8.75, 11.25, 9, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.75, 11.25, 9, 11.5], "texture": "#0"}, - "down": {"uv": [8.75, 11.5, 9, 11.25], "texture": "#0"} + "north": { + "uv": [ + 9, + 11.25, + 8.75, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 11.25, + 9, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 11.5, + 9, + 11.25 + ], + "texture": "#0" + } } }, { "name": "unagi_45", - "from": [1.75, 0, 11.5], - "to": [2.25, 0.25, 11.75], + "from": [ + 1.75, + 0, + 11.5 + ], + "to": [ + 2.25, + 0.25, + 11.75 + ], "faces": { - "north": {"uv": [2.25, 11.5, 1.75, 11.75], "texture": "#0"}, - "east": {"uv": [2, 11.5, 2.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 11.5, 2.25, 11.75], "texture": "#0"}, - "west": {"uv": [1.75, 11.5, 2, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 11.5, 2.25, 11.75], "texture": "#0"}, - "down": {"uv": [1.75, 11.75, 2.25, 11.5], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 11.5, + 1.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 11.5, + 2.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 11.5, + 2.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 11.5, + 2, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 11.5, + 2.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 11.75, + 2.25, + 11.5 + ], + "texture": "#0" + } } }, { "name": "unagi_46", - "from": [1.75, 0, 11.75], - "to": [2, 0.25, 12.25], + "from": [ + 1.75, + 0, + 11.75 + ], + "to": [ + 2, + 0.25, + 12.25 + ], "faces": { - "north": {"uv": [2, 11.75, 1.75, 12], "texture": "#0"}, - "east": {"uv": [1.75, 11.75, 2, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 12, 2, 12.25], "texture": "#0"}, - "west": {"uv": [1.75, 11.75, 2, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 11.75, 2, 12.25], "texture": "#0"}, - "down": {"uv": [1.75, 12.25, 2, 11.75], "texture": "#0"} + "north": { + "uv": [ + 2, + 11.75, + 1.75, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 11.75, + 2, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 12, + 2, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 11.75, + 2, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 11.75, + 2, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 12.25, + 2, + 11.75 + ], + "texture": "#0" + } } }, { "name": "unagi_48", - "from": [1.25, 0, 12.5], - "to": [1.5, 0.25, 12.75], + "from": [ + 1.25, + 0, + 12.5 + ], + "to": [ + 1.5, + 0.25, + 12.75 + ], "faces": { - "north": {"uv": [1.5, 12.5, 1.25, 12.75], "texture": "#0"}, - "east": {"uv": [1.25, 12.5, 1.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 12.5, 1.5, 12.75], "texture": "#0"}, - "west": {"uv": [1.25, 12.5, 1.5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 12.5, 1.5, 12.75], "texture": "#0"}, - "down": {"uv": [1.25, 12.75, 1.5, 12.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 12.5, + 1.25, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 12.5, + 1.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 12.5, + 1.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 12.5, + 1.5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 12.5, + 1.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 12.75, + 1.5, + 12.5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.75, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.75, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 0.25, 3.75], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0.25, + 3.75 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 10], - "translation": [1.5, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 1.5, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 10], - "translation": [0.75, 1.5, 4], - "scale": [0.45, 0.45, 0.45] + "rotation": [ + 90, + 0, + 10 + ], + "translation": [ + 0.75, + 1.5, + 4 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] }, "ground": { - "rotation": [90, 0, 0], - "translation": [0, 3.75, 7], - "scale": [0.82, 0.82, 0.82] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.75, + 7 + ], + "scale": [ + 0.82, + 0.82, + 0.82 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [-90, -180, 0], - "translation": [0.5, 8.25, -2.5], - "scale": [1.08367, 1.08367, 1.08367] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0.5, + 8.25, + -2.5 + ], + "scale": [ + 1.08367, + 1.08367, + 1.08367 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "unagi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/utubo.json b/pack/assets/minecraft/models/fish/utubo.json index 3f42a2cd..76e35d8e 100644 --- a/pack/assets/minecraft/models/fish/utubo.json +++ b/pack/assets/minecraft/models/fish/utubo.json @@ -2,267 +2,1312 @@ "__name": "ウツボ", "credit": "Made with Blockbench", "textures": { - "9": "fish/utubo", - "particle": "fish/isidai" + "9": "item/fish/utubo", + "particle": "item/fish/isidai" }, "elements": [ { "name": "utubo_0", - "from": [3, 0, 6.5], - "to": [7.25, 0.25, 9.25], + "from": [ + 3, + 0, + 6.5 + ], + "to": [ + 7.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [7.25, 6.5, 3, 6.75], "texture": "#9"}, - "east": {"uv": [7, 6.5, 7.25, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [3, 9, 7.25, 9.25], "texture": "#9"}, - "west": {"uv": [3, 6.5, 3.25, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [3, 6.5, 7.25, 9.25], "texture": "#9"}, - "down": {"uv": [3, 9.25, 7.25, 6.5], "texture": "#9"} + "north": { + "uv": [ + 7.25, + 6.5, + 3, + 6.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 7, + 6.5, + 7.25, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 3, + 9, + 7.25, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.25, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 3, + 6.5, + 7.25, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 3, + 9.25, + 7.25, + 6.5 + ], + "texture": "#9" + } } }, { "name": "utubo_1", - "from": [2.25, 0, 6.75], - "to": [3, 0.25, 9.25], + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 3, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [3, 6.75, 2.25, 7], "texture": "#9"}, - "east": {"uv": [2.75, 6.75, 3, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [2.25, 9, 3, 9.25], "texture": "#9"}, - "west": {"uv": [2.25, 6.75, 2.5, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [2.25, 6.75, 3, 9.25], "texture": "#9"}, - "down": {"uv": [2.25, 9.25, 3, 6.75], "texture": "#9"} + "north": { + "uv": [ + 3, + 6.75, + 2.25, + 7 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2.75, + 6.75, + 3, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 2.25, + 9, + 3, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 3, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 2.25, + 9.25, + 3, + 6.75 + ], + "texture": "#9" + } } }, { "name": "utubo_2", - "from": [7.25, 0, 6.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 7.25, + 0, + 6.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 6.75, 7.25, 7], "texture": "#9"}, - "east": {"uv": [9.25, 6.75, 9.5, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [7.25, 9, 9.5, 9.25], "texture": "#9"}, - "west": {"uv": [7.25, 6.75, 7.5, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [7.25, 6.75, 9.5, 9.25], "texture": "#9"}, - "down": {"uv": [7.25, 9.25, 9.5, 6.75], "texture": "#9"} + "north": { + "uv": [ + 9.5, + 6.75, + 7.25, + 7 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 9.25, + 6.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 7.25, + 9, + 9.5, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 7.25, + 6.75, + 7.5, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 7.25, + 6.75, + 9.5, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 7.25, + 9.25, + 9.5, + 6.75 + ], + "texture": "#9" + } } }, { "name": "utubo_3", - "from": [1.25, 0, 7], - "to": [2.25, 0.25, 9], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [2.25, 7, 1.25, 7.25], "texture": "#9"}, - "east": {"uv": [2, 7, 2.25, 9], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1.25, 8.75, 2.25, 9], "texture": "#9"}, - "west": {"uv": [1.25, 7, 1.5, 9], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1.25, 7, 2.25, 9], "texture": "#9"}, - "down": {"uv": [1.25, 9, 2.25, 7], "texture": "#9"} + "north": { + "uv": [ + 2.25, + 7, + 1.25, + 7.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 9 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1.25, + 8.75, + 2.25, + 9 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 9 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1.25, + 7, + 2.25, + 9 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1.25, + 9, + 2.25, + 7 + ], + "texture": "#9" + } } }, { "name": "utubo_4", - "from": [9.5, 0, 7], - "to": [11.5, 0.25, 9.25], + "from": [ + 9.5, + 0, + 7 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 7, 9.5, 7.25], "texture": "#9"}, - "east": {"uv": [11.25, 7, 11.5, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [9.5, 9, 11.5, 9.25], "texture": "#9"}, - "west": {"uv": [9.5, 7, 9.75, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [9.5, 7, 11.5, 9.25], "texture": "#9"}, - "down": {"uv": [9.5, 9.25, 11.5, 7], "texture": "#9"} + "north": { + "uv": [ + 11.5, + 7, + 9.5, + 7.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.25, + 7, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 9.5, + 9, + 11.5, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 9.5, + 7, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 9.5, + 7, + 11.5, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 11.5, + 7 + ], + "texture": "#9" + } } }, { "name": "utubo_5", - "from": [0.75, 0, 7.25], - "to": [1.25, 0.25, 8.75], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 7.25, 0.75, 7.5], "texture": "#9"}, - "east": {"uv": [1, 7.25, 1.25, 8.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0.75, 8.5, 1.25, 8.75], "texture": "#9"}, - "west": {"uv": [0.75, 7.25, 1, 8.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0.75, 7.25, 1.25, 8.75], "texture": "#9"}, - "down": {"uv": [0.75, 8.75, 1.25, 7.25], "texture": "#9"} + "north": { + "uv": [ + 1.25, + 7.25, + 0.75, + 7.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1.25, + 8.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1.25, + 8.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1.25, + 7.25 + ], + "texture": "#9" + } } }, { "name": "utubo_6", - "from": [11.5, 0, 7.25], - "to": [13.5, 0.25, 9], + "from": [ + 11.5, + 0, + 7.25 + ], + "to": [ + 13.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.5, 7.25, 11.5, 7.5], "texture": "#9"}, - "east": {"uv": [13.25, 7.25, 13.5, 9], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.5, 8.75, 13.5, 9], "texture": "#9"}, - "west": {"uv": [11.5, 7.25, 11.75, 9], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.5, 7.25, 13.5, 9], "texture": "#9"}, - "down": {"uv": [11.5, 9, 13.5, 7.25], "texture": "#9"} + "north": { + "uv": [ + 13.5, + 7.25, + 11.5, + 7.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 13.25, + 7.25, + 13.5, + 9 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.5, + 8.75, + 13.5, + 9 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.5, + 7.25, + 11.75, + 9 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.5, + 7.25, + 13.5, + 9 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.5, + 9, + 13.5, + 7.25 + ], + "texture": "#9" + } } }, { "name": "utubo_7", - "from": [0.25, 0, 7.5], - "to": [0.75, 0.25, 8.75], + "from": [ + 0.25, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.25, 7.75], "texture": "#9"}, - "east": {"uv": [0.5, 7.5, 0.75, 8.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0.25, 8.5, 0.75, 8.75], "texture": "#9"}, - "west": {"uv": [0.25, 7.5, 0.5, 8.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0.25, 7.5, 0.75, 8.75], "texture": "#9"}, - "down": {"uv": [0.25, 8.75, 0.75, 7.5], "texture": "#9"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.25, + 7.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0.25, + 8.5, + 0.75, + 8.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0.25, + 7.5, + 0.5, + 8.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0.25, + 7.5, + 0.75, + 8.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0.25, + 8.75, + 0.75, + 7.5 + ], + "texture": "#9" + } } }, { "name": "utubo_8", - "from": [13.5, 0, 7.5], - "to": [15, 0.25, 8.75], + "from": [ + 13.5, + 0, + 7.5 + ], + "to": [ + 15, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15, 7.5, 13.5, 7.75], "texture": "#9"}, - "east": {"uv": [14.75, 7.5, 15, 8.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13.5, 8.5, 15, 8.75], "texture": "#9"}, - "west": {"uv": [13.5, 7.5, 13.75, 8.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13.5, 7.5, 15, 8.75], "texture": "#9"}, - "down": {"uv": [13.5, 8.75, 15, 7.5], "texture": "#9"} + "north": { + "uv": [ + 15, + 7.5, + 13.5, + 7.75 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 14.75, + 7.5, + 15, + 8.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 15, + 8.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.75, + 8.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13.5, + 7.5, + 15, + 8.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13.5, + 8.75, + 15, + 7.5 + ], + "texture": "#9" + } } }, { "name": "utubo_9", - "from": [0, 0, 7.75], - "to": [0.25, 0.25, 8], + "from": [ + 0, + 0, + 7.75 + ], + "to": [ + 0.25, + 0.25, + 8 + ], "faces": { - "north": {"uv": [0.25, 7.75, 0, 8], "texture": "#9"}, - "east": {"uv": [0, 7.75, 0.25, 8], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0, 7.75, 0.25, 8], "texture": "#9"}, - "west": {"uv": [0, 7.75, 0.25, 8], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0, 7.75, 0.25, 8], "texture": "#9"}, - "down": {"uv": [0, 8, 0.25, 7.75], "texture": "#9"} + "north": { + "uv": [ + 0.25, + 7.75, + 0, + 8 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 8, + 0.25, + 7.75 + ], + "texture": "#9" + } } }, { "name": "utubo_10", - "from": [15, 0, 7.75], - "to": [15.75, 0.25, 8.75], + "from": [ + 15, + 0, + 7.75 + ], + "to": [ + 15.75, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [15.75, 7.75, 15, 8], "texture": "#9"}, - "east": {"uv": [15.5, 7.75, 15.75, 8.75], "rotation": 90, "texture": "#9"}, - "south": {"uv": [15, 8.5, 15.75, 8.75], "texture": "#9"}, - "west": {"uv": [15, 7.75, 15.25, 8.75], "rotation": 270, "texture": "#9"}, - "up": {"uv": [15, 7.75, 15.75, 8.75], "texture": "#9"}, - "down": {"uv": [15, 8.75, 15.75, 7.75], "texture": "#9"} + "north": { + "uv": [ + 15.75, + 7.75, + 15, + 8 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 15.5, + 7.75, + 15.75, + 8.75 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 15, + 8.5, + 15.75, + 8.75 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 15, + 7.75, + 15.25, + 8.75 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 15, + 7.75, + 15.75, + 8.75 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 15, + 8.75, + 15.75, + 7.75 + ], + "texture": "#9" + } } }, { "name": "utubo_11", - "from": [15.75, 0, 8], - "to": [16, 0.25, 8.5], + "from": [ + 15.75, + 0, + 8 + ], + "to": [ + 16, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [16, 8, 15.75, 8.25], "texture": "#9"}, - "east": {"uv": [15.75, 8, 16, 8.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [15.75, 8.25, 16, 8.5], "texture": "#9"}, - "west": {"uv": [15.75, 8, 16, 8.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [15.75, 8, 16, 8.5], "texture": "#9"}, - "down": {"uv": [15.75, 8.5, 16, 8], "texture": "#9"} + "north": { + "uv": [ + 16, + 8, + 15.75, + 8.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 15.75, + 8, + 16, + 8.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 15.75, + 8.25, + 16, + 8.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 15.75, + 8, + 16, + 8.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 15.75, + 8, + 16, + 8.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 15.75, + 8.5, + 16, + 8 + ], + "texture": "#9" + } } }, { "name": "utubo_12", - "from": [0, 0, 8.25], - "to": [0.25, 0.25, 8.5], + "from": [ + 0, + 0, + 8.25 + ], + "to": [ + 0.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.25, 8.25, 0, 8.5], "texture": "#9"}, - "east": {"uv": [0, 8.25, 0.25, 8.5], "rotation": 90, "texture": "#9"}, - "south": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#9"}, - "west": {"uv": [0, 8.25, 0.25, 8.5], "rotation": 270, "texture": "#9"}, - "up": {"uv": [0, 8.25, 0.25, 8.5], "texture": "#9"}, - "down": {"uv": [0, 8.5, 0.25, 8.25], "texture": "#9"} + "north": { + "uv": [ + 0.25, + 8.25, + 0, + 8.5 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 8.25, + 0.25, + 8.5 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 8.5, + 0.25, + 8.25 + ], + "texture": "#9" + } } }, { "name": "utubo_13", - "from": [13.5, 0, 8.75], - "to": [14.5, 0.25, 9], + "from": [ + 13.5, + 0, + 8.75 + ], + "to": [ + 14.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.5, 8.75, 13.5, 9], "texture": "#9"}, - "east": {"uv": [14.25, 8.75, 14.5, 9], "rotation": 90, "texture": "#9"}, - "south": {"uv": [13.5, 8.75, 14.5, 9], "texture": "#9"}, - "west": {"uv": [13.5, 8.75, 13.75, 9], "rotation": 270, "texture": "#9"}, - "up": {"uv": [13.5, 8.75, 14.5, 9], "texture": "#9"}, - "down": {"uv": [13.5, 9, 14.5, 8.75], "texture": "#9"} + "north": { + "uv": [ + 14.5, + 8.75, + 13.5, + 9 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 14.25, + 8.75, + 14.5, + 9 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 14.5, + 9 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 13.5, + 8.75, + 14.5, + 9 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 13.5, + 9, + 14.5, + 8.75 + ], + "texture": "#9" + } } }, { "name": "utubo_14", - "from": [1.5, 0, 9], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.5, + 0, + 9 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 9, 1.5, 9.25], "texture": "#9"}, - "east": {"uv": [2, 9, 2.25, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [1.5, 9, 2.25, 9.25], "texture": "#9"}, - "west": {"uv": [1.5, 9, 1.75, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [1.5, 9, 2.25, 9.25], "texture": "#9"}, - "down": {"uv": [1.5, 9.25, 2.25, 9], "texture": "#9"} + "north": { + "uv": [ + 2.25, + 9, + 1.5, + 9.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 2, + 9, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 1.5, + 9, + 2.25, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 1.5, + 9, + 1.75, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 1.5, + 9, + 2.25, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 1.5, + 9.25, + 2.25, + 9 + ], + "texture": "#9" + } } }, { "name": "utubo_15", - "from": [11.5, 0, 9], - "to": [11.75, 0.25, 9.25], + "from": [ + 11.5, + 0, + 9 + ], + "to": [ + 11.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.75, 9, 11.5, 9.25], "texture": "#9"}, - "east": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 90, "texture": "#9"}, - "south": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#9"}, - "west": {"uv": [11.5, 9, 11.75, 9.25], "rotation": 270, "texture": "#9"}, - "up": {"uv": [11.5, 9, 11.75, 9.25], "texture": "#9"}, - "down": {"uv": [11.5, 9.25, 11.75, 9], "texture": "#9"} + "north": { + "uv": [ + 11.75, + 9, + 11.5, + 9.25 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 90, + "texture": "#9" + }, + "south": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "rotation": 270, + "texture": "#9" + }, + "up": { + "uv": [ + 11.5, + 9, + 11.75, + 9.25 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 11.5, + 9.25, + 11.75, + 9 + ], + "texture": "#9" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 3.5, 11], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 3.5, + 11 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 10, 15], - "scale": [1.33, 1.33, 1.33] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 10, + 15 + ], + "scale": [ + 1.33, + 1.33, + 1.33 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "utubo", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/wakasagi.json b/pack/assets/minecraft/models/fish/wakasagi.json index 9b844202..c4b65177 100644 --- a/pack/assets/minecraft/models/fish/wakasagi.json +++ b/pack/assets/minecraft/models/fish/wakasagi.json @@ -2,514 +2,2680 @@ "__name": "ワカサギ", "credit": "Made with Blockbench", "textures": { - "10": "fish/wakasagi", - "particle": "fish/raigyo" + "10": "item/fish/wakasagi", + "particle": "item/fish/raigyo" }, "elements": [ { "name": "wakasagi_0", - "from": [8.25, 0, 5.75], - "to": [9.5, 0.25, 9.25], + "from": [ + 8.25, + 0, + 5.75 + ], + "to": [ + 9.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.5, 5.75, 8.25, 6], "texture": "#10"}, - "east": {"uv": [9.25, 5.75, 9.5, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.25, 9, 9.5, 9.25], "texture": "#10"}, - "west": {"uv": [8.25, 5.75, 8.5, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.25, 5.75, 9.5, 9.25], "texture": "#10"}, - "down": {"uv": [8.25, 9.25, 9.5, 5.75], "texture": "#10"} + "north": { + "uv": [ + 9.5, + 5.75, + 8.25, + 6 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 9.25, + 5.75, + 9.5, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.25, + 9, + 9.5, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.25, + 5.75, + 8.5, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.25, + 5.75, + 9.5, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.25, + 9.25, + 9.5, + 5.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_1", - "from": [8, 0, 6], - "to": [8.25, 0.25, 10.5], + "from": [ + 8, + 0, + 6 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.25, 6, 8, 6.25], "texture": "#10"}, - "east": {"uv": [8, 6, 8.25, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8, 10.25, 8.25, 10.5], "texture": "#10"}, - "west": {"uv": [8, 6, 8.25, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8, 6, 8.25, 10.5], "texture": "#10"}, - "down": {"uv": [8, 10.5, 8.25, 6], "texture": "#10"} + "north": { + "uv": [ + 8.25, + 6, + 8, + 6.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8, + 6, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8, + 6, + 8.25, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8, + 6, + 8.25, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8, + 10.5, + 8.25, + 6 + ], + "texture": "#10" + } } }, { "name": "wakasagi_2", - "from": [9.5, 0, 6], - "to": [9.75, 0.25, 9.25], + "from": [ + 9.5, + 0, + 6 + ], + "to": [ + 9.75, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [9.75, 6, 9.5, 6.25], "texture": "#10"}, - "east": {"uv": [9.5, 6, 9.75, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [9.5, 9, 9.75, 9.25], "texture": "#10"}, - "west": {"uv": [9.5, 6, 9.75, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [9.5, 6, 9.75, 9.25], "texture": "#10"}, - "down": {"uv": [9.5, 9.25, 9.75, 6], "texture": "#10"} + "north": { + "uv": [ + 9.75, + 6, + 9.5, + 6.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 9.5, + 6, + 9.75, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.75, + 6 + ], + "texture": "#10" + } } }, { "name": "wakasagi_3", - "from": [7.5, 0, 6.25], - "to": [8, 0.25, 10], + "from": [ + 7.5, + 0, + 6.25 + ], + "to": [ + 8, + 0.25, + 10 + ], "faces": { - "north": {"uv": [8, 6.25, 7.5, 6.5], "texture": "#10"}, - "east": {"uv": [7.75, 6.25, 8, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7.5, 9.75, 8, 10], "texture": "#10"}, - "west": {"uv": [7.5, 6.25, 7.75, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7.5, 6.25, 8, 10], "texture": "#10"}, - "down": {"uv": [7.5, 10, 8, 6.25], "texture": "#10"} + "north": { + "uv": [ + 8, + 6.25, + 7.5, + 6.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 7.75, + 6.25, + 8, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 8, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7.5, + 6.25, + 7.75, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7.5, + 6.25, + 8, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7.5, + 10, + 8, + 6.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_4", - "from": [15, 0, 6.25], - "to": [15.5, 0.25, 9.5], + "from": [ + 15, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.5, 6.25, 15, 6.5], "texture": "#10"}, - "east": {"uv": [15.25, 6.25, 15.5, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15, 9.25, 15.5, 9.5], "texture": "#10"}, - "west": {"uv": [15, 6.25, 15.25, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15, 6.25, 15.5, 9.5], "texture": "#10"}, - "down": {"uv": [15, 9.5, 15.5, 6.25], "texture": "#10"} + "north": { + "uv": [ + 15.5, + 6.25, + 15, + 6.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15, + 9.25, + 15.5, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15, + 6.25, + 15.25, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15, + 6.25, + 15.5, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15, + 9.5, + 15.5, + 6.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_5", - "from": [4, 0, 6.5], - "to": [7.5, 0.25, 9.5], + "from": [ + 4, + 0, + 6.5 + ], + "to": [ + 7.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [7.5, 6.5, 4, 6.75], "texture": "#10"}, - "east": {"uv": [7.25, 6.5, 7.5, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [4, 9.25, 7.5, 9.5], "texture": "#10"}, - "west": {"uv": [4, 6.5, 4.25, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [4, 6.5, 7.5, 9.5], "texture": "#10"}, - "down": {"uv": [4, 9.5, 7.5, 6.5], "texture": "#10"} + "north": { + "uv": [ + 7.5, + 6.5, + 4, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 7.25, + 6.5, + 7.5, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 4, + 9.25, + 7.5, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 4, + 6.5, + 4.25, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 4, + 6.5, + 7.5, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 4, + 9.5, + 7.5, + 6.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_6", - "from": [14.75, 0, 6.5], - "to": [15, 0.25, 9.25], + "from": [ + 14.75, + 0, + 6.5 + ], + "to": [ + 15, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [15, 6.5, 14.75, 6.75], "texture": "#10"}, - "east": {"uv": [14.75, 6.5, 15, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.75, 9, 15, 9.25], "texture": "#10"}, - "west": {"uv": [14.75, 6.5, 15, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.75, 6.5, 15, 9.25], "texture": "#10"}, - "down": {"uv": [14.75, 9.25, 15, 6.5], "texture": "#10"} + "north": { + "uv": [ + 15, + 6.5, + 14.75, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14.75, + 6.5, + 15, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.75, + 9, + 15, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.75, + 6.5, + 15, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.75, + 6.5, + 15, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.75, + 9.25, + 15, + 6.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_7", - "from": [15.5, 0, 6.5], - "to": [15.75, 0.25, 9.5], + "from": [ + 15.5, + 0, + 6.5 + ], + "to": [ + 15.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.75, 6.5, 15.5, 6.75], "texture": "#10"}, - "east": {"uv": [15.5, 6.5, 15.75, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.5, 9.25, 15.75, 9.5], "texture": "#10"}, - "west": {"uv": [15.5, 6.5, 15.75, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.5, 6.5, 15.75, 9.5], "texture": "#10"}, - "down": {"uv": [15.5, 9.5, 15.75, 6.5], "texture": "#10"} + "north": { + "uv": [ + 15.75, + 6.5, + 15.5, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.5, + 6.5, + 15.75, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.5, + 6.5, + 15.75, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.5, + 6.5, + 15.75, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.5, + 9.5, + 15.75, + 6.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_8", - "from": [2.25, 0, 6.75], - "to": [4, 0.25, 9.5], + "from": [ + 2.25, + 0, + 6.75 + ], + "to": [ + 4, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [4, 6.75, 2.25, 7], "texture": "#10"}, - "east": {"uv": [3.75, 6.75, 4, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [2.25, 9.25, 4, 9.5], "texture": "#10"}, - "west": {"uv": [2.25, 6.75, 2.5, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [2.25, 6.75, 4, 9.5], "texture": "#10"}, - "down": {"uv": [2.25, 9.5, 4, 6.75], "texture": "#10"} + "north": { + "uv": [ + 4, + 6.75, + 2.25, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 3.75, + 6.75, + 4, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 4, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 2.25, + 6.75, + 2.5, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 2.25, + 6.75, + 4, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 2.25, + 9.5, + 4, + 6.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_9", - "from": [11.5, 0, 6.75], - "to": [12.25, 0.25, 8.5], + "from": [ + 11.5, + 0, + 6.75 + ], + "to": [ + 12.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [12.25, 6.75, 11.5, 7], "texture": "#10"}, - "east": {"uv": [12, 6.75, 12.25, 8.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.5, 8.25, 12.25, 8.5], "texture": "#10"}, - "west": {"uv": [11.5, 6.75, 11.75, 8.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.5, 6.75, 12.25, 8.5], "texture": "#10"}, - "down": {"uv": [11.5, 8.5, 12.25, 6.75], "texture": "#10"} + "north": { + "uv": [ + 12.25, + 6.75, + 11.5, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 12, + 6.75, + 12.25, + 8.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.5, + 8.25, + 12.25, + 8.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.5, + 6.75, + 11.75, + 8.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.5, + 6.75, + 12.25, + 8.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.5, + 8.5, + 12.25, + 6.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_10", - "from": [14.25, 0, 6.75], - "to": [14.75, 0.25, 9], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [14.75, 6.75, 14.25, 7], "texture": "#10"}, - "east": {"uv": [14.5, 6.75, 14.75, 9], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.25, 8.75, 14.75, 9], "texture": "#10"}, - "west": {"uv": [14.25, 6.75, 14.5, 9], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.25, 6.75, 14.75, 9], "texture": "#10"}, - "down": {"uv": [14.25, 9, 14.75, 6.75], "texture": "#10"} + "north": { + "uv": [ + 14.75, + 6.75, + 14.25, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14.5, + 6.75, + 14.75, + 9 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.25, + 8.75, + 14.75, + 9 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.75, + 9 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.25, + 9, + 14.75, + 6.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_11", - "from": [15.75, 0, 6.75], - "to": [16, 0.25, 7.25], + "from": [ + 15.75, + 0, + 6.75 + ], + "to": [ + 16, + 0.25, + 7.25 + ], "faces": { - "north": {"uv": [16, 6.75, 15.75, 7], "texture": "#10"}, - "east": {"uv": [15.75, 6.75, 16, 7.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.75, 7, 16, 7.25], "texture": "#10"}, - "west": {"uv": [15.75, 6.75, 16, 7.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.75, 6.75, 16, 7.25], "texture": "#10"}, - "down": {"uv": [15.75, 7.25, 16, 6.75], "texture": "#10"} + "north": { + "uv": [ + 16, + 6.75, + 15.75, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.75, + 6.75, + 16, + 7.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.75, + 7, + 16, + 7.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.75, + 6.75, + 16, + 7.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.75, + 6.75, + 16, + 7.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.75, + 7.25, + 16, + 6.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_12", - "from": [1.25, 0, 7], - "to": [2.25, 0.25, 9.25], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 2.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [2.25, 7, 1.25, 7.25], "texture": "#10"}, - "east": {"uv": [2, 7, 2.25, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [1.25, 9, 2.25, 9.25], "texture": "#10"}, - "west": {"uv": [1.25, 7, 1.5, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [1.25, 7, 2.25, 9.25], "texture": "#10"}, - "down": {"uv": [1.25, 9.25, 2.25, 7], "texture": "#10"} + "north": { + "uv": [ + 2.25, + 7, + 1.25, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 2, + 7, + 2.25, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 1.25, + 9, + 2.25, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 1.25, + 7, + 2.25, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 1.25, + 9.25, + 2.25, + 7 + ], + "texture": "#10" + } } }, { "name": "wakasagi_13", - "from": [9.75, 0, 7], - "to": [11.5, 0.25, 9.25], + "from": [ + 9.75, + 0, + 7 + ], + "to": [ + 11.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [11.5, 7, 9.75, 7.25], "texture": "#10"}, - "east": {"uv": [11.25, 7, 11.5, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [9.75, 9, 11.5, 9.25], "texture": "#10"}, - "west": {"uv": [9.75, 7, 10, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [9.75, 7, 11.5, 9.25], "texture": "#10"}, - "down": {"uv": [9.75, 9.25, 11.5, 7], "texture": "#10"} + "north": { + "uv": [ + 11.5, + 7, + 9.75, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.25, + 7, + 11.5, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 9.75, + 9, + 11.5, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 9.75, + 7, + 10, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 9.75, + 7, + 11.5, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 9.75, + 9.25, + 11.5, + 7 + ], + "texture": "#10" + } } }, { "name": "wakasagi_14", - "from": [12.25, 0, 7], - "to": [14.25, 0.25, 8.5], + "from": [ + 12.25, + 0, + 7 + ], + "to": [ + 14.25, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [14.25, 7, 12.25, 7.25], "texture": "#10"}, - "east": {"uv": [14, 7, 14.25, 8.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [12.25, 8.25, 14.25, 8.5], "texture": "#10"}, - "west": {"uv": [12.25, 7, 12.5, 8.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [12.25, 7, 14.25, 8.5], "texture": "#10"}, - "down": {"uv": [12.25, 8.5, 14.25, 7], "texture": "#10"} + "north": { + "uv": [ + 14.25, + 7, + 12.25, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14, + 7, + 14.25, + 8.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 12.25, + 8.25, + 14.25, + 8.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 12.25, + 7, + 12.5, + 8.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 12.25, + 7, + 14.25, + 8.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 12.25, + 8.5, + 14.25, + 7 + ], + "texture": "#10" + } } }, { "name": "wakasagi_15", - "from": [0.75, 0, 7.25], - "to": [1.25, 0.25, 8.75], + "from": [ + 0.75, + 0, + 7.25 + ], + "to": [ + 1.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [1.25, 7.25, 0.75, 7.5], "texture": "#10"}, - "east": {"uv": [1, 7.25, 1.25, 8.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.75, 8.5, 1.25, 8.75], "texture": "#10"}, - "west": {"uv": [0.75, 7.25, 1, 8.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.75, 7.25, 1.25, 8.75], "texture": "#10"}, - "down": {"uv": [0.75, 8.75, 1.25, 7.25], "texture": "#10"} + "north": { + "uv": [ + 1.25, + 7.25, + 0.75, + 7.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 1, + 7.25, + 1.25, + 8.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 1.25, + 8.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.75, + 7.25, + 1, + 8.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.75, + 7.25, + 1.25, + 8.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.75, + 8.75, + 1.25, + 7.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_16", - "from": [0.5, 0, 7.5], - "to": [0.75, 0.25, 8.5], + "from": [ + 0.5, + 0, + 7.5 + ], + "to": [ + 0.75, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.75, 7.5, 0.5, 7.75], "texture": "#10"}, - "east": {"uv": [0.5, 7.5, 0.75, 8.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.5, 8.25, 0.75, 8.5], "texture": "#10"}, - "west": {"uv": [0.5, 7.5, 0.75, 8.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.5, 7.5, 0.75, 8.5], "texture": "#10"}, - "down": {"uv": [0.5, 8.5, 0.75, 7.5], "texture": "#10"} + "north": { + "uv": [ + 0.75, + 7.5, + 0.5, + 7.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.5, + 8.25, + 0.75, + 8.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.75, + 8.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.5, + 8.5, + 0.75, + 7.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_17", - "from": [0.25, 0, 7.75], - "to": [0.5, 0.25, 8.25], + "from": [ + 0.25, + 0, + 7.75 + ], + "to": [ + 0.5, + 0.25, + 8.25 + ], "faces": { - "north": {"uv": [0.5, 7.75, 0.25, 8], "texture": "#10"}, - "east": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.25, 8, 0.5, 8.25], "texture": "#10"}, - "west": {"uv": [0.25, 7.75, 0.5, 8.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.25, 7.75, 0.5, 8.25], "texture": "#10"}, - "down": {"uv": [0.25, 8.25, 0.5, 7.75], "texture": "#10"} + "north": { + "uv": [ + 0.5, + 7.75, + 0.25, + 8 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.25, + 8, + 0.5, + 8.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.25, + 8.25, + 0.5, + 7.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_18", - "from": [11.5, 0, 8.5], - "to": [12, 0.25, 9.75], + "from": [ + 11.5, + 0, + 8.5 + ], + "to": [ + 12, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [12, 8.5, 11.5, 8.75], "texture": "#10"}, - "east": {"uv": [11.75, 8.5, 12, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.5, 9.5, 12, 9.75], "texture": "#10"}, - "west": {"uv": [11.5, 8.5, 11.75, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.5, 8.5, 12, 9.75], "texture": "#10"}, - "down": {"uv": [11.5, 9.75, 12, 8.5], "texture": "#10"} + "north": { + "uv": [ + 12, + 8.5, + 11.5, + 8.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.75, + 8.5, + 12, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.5, + 9.5, + 12, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.5, + 8.5, + 11.75, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.5, + 8.5, + 12, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.5, + 9.75, + 12, + 8.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_19", - "from": [12.75, 0, 8.5], - "to": [14.25, 0.25, 8.75], + "from": [ + 12.75, + 0, + 8.5 + ], + "to": [ + 14.25, + 0.25, + 8.75 + ], "faces": { - "north": {"uv": [14.25, 8.5, 12.75, 8.75], "texture": "#10"}, - "east": {"uv": [14, 8.5, 14.25, 8.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [12.75, 8.5, 14.25, 8.75], "texture": "#10"}, - "west": {"uv": [12.75, 8.5, 13, 8.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [12.75, 8.5, 14.25, 8.75], "texture": "#10"}, - "down": {"uv": [12.75, 8.75, 14.25, 8.5], "texture": "#10"} + "north": { + "uv": [ + 14.25, + 8.5, + 12.75, + 8.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14, + 8.5, + 14.25, + 8.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 12.75, + 8.5, + 14.25, + 8.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 12.75, + 8.5, + 13, + 8.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 12.75, + 8.5, + 14.25, + 8.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 12.75, + 8.75, + 14.25, + 8.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_20", - "from": [1, 0, 8.75], - "to": [1.25, 0.25, 9], + "from": [ + 1, + 0, + 8.75 + ], + "to": [ + 1.25, + 0.25, + 9 + ], "faces": { - "north": {"uv": [1.25, 8.75, 1, 9], "texture": "#10"}, - "east": {"uv": [1, 8.75, 1.25, 9], "rotation": 90, "texture": "#10"}, - "south": {"uv": [1, 8.75, 1.25, 9], "texture": "#10"}, - "west": {"uv": [1, 8.75, 1.25, 9], "rotation": 270, "texture": "#10"}, - "up": {"uv": [1, 8.75, 1.25, 9], "texture": "#10"}, - "down": {"uv": [1, 9, 1.25, 8.75], "texture": "#10"} + "north": { + "uv": [ + 1.25, + 8.75, + 1, + 9 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 1, + 8.75, + 1.25, + 9 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 1, + 9, + 1.25, + 8.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_21", - "from": [12, 0, 8.75], - "to": [12.25, 0.25, 9.5], + "from": [ + 12, + 0, + 8.75 + ], + "to": [ + 12.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [12.25, 8.75, 12, 9], "texture": "#10"}, - "east": {"uv": [12, 8.75, 12.25, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [12, 9.25, 12.25, 9.5], "texture": "#10"}, - "west": {"uv": [12, 8.75, 12.25, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [12, 8.75, 12.25, 9.5], "texture": "#10"}, - "down": {"uv": [12, 9.5, 12.25, 8.75], "texture": "#10"} + "north": { + "uv": [ + 12.25, + 8.75, + 12, + 9 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 12, + 8.75, + 12.25, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 12, + 9.25, + 12.25, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 12, + 8.75, + 12.25, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 12, + 8.75, + 12.25, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 12, + 9.5, + 12.25, + 8.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_22", - "from": [15.75, 0, 8.75], - "to": [16, 0.25, 9.25], + "from": [ + 15.75, + 0, + 8.75 + ], + "to": [ + 16, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [16, 8.75, 15.75, 9], "texture": "#10"}, - "east": {"uv": [15.75, 8.75, 16, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.75, 9, 16, 9.25], "texture": "#10"}, - "west": {"uv": [15.75, 8.75, 16, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.75, 8.75, 16, 9.25], "texture": "#10"}, - "down": {"uv": [15.75, 9.25, 16, 8.75], "texture": "#10"} + "north": { + "uv": [ + 16, + 8.75, + 15.75, + 9 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.75, + 8.75, + 16, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.75, + 9, + 16, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.75, + 8.75, + 16, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.75, + 8.75, + 16, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.75, + 9.25, + 16, + 8.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_23", - "from": [2, 0, 9.25], - "to": [2.25, 0.25, 9.5], + "from": [ + 2, + 0, + 9.25 + ], + "to": [ + 2.25, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [2.25, 9.25, 2, 9.5], "texture": "#10"}, - "east": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [2, 9.25, 2.25, 9.5], "texture": "#10"}, - "west": {"uv": [2, 9.25, 2.25, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [2, 9.25, 2.25, 9.5], "texture": "#10"}, - "down": {"uv": [2, 9.5, 2.25, 9.25], "texture": "#10"} + "north": { + "uv": [ + 2.25, + 9.25, + 2, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 2, + 9.25, + 2.25, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 2, + 9.5, + 2.25, + 9.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_24", - "from": [8.25, 0, 9.25], - "to": [9, 0.25, 10], + "from": [ + 8.25, + 0, + 9.25 + ], + "to": [ + 9, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9, 9.25, 8.25, 9.5], "texture": "#10"}, - "east": {"uv": [8.75, 9.25, 9, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.25, 9.75, 9, 10], "texture": "#10"}, - "west": {"uv": [8.25, 9.25, 8.5, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.25, 9.25, 9, 10], "texture": "#10"}, - "down": {"uv": [8.25, 10, 9, 9.25], "texture": "#10"} + "north": { + "uv": [ + 9, + 9.25, + 8.25, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.75, + 9.25, + 9, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.25, + 9.75, + 9, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.25, + 9.25, + 8.5, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.25, + 9.25, + 9, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.25, + 10, + 9, + 9.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_25", - "from": [9, 0, 9.25], - "to": [9.25, 0.25, 9.75], + "from": [ + 9, + 0, + 9.25 + ], + "to": [ + 9.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [9.25, 9.25, 9, 9.5], "texture": "#10"}, - "east": {"uv": [9, 9.25, 9.25, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [9, 9.5, 9.25, 9.75], "texture": "#10"}, - "west": {"uv": [9, 9.25, 9.25, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [9, 9.25, 9.25, 9.75], "texture": "#10"}, - "down": {"uv": [9, 9.75, 9.25, 9.25], "texture": "#10"} + "north": { + "uv": [ + 9.25, + 9.25, + 9, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 9, + 9.25, + 9.25, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 9, + 9.25, + 9.25, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 9, + 9.25, + 9.25, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 9, + 9.75, + 9.25, + 9.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_26", - "from": [11, 0, 9.25], - "to": [11.5, 0.25, 9.5], + "from": [ + 11, + 0, + 9.25 + ], + "to": [ + 11.5, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [11.5, 9.25, 11, 9.5], "texture": "#10"}, - "east": {"uv": [11.25, 9.25, 11.5, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11, 9.25, 11.5, 9.5], "texture": "#10"}, - "west": {"uv": [11, 9.25, 11.25, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11, 9.25, 11.5, 9.5], "texture": "#10"}, - "down": {"uv": [11, 9.5, 11.5, 9.25], "texture": "#10"} + "north": { + "uv": [ + 11.5, + 9.25, + 11, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.25, + 9.25, + 11.5, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 9.25, + 11.5, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11, + 9.25, + 11.25, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11, + 9.25, + 11.5, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11, + 9.5, + 11.5, + 9.25 + ], + "texture": "#10" + } } }, { "name": "wakasagi_27", - "from": [4, 0, 9.5], - "to": [7, 0.25, 9.75], + "from": [ + 4, + 0, + 9.5 + ], + "to": [ + 7, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7, 9.5, 4, 9.75], "texture": "#10"}, - "east": {"uv": [6.75, 9.5, 7, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [4, 9.5, 7, 9.75], "texture": "#10"}, - "west": {"uv": [4, 9.5, 4.25, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [4, 9.5, 7, 9.75], "texture": "#10"}, - "down": {"uv": [4, 9.75, 7, 9.5], "texture": "#10"} + "north": { + "uv": [ + 7, + 9.5, + 4, + 9.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 6.75, + 9.5, + 7, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 4, + 9.5, + 7, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.25, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 4, + 9.5, + 7, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 4, + 9.75, + 7, + 9.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_28", - "from": [7.25, 0, 9.5], - "to": [7.5, 0.25, 9.75], + "from": [ + 7.25, + 0, + 9.5 + ], + "to": [ + 7.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [7.5, 9.5, 7.25, 9.75], "texture": "#10"}, - "east": {"uv": [7.25, 9.5, 7.5, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#10"}, - "west": {"uv": [7.25, 9.5, 7.5, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7.25, 9.5, 7.5, 9.75], "texture": "#10"}, - "down": {"uv": [7.25, 9.75, 7.5, 9.5], "texture": "#10"} + "north": { + "uv": [ + 7.5, + 9.5, + 7.25, + 9.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7.25, + 9.5, + 7.5, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7.25, + 9.75, + 7.5, + 9.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_29", - "from": [11.25, 0, 9.5], - "to": [11.5, 0.25, 9.75], + "from": [ + 11.25, + 0, + 9.5 + ], + "to": [ + 11.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.5, 9.5, 11.25, 9.75], "texture": "#10"}, - "east": {"uv": [11.25, 9.5, 11.5, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.25, 9.5, 11.5, 9.75], "texture": "#10"}, - "west": {"uv": [11.25, 9.5, 11.5, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.25, 9.5, 11.5, 9.75], "texture": "#10"}, - "down": {"uv": [11.25, 9.75, 11.5, 9.5], "texture": "#10"} + "north": { + "uv": [ + 11.5, + 9.5, + 11.25, + 9.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.25, + 9.5, + 11.5, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.25, + 9.75, + 11.5, + 9.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_30", - "from": [15.25, 0, 9.5], - "to": [15.5, 0.25, 9.75], + "from": [ + 15.25, + 0, + 9.5 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 9.5, 15.25, 9.75], "texture": "#10"}, - "east": {"uv": [15.25, 9.5, 15.5, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#10"}, - "west": {"uv": [15.25, 9.5, 15.5, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#10"}, - "down": {"uv": [15.25, 9.75, 15.5, 9.5], "texture": "#10"} + "north": { + "uv": [ + 15.5, + 9.5, + 15.25, + 9.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.25, + 9.75, + 15.5, + 9.5 + ], + "texture": "#10" + } } }, { "name": "wakasagi_31", - "from": [11.5, 0, 9.75], - "to": [11.75, 0.25, 10], + "from": [ + 11.5, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.75, 9.75, 11.5, 10], "texture": "#10"}, - "east": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.5, 9.75, 11.75, 10], "texture": "#10"}, - "west": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.5, 9.75, 11.75, 10], "texture": "#10"}, - "down": {"uv": [11.5, 10, 11.75, 9.75], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 9.75, + 11.5, + 10 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.5, + 10, + 11.75, + 9.75 + ], + "texture": "#10" + } } }, { "name": "wakasagi_32", - "from": [7.75, 0, 10], - "to": [8, 0.25, 10.25], + "from": [ + 7.75, + 0, + 10 + ], + "to": [ + 8, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8, 10, 7.75, 10.25], "texture": "#10"}, - "east": {"uv": [7.75, 10, 8, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7.75, 10, 8, 10.25], "texture": "#10"}, - "west": {"uv": [7.75, 10, 8, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7.75, 10, 8, 10.25], "texture": "#10"}, - "down": {"uv": [7.75, 10.25, 8, 10], "texture": "#10"} + "north": { + "uv": [ + 8, + 10, + 7.75, + 10.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7.75, + 10, + 8, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7.75, + 10.25, + 8, + 10 + ], + "texture": "#10" + } } }, { "name": "wakasagi_33", - "from": [8.25, 0, 10], - "to": [8.75, 0.25, 10.25], + "from": [ + 8.25, + 0, + 10 + ], + "to": [ + 8.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.75, 10, 8.25, 10.25], "texture": "#10"}, - "east": {"uv": [8.5, 10, 8.75, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.25, 10, 8.75, 10.25], "texture": "#10"}, - "west": {"uv": [8.25, 10, 8.5, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.25, 10, 8.75, 10.25], "texture": "#10"}, - "down": {"uv": [8.25, 10.25, 8.75, 10], "texture": "#10"} + "north": { + "uv": [ + 8.75, + 10, + 8.25, + 10.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.5, + 10, + 8.75, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.25, + 10, + 8.75, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.25, + 10, + 8.5, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.25, + 10, + 8.75, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.25, + 10.25, + 8.75, + 10 + ], + "texture": "#10" + } } }, { "name": "wakasagi_34", - "from": [8.25, 0, 10.25], - "to": [8.5, 0.25, 10.5], + "from": [ + 8.25, + 0, + 10.25 + ], + "to": [ + 8.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.5, 10.25, 8.25, 10.5], "texture": "#10"}, - "east": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#10"}, - "west": {"uv": [8.25, 10.25, 8.5, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.25, 10.25, 8.5, 10.5], "texture": "#10"}, - "down": {"uv": [8.25, 10.5, 8.5, 10.25], "texture": "#10"} + "north": { + "uv": [ + 8.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.25, + 10.25, + 8.5, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.25, + 10.5, + 8.5, + 10.25 + ], + "texture": "#10" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, -0.25, 3.25], - "scale": [0.29, 0.29, 0.29] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + -0.25, + 3.25 + ], + "scale": [ + 0.29, + 0.29, + 0.29 + ] }, "thirdperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, -0.25, 3.25], - "scale": [0.29, 0.29, 0.29] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + -0.25, + 3.25 + ], + "scale": [ + 0.29, + 0.29, + 0.29 + ] }, "firstperson_righthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 1, 3.25], - "scale": [0.29, 0.29, 0.29] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 1, + 3.25 + ], + "scale": [ + 0.29, + 0.29, + 0.29 + ] }, "firstperson_lefthand": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 4, 9.75], - "scale": [0.47, 0.47, 0.47] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 4, + 9.75 + ], + "scale": [ + 0.47, + 0.47, + 0.47 + ] }, "ground": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, -0.25, 3.25], - "scale": [0.29, 0.29, 0.29] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + -0.25, + 3.25 + ], + "scale": [ + 0.29, + 0.29, + 0.29 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -18.75, 1.75], - "translation": [-1.5, 12.5, 9.75], - "scale": [1.15938, 1.15938, 1.15938] + "rotation": [ + 81, + -18.75, + 1.75 + ], + "translation": [ + -1.5, + 12.5, + 9.75 + ], + "scale": [ + 1.15938, + 1.15938, + 1.15938 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "wakasagi", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/fish/yamame.json b/pack/assets/minecraft/models/fish/yamame.json index a715e4aa..b52cbab9 100644 --- a/pack/assets/minecraft/models/fish/yamame.json +++ b/pack/assets/minecraft/models/fish/yamame.json @@ -2,592 +2,3112 @@ "__name": "ヤマメ", "credit": "Made with Blockbench", "textures": { - "10": "fish/yamame", - "particle": "fish/isidai" + "10": "item/fish/yamame", + "particle": "item/fish/isidai" }, "elements": [ { "name": "yamame_0", - "from": [7, 0, 5.75], - "to": [8.25, 0.25, 10.25], + "from": [ + 7, + 0, + 5.75 + ], + "to": [ + 8.25, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [8.25, 5.75, 7, 6], "texture": "#10"}, - "east": {"uv": [8, 5.75, 8.25, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7, 10, 8.25, 10.25], "texture": "#10"}, - "west": {"uv": [7, 5.75, 7.25, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7, 5.75, 8.25, 10.25], "texture": "#10"}, - "down": {"uv": [7, 10.25, 8.25, 5.75], "texture": "#10"} + "north": { + "uv": [ + 8.25, + 5.75, + 7, + 6 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8, + 5.75, + 8.25, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7, + 10, + 8.25, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7, + 5.75, + 7.25, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7, + 5.75, + 8.25, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7, + 10.25, + 8.25, + 5.75 + ], + "texture": "#10" + } } }, { "name": "yamame_1", - "from": [6.75, 0, 6], - "to": [7, 0.25, 10.25], + "from": [ + 6.75, + 0, + 6 + ], + "to": [ + 7, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [7, 6, 6.75, 6.25], "texture": "#10"}, - "east": {"uv": [6.75, 6, 7, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [6.75, 10, 7, 10.25], "texture": "#10"}, - "west": {"uv": [6.75, 6, 7, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [6.75, 6, 7, 10.25], "texture": "#10"}, - "down": {"uv": [6.75, 10.25, 7, 6], "texture": "#10"} + "north": { + "uv": [ + 7, + 6, + 6.75, + 6.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 6.75, + 6, + 7, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 6.75, + 10, + 7, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 6.75, + 6, + 7, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 6.75, + 6, + 7, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 6.75, + 10.25, + 7, + 6 + ], + "texture": "#10" + } } }, { "name": "yamame_2", - "from": [8.25, 0, 6], - "to": [8.5, 0.25, 11.25], + "from": [ + 8.25, + 0, + 6 + ], + "to": [ + 8.5, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.5, 6, 8.25, 6.25], "texture": "#10"}, - "east": {"uv": [8.25, 6, 8.5, 11.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.25, 11, 8.5, 11.25], "texture": "#10"}, - "west": {"uv": [8.25, 6, 8.5, 11.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.25, 6, 8.5, 11.25], "texture": "#10"}, - "down": {"uv": [8.25, 11.25, 8.5, 6], "texture": "#10"} + "north": { + "uv": [ + 8.5, + 6, + 8.25, + 6.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.25, + 6, + 8.5, + 11.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.25, + 6, + 8.5, + 11.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.25, + 6, + 8.5, + 11.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.25, + 11.25, + 8.5, + 6 + ], + "texture": "#10" + } } }, { "name": "yamame_3", - "from": [6.5, 0, 6.25], - "to": [6.75, 0.25, 10.25], + "from": [ + 6.5, + 0, + 6.25 + ], + "to": [ + 6.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.75, 6.25, 6.5, 6.5], "texture": "#10"}, - "east": {"uv": [6.5, 6.25, 6.75, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [6.5, 10, 6.75, 10.25], "texture": "#10"}, - "west": {"uv": [6.5, 6.25, 6.75, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [6.5, 6.25, 6.75, 10.25], "texture": "#10"}, - "down": {"uv": [6.5, 10.25, 6.75, 6.25], "texture": "#10"} + "north": { + "uv": [ + 6.75, + 6.25, + 6.5, + 6.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 6.5, + 6.25, + 6.75, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 6.5, + 6.25, + 6.75, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 6.5, + 6.25, + 6.75, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 6.5, + 10.25, + 6.75, + 6.25 + ], + "texture": "#10" + } } }, { "name": "yamame_4", - "from": [8.5, 0, 6.25], - "to": [8.75, 0.25, 11.25], + "from": [ + 8.5, + 0, + 6.25 + ], + "to": [ + 8.75, + 0.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 6.25, 8.5, 6.5], "texture": "#10"}, - "east": {"uv": [8.5, 6.25, 8.75, 11.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.5, 11, 8.75, 11.25], "texture": "#10"}, - "west": {"uv": [8.5, 6.25, 8.75, 11.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.5, 6.25, 8.75, 11.25], "texture": "#10"}, - "down": {"uv": [8.5, 11.25, 8.75, 6.25], "texture": "#10"} + "north": { + "uv": [ + 8.75, + 6.25, + 8.5, + 6.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.5, + 6.25, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.5, + 6.25, + 8.75, + 11.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.5, + 6.25, + 8.75, + 11.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.5, + 11.25, + 8.75, + 6.25 + ], + "texture": "#10" + } } }, { "name": "yamame_5", - "from": [14.75, 0, 6.25], - "to": [15.5, 0.25, 7.5], + "from": [ + 14.75, + 0, + 6.25 + ], + "to": [ + 15.5, + 0.25, + 7.5 + ], "faces": { - "north": {"uv": [15.5, 6.25, 14.75, 6.5], "texture": "#10"}, - "east": {"uv": [15.25, 6.25, 15.5, 7.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.75, 7.25, 15.5, 7.5], "texture": "#10"}, - "west": {"uv": [14.75, 6.25, 15, 7.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.75, 6.25, 15.5, 7.5], "texture": "#10"}, - "down": {"uv": [14.75, 7.5, 15.5, 6.25], "texture": "#10"} + "north": { + "uv": [ + 15.5, + 6.25, + 14.75, + 6.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.25, + 6.25, + 15.5, + 7.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.75, + 7.25, + 15.5, + 7.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.75, + 6.25, + 15, + 7.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.75, + 6.25, + 15.5, + 7.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.75, + 7.5, + 15.5, + 6.25 + ], + "texture": "#10" + } } }, { "name": "yamame_6", - "from": [3.5, 0, 6.5], - "to": [6.5, 0.25, 10.25], + "from": [ + 3.5, + 0, + 6.5 + ], + "to": [ + 6.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [6.5, 6.5, 3.5, 6.75], "texture": "#10"}, - "east": {"uv": [6.25, 6.5, 6.5, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [3.5, 10, 6.5, 10.25], "texture": "#10"}, - "west": {"uv": [3.5, 6.5, 3.75, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [3.5, 6.5, 6.5, 10.25], "texture": "#10"}, - "down": {"uv": [3.5, 10.25, 6.5, 6.5], "texture": "#10"} + "north": { + "uv": [ + 6.5, + 6.5, + 3.5, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 6.25, + 6.5, + 6.5, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 3.5, + 10, + 6.5, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 3.5, + 6.5, + 3.75, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 3.5, + 6.5, + 6.5, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 3.5, + 10.25, + 6.5, + 6.5 + ], + "texture": "#10" + } } }, { "name": "yamame_7", - "from": [14.25, 0, 6.5], - "to": [14.75, 0.25, 9.5], + "from": [ + 14.25, + 0, + 6.5 + ], + "to": [ + 14.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 6.5, 14.25, 6.75], "texture": "#10"}, - "east": {"uv": [14.5, 6.5, 14.75, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.25, 9.25, 14.75, 9.5], "texture": "#10"}, - "west": {"uv": [14.25, 6.5, 14.5, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.25, 6.5, 14.75, 9.5], "texture": "#10"}, - "down": {"uv": [14.25, 9.5, 14.75, 6.5], "texture": "#10"} + "north": { + "uv": [ + 14.75, + 6.5, + 14.25, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14.5, + 6.5, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.25, + 9.25, + 14.75, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.25, + 6.5, + 14.5, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.25, + 6.5, + 14.75, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.25, + 9.5, + 14.75, + 6.5 + ], + "texture": "#10" + } } }, { "name": "yamame_8", - "from": [15.5, 0, 6.5], - "to": [15.75, 0.25, 7], + "from": [ + 15.5, + 0, + 6.5 + ], + "to": [ + 15.75, + 0.25, + 7 + ], "faces": { - "north": {"uv": [15.75, 6.5, 15.5, 6.75], "texture": "#10"}, - "east": {"uv": [15.5, 6.5, 15.75, 7], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.5, 6.75, 15.75, 7], "texture": "#10"}, - "west": {"uv": [15.5, 6.5, 15.75, 7], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.5, 6.5, 15.75, 7], "texture": "#10"}, - "down": {"uv": [15.5, 7, 15.75, 6.5], "texture": "#10"} + "north": { + "uv": [ + 15.75, + 6.5, + 15.5, + 6.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.5, + 6.75, + 15.75, + 7 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.5, + 6.5, + 15.75, + 7 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.5, + 7, + 15.75, + 6.5 + ], + "texture": "#10" + } } }, { "name": "yamame_9", - "from": [2.5, 0, 6.75], - "to": [3.5, 0.25, 10.25], + "from": [ + 2.5, + 0, + 6.75 + ], + "to": [ + 3.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [3.5, 6.75, 2.5, 7], "texture": "#10"}, - "east": {"uv": [3.25, 6.75, 3.5, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [2.5, 10, 3.5, 10.25], "texture": "#10"}, - "west": {"uv": [2.5, 6.75, 2.75, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [2.5, 6.75, 3.5, 10.25], "texture": "#10"}, - "down": {"uv": [2.5, 10.25, 3.5, 6.75], "texture": "#10"} + "north": { + "uv": [ + 3.5, + 6.75, + 2.5, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 3.25, + 6.75, + 3.5, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 2.5, + 10, + 3.5, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 2.5, + 6.75, + 2.75, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 2.5, + 6.75, + 3.5, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 2.5, + 10.25, + 3.5, + 6.75 + ], + "texture": "#10" + } } }, { "name": "yamame_10", - "from": [8.75, 0, 6.75], - "to": [9.75, 0.25, 10], + "from": [ + 8.75, + 0, + 6.75 + ], + "to": [ + 9.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [9.75, 6.75, 8.75, 7], "texture": "#10"}, - "east": {"uv": [9.5, 6.75, 9.75, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.75, 9.75, 9.75, 10], "texture": "#10"}, - "west": {"uv": [8.75, 6.75, 9, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.75, 6.75, 9.75, 10], "texture": "#10"}, - "down": {"uv": [8.75, 10, 9.75, 6.75], "texture": "#10"} + "north": { + "uv": [ + 9.75, + 6.75, + 8.75, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 9.5, + 6.75, + 9.75, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 9.75, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 9, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.75, + 6.75, + 9.75, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.75, + 10, + 9.75, + 6.75 + ], + "texture": "#10" + } } }, { "name": "yamame_11", - "from": [11.75, 0, 6.75], - "to": [12.25, 0.25, 9.25], + "from": [ + 11.75, + 0, + 6.75 + ], + "to": [ + 12.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [12.25, 6.75, 11.75, 7], "texture": "#10"}, - "east": {"uv": [12, 6.75, 12.25, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.75, 9, 12.25, 9.25], "texture": "#10"}, - "west": {"uv": [11.75, 6.75, 12, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.75, 6.75, 12.25, 9.25], "texture": "#10"}, - "down": {"uv": [11.75, 9.25, 12.25, 6.75], "texture": "#10"} + "north": { + "uv": [ + 12.25, + 6.75, + 11.75, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 12, + 6.75, + 12.25, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.75, + 9, + 12.25, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.75, + 6.75, + 12, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.75, + 6.75, + 12.25, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.75, + 9.25, + 12.25, + 6.75 + ], + "texture": "#10" + } } }, { "name": "yamame_12", - "from": [14, 0, 6.75], - "to": [14.25, 0.25, 9.25], + "from": [ + 14, + 0, + 6.75 + ], + "to": [ + 14.25, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14.25, 6.75, 14, 7], "texture": "#10"}, - "east": {"uv": [14, 6.75, 14.25, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14, 9, 14.25, 9.25], "texture": "#10"}, - "west": {"uv": [14, 6.75, 14.25, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14, 6.75, 14.25, 9.25], "texture": "#10"}, - "down": {"uv": [14, 9.25, 14.25, 6.75], "texture": "#10"} + "north": { + "uv": [ + 14.25, + 6.75, + 14, + 7 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14, + 6.75, + 14.25, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14, + 9, + 14.25, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14, + 6.75, + 14.25, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14, + 6.75, + 14.25, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14, + 9.25, + 14.25, + 6.75 + ], + "texture": "#10" + } } }, { "name": "yamame_13", - "from": [1.75, 0, 7], - "to": [2.5, 0.25, 10], + "from": [ + 1.75, + 0, + 7 + ], + "to": [ + 2.5, + 0.25, + 10 + ], "faces": { - "north": {"uv": [2.5, 7, 1.75, 7.25], "texture": "#10"}, - "east": {"uv": [2.25, 7, 2.5, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [1.75, 9.75, 2.5, 10], "texture": "#10"}, - "west": {"uv": [1.75, 7, 2, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [1.75, 7, 2.5, 10], "texture": "#10"}, - "down": {"uv": [1.75, 10, 2.5, 7], "texture": "#10"} + "north": { + "uv": [ + 2.5, + 7, + 1.75, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 2.25, + 7, + 2.5, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 2.5, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 1.75, + 7, + 2, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 1.75, + 7, + 2.5, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 1.75, + 10, + 2.5, + 7 + ], + "texture": "#10" + } } }, { "name": "yamame_14", - "from": [9.75, 0, 7], - "to": [11.75, 0.25, 9.75], + "from": [ + 9.75, + 0, + 7 + ], + "to": [ + 11.75, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [11.75, 7, 9.75, 7.25], "texture": "#10"}, - "east": {"uv": [11.5, 7, 11.75, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [9.75, 9.5, 11.75, 9.75], "texture": "#10"}, - "west": {"uv": [9.75, 7, 10, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [9.75, 7, 11.75, 9.75], "texture": "#10"}, - "down": {"uv": [9.75, 9.75, 11.75, 7], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 7, + 9.75, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 7, + 11.75, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 9.75, + 9.5, + 11.75, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 9.75, + 7, + 10, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 9.75, + 7, + 11.75, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 9.75, + 9.75, + 11.75, + 7 + ], + "texture": "#10" + } } }, { "name": "yamame_15", - "from": [12.25, 0, 7], - "to": [12.5, 0.25, 9], + "from": [ + 12.25, + 0, + 7 + ], + "to": [ + 12.5, + 0.25, + 9 + ], "faces": { - "north": {"uv": [12.5, 7, 12.25, 7.25], "texture": "#10"}, - "east": {"uv": [12.25, 7, 12.5, 9], "rotation": 90, "texture": "#10"}, - "south": {"uv": [12.25, 8.75, 12.5, 9], "texture": "#10"}, - "west": {"uv": [12.25, 7, 12.5, 9], "rotation": 270, "texture": "#10"}, - "up": {"uv": [12.25, 7, 12.5, 9], "texture": "#10"}, - "down": {"uv": [12.25, 9, 12.5, 7], "texture": "#10"} + "north": { + "uv": [ + 12.5, + 7, + 12.25, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 12.25, + 7, + 12.5, + 9 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 12.25, + 8.75, + 12.5, + 9 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 12.25, + 7, + 12.5, + 9 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 12.25, + 7, + 12.5, + 9 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 12.25, + 9, + 12.5, + 7 + ], + "texture": "#10" + } } }, { "name": "yamame_16", - "from": [13.75, 0, 7], - "to": [14, 0.25, 9.25], + "from": [ + 13.75, + 0, + 7 + ], + "to": [ + 14, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [14, 7, 13.75, 7.25], "texture": "#10"}, - "east": {"uv": [13.75, 7, 14, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [13.75, 9, 14, 9.25], "texture": "#10"}, - "west": {"uv": [13.75, 7, 14, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [13.75, 7, 14, 9.25], "texture": "#10"}, - "down": {"uv": [13.75, 9.25, 14, 7], "texture": "#10"} + "north": { + "uv": [ + 14, + 7, + 13.75, + 7.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 13.75, + 9, + 14, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 13.75, + 7, + 14, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 13.75, + 9.25, + 14, + 7 + ], + "texture": "#10" + } } }, { "name": "yamame_17", - "from": [1.25, 0, 7.25], - "to": [1.75, 0.25, 10], + "from": [ + 1.25, + 0, + 7.25 + ], + "to": [ + 1.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1.25, 7.5], "texture": "#10"}, - "east": {"uv": [1.5, 7.25, 1.75, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [1.25, 9.75, 1.75, 10], "texture": "#10"}, - "west": {"uv": [1.25, 7.25, 1.5, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [1.25, 7.25, 1.75, 10], "texture": "#10"}, - "down": {"uv": [1.25, 10, 1.75, 7.25], "texture": "#10"} + "north": { + "uv": [ + 1.75, + 7.25, + 1.25, + 7.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 1.25, + 9.75, + 1.75, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.5, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 1.25, + 7.25, + 1.75, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 1.25, + 10, + 1.75, + 7.25 + ], + "texture": "#10" + } } }, { "name": "yamame_18", - "from": [12.5, 0, 7.25], - "to": [13.75, 0.25, 9], + "from": [ + 12.5, + 0, + 7.25 + ], + "to": [ + 13.75, + 0.25, + 9 + ], "faces": { - "north": {"uv": [13.75, 7.25, 12.5, 7.5], "texture": "#10"}, - "east": {"uv": [13.5, 7.25, 13.75, 9], "rotation": 90, "texture": "#10"}, - "south": {"uv": [12.5, 8.75, 13.75, 9], "texture": "#10"}, - "west": {"uv": [12.5, 7.25, 12.75, 9], "rotation": 270, "texture": "#10"}, - "up": {"uv": [12.5, 7.25, 13.75, 9], "texture": "#10"}, - "down": {"uv": [12.5, 9, 13.75, 7.25], "texture": "#10"} + "north": { + "uv": [ + 13.75, + 7.25, + 12.5, + 7.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 13.5, + 7.25, + 13.75, + 9 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 12.5, + 8.75, + 13.75, + 9 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 12.5, + 7.25, + 12.75, + 9 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 12.5, + 7.25, + 13.75, + 9 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 12.5, + 9, + 13.75, + 7.25 + ], + "texture": "#10" + } } }, { "name": "yamame_19", - "from": [0.75, 0, 7.5], - "to": [1.25, 0.25, 9.75], + "from": [ + 0.75, + 0, + 7.5 + ], + "to": [ + 1.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [1.25, 7.5, 0.75, 7.75], "texture": "#10"}, - "east": {"uv": [1, 7.5, 1.25, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.75, 9.5, 1.25, 9.75], "texture": "#10"}, - "west": {"uv": [0.75, 7.5, 1, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.75, 7.5, 1.25, 9.75], "texture": "#10"}, - "down": {"uv": [0.75, 9.75, 1.25, 7.5], "texture": "#10"} + "north": { + "uv": [ + 1.25, + 7.5, + 0.75, + 7.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 1, + 7.5, + 1.25, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.75, + 9.5, + 1.25, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.75, + 7.5, + 1, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.75, + 7.5, + 1.25, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.75, + 9.75, + 1.25, + 7.5 + ], + "texture": "#10" + } } }, { "name": "yamame_20", - "from": [14.75, 0, 7.5], - "to": [15.25, 0.25, 7.75], + "from": [ + 14.75, + 0, + 7.5 + ], + "to": [ + 15.25, + 0.25, + 7.75 + ], "faces": { - "north": {"uv": [15.25, 7.5, 14.75, 7.75], "texture": "#10"}, - "east": {"uv": [15, 7.5, 15.25, 7.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.75, 7.5, 15.25, 7.75], "texture": "#10"}, - "west": {"uv": [14.75, 7.5, 15, 7.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.75, 7.5, 15.25, 7.75], "texture": "#10"}, - "down": {"uv": [14.75, 7.75, 15.25, 7.5], "texture": "#10"} + "north": { + "uv": [ + 15.25, + 7.5, + 14.75, + 7.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15, + 7.5, + 15.25, + 7.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.75, + 7.5, + 15.25, + 7.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.75, + 7.5, + 15, + 7.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.75, + 7.5, + 15.25, + 7.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.75, + 7.75, + 15.25, + 7.5 + ], + "texture": "#10" + } } }, { "name": "yamame_21", - "from": [0.5, 0, 7.75], - "to": [0.75, 0.25, 9.5], + "from": [ + 0.5, + 0, + 7.75 + ], + "to": [ + 0.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [0.75, 7.75, 0.5, 8], "texture": "#10"}, - "east": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.5, 9.25, 0.75, 9.5], "texture": "#10"}, - "west": {"uv": [0.5, 7.75, 0.75, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.5, 7.75, 0.75, 9.5], "texture": "#10"}, - "down": {"uv": [0.5, 9.5, 0.75, 7.75], "texture": "#10"} + "north": { + "uv": [ + 0.75, + 7.75, + 0.5, + 8 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.75, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0.75, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0.75, + 7.75 + ], + "texture": "#10" + } } }, { "name": "yamame_22", - "from": [14.75, 0, 7.75], - "to": [15, 0.25, 9.75], + "from": [ + 14.75, + 0, + 7.75 + ], + "to": [ + 15, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15, 7.75, 14.75, 8], "texture": "#10"}, - "east": {"uv": [14.75, 7.75, 15, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [14.75, 9.5, 15, 9.75], "texture": "#10"}, - "west": {"uv": [14.75, 7.75, 15, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [14.75, 7.75, 15, 9.75], "texture": "#10"}, - "down": {"uv": [14.75, 9.75, 15, 7.75], "texture": "#10"} + "north": { + "uv": [ + 15, + 7.75, + 14.75, + 8 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 14.75, + 7.75, + 15, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 14.75, + 9.5, + 15, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 14.75, + 7.75, + 15, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 14.75, + 7.75, + 15, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 14.75, + 9.75, + 15, + 7.75 + ], + "texture": "#10" + } } }, { "name": "yamame_23", - "from": [0.25, 0, 8], - "to": [0.5, 0.25, 8.5], + "from": [ + 0.25, + 0, + 8 + ], + "to": [ + 0.5, + 0.25, + 8.5 + ], "faces": { - "north": {"uv": [0.5, 8, 0.25, 8.25], "texture": "#10"}, - "east": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.25, 8.25, 0.5, 8.5], "texture": "#10"}, - "west": {"uv": [0.25, 8, 0.5, 8.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.25, 8, 0.5, 8.5], "texture": "#10"}, - "down": {"uv": [0.25, 8.5, 0.5, 8], "texture": "#10"} + "north": { + "uv": [ + 0.5, + 8, + 0.25, + 8.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.5, + 8.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.25, + 8, + 0.5, + 8.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.25, + 8.5, + 0.5, + 8 + ], + "texture": "#10" + } } }, { "name": "yamame_24", - "from": [15, 0, 8.25], - "to": [15.25, 0.25, 9.75], + "from": [ + 15, + 0, + 8.25 + ], + "to": [ + 15.25, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.25, 8.25, 15, 8.5], "texture": "#10"}, - "east": {"uv": [15, 8.25, 15.25, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15, 9.5, 15.25, 9.75], "texture": "#10"}, - "west": {"uv": [15, 8.25, 15.25, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15, 8.25, 15.25, 9.75], "texture": "#10"}, - "down": {"uv": [15, 9.75, 15.25, 8.25], "texture": "#10"} + "north": { + "uv": [ + 15.25, + 8.25, + 15, + 8.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15, + 8.25, + 15.25, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15, + 9.5, + 15.25, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15, + 8.25, + 15.25, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15, + 8.25, + 15.25, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15, + 9.75, + 15.25, + 8.25 + ], + "texture": "#10" + } } }, { "name": "yamame_25", - "from": [15.25, 0, 8.5], - "to": [15.5, 0.25, 9.75], + "from": [ + 15.25, + 0, + 8.5 + ], + "to": [ + 15.5, + 0.25, + 9.75 + ], "faces": { - "north": {"uv": [15.5, 8.5, 15.25, 8.75], "texture": "#10"}, - "east": {"uv": [15.25, 8.5, 15.5, 9.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.25, 9.5, 15.5, 9.75], "texture": "#10"}, - "west": {"uv": [15.25, 8.5, 15.5, 9.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.25, 8.5, 15.5, 9.75], "texture": "#10"}, - "down": {"uv": [15.25, 9.75, 15.5, 8.5], "texture": "#10"} + "north": { + "uv": [ + 15.5, + 8.5, + 15.25, + 8.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.25, + 8.5, + 15.5, + 9.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.25, + 9.5, + 15.5, + 9.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.25, + 8.5, + 15.5, + 9.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.25, + 8.5, + 15.5, + 9.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.25, + 9.75, + 15.5, + 8.5 + ], + "texture": "#10" + } } }, { "name": "yamame_26", - "from": [0.25, 0, 8.75], - "to": [0.5, 0.25, 9.25], + "from": [ + 0.25, + 0, + 8.75 + ], + "to": [ + 0.5, + 0.25, + 9.25 + ], "faces": { - "north": {"uv": [0.5, 8.75, 0.25, 9], "texture": "#10"}, - "east": {"uv": [0.25, 8.75, 0.5, 9.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [0.25, 9, 0.5, 9.25], "texture": "#10"}, - "west": {"uv": [0.25, 8.75, 0.5, 9.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [0.25, 8.75, 0.5, 9.25], "texture": "#10"}, - "down": {"uv": [0.25, 9.25, 0.5, 8.75], "texture": "#10"} + "north": { + "uv": [ + 0.5, + 8.75, + 0.25, + 9 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 0.25, + 9, + 0.5, + 9.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 0.25, + 8.75, + 0.5, + 9.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0.25, + 9.25, + 0.5, + 8.75 + ], + "texture": "#10" + } } }, { "name": "yamame_27", - "from": [11.75, 0, 9.25], - "to": [12, 0.25, 10.5], + "from": [ + 11.75, + 0, + 9.25 + ], + "to": [ + 12, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [12, 9.25, 11.75, 9.5], "texture": "#10"}, - "east": {"uv": [11.75, 9.25, 12, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.75, 10.25, 12, 10.5], "texture": "#10"}, - "west": {"uv": [11.75, 9.25, 12, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.75, 9.25, 12, 10.5], "texture": "#10"}, - "down": {"uv": [11.75, 10.5, 12, 9.25], "texture": "#10"} + "north": { + "uv": [ + 12, + 9.25, + 11.75, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.75, + 9.25, + 12, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.75, + 10.25, + 12, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.75, + 9.25, + 12, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.75, + 9.25, + 12, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.75, + 10.5, + 12, + 9.25 + ], + "texture": "#10" + } } }, { "name": "yamame_28", - "from": [15.5, 0, 9.25], - "to": [15.75, 0.25, 9.5], + "from": [ + 15.5, + 0, + 9.25 + ], + "to": [ + 15.75, + 0.25, + 9.5 + ], "faces": { - "north": {"uv": [15.75, 9.25, 15.5, 9.5], "texture": "#10"}, - "east": {"uv": [15.5, 9.25, 15.75, 9.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [15.5, 9.25, 15.75, 9.5], "texture": "#10"}, - "west": {"uv": [15.5, 9.25, 15.75, 9.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [15.5, 9.25, 15.75, 9.5], "texture": "#10"}, - "down": {"uv": [15.5, 9.5, 15.75, 9.25], "texture": "#10"} + "north": { + "uv": [ + 15.75, + 9.25, + 15.5, + 9.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 15.5, + 9.25, + 15.75, + 9.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 15.5, + 9.5, + 15.75, + 9.25 + ], + "texture": "#10" + } } }, { "name": "yamame_29", - "from": [10.25, 0, 9.75], - "to": [11.75, 0.25, 10], + "from": [ + 10.25, + 0, + 9.75 + ], + "to": [ + 11.75, + 0.25, + 10 + ], "faces": { - "north": {"uv": [11.75, 9.75, 10.25, 10], "texture": "#10"}, - "east": {"uv": [11.5, 9.75, 11.75, 10], "rotation": 90, "texture": "#10"}, - "south": {"uv": [10.25, 9.75, 11.75, 10], "texture": "#10"}, - "west": {"uv": [10.25, 9.75, 10.5, 10], "rotation": 270, "texture": "#10"}, - "up": {"uv": [10.25, 9.75, 11.75, 10], "texture": "#10"}, - "down": {"uv": [10.25, 10, 11.75, 9.75], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 9.75, + 10.25, + 10 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 9.75, + 11.75, + 10 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 10.25, + 9.75, + 11.75, + 10 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 10.25, + 9.75, + 10.5, + 10 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 10.25, + 9.75, + 11.75, + 10 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 10.25, + 10, + 11.75, + 9.75 + ], + "texture": "#10" + } } }, { "name": "yamame_30", - "from": [2.25, 0, 10], - "to": [2.5, 0.25, 10.25], + "from": [ + 2.25, + 0, + 10 + ], + "to": [ + 2.5, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [2.5, 10, 2.25, 10.25], "texture": "#10"}, - "east": {"uv": [2.25, 10, 2.5, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#10"}, - "west": {"uv": [2.25, 10, 2.5, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [2.25, 10, 2.5, 10.25], "texture": "#10"}, - "down": {"uv": [2.25, 10.25, 2.5, 10], "texture": "#10"} + "north": { + "uv": [ + 2.5, + 10, + 2.25, + 10.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 2.25, + 10, + 2.5, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 2.25, + 10.25, + 2.5, + 10 + ], + "texture": "#10" + } } }, { "name": "yamame_31", - "from": [8.75, 0, 10], - "to": [9, 0.25, 11], + "from": [ + 8.75, + 0, + 10 + ], + "to": [ + 9, + 0.25, + 11 + ], "faces": { - "north": {"uv": [9, 10, 8.75, 10.25], "texture": "#10"}, - "east": {"uv": [8.75, 10, 9, 11], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8.75, 10.75, 9, 11], "texture": "#10"}, - "west": {"uv": [8.75, 10, 9, 11], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8.75, 10, 9, 11], "texture": "#10"}, - "down": {"uv": [8.75, 11, 9, 10], "texture": "#10"} + "north": { + "uv": [ + 9, + 10, + 8.75, + 10.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8.75, + 10, + 9, + 11 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8.75, + 10.75, + 9, + 11 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8.75, + 10, + 9, + 11 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8.75, + 10, + 9, + 11 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8.75, + 11, + 9, + 10 + ], + "texture": "#10" + } } }, { "name": "yamame_32", - "from": [10.5, 0, 10], - "to": [11.75, 0.25, 10.25], + "from": [ + 10.5, + 0, + 10 + ], + "to": [ + 11.75, + 0.25, + 10.25 + ], "faces": { - "north": {"uv": [11.75, 10, 10.5, 10.25], "texture": "#10"}, - "east": {"uv": [11.5, 10, 11.75, 10.25], "rotation": 90, "texture": "#10"}, - "south": {"uv": [10.5, 10, 11.75, 10.25], "texture": "#10"}, - "west": {"uv": [10.5, 10, 10.75, 10.25], "rotation": 270, "texture": "#10"}, - "up": {"uv": [10.5, 10, 11.75, 10.25], "texture": "#10"}, - "down": {"uv": [10.5, 10.25, 11.75, 10], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 10, + 10.5, + 10.25 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 10, + 11.75, + 10.25 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 10.5, + 10, + 11.75, + 10.25 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 10.5, + 10, + 10.75, + 10.25 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 10.5, + 10, + 11.75, + 10.25 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 10.5, + 10.25, + 11.75, + 10 + ], + "texture": "#10" + } } }, { "name": "yamame_33", - "from": [4, 0, 10.25], - "to": [5.5, 0.25, 10.5], + "from": [ + 4, + 0, + 10.25 + ], + "to": [ + 5.5, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [5.5, 10.25, 4, 10.5], "texture": "#10"}, - "east": {"uv": [5.25, 10.25, 5.5, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [4, 10.25, 5.5, 10.5], "texture": "#10"}, - "west": {"uv": [4, 10.25, 4.25, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [4, 10.25, 5.5, 10.5], "texture": "#10"}, - "down": {"uv": [4, 10.5, 5.5, 10.25], "texture": "#10"} + "north": { + "uv": [ + 5.5, + 10.25, + 4, + 10.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 5.25, + 10.25, + 5.5, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 4, + 10.25, + 5.5, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 4, + 10.25, + 4.25, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 4, + 10.25, + 5.5, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 4, + 10.5, + 5.5, + 10.25 + ], + "texture": "#10" + } } }, { "name": "yamame_34", - "from": [7.5, 0, 10.25], - "to": [8.25, 0.25, 10.5], + "from": [ + 7.5, + 0, + 10.25 + ], + "to": [ + 8.25, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [8.25, 10.25, 7.5, 10.5], "texture": "#10"}, - "east": {"uv": [8, 10.25, 8.25, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7.5, 10.25, 8.25, 10.5], "texture": "#10"}, - "west": {"uv": [7.5, 10.25, 7.75, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7.5, 10.25, 8.25, 10.5], "texture": "#10"}, - "down": {"uv": [7.5, 10.5, 8.25, 10.25], "texture": "#10"} + "north": { + "uv": [ + 8.25, + 10.25, + 7.5, + 10.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8, + 10.25, + 8.25, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7.5, + 10.25, + 7.75, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7.5, + 10.25, + 8.25, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 8.25, + 10.25 + ], + "texture": "#10" + } } }, { "name": "yamame_35", - "from": [11, 0, 10.25], - "to": [11.75, 0.25, 10.5], + "from": [ + 11, + 0, + 10.25 + ], + "to": [ + 11.75, + 0.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 10.25, 11, 10.5], "texture": "#10"}, - "east": {"uv": [11.5, 10.25, 11.75, 10.5], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11, 10.25, 11.75, 10.5], "texture": "#10"}, - "west": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11, 10.25, 11.75, 10.5], "texture": "#10"}, - "down": {"uv": [11, 10.5, 11.75, 10.25], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 10.25, + 11, + 10.5 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.75, + 10.5 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11, + 10.25, + 11.75, + 10.5 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.75, + 10.25 + ], + "texture": "#10" + } } }, { "name": "yamame_36", - "from": [4.25, 0, 10.5], - "to": [5.5, 0.25, 10.75], + "from": [ + 4.25, + 0, + 10.5 + ], + "to": [ + 5.5, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [5.5, 10.5, 4.25, 10.75], "texture": "#10"}, - "east": {"uv": [5.25, 10.5, 5.5, 10.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [4.25, 10.5, 5.5, 10.75], "texture": "#10"}, - "west": {"uv": [4.25, 10.5, 4.5, 10.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [4.25, 10.5, 5.5, 10.75], "texture": "#10"}, - "down": {"uv": [4.25, 10.75, 5.5, 10.5], "texture": "#10"} + "north": { + "uv": [ + 5.5, + 10.5, + 4.25, + 10.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 5.25, + 10.5, + 5.5, + 10.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 4.25, + 10.5, + 4.5, + 10.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 4.25, + 10.5, + 5.5, + 10.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 4.25, + 10.75, + 5.5, + 10.5 + ], + "texture": "#10" + } } }, { "name": "yamame_37", - "from": [7.75, 0, 10.5], - "to": [8.25, 0.25, 10.75], + "from": [ + 7.75, + 0, + 10.5 + ], + "to": [ + 8.25, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [8.25, 10.5, 7.75, 10.75], "texture": "#10"}, - "east": {"uv": [8, 10.5, 8.25, 10.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [7.75, 10.5, 8.25, 10.75], "texture": "#10"}, - "west": {"uv": [7.75, 10.5, 8, 10.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [7.75, 10.5, 8.25, 10.75], "texture": "#10"}, - "down": {"uv": [7.75, 10.75, 8.25, 10.5], "texture": "#10"} + "north": { + "uv": [ + 8.25, + 10.5, + 7.75, + 10.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8, + 10.5, + 8.25, + 10.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 7.75, + 10.5, + 8.25, + 10.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 7.75, + 10.5, + 8, + 10.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 7.75, + 10.5, + 8.25, + 10.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 7.75, + 10.75, + 8.25, + 10.5 + ], + "texture": "#10" + } } }, { "name": "yamame_38", - "from": [11.5, 0, 10.5], - "to": [11.75, 0.25, 10.75], + "from": [ + 11.5, + 0, + 10.5 + ], + "to": [ + 11.75, + 0.25, + 10.75 + ], "faces": { - "north": {"uv": [11.75, 10.5, 11.5, 10.75], "texture": "#10"}, - "east": {"uv": [11.5, 10.5, 11.75, 10.75], "rotation": 90, "texture": "#10"}, - "south": {"uv": [11.5, 10.5, 11.75, 10.75], "texture": "#10"}, - "west": {"uv": [11.5, 10.5, 11.75, 10.75], "rotation": 270, "texture": "#10"}, - "up": {"uv": [11.5, 10.5, 11.75, 10.75], "texture": "#10"}, - "down": {"uv": [11.5, 10.75, 11.75, 10.5], "texture": "#10"} + "north": { + "uv": [ + 11.75, + 10.5, + 11.5, + 10.75 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 11.5, + 10.5, + 11.75, + 10.75 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 11.5, + 10.75, + 11.75, + 10.5 + ], + "texture": "#10" + } } }, { "name": "yamame_39", - "from": [4.5, 0, 10.75], - "to": [5.25, 0.25, 11], + "from": [ + 4.5, + 0, + 10.75 + ], + "to": [ + 5.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [5.25, 10.75, 4.5, 11], "texture": "#10"}, - "east": {"uv": [5, 10.75, 5.25, 11], "rotation": 90, "texture": "#10"}, - "south": {"uv": [4.5, 10.75, 5.25, 11], "texture": "#10"}, - "west": {"uv": [4.5, 10.75, 4.75, 11], "rotation": 270, "texture": "#10"}, - "up": {"uv": [4.5, 10.75, 5.25, 11], "texture": "#10"}, - "down": {"uv": [4.5, 11, 5.25, 10.75], "texture": "#10"} + "north": { + "uv": [ + 5.25, + 10.75, + 4.5, + 11 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 5, + 10.75, + 5.25, + 11 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 4.5, + 10.75, + 5.25, + 11 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 4.5, + 10.75, + 4.75, + 11 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 4.5, + 10.75, + 5.25, + 11 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 4.5, + 11, + 5.25, + 10.75 + ], + "texture": "#10" + } } }, { "name": "yamame_40", - "from": [8, 0, 10.75], - "to": [8.25, 0.25, 11], + "from": [ + 8, + 0, + 10.75 + ], + "to": [ + 8.25, + 0.25, + 11 + ], "faces": { - "north": {"uv": [8.25, 10.75, 8, 11], "texture": "#10"}, - "east": {"uv": [8, 10.75, 8.25, 11], "rotation": 90, "texture": "#10"}, - "south": {"uv": [8, 10.75, 8.25, 11], "texture": "#10"}, - "west": {"uv": [8, 10.75, 8.25, 11], "rotation": 270, "texture": "#10"}, - "up": {"uv": [8, 10.75, 8.25, 11], "texture": "#10"}, - "down": {"uv": [8, 11, 8.25, 10.75], "texture": "#10"} + "north": { + "uv": [ + 8.25, + 10.75, + 8, + 11 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "rotation": 90, + "texture": "#10" + }, + "south": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "rotation": 270, + "texture": "#10" + }, + "up": { + "uv": [ + 8, + 10.75, + 8.25, + 11 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 8, + 11, + 8.25, + 10.75 + ], + "texture": "#10" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 2, 5.5], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 2, + 5.5 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "thirdperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 2, 5.5], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 2, + 5.5 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "firstperson_righthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 2, 5.5], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 2, + 5.5 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "firstperson_lefthand": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 2, 5.5], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 2, + 5.5 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "ground": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 2, 5.5], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 2, + 5.5 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 17.5], - "scale": [1.06, 1.06, 1.06] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 17.5 + ], + "scale": [ + 1.06, + 1.06, + 1.06 + ] }, "head": { - "rotation": [81, -2.75, 1.75], - "translation": [-1, 7.75, -1], - "scale": [0.61, 0.61, 0.61] + "rotation": [ + 81, + -2.75, + 1.75 + ], + "translation": [ + -1, + 7.75, + -1 + ], + "scale": [ + 0.61, + 0.61, + 0.61 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [-0.5, 0.25, 9.75], - "scale": [1.28, 1.28, 1.28] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -0.5, + 0.25, + 9.75 + ], + "scale": [ + 1.28, + 1.28, + 1.28 + ] } }, "groups": [ { "name": "yamame", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/apple_candy.json b/pack/assets/minecraft/models/foods/apple_candy.json index f0abc7be..1d77994e 100644 --- a/pack/assets/minecraft/models/foods/apple_candy.json +++ b/pack/assets/minecraft/models/foods/apple_candy.json @@ -1,85 +1,318 @@ { "credit": "Made with Blockbench", "textures": { - "0": "skins/heads", + "0": "item/skins/heads", "1": "block/oak_planks", - "particle": "skins/heads" + "particle": "item/skins/heads" }, "elements": [ { - "from": [6, 11, 6], - "to": [10, 15, 10], + "from": [ + 6, + 11, + 6 + ], + "to": [ + 10, + 15, + 10 + ], "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, - "east": {"uv": [4, 2, 6, 4], "texture": "#0"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#0"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#0"}, - "up": {"uv": [2, 0, 4, 2], "texture": "#0"}, - "down": {"uv": [4, 0, 6, 2], "texture": "#0"} + "north": { + "uv": [ + 2, + 2, + 4, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 2, + 6, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 2, + 8, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 6, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 0, + 4, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 0, + 6, + 2 + ], + "texture": "#0" + } } }, { - "from": [5.9, 10.9, 5.9], - "to": [10.1, 15.1, 10.1], + "from": [ + 5.9, + 10.9, + 5.9 + ], + "to": [ + 10.1, + 15.1, + 10.1 + ], "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#0"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#0"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#0"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#0"}, - "down": {"uv": [12, 0, 14, 2], "texture": "#0"} + "north": { + "uv": [ + 10, + 2, + 12, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 2, + 10, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 2, + 16, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 2, + 14, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 0, + 14, + 2 + ], + "texture": "#0" + } } }, { - "from": [7.9, 0, 7.9], - "to": [8.1, 11, 8.1], + "from": [ + 7.9, + 0, + 7.9 + ], + "to": [ + 8.1, + 11, + 8.1 + ], "faces": { - "north": {"uv": [0, 0, 0.2, 11], "texture": "#1"}, - "east": {"uv": [0, 0, 0.2, 11], "texture": "#1"}, - "south": {"uv": [0, 0, 0.2, 11], "texture": "#1"}, - "west": {"uv": [0, 0, 0.2, 11], "texture": "#1"}, - "up": {"uv": [0, 0, 0.2, 0.2], "texture": "#1"}, - "down": {"uv": [0, 0, 0.2, 0.2], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 0.2, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.2, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0.2, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.2, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.2, + 0.2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0.2, + 0.2 + ], + "texture": "#1" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 4, 1], - "scale": [0.5, 0.5, 0.5] + "translation": [ + 0, + 4, + 1 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "thirdperson_lefthand": { - "translation": [0, 4, 1], - "scale": [0.5, 0.5, 0.5] + "translation": [ + 0, + 4, + 1 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_righthand": { - "translation": [0, 4, 1.5], - "scale": [0.5, 0.5, 0.5] + "translation": [ + 0, + 4, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "translation": [0, 4, 1.5], - "scale": [0.5, 0.5, 0.5] + "translation": [ + 0, + 4, + 1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "translation": [0, 6, 0] + "translation": [ + 0, + 6, + 0 + ] }, "gui": { - "rotation": [0, -20.75, -28.25] + "rotation": [ + 0, + -20.75, + -28.25 + ] }, "head": { - "rotation": [90, 0, 0], - "translation": [0, -4.25, -13.25] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -4.25, + -13.25 + ] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -8] + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 0, + -8 + ] } }, "groups": [ { "name": "apple", - "origin": [0, 0, 0], + "origin": [ + 0, + 0, + 0 + ], "color": 0, - "children": [0, 1] - }, 2] + "children": [ + 0, + 1 + ] + }, + 2 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/baby_castella_l.json b/pack/assets/minecraft/models/foods/baby_castella_l.json index 93df033d..73de77d8 100644 --- a/pack/assets/minecraft/models/foods/baby_castella_l.json +++ b/pack/assets/minecraft/models/foods/baby_castella_l.json @@ -3,706 +3,3970 @@ "textures": { "0": "block/white_stained_glass", "1": "block/sponge", - "2": "skins/mobs/pig", + "2": "item/skins/mobs/pig", "particle": "block/white_stained_glass" }, "elements": [ { - "from": [5.5, 6, 5.4], - "to": [10.5, 7, 5.8], + "from": [ + 5.5, + 6, + 5.4 + ], + "to": [ + 10.5, + 7, + 5.8 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [10.3, 6, 5.6], - "to": [10.7, 7, 10.6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.5, 5.5]}, + "from": [ + 10.3, + 6, + 5.6 + ], + "to": [ + 10.7, + 7, + 10.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 5.5 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.3, 6, 5.6], - "to": [5.7, 7, 10.6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.5, 5.5]}, + "from": [ + 5.3, + 6, + 5.6 + ], + "to": [ + 5.7, + 7, + 10.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 5.5 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.5, 6, 10.4], - "to": [10.5, 7, 10.8], + "from": [ + 5.5, + 6, + 10.4 + ], + "to": [ + 10.5, + 7, + 10.8 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [2.12771, 6, 13.54142], - "to": [2.32771, 7, 13.82142], - "rotation": {"angle": -45, "axis": "y", "origin": [13.64142, 15, 13.54142]}, + "from": [ + 2.12771, + 6, + 13.54142 + ], + "to": [ + 2.32771, + 7, + 13.82142 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 13.64142, + 15, + 13.54142 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6.88629, 6, 18.47858], - "to": [7.28629, 7, 18.75858], - "rotation": {"angle": -45, "axis": "y", "origin": [18.5, 14.5, 18.65858]}, + "from": [ + 6.88629, + 6, + 18.47858 + ], + "to": [ + 7.28629, + 7, + 18.75858 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 18.5, + 14.5, + 18.65858 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [10.39029, 6, 5.47172], - "to": [10.67029, 7, 5.87172], - "rotation": {"angle": -45, "axis": "y", "origin": [10.53029, 6.5, 5.57172]}, + "from": [ + 10.39029, + 6, + 5.47172 + ], + "to": [ + 10.67029, + 7, + 5.87172 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.53029, + 6.5, + 5.57172 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.33172, 6, 10.33029], - "to": [5.61172, 7, 10.73029], - "rotation": {"angle": -45, "axis": "y", "origin": [5.47172, 6.5, 10.63029]}, + "from": [ + 5.33172, + 6, + 10.33029 + ], + "to": [ + 5.61172, + 7, + 10.73029 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 5.47172, + 6.5, + 10.63029 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.5, 7, 5.6], - "to": [10.5, 7.9, 10.6], + "from": [ + 5.5, + 7, + 5.6 + ], + "to": [ + 10.5, + 7.9, + 10.6 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [5.7, 7.9, 5.8], - "to": [10.3, 8.4, 10.4], + "from": [ + 5.7, + 7.9, + 5.8 + ], + "to": [ + 10.3, + 8.4, + 10.4 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [6.1, 8.4, 6.3], - "to": [9.9, 8.7, 10], + "from": [ + 6.1, + 8.4, + 6.3 + ], + "to": [ + 9.9, + 8.7, + 10 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [6, 0, 6.1], - "to": [10, 0.3, 10.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0.15, 8]}, + "from": [ + 6, + 0, + 6.1 + ], + "to": [ + 10, + 0.3, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0.15, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "east": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "west": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } } }, { - "from": [5.7, 0, 6.1], - "to": [6, 6, 10.1], - "rotation": {"angle": 0, "axis": "z", "origin": [5.85, 0, 7.6]}, + "from": [ + 5.7, + 0, + 6.1 + ], + "to": [ + 6, + 6, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.85, + 0, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6, 0, 5.8], - "to": [10, 6, 6.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 0, 5.95]}, + "from": [ + 6, + 0, + 5.8 + ], + "to": [ + 10, + 6, + 6.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 0, + 5.95 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [10, 0, 6.1], - "to": [10.3, 6, 10.1], - "rotation": {"angle": 0, "axis": "y", "origin": [10.15, 0, 7.6]}, + "from": [ + 10, + 0, + 6.1 + ], + "to": [ + 10.3, + 6, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.15, + 0, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6, 0, 10.1], - "to": [10, 6, 10.4], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 10.25]}, + "from": [ + 6, + 0, + 10.1 + ], + "to": [ + 10, + 6, + 10.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5, + 0, + 10.25 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.85, 0, 5.86213], - "to": [6.15, 6, 6.28213], - "rotation": {"angle": -45, "axis": "y", "origin": [6, 3, 6.01213]}, + "from": [ + 5.85, + 0, + 5.86213 + ], + "to": [ + 6.15, + 6, + 6.28213 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 6, + 3, + 6.01213 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [9.93787, 0, 9.95], - "to": [10.23787, 6, 10.37], - "rotation": {"angle": -45, "axis": "y", "origin": [10.08787, 3, 10.1]}, + "from": [ + 9.93787, + 0, + 9.95 + ], + "to": [ + 10.23787, + 6, + 10.37 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.08787, + 3, + 10.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.42], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 0.42], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 0.42, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.42, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.42 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 0.42 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.42, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.42, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [9.81485, 0, 5.94698], - "to": [10.23485, 6, 6.24698], - "rotation": {"angle": -45, "axis": "y", "origin": [10.08485, 3, 6.09698]}, + "from": [ + 9.81485, + 0, + 5.94698 + ], + "to": [ + 10.23485, + 6, + 6.24698 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.08485, + 3, + 6.09698 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.72698, 0, 10.03485], - "to": [6.14698, 6, 10.33485], - "rotation": {"angle": -45, "axis": "y", "origin": [5.99698, 3, 10.18485]}, + "from": [ + 5.72698, + 0, + 10.03485 + ], + "to": [ + 6.14698, + 6, + 10.33485 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 5.99698, + 3, + 10.18485 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6.3, 0.3, 6.3], - "to": [7.3, 1.3, 7.3], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.8, 0.8, 6.8]}, + "from": [ + 6.3, + 0.3, + 6.3 + ], + "to": [ + 7.3, + 1.3, + 7.3 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.8, + 0.8, + 6.8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.5, 0.3, 6.7], - "to": [8.5, 1.3, 7.7], + "from": [ + 7.5, + 0.3, + 6.7 + ], + "to": [ + 8.5, + 1.3, + 7.7 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.8, 0.3, 6.5], - "to": [9.8, 1.3, 7.5], + "from": [ + 8.8, + 0.3, + 6.5 + ], + "to": [ + 9.8, + 1.3, + 7.5 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.7, 0.3, 7.9], - "to": [9.7, 1.3, 8.9], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9.2, 0.8, 8.4]}, + "from": [ + 8.7, + 0.3, + 7.9 + ], + "to": [ + 9.7, + 1.3, + 8.9 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.2, + 0.8, + 8.4 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.8, 0.3, 7.8], - "to": [7.8, 1.3, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6.8, + 0.3, + 7.8 + ], + "to": [ + 7.8, + 1.3, + 8.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.6, 0.3, 8.9], - "to": [8.6, 1.3, 9.9], + "from": [ + 7.6, + 0.3, + 8.9 + ], + "to": [ + 8.6, + 1.3, + 9.9 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.3, 0.3, 8.9], - "to": [7.3, 1.3, 9.9], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.8, 0.8, 9.4]}, + "from": [ + 6.3, + 0.3, + 8.9 + ], + "to": [ + 7.3, + 1.3, + 9.9 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.8, + 0.8, + 9.4 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.9, 1.3, 8.6], - "to": [7.9, 2.3, 9.6], + "from": [ + 6.9, + 1.3, + 8.6 + ], + "to": [ + 7.9, + 2.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.3, 1.3, 8.6], - "to": [9.3, 2.3, 9.6], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.8, 1.8, 9.1]}, + "from": [ + 8.3, + 1.3, + 8.6 + ], + "to": [ + 9.3, + 2.3, + 9.6 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.8, + 1.8, + 9.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.6, 1.3, 7.3], - "to": [9.6, 2.3, 8.3], + "from": [ + 8.6, + 1.3, + 7.3 + ], + "to": [ + 9.6, + 2.3, + 8.3 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.2, 1.3, 6.2], - "to": [9.2, 2.3, 7.2], + "from": [ + 8.2, + 1.3, + 6.2 + ], + "to": [ + 9.2, + 2.3, + 7.2 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.1, 1.3, 6.4], - "to": [8.1, 2.3, 7.4], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 7.1, + 1.3, + 6.4 + ], + "to": [ + 8.1, + 2.3, + 7.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.1, 1.3, 7.5], - "to": [8.1, 2.3, 8.5], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.6, 1.8, 8]}, + "from": [ + 7.1, + 1.3, + 7.5 + ], + "to": [ + 8.1, + 2.3, + 8.5 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.6, + 1.8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [5.9, 1.3, 7.5], - "to": [6.9, 2.3, 8.5], + "from": [ + 5.9, + 1.3, + 7.5 + ], + "to": [ + 6.9, + 2.3, + 8.5 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6, 1.3, 6.2], - "to": [7, 2.3, 7.2], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6, + 1.3, + 6.2 + ], + "to": [ + 7, + 2.3, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [9, 2.3, 6.2], - "to": [10, 3.3, 7.2], + "from": [ + 9, + 2.3, + 6.2 + ], + "to": [ + 10, + 3.3, + 7.2 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [9, 2.3, 8.8], - "to": [10, 3.3, 9.8], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9.5, 2.8, 9.3]}, + "from": [ + 9, + 2.3, + 8.8 + ], + "to": [ + 10, + 3.3, + 9.8 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.5, + 2.8, + 9.3 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.8, 2.3, 8.6], - "to": [8.8, 3.3, 9.6], + "from": [ + 7.8, + 2.3, + 8.6 + ], + "to": [ + 8.8, + 3.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.3, 2.3, 7.5], - "to": [9.3, 3.3, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 8.3, + 2.3, + 7.5 + ], + "to": [ + 9.3, + 3.3, + 8.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.4, 2.3, 6.2], - "to": [8.4, 3.3, 7.2], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.9, 2.8, 6.7]}, + "from": [ + 7.4, + 2.3, + 6.2 + ], + "to": [ + 8.4, + 3.3, + 7.2 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.9, + 2.8, + 6.7 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.2, 2.3, 7.4], - "to": [8.2, 3.3, 8.4], - "rotation": {"angle": -22.5, "axis": "y", "origin": [7.7, 2.8, 7.9]}, + "from": [ + 7.2, + 2.3, + 7.4 + ], + "to": [ + 8.2, + 3.3, + 8.4 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 7.7, + 2.8, + 7.9 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 2.3, 6.7], - "to": [7.1, 3.3, 7.7], + "from": [ + 6.1, + 2.3, + 6.7 + ], + "to": [ + 7.1, + 3.3, + 7.7 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 3.3, 7.5], - "to": [7.1, 4.3, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6.1, + 3.3, + 7.5 + ], + "to": [ + 7.1, + 4.3, + 8.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 2.2, 8.6], - "to": [7.1, 3.2, 9.6], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.6, 2.7, 9.1]}, + "from": [ + 6.1, + 2.2, + 8.6 + ], + "to": [ + 7.1, + 3.2, + 9.6 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.6, + 2.7, + 9.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.7, 3.3, 8.6], - "to": [7.7, 4.3, 9.6], + "from": [ + 6.7, + 3.3, + 8.6 + ], + "to": [ + 7.7, + 4.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.1, 3.3, 8.3], - "to": [9.1, 4.3, 9.3], + "from": [ + 8.1, + 3.3, + 8.3 + ], + "to": [ + 9.1, + 4.3, + 9.3 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.8, 3.3, 7.1], - "to": [9.8, 4.3, 8.1], - "rotation": {"angle": -22.5, "axis": "y", "origin": [9.3, 3.8, 7.6]}, + "from": [ + 8.8, + 3.3, + 7.1 + ], + "to": [ + 9.8, + 4.3, + 8.1 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 9.3, + 3.8, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.5, 3.3, 6.4], - "to": [8.5, 4.3, 7.4], + "from": [ + 7.5, + 3.3, + 6.4 + ], + "to": [ + 8.5, + 4.3, + 7.4 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.4, 3.3, 7.5], - "to": [8.4, 4.3, 8.5], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.9, 3.8, 8]}, + "from": [ + 7.4, + 3.3, + 7.5 + ], + "to": [ + 8.4, + 4.3, + 8.5 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.9, + 3.8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7, 3.7, 5.7], - "to": [9, 5.05, 5.8], + "from": [ + 7, + 3.7, + 5.7 + ], + "to": [ + 9, + 5.05, + 5.8 + ], "faces": { - "north": {"uv": [4, 4, 5.5, 5], "texture": "#2"}, - "east": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "south": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "west": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "up": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "down": {"uv": [8, 8, 11, 10], "texture": "#2"} + "north": { + "uv": [ + 4, + 4, + 5.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [0, -90, 0], - "translation": [0, 16, 1.25], - "scale": [2, 2, 2] + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 16, + 1.25 + ], + "scale": [ + 2, + 2, + 2 + ] }, "thirdperson_lefthand": { - "rotation": [0, -90, 0], - "translation": [0, 16, 1.25], - "scale": [2, 2, 2] + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 16, + 1.25 + ], + "scale": [ + 2, + 2, + 2 + ] }, "firstperson_righthand": { - "rotation": [0, 131.25, 0], - "translation": [0, 15.75, 2], - "scale": [2, 2, 2] + "rotation": [ + 0, + 131.25, + 0 + ], + "translation": [ + 0, + 15.75, + 2 + ], + "scale": [ + 2, + 2, + 2 + ] }, "firstperson_lefthand": { - "rotation": [0, 131.25, 0], - "translation": [0, 15.75, 2], - "scale": [2, 2, 2] + "rotation": [ + 0, + 131.25, + 0 + ], + "translation": [ + 0, + 15.75, + 2 + ], + "scale": [ + 2, + 2, + 2 + ] }, "ground": { - "translation": [0, 30.25, 0], - "scale": [4, 4, 4] + "translation": [ + 0, + 30.25, + 0 + ], + "scale": [ + 4, + 4, + 4 + ] }, "gui": { - "rotation": [25, 135, 0], - "translation": [0, 11.25, 0], - "scale": [3.18555, 3.18555, 3.18555] + "rotation": [ + 25, + 135, + 0 + ], + "translation": [ + 0, + 11.25, + 0 + ], + "scale": [ + 3.18555, + 3.18555, + 3.18555 + ] }, "head": { - "translation": [0, 12, 0], - "scale": [4, 4, 4] + "translation": [ + 0, + 12, + 0 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -32.5], - "scale": [4, 4, 4] + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 0, + -32.5 + ], + "scale": [ + 4, + 4, + 4 + ] } }, "groups": [ { "name": "cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, "children": [ { "name": "top_cup", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] }, { "name": "bottom_cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, - "children": [11, 12, 13, 14, 15, 16, 17, 18, 19] + "children": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] } ] }, { "name": "kastera", - "origin": [7.9, 3.8, 8], + "origin": [ + 7.9, + 3.8, + 8 + ], "color": 0, - "children": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] - }, 49] + "children": [ + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] + }, + 49 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/baby_castella_s.json b/pack/assets/minecraft/models/foods/baby_castella_s.json index d48381de..c838f8aa 100644 --- a/pack/assets/minecraft/models/foods/baby_castella_s.json +++ b/pack/assets/minecraft/models/foods/baby_castella_s.json @@ -3,706 +3,3970 @@ "textures": { "0": "block/white_stained_glass", "1": "block/sponge", - "2": "skins/mobs/pig", + "2": "item/skins/mobs/pig", "particle": "block/white_stained_glass" }, "elements": [ { - "from": [5.5, 6, 5.4], - "to": [10.5, 7, 5.8], + "from": [ + 5.5, + 6, + 5.4 + ], + "to": [ + 10.5, + 7, + 5.8 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [10.3, 6, 5.6], - "to": [10.7, 7, 10.6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.5, 5.5]}, + "from": [ + 10.3, + 6, + 5.6 + ], + "to": [ + 10.7, + 7, + 10.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 5.5 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.3, 6, 5.6], - "to": [5.7, 7, 10.6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6.5, 5.5]}, + "from": [ + 5.3, + 6, + 5.6 + ], + "to": [ + 5.7, + 7, + 10.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 5.5 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.5, 6, 10.4], - "to": [10.5, 7, 10.8], + "from": [ + 5.5, + 6, + 10.4 + ], + "to": [ + 10.5, + 7, + 10.8 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [2.12771, 6, 13.54142], - "to": [2.32771, 7, 13.82142], - "rotation": {"angle": -45, "axis": "y", "origin": [13.64142, 15, 13.54142]}, + "from": [ + 2.12771, + 6, + 13.54142 + ], + "to": [ + 2.32771, + 7, + 13.82142 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 13.64142, + 15, + 13.54142 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6.88629, 6, 18.47858], - "to": [7.28629, 7, 18.75858], - "rotation": {"angle": -45, "axis": "y", "origin": [18.5, 14.5, 18.65858]}, + "from": [ + 6.88629, + 6, + 18.47858 + ], + "to": [ + 7.28629, + 7, + 18.75858 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 18.5, + 14.5, + 18.65858 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [10.39029, 6, 5.47172], - "to": [10.67029, 7, 5.87172], - "rotation": {"angle": -45, "axis": "y", "origin": [10.53029, 6.5, 5.57172]}, + "from": [ + 10.39029, + 6, + 5.47172 + ], + "to": [ + 10.67029, + 7, + 5.87172 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.53029, + 6.5, + 5.57172 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.33172, 6, 10.33029], - "to": [5.61172, 7, 10.73029], - "rotation": {"angle": -45, "axis": "y", "origin": [5.47172, 6.5, 10.63029]}, + "from": [ + 5.33172, + 6, + 10.33029 + ], + "to": [ + 5.61172, + 7, + 10.73029 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 5.47172, + 6.5, + 10.63029 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.5, 7, 5.6], - "to": [10.5, 7.9, 10.6], + "from": [ + 5.5, + 7, + 5.6 + ], + "to": [ + 10.5, + 7.9, + 10.6 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [5.7, 7.9, 5.8], - "to": [10.3, 8.4, 10.4], + "from": [ + 5.7, + 7.9, + 5.8 + ], + "to": [ + 10.3, + 8.4, + 10.4 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [6.1, 8.4, 6.3], - "to": [9.9, 8.7, 10], + "from": [ + 6.1, + 8.4, + 6.3 + ], + "to": [ + 9.9, + 8.7, + 10 + ], "faces": { - "north": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 10, 16, 11], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10, + 16, + 11 + ], + "texture": "#0" + } } }, { - "from": [6, 0, 6.1], - "to": [10, 0.3, 10.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0.15, 8]}, + "from": [ + 6, + 0, + 6.1 + ], + "to": [ + 10, + 0.3, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0.15, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "east": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "west": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } } }, { - "from": [5.7, 0, 6.1], - "to": [6, 6, 10.1], - "rotation": {"angle": 0, "axis": "z", "origin": [5.85, 0, 7.6]}, + "from": [ + 5.7, + 0, + 6.1 + ], + "to": [ + 6, + 6, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.85, + 0, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6, 0, 5.8], - "to": [10, 6, 6.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.5, 0, 5.95]}, + "from": [ + 6, + 0, + 5.8 + ], + "to": [ + 10, + 6, + 6.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 0, + 5.95 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [10, 0, 6.1], - "to": [10.3, 6, 10.1], - "rotation": {"angle": 0, "axis": "y", "origin": [10.15, 0, 7.6]}, + "from": [ + 10, + 0, + 6.1 + ], + "to": [ + 10.3, + 6, + 10.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.15, + 0, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6, 0, 10.1], - "to": [10, 6, 10.4], - "rotation": {"angle": 0, "axis": "y", "origin": [7.5, 0, 10.25]}, + "from": [ + 6, + 0, + 10.1 + ], + "to": [ + 10, + 6, + 10.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5, + 0, + 10.25 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 5, 16, 12], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 4, 0.3], "texture": "#0"}, - "down": {"uv": [0, 0, 4, 0.3], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 12 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.3 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [5.85, 0, 5.86213], - "to": [6.15, 6, 6.28213], - "rotation": {"angle": -45, "axis": "y", "origin": [6, 3, 6.01213]}, + "from": [ + 5.85, + 0, + 5.86213 + ], + "to": [ + 6.15, + 6, + 6.28213 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 6, + 3, + 6.01213 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [9.93787, 0, 9.95], - "to": [10.23787, 6, 10.37], - "rotation": {"angle": -45, "axis": "y", "origin": [10.08787, 3, 10.1]}, + "from": [ + 9.93787, + 0, + 9.95 + ], + "to": [ + 10.23787, + 6, + 10.37 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.08787, + 3, + 10.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 6, 0.3], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.42], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 6, 0.3], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 6, 0.42], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 0.42, 0.3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0.42, 0.3], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.42 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 0.42 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.42, + 0.3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.42, + 0.3 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [9.81485, 0, 5.94698], - "to": [10.23485, 6, 6.24698], - "rotation": {"angle": -45, "axis": "y", "origin": [10.08485, 3, 6.09698]}, + "from": [ + 9.81485, + 0, + 5.94698 + ], + "to": [ + 10.23485, + 6, + 6.24698 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.08485, + 3, + 6.09698 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [5.72698, 0, 10.03485], - "to": [6.14698, 6, 10.33485], - "rotation": {"angle": -45, "axis": "y", "origin": [5.99698, 3, 10.18485]}, + "from": [ + 5.72698, + 0, + 10.03485 + ], + "to": [ + 6.14698, + 6, + 10.33485 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 5.99698, + 3, + 10.18485 + ] + }, "faces": { - "north": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 15], "rotation": 270, "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 15 + ], + "rotation": 270, + "texture": "#0" + } } }, { - "from": [6.3, 0.3, 6.3], - "to": [7.3, 1.3, 7.3], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.8, 0.8, 6.8]}, + "from": [ + 6.3, + 0.3, + 6.3 + ], + "to": [ + 7.3, + 1.3, + 7.3 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.8, + 0.8, + 6.8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.5, 0.3, 6.7], - "to": [8.5, 1.3, 7.7], + "from": [ + 7.5, + 0.3, + 6.7 + ], + "to": [ + 8.5, + 1.3, + 7.7 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.8, 0.3, 6.5], - "to": [9.8, 1.3, 7.5], + "from": [ + 8.8, + 0.3, + 6.5 + ], + "to": [ + 9.8, + 1.3, + 7.5 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.7, 0.3, 7.9], - "to": [9.7, 1.3, 8.9], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9.2, 0.8, 8.4]}, + "from": [ + 8.7, + 0.3, + 7.9 + ], + "to": [ + 9.7, + 1.3, + 8.9 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.2, + 0.8, + 8.4 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.8, 0.3, 7.8], - "to": [7.8, 1.3, 8.8], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6.8, + 0.3, + 7.8 + ], + "to": [ + 7.8, + 1.3, + 8.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.6, 0.3, 8.9], - "to": [8.6, 1.3, 9.9], + "from": [ + 7.6, + 0.3, + 8.9 + ], + "to": [ + 8.6, + 1.3, + 9.9 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.3, 0.3, 8.9], - "to": [7.3, 1.3, 9.9], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.8, 0.8, 9.4]}, + "from": [ + 6.3, + 0.3, + 8.9 + ], + "to": [ + 7.3, + 1.3, + 9.9 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.8, + 0.8, + 9.4 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.9, 1.3, 8.6], - "to": [7.9, 2.3, 9.6], + "from": [ + 6.9, + 1.3, + 8.6 + ], + "to": [ + 7.9, + 2.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.3, 1.3, 8.6], - "to": [9.3, 2.3, 9.6], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.8, 1.8, 9.1]}, + "from": [ + 8.3, + 1.3, + 8.6 + ], + "to": [ + 9.3, + 2.3, + 9.6 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.8, + 1.8, + 9.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.6, 1.3, 7.3], - "to": [9.6, 2.3, 8.3], + "from": [ + 8.6, + 1.3, + 7.3 + ], + "to": [ + 9.6, + 2.3, + 8.3 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.2, 1.3, 6.2], - "to": [9.2, 2.3, 7.2], + "from": [ + 8.2, + 1.3, + 6.2 + ], + "to": [ + 9.2, + 2.3, + 7.2 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.1, 1.3, 6.4], - "to": [8.1, 2.3, 7.4], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 7.1, + 1.3, + 6.4 + ], + "to": [ + 8.1, + 2.3, + 7.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.1, 1.3, 7.5], - "to": [8.1, 2.3, 8.5], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.6, 1.8, 8]}, + "from": [ + 7.1, + 1.3, + 7.5 + ], + "to": [ + 8.1, + 2.3, + 8.5 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.6, + 1.8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [5.9, 1.3, 7.5], - "to": [6.9, 2.3, 8.5], + "from": [ + 5.9, + 1.3, + 7.5 + ], + "to": [ + 6.9, + 2.3, + 8.5 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6, 1.3, 6.2], - "to": [7, 2.3, 7.2], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6, + 1.3, + 6.2 + ], + "to": [ + 7, + 2.3, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [9, 2.3, 6.2], - "to": [10, 3.3, 7.2], + "from": [ + 9, + 2.3, + 6.2 + ], + "to": [ + 10, + 3.3, + 7.2 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [9, 2.3, 8.8], - "to": [10, 3.3, 9.8], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9.5, 2.8, 9.3]}, + "from": [ + 9, + 2.3, + 8.8 + ], + "to": [ + 10, + 3.3, + 9.8 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.5, + 2.8, + 9.3 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.8, 2.3, 8.6], - "to": [8.8, 3.3, 9.6], + "from": [ + 7.8, + 2.3, + 8.6 + ], + "to": [ + 8.8, + 3.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.3, 2.3, 7.5], - "to": [9.3, 3.3, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 8.3, + 2.3, + 7.5 + ], + "to": [ + 9.3, + 3.3, + 8.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.4, 2.3, 6.2], - "to": [8.4, 3.3, 7.2], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.9, 2.8, 6.7]}, + "from": [ + 7.4, + 2.3, + 6.2 + ], + "to": [ + 8.4, + 3.3, + 7.2 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.9, + 2.8, + 6.7 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.2, 2.3, 7.4], - "to": [8.2, 3.3, 8.4], - "rotation": {"angle": -22.5, "axis": "y", "origin": [7.7, 2.8, 7.9]}, + "from": [ + 7.2, + 2.3, + 7.4 + ], + "to": [ + 8.2, + 3.3, + 8.4 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 7.7, + 2.8, + 7.9 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 2.3, 6.7], - "to": [7.1, 3.3, 7.7], + "from": [ + 6.1, + 2.3, + 6.7 + ], + "to": [ + 7.1, + 3.3, + 7.7 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 3.3, 7.5], - "to": [7.1, 4.3, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [7.7125, 2.175, 7.675]}, + "from": [ + 6.1, + 3.3, + 7.5 + ], + "to": [ + 7.1, + 4.3, + 8.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.7125, + 2.175, + 7.675 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.1, 2.2, 8.6], - "to": [7.1, 3.2, 9.6], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.6, 2.7, 9.1]}, + "from": [ + 6.1, + 2.2, + 8.6 + ], + "to": [ + 7.1, + 3.2, + 9.6 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.6, + 2.7, + 9.1 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [6.7, 3.3, 8.6], - "to": [7.7, 4.3, 9.6], + "from": [ + 6.7, + 3.3, + 8.6 + ], + "to": [ + 7.7, + 4.3, + 9.6 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.1, 3.3, 8.3], - "to": [9.1, 4.3, 9.3], + "from": [ + 8.1, + 3.3, + 8.3 + ], + "to": [ + 9.1, + 4.3, + 9.3 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [8.8, 3.3, 7.1], - "to": [9.8, 4.3, 8.1], - "rotation": {"angle": -22.5, "axis": "y", "origin": [9.3, 3.8, 7.6]}, + "from": [ + 8.8, + 3.3, + 7.1 + ], + "to": [ + 9.8, + 4.3, + 8.1 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 9.3, + 3.8, + 7.6 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.5, 3.3, 6.4], - "to": [8.5, 4.3, 7.4], + "from": [ + 7.5, + 3.3, + 6.4 + ], + "to": [ + 8.5, + 4.3, + 7.4 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7.4, 3.3, 7.5], - "to": [8.4, 4.3, 8.5], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.9, 3.8, 8]}, + "from": [ + 7.4, + 3.3, + 7.5 + ], + "to": [ + 8.4, + 4.3, + 8.5 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.9, + 3.8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } } }, { - "from": [7, 3.7, 5.7], - "to": [9, 5.05, 5.8], + "from": [ + 7, + 3.7, + 5.7 + ], + "to": [ + 9, + 5.05, + 5.8 + ], "faces": { - "north": {"uv": [4, 4, 5.5, 5], "texture": "#2"}, - "east": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "south": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "west": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "up": {"uv": [8, 8, 11, 10], "texture": "#2"}, - "down": {"uv": [8, 8, 11, 10], "texture": "#2"} + "north": { + "uv": [ + 4, + 4, + 5.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 8, + 11, + 10 + ], + "texture": "#2" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [0, -90, 0], - "translation": [0, 4, 1.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 4, + 1.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "thirdperson_lefthand": { - "rotation": [0, -90, 0], - "translation": [0, 4, 1.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 4, + 1.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_righthand": { - "rotation": [0, 131.25, 0], - "translation": [0, 7, 2], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 131.25, + 0 + ], + "translation": [ + 0, + 7, + 2 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "firstperson_lefthand": { - "rotation": [0, 131.25, 0], - "translation": [0, 7, 2], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 131.25, + 0 + ], + "translation": [ + 0, + 7, + 2 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "ground": { - "translation": [0, 9.25, 0], - "scale": [1.5, 1.5, 1.5] + "translation": [ + 0, + 9.25, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "gui": { - "rotation": [25, 135, 0], - "translation": [0, 5, 0], - "scale": [1.5, 1.5, 1.5] + "rotation": [ + 25, + 135, + 0 + ], + "translation": [ + 0, + 5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "head": { - "translation": [0, 18.25, 0], - "scale": [1.5, 1.5, 1.5] + "translation": [ + 0, + 18.25, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 0, + -16 + ], + "scale": [ + 2, + 2, + 2 + ] } }, "groups": [ { "name": "cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, "children": [ { "name": "top_cup", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] }, { "name": "bottom_cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, - "children": [11, 12, 13, 14, 15, 16, 17, 18, 19] + "children": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] } ] }, { "name": "kastera", - "origin": [7.9, 3.8, 8], + "origin": [ + 7.9, + 3.8, + 8 + ], "color": 0, - "children": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48] - }, 49] + "children": [ + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] + }, + 49 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/chicken_steak.json b/pack/assets/minecraft/models/foods/chicken_steak.json index 35b281f6..89694948 100644 --- a/pack/assets/minecraft/models/foods/chicken_steak.json +++ b/pack/assets/minecraft/models/foods/chicken_steak.json @@ -1,742 +1,3946 @@ { "credit": "Made with Blockbench", "textures": { - "0": "foods/chicken_steak", - "particle": "foods/chicken_steak" + "0": "item/foods/chicken_steak", + "particle": "item/foods/chicken_steak" }, "elements": [ { "name": "chicken_steak_0", - "from": [10.5, 0, 2.75], - "to": [11, 1.25, 10.5], + "from": [ + 10.5, + 0, + 2.75 + ], + "to": [ + 11, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [11, 2.75, 10.5, 3], "texture": "#0"}, - "east": {"uv": [10.75, 2.75, 11, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.5, 10.25, 11, 10.5], "texture": "#0"}, - "west": {"uv": [10.5, 2.75, 10.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.5, 2.75, 11, 10.5], "texture": "#0"}, - "down": {"uv": [10.5, 10.5, 11, 2.75], "texture": "#0"} + "north": { + "uv": [ + 11, + 2.75, + 10.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 2.75, + 11, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 10.25, + 11, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2.75, + 10.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 2.75, + 11, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 11, + 2.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_1", - "from": [10.25, 0, 3], - "to": [10.5, 1.25, 3.25], + "from": [ + 10.25, + 0, + 3 + ], + "to": [ + 10.5, + 1.25, + 3.25 + ], "faces": { - "north": {"uv": [10.5, 3, 10.25, 3.25], "texture": "#0"}, - "east": {"uv": [10.25, 3, 10.5, 3.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 3, 10.5, 3.25], "texture": "#0"}, - "west": {"uv": [10.25, 3, 10.5, 3.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 3, 10.5, 3.25], "texture": "#0"}, - "down": {"uv": [10.25, 3.25, 10.5, 3], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 3, + 10.25, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 3, + 10.5, + 3.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 3, + 10.5, + 3.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 3.25, + 10.5, + 3 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_2", - "from": [11, 0, 3], - "to": [11.5, 1.25, 10.25], + "from": [ + 11, + 0, + 3 + ], + "to": [ + 11.5, + 1.25, + 10.25 + ], "faces": { - "north": {"uv": [11.5, 3, 11, 3.25], "texture": "#0"}, - "east": {"uv": [11.25, 3, 11.5, 10.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10, 11.5, 10.25], "texture": "#0"}, - "west": {"uv": [11, 3, 11.25, 10.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 3, 11.5, 10.25], "texture": "#0"}, - "down": {"uv": [11, 10.25, 11.5, 3], "texture": "#0"} + "north": { + "uv": [ + 11.5, + 3, + 11, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.25, + 3, + 11.5, + 10.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10, + 11.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 3, + 11.25, + 10.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 3, + 11.5, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.25, + 11.5, + 3 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_3", - "from": [9.75, 0, 3.25], - "to": [10.25, 1.25, 10.5], + "from": [ + 9.75, + 0, + 3.25 + ], + "to": [ + 10.25, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [10.25, 3.25, 9.75, 3.5], "texture": "#0"}, - "east": {"uv": [10, 3.25, 10.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.75, 10.25, 10.25, 10.5], "texture": "#0"}, - "west": {"uv": [9.75, 3.25, 10, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.75, 3.25, 10.25, 10.5], "texture": "#0"}, - "down": {"uv": [9.75, 10.5, 10.25, 3.25], "texture": "#0"} + "north": { + "uv": [ + 10.25, + 3.25, + 9.75, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 3.25, + 10.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 3.25, + 10, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 3.25, + 10.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 10.5, + 10.25, + 3.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_4", - "from": [11.5, 0, 3.25], - "to": [11.75, 1.25, 10.5], + "from": [ + 11.5, + 0, + 3.25 + ], + "to": [ + 11.75, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [11.75, 3.25, 11.5, 3.5], "texture": "#0"}, - "east": {"uv": [11.5, 3.25, 11.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.5, 10.25, 11.75, 10.5], "texture": "#0"}, - "west": {"uv": [11.5, 3.25, 11.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.5, 3.25, 11.75, 10.5], "texture": "#0"}, - "down": {"uv": [11.5, 10.5, 11.75, 3.25], "texture": "#0"} + "north": { + "uv": [ + 11.75, + 3.25, + 11.5, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 3.25, + 11.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.25, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 3.25, + 11.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 3.25, + 11.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 10.5, + 11.75, + 3.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_5", - "from": [9.5, 0, 3.5], - "to": [9.75, 1.25, 10.5], + "from": [ + 9.5, + 0, + 3.5 + ], + "to": [ + 9.75, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [9.75, 3.5, 9.5, 3.75], "texture": "#0"}, - "east": {"uv": [9.5, 3.5, 9.75, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.5, 10.25, 9.75, 10.5], "texture": "#0"}, - "west": {"uv": [9.5, 3.5, 9.75, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.5, 3.5, 9.75, 10.5], "texture": "#0"}, - "down": {"uv": [9.5, 10.5, 9.75, 3.5], "texture": "#0"} + "north": { + "uv": [ + 9.75, + 3.5, + 9.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 9.75, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.25, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3.5, + 9.75, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.5, + 9.75, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 10.5, + 9.75, + 3.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_6", - "from": [10.25, 0, 3.5], - "to": [10.5, 1.25, 10.5], + "from": [ + 10.25, + 0, + 3.5 + ], + "to": [ + 10.5, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [10.5, 3.5, 10.25, 3.75], "texture": "#0"}, - "east": {"uv": [10.25, 3.5, 10.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25, 10.25, 10.5, 10.5], "texture": "#0"}, - "west": {"uv": [10.25, 3.5, 10.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25, 3.5, 10.5, 10.5], "texture": "#0"}, - "down": {"uv": [10.25, 10.5, 10.5, 3.5], "texture": "#0"} + "north": { + "uv": [ + 10.5, + 3.5, + 10.25, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 3.5, + 10.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 10.25, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 3.5, + 10.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 3.5, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10.5, + 10.5, + 3.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_7", - "from": [11.75, 0, 3.5], - "to": [12.25, 1.25, 10.5], + "from": [ + 11.75, + 0, + 3.5 + ], + "to": [ + 12.25, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [12.25, 3.5, 11.75, 3.75], "texture": "#0"}, - "east": {"uv": [12, 3.5, 12.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.75, 10.25, 12.25, 10.5], "texture": "#0"}, - "west": {"uv": [11.75, 3.5, 12, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.75, 3.5, 12.25, 10.5], "texture": "#0"}, - "down": {"uv": [11.75, 10.5, 12.25, 3.5], "texture": "#0"} + "north": { + "uv": [ + 12.25, + 3.5, + 11.75, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 3.5, + 12.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 10.25, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.75, + 3.5, + 12, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 3.5, + 12.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 10.5, + 12.25, + 3.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_8", - "from": [9.25, 0, 3.75], - "to": [9.5, 1.25, 10.75], + "from": [ + 9.25, + 0, + 3.75 + ], + "to": [ + 9.5, + 1.25, + 10.75 + ], "faces": { - "north": {"uv": [9.5, 3.75, 9.25, 4], "texture": "#0"}, - "east": {"uv": [9.25, 3.75, 9.5, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.25, 10.5, 9.5, 10.75], "texture": "#0"}, - "west": {"uv": [9.25, 3.75, 9.5, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.25, 3.75, 9.5, 10.75], "texture": "#0"}, - "down": {"uv": [9.25, 10.75, 9.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 9.5, + 3.75, + 9.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 3.75, + 9.5, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 10.5, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 3.75, + 9.5, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.75, + 9.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 10.75, + 9.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_9", - "from": [12.25, 0, 3.75], - "to": [12.5, 1.25, 10.5], + "from": [ + 12.25, + 0, + 3.75 + ], + "to": [ + 12.5, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [12.5, 3.75, 12.25, 4], "texture": "#0"}, - "east": {"uv": [12.25, 3.75, 12.5, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.25, 10.25, 12.5, 10.5], "texture": "#0"}, - "west": {"uv": [12.25, 3.75, 12.5, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.25, 3.75, 12.5, 10.5], "texture": "#0"}, - "down": {"uv": [12.25, 10.5, 12.5, 3.75], "texture": "#0"} + "north": { + "uv": [ + 12.5, + 3.75, + 12.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.25, + 3.75, + 12.5, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 10.25, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.25, + 3.75, + 12.5, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.25, + 3.75, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.25, + 10.5, + 12.5, + 3.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_10", - "from": [5.5, 0, 4], - "to": [5.75, 1.25, 13.25], + "from": [ + 5.5, + 0, + 4 + ], + "to": [ + 5.75, + 1.25, + 13.25 + ], "faces": { - "north": {"uv": [5.75, 4, 5.5, 4.25], "texture": "#0"}, - "east": {"uv": [5.5, 4, 5.75, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.5, 13, 5.75, 13.25], "texture": "#0"}, - "west": {"uv": [5.5, 4, 5.75, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.5, 4, 5.75, 13.25], "texture": "#0"}, - "down": {"uv": [5.5, 13.25, 5.75, 4], "texture": "#0"} + "north": { + "uv": [ + 5.75, + 4, + 5.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 5.75, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 13, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4, + 5.75, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 4, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 13.25, + 5.75, + 4 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_11", - "from": [6, 0, 4], - "to": [7, 1.25, 13.25], + "from": [ + 6, + 0, + 4 + ], + "to": [ + 7, + 1.25, + 13.25 + ], "faces": { - "north": {"uv": [7, 4, 6, 4.25], "texture": "#0"}, - "east": {"uv": [6.75, 4, 7, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 13, 7, 13.25], "texture": "#0"}, - "west": {"uv": [6, 4, 6.25, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 4, 7, 13.25], "texture": "#0"}, - "down": {"uv": [6, 13.25, 7, 4], "texture": "#0"} + "north": { + "uv": [ + 7, + 4, + 6, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4, + 7, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 13, + 7, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4, + 6.25, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4, + 7, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 13.25, + 7, + 4 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_12", - "from": [7, 0, 4], - "to": [7.25, 1.25, 4.25], + "from": [ + 7, + 0, + 4 + ], + "to": [ + 7.25, + 1.25, + 4.25 + ], "faces": { - "north": {"uv": [7.25, 4, 7, 4.25], "texture": "#0"}, - "east": {"uv": [7, 4, 7.25, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 4, 7.25, 4.25], "texture": "#0"}, - "west": {"uv": [7, 4, 7.25, 4.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4, 7.25, 4.25], "texture": "#0"}, - "down": {"uv": [7, 4.25, 7.25, 4], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 4, + 7, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4, + 7.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4.25, + 7.25, + 4 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_13", - "from": [8.25, 0, 4], - "to": [9.25, 1.25, 11], + "from": [ + 8.25, + 0, + 4 + ], + "to": [ + 9.25, + 1.25, + 11 + ], "faces": { - "north": {"uv": [9.25, 4, 8.25, 4.25], "texture": "#0"}, - "east": {"uv": [9, 4, 9.25, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 10.75, 9.25, 11], "texture": "#0"}, - "west": {"uv": [8.25, 4, 8.5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 4, 9.25, 11], "texture": "#0"}, - "down": {"uv": [8.25, 11, 9.25, 4], "texture": "#0"} + "north": { + "uv": [ + 9.25, + 4, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4, + 9.25, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10.75, + 9.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 4, + 8.5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 4, + 9.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11, + 9.25, + 4 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_14", - "from": [12.5, 0, 4], - "to": [12.75, 1.25, 10.75], + "from": [ + 12.5, + 0, + 4 + ], + "to": [ + 12.75, + 1.25, + 10.75 + ], "faces": { - "north": {"uv": [12.75, 4, 12.5, 4.25], "texture": "#0"}, - "east": {"uv": [12.5, 4, 12.75, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.5, 10.5, 12.75, 10.75], "texture": "#0"}, - "west": {"uv": [12.5, 4, 12.75, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.5, 4, 12.75, 10.75], "texture": "#0"}, - "down": {"uv": [12.5, 10.75, 12.75, 4], "texture": "#0"} + "north": { + "uv": [ + 12.75, + 4, + 12.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 4, + 12.75, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 10.5, + 12.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 4, + 12.75, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 4, + 12.75, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 10.75, + 12.75, + 4 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_15", - "from": [5, 0, 4.25], - "to": [5.5, 1.25, 4.5], + "from": [ + 5, + 0, + 4.25 + ], + "to": [ + 5.5, + 1.25, + 4.5 + ], "faces": { - "north": {"uv": [5.5, 4.25, 5, 4.5], "texture": "#0"}, - "east": {"uv": [5.25, 4.25, 5.5, 4.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 4.25, 5.5, 4.5], "texture": "#0"}, - "west": {"uv": [5, 4.25, 5.25, 4.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.25, 5.5, 4.5], "texture": "#0"}, - "down": {"uv": [5, 4.5, 5.5, 4.25], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 4.25, + 5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.25, + 5.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4.25, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.25, + 5.25, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.25, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4.5, + 5.5, + 4.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_16", - "from": [5.75, 0, 4.25], - "to": [6, 1.25, 13.25], + "from": [ + 5.75, + 0, + 4.25 + ], + "to": [ + 6, + 1.25, + 13.25 + ], "faces": { - "north": {"uv": [6, 4.25, 5.75, 4.5], "texture": "#0"}, - "east": {"uv": [5.75, 4.25, 6, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.75, 13, 6, 13.25], "texture": "#0"}, - "west": {"uv": [5.75, 4.25, 6, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.75, 4.25, 6, 13.25], "texture": "#0"}, - "down": {"uv": [5.75, 13.25, 6, 4.25], "texture": "#0"} + "north": { + "uv": [ + 6, + 4.25, + 5.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 4.25, + 6, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 13, + 6, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 4.25, + 6, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 4.25, + 6, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 13.25, + 6, + 4.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_17", - "from": [7.25, 0, 4.25], - "to": [8.25, 1.25, 11.75], + "from": [ + 7.25, + 0, + 4.25 + ], + "to": [ + 8.25, + 1.25, + 11.75 + ], "faces": { - "north": {"uv": [8.25, 4.25, 7.25, 4.5], "texture": "#0"}, - "east": {"uv": [8, 4.25, 8.25, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 11.5, 8.25, 11.75], "texture": "#0"}, - "west": {"uv": [7.25, 4.25, 7.5, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 4.25, 8.25, 11.75], "texture": "#0"}, - "down": {"uv": [7.25, 11.75, 8.25, 4.25], "texture": "#0"} + "north": { + "uv": [ + 8.25, + 4.25, + 7.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4.25, + 8.25, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 11.5, + 8.25, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.25, + 7.5, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.25, + 8.25, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 11.75, + 8.25, + 4.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_18", - "from": [12.75, 0, 4.25], - "to": [13, 1.25, 11], + "from": [ + 12.75, + 0, + 4.25 + ], + "to": [ + 13, + 1.25, + 11 + ], "faces": { - "north": {"uv": [13, 4.25, 12.75, 4.5], "texture": "#0"}, - "east": {"uv": [12.75, 4.25, 13, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.75, 10.75, 13, 11], "texture": "#0"}, - "west": {"uv": [12.75, 4.25, 13, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.75, 4.25, 13, 11], "texture": "#0"}, - "down": {"uv": [12.75, 11, 13, 4.25], "texture": "#0"} + "north": { + "uv": [ + 13, + 4.25, + 12.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.75, + 4.25, + 13, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 10.75, + 13, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 4.25, + 13, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 4.25, + 13, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.75, + 11, + 13, + 4.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_19", - "from": [4.75, 0, 4.5], - "to": [5, 1.25, 13], + "from": [ + 4.75, + 0, + 4.5 + ], + "to": [ + 5, + 1.25, + 13 + ], "faces": { - "north": {"uv": [5, 4.5, 4.75, 4.75], "texture": "#0"}, - "east": {"uv": [4.75, 4.5, 5, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.75, 12.75, 5, 13], "texture": "#0"}, - "west": {"uv": [4.75, 4.5, 5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.75, 4.5, 5, 13], "texture": "#0"}, - "down": {"uv": [4.75, 13, 5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 5, + 4.5, + 4.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 4.5, + 5, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 12.75, + 5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.5, + 5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 4.5, + 5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 13, + 5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_20", - "from": [5.25, 0, 4.5], - "to": [5.5, 1.25, 13.25], + "from": [ + 5.25, + 0, + 4.5 + ], + "to": [ + 5.5, + 1.25, + 13.25 + ], "faces": { - "north": {"uv": [5.5, 4.5, 5.25, 4.75], "texture": "#0"}, - "east": {"uv": [5.25, 4.5, 5.5, 13.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.25, 13, 5.5, 13.25], "texture": "#0"}, - "west": {"uv": [5.25, 4.5, 5.5, 13.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.25, 4.5, 5.5, 13.25], "texture": "#0"}, - "down": {"uv": [5.25, 13.25, 5.5, 4.5], "texture": "#0"} + "north": { + "uv": [ + 5.5, + 4.5, + 5.25, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 4.5, + 5.5, + 13.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 13, + 5.5, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 4.5, + 5.5, + 13.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.5, + 5.5, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 13.25, + 5.5, + 4.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_21", - "from": [7, 0, 4.5], - "to": [7.25, 1.25, 13], + "from": [ + 7, + 0, + 4.5 + ], + "to": [ + 7.25, + 1.25, + 13 + ], "faces": { - "north": {"uv": [7.25, 4.5, 7, 4.75], "texture": "#0"}, - "east": {"uv": [7, 4.5, 7.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 12.75, 7.25, 13], "texture": "#0"}, - "west": {"uv": [7, 4.5, 7.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4.5, 7.25, 13], "texture": "#0"}, - "down": {"uv": [7, 13, 7.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 7.25, + 4.5, + 7, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4.5, + 7.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12.75, + 7.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.5, + 7.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 13, + 7.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_22", - "from": [13, 0, 4.5], - "to": [13.25, 1.25, 10.75], + "from": [ + 13, + 0, + 4.5 + ], + "to": [ + 13.25, + 1.25, + 10.75 + ], "faces": { - "north": {"uv": [13.25, 4.5, 13, 4.75], "texture": "#0"}, - "east": {"uv": [13, 4.5, 13.25, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 10.5, 13.25, 10.75], "texture": "#0"}, - "west": {"uv": [13, 4.5, 13.25, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 4.5, 13.25, 10.75], "texture": "#0"}, - "down": {"uv": [13, 10.75, 13.25, 4.5], "texture": "#0"} + "north": { + "uv": [ + 13.25, + 4.5, + 13, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 4.5, + 13.25, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 10.5, + 13.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 4.5, + 13.25, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 4.5, + 13.25, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 10.75, + 13.25, + 4.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_23", - "from": [4.25, 0, 4.75], - "to": [4.75, 1.25, 12.75], + "from": [ + 4.25, + 0, + 4.75 + ], + "to": [ + 4.75, + 1.25, + 12.75 + ], "faces": { - "north": {"uv": [4.75, 4.75, 4.25, 5], "texture": "#0"}, - "east": {"uv": [4.5, 4.75, 4.75, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.25, 12.5, 4.75, 12.75], "texture": "#0"}, - "west": {"uv": [4.25, 4.75, 4.5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.25, 4.75, 4.75, 12.75], "texture": "#0"}, - "down": {"uv": [4.25, 12.75, 4.75, 4.75], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 4.75, + 4.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4.75, + 4.75, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 12.5, + 4.75, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 4.75, + 4.5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 4.75, + 4.75, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 12.75, + 4.75, + 4.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_24", - "from": [5, 0, 4.75], - "to": [5.25, 1.25, 13], + "from": [ + 5, + 0, + 4.75 + ], + "to": [ + 5.25, + 1.25, + 13 + ], "faces": { - "north": {"uv": [5.25, 4.75, 5, 5], "texture": "#0"}, - "east": {"uv": [5, 4.75, 5.25, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 12.75, 5.25, 13], "texture": "#0"}, - "west": {"uv": [5, 4.75, 5.25, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4.75, 5.25, 13], "texture": "#0"}, - "down": {"uv": [5, 13, 5.25, 4.75], "texture": "#0"} + "north": { + "uv": [ + 5.25, + 4.75, + 5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.75, + 5.25, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 12.75, + 5.25, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.75, + 5.25, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.75, + 5.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 13, + 5.25, + 4.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_25", - "from": [13.25, 0, 4.75], - "to": [13.5, 1.25, 10], + "from": [ + 13.25, + 0, + 4.75 + ], + "to": [ + 13.5, + 1.25, + 10 + ], "faces": { - "north": {"uv": [13.5, 4.75, 13.25, 5], "texture": "#0"}, - "east": {"uv": [13.25, 4.75, 13.5, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.25, 9.75, 13.5, 10], "texture": "#0"}, - "west": {"uv": [13.25, 4.75, 13.5, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.25, 4.75, 13.5, 10], "texture": "#0"}, - "down": {"uv": [13.25, 10, 13.5, 4.75], "texture": "#0"} + "north": { + "uv": [ + 13.5, + 4.75, + 13.25, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.25, + 4.75, + 13.5, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.25, + 9.75, + 13.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 4.75, + 13.5, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 4.75, + 13.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 10, + 13.5, + 4.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_26", - "from": [4, 0, 5], - "to": [4.25, 1.25, 12.5], + "from": [ + 4, + 0, + 5 + ], + "to": [ + 4.25, + 1.25, + 12.5 + ], "faces": { - "north": {"uv": [4.25, 5, 4, 5.25], "texture": "#0"}, - "east": {"uv": [4, 5, 4.25, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 12.25, 4.25, 12.5], "texture": "#0"}, - "west": {"uv": [4, 5, 4.25, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 5, 4.25, 12.5], "texture": "#0"}, - "down": {"uv": [4, 12.5, 4.25, 5], "texture": "#0"} + "north": { + "uv": [ + 4.25, + 5, + 4, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5, + 4.25, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 12.25, + 4.25, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5, + 4.25, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 5, + 4.25, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 12.5, + 4.25, + 5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_27", - "from": [3.75, 0, 5.25], - "to": [4, 1.25, 12.5], + "from": [ + 3.75, + 0, + 5.25 + ], + "to": [ + 4, + 1.25, + 12.5 + ], "faces": { - "north": {"uv": [4, 5.25, 3.75, 5.5], "texture": "#0"}, - "east": {"uv": [3.75, 5.25, 4, 12.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.75, 12.25, 4, 12.5], "texture": "#0"}, - "west": {"uv": [3.75, 5.25, 4, 12.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.75, 5.25, 4, 12.5], "texture": "#0"}, - "down": {"uv": [3.75, 12.5, 4, 5.25], "texture": "#0"} + "north": { + "uv": [ + 4, + 5.25, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 5.25, + 4, + 12.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 12.25, + 4, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 5.25, + 4, + 12.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.25, + 4, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 12.5, + 4, + 5.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_28", - "from": [3.25, 0, 5.5], - "to": [3.75, 1.25, 12.25], + "from": [ + 3.25, + 0, + 5.5 + ], + "to": [ + 3.75, + 1.25, + 12.25 + ], "faces": { - "north": {"uv": [3.75, 5.5, 3.25, 5.75], "texture": "#0"}, - "east": {"uv": [3.5, 5.5, 3.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.25, 12, 3.75, 12.25], "texture": "#0"}, - "west": {"uv": [3.25, 5.5, 3.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.25, 5.5, 3.75, 12.25], "texture": "#0"}, - "down": {"uv": [3.25, 12.25, 3.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 3.75, + 5.5, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 5.5, + 3.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 12, + 3.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 5.5, + 3.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 12.25, + 3.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_29", - "from": [13.5, 0, 5.5], - "to": [13.75, 1.25, 5.75], + "from": [ + 13.5, + 0, + 5.5 + ], + "to": [ + 13.75, + 1.25, + 5.75 + ], "faces": { - "north": {"uv": [13.75, 5.5, 13.5, 5.75], "texture": "#0"}, - "east": {"uv": [13.5, 5.5, 13.75, 5.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 5.5, 13.75, 5.75], "texture": "#0"}, - "west": {"uv": [13.5, 5.5, 13.75, 5.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 5.5, 13.75, 5.75], "texture": "#0"}, - "down": {"uv": [13.5, 5.75, 13.75, 5.5], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 5.5, + 13.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 5.5, + 13.75, + 5.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 5.5, + 13.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 5.5, + 13.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 5.5, + 13.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 5.75, + 13.75, + 5.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_30", - "from": [2, 0, 5.75], - "to": [2.75, 1.25, 11], + "from": [ + 2, + 0, + 5.75 + ], + "to": [ + 2.75, + 1.25, + 11 + ], "faces": { - "north": {"uv": [2.75, 5.75, 2, 6], "texture": "#0"}, - "east": {"uv": [2.5, 5.75, 2.75, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 10.75, 2.75, 11], "texture": "#0"}, - "west": {"uv": [2, 5.75, 2.25, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 5.75, 2.75, 11], "texture": "#0"}, - "down": {"uv": [2, 11, 2.75, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 5.75, + 2, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 5.75, + 2.75, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.75, + 2.75, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.25, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.75, + 2.75, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 11, + 2.75, + 5.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_31", - "from": [3, 0, 5.75], - "to": [3.25, 1.25, 12], + "from": [ + 3, + 0, + 5.75 + ], + "to": [ + 3.25, + 1.25, + 12 + ], "faces": { - "north": {"uv": [3.25, 5.75, 3, 6], "texture": "#0"}, - "east": {"uv": [3, 5.75, 3.25, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 11.75, 3.25, 12], "texture": "#0"}, - "west": {"uv": [3, 5.75, 3.25, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 5.75, 3.25, 12], "texture": "#0"}, - "down": {"uv": [3, 12, 3.25, 5.75], "texture": "#0"} + "north": { + "uv": [ + 3.25, + 5.75, + 3, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.75, + 3.25, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 11.75, + 3.25, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.75, + 3.25, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.75, + 3.25, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 12, + 3.25, + 5.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_32", - "from": [13.75, 0, 5.75], - "to": [14, 1.25, 10], + "from": [ + 13.75, + 0, + 5.75 + ], + "to": [ + 14, + 1.25, + 10 + ], "faces": { - "north": {"uv": [14, 5.75, 13.75, 6], "texture": "#0"}, - "east": {"uv": [13.75, 5.75, 14, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.75, 9.75, 14, 10], "texture": "#0"}, - "west": {"uv": [13.75, 5.75, 14, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.75, 5.75, 14, 10], "texture": "#0"}, - "down": {"uv": [13.75, 10, 14, 5.75], "texture": "#0"} + "north": { + "uv": [ + 14, + 5.75, + 13.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.75, + 5.75, + 14, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.75, + 9.75, + 14, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.75, + 5.75, + 14, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.75, + 14, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 10, + 14, + 5.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_33", - "from": [1.75, 0, 6], - "to": [2, 1.25, 10.75], + "from": [ + 1.75, + 0, + 6 + ], + "to": [ + 2, + 1.25, + 10.75 + ], "faces": { - "north": {"uv": [2, 6, 1.75, 6.25], "texture": "#0"}, - "east": {"uv": [1.75, 6, 2, 10.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.75, 10.5, 2, 10.75], "texture": "#0"}, - "west": {"uv": [1.75, 6, 2, 10.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.75, 6, 2, 10.75], "texture": "#0"}, - "down": {"uv": [1.75, 10.75, 2, 6], "texture": "#0"} + "north": { + "uv": [ + 2, + 6, + 1.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 6, + 2, + 10.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 10.5, + 2, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6, + 2, + 10.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 6, + 2, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 10.75, + 2, + 6 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_34", - "from": [2.75, 0, 6], - "to": [3, 1.25, 12], + "from": [ + 2.75, + 0, + 6 + ], + "to": [ + 3, + 1.25, + 12 + ], "faces": { - "north": {"uv": [3, 6, 2.75, 6.25], "texture": "#0"}, - "east": {"uv": [2.75, 6, 3, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.75, 11.75, 3, 12], "texture": "#0"}, - "west": {"uv": [2.75, 6, 3, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.75, 6, 3, 12], "texture": "#0"}, - "down": {"uv": [2.75, 12, 3, 6], "texture": "#0"} + "north": { + "uv": [ + 3, + 6, + 2.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 11.75, + 3, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 6, + 3, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 6, + 3, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 12, + 3, + 6 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_35", - "from": [13.5, 0, 6], - "to": [13.75, 1.25, 10], + "from": [ + 13.5, + 0, + 6 + ], + "to": [ + 13.75, + 1.25, + 10 + ], "faces": { - "north": {"uv": [13.75, 6, 13.5, 6.25], "texture": "#0"}, - "east": {"uv": [13.5, 6, 13.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.5, 9.75, 13.75, 10], "texture": "#0"}, - "west": {"uv": [13.5, 6, 13.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.5, 6, 13.75, 10], "texture": "#0"}, - "down": {"uv": [13.5, 10, 13.75, 6], "texture": "#0"} + "north": { + "uv": [ + 13.75, + 6, + 13.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6, + 13.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 13.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 6, + 13.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 6, + 13.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 10, + 13.75, + 6 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_36", - "from": [1.5, 0, 6.25], - "to": [1.75, 1.25, 7], + "from": [ + 1.5, + 0, + 6.25 + ], + "to": [ + 1.75, + 1.25, + 7 + ], "faces": { - "north": {"uv": [1.75, 6.25, 1.5, 6.5], "texture": "#0"}, - "east": {"uv": [1.5, 6.25, 1.75, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 6.75, 1.75, 7], "texture": "#0"}, - "west": {"uv": [1.5, 6.25, 1.75, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 6.25, 1.75, 7], "texture": "#0"}, - "down": {"uv": [1.5, 7, 1.75, 6.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 6.25, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 6.25, + 1.75, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.25, + 1.75, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 7, + 1.75, + 6.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_37", - "from": [1.25, 0, 6.5], - "to": [1.5, 1.25, 6.75], + "from": [ + 1.25, + 0, + 6.5 + ], + "to": [ + 1.5, + 1.25, + 6.75 + ], "faces": { - "north": {"uv": [1.5, 6.5, 1.25, 6.75], "texture": "#0"}, - "east": {"uv": [1.25, 6.5, 1.5, 6.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 6.5, 1.5, 6.75], "texture": "#0"}, - "west": {"uv": [1.25, 6.5, 1.5, 6.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 6.5, 1.5, 6.75], "texture": "#0"}, - "down": {"uv": [1.25, 6.75, 1.5, 6.5], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 6.5, + 1.25, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 6.5, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 6.75, + 1.5, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_38", - "from": [14, 0, 6.5], - "to": [14.25, 1.25, 10], + "from": [ + 14, + 0, + 6.5 + ], + "to": [ + 14.25, + 1.25, + 10 + ], "faces": { - "north": {"uv": [14.25, 6.5, 14, 6.75], "texture": "#0"}, - "east": {"uv": [14, 6.5, 14.25, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14, 9.75, 14.25, 10], "texture": "#0"}, - "west": {"uv": [14, 6.5, 14.25, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14, 6.5, 14.25, 10], "texture": "#0"}, - "down": {"uv": [14, 10, 14.25, 6.5], "texture": "#0"} + "north": { + "uv": [ + 14.25, + 6.5, + 14, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 6.5, + 14.25, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.75, + 14.25, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 6.5, + 14.25, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 6.5, + 14.25, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10, + 14.25, + 6.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_39", - "from": [14.25, 0, 6.75], - "to": [14.5, 1.25, 9.75], + "from": [ + 14.25, + 0, + 6.75 + ], + "to": [ + 14.5, + 1.25, + 9.75 + ], "faces": { - "north": {"uv": [14.5, 6.75, 14.25, 7], "texture": "#0"}, - "east": {"uv": [14.25, 6.75, 14.5, 9.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.25, 9.5, 14.5, 9.75], "texture": "#0"}, - "west": {"uv": [14.25, 6.75, 14.5, 9.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.25, 6.75, 14.5, 9.75], "texture": "#0"}, - "down": {"uv": [14.25, 9.75, 14.5, 6.75], "texture": "#0"} + "north": { + "uv": [ + 14.5, + 6.75, + 14.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.25, + 9.5, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 6.75, + 14.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 9.75, + 14.5, + 6.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_40", - "from": [1.25, 0, 7], - "to": [1.5, 1.25, 7.75], + "from": [ + 1.25, + 0, + 7 + ], + "to": [ + 1.5, + 1.25, + 7.75 + ], "faces": { - "north": {"uv": [1.5, 7, 1.25, 7.25], "texture": "#0"}, - "east": {"uv": [1.25, 7, 1.5, 7.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 7.5, 1.5, 7.75], "texture": "#0"}, - "west": {"uv": [1.25, 7, 1.5, 7.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 7, 1.5, 7.75], "texture": "#0"}, - "down": {"uv": [1.25, 7.75, 1.5, 7], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 7, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.5, + 7.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7, + 1.5, + 7.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 7.75, + 1.5, + 7 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_41", - "from": [1.5, 0, 7.25], - "to": [1.75, 1.25, 10], + "from": [ + 1.5, + 0, + 7.25 + ], + "to": [ + 1.75, + 1.25, + 10 + ], "faces": { - "north": {"uv": [1.75, 7.25, 1.5, 7.5], "texture": "#0"}, - "east": {"uv": [1.5, 7.25, 1.75, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 9.75, 1.75, 10], "texture": "#0"}, - "west": {"uv": [1.5, 7.25, 1.75, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.5, 7.25, 1.75, 10], "texture": "#0"}, - "down": {"uv": [1.5, 10, 1.75, 7.25], "texture": "#0"} + "north": { + "uv": [ + 1.75, + 7.25, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.75, + 1.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.25, + 1.75, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.25, + 1.75, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 10, + 1.75, + 7.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_42", - "from": [14.5, 0, 7.5], - "to": [14.75, 1.25, 9.5], + "from": [ + 14.5, + 0, + 7.5 + ], + "to": [ + 14.75, + 1.25, + 9.5 + ], "faces": { - "north": {"uv": [14.75, 7.5, 14.5, 7.75], "texture": "#0"}, - "east": {"uv": [14.5, 7.5, 14.75, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5, 9.25, 14.75, 9.5], "texture": "#0"}, - "west": {"uv": [14.5, 7.5, 14.75, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5, 7.5, 14.75, 9.5], "texture": "#0"}, - "down": {"uv": [14.5, 9.5, 14.75, 7.5], "texture": "#0"} + "north": { + "uv": [ + 14.75, + 7.5, + 14.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9.25, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.5, + 14.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 9.5, + 14.75, + 7.5 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_43", - "from": [1.25, 0, 9], - "to": [1.5, 1.25, 9.5], + "from": [ + 1.25, + 0, + 9 + ], + "to": [ + 1.5, + 1.25, + 9.5 + ], "faces": { - "north": {"uv": [1.5, 9, 1.25, 9.25], "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.5, 9.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.25, 9.25, 1.5, 9.5], "texture": "#0"}, - "west": {"uv": [1.25, 9, 1.5, 9.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.5, 9.5], "texture": "#0"}, - "down": {"uv": [1.25, 9.5, 1.5, 9], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 9, + 1.25, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 9, + 1.5, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 9.25, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.5, + 9.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9.5, + 1.5, + 9 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_44", - "from": [11, 0, 10.25], - "to": [11.25, 1.25, 10.5], + "from": [ + 11, + 0, + 10.25 + ], + "to": [ + 11.25, + 1.25, + 10.5 + ], "faces": { - "north": {"uv": [11.25, 10.25, 11, 10.5], "texture": "#0"}, - "east": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 10.25, 11.25, 10.5], "texture": "#0"}, - "west": {"uv": [11, 10.25, 11.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 10.25, 11.25, 10.5], "texture": "#0"}, - "down": {"uv": [11, 10.5, 11.25, 10.25], "texture": "#0"} + "north": { + "uv": [ + 11.25, + 10.25, + 11, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 10.25, + 11.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 10.5, + 11.25, + 10.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_45", - "from": [2.25, 0, 11], - "to": [2.75, 1.25, 11.25], + "from": [ + 2.25, + 0, + 11 + ], + "to": [ + 2.75, + 1.25, + 11.25 + ], "faces": { - "north": {"uv": [2.75, 11, 2.25, 11.25], "texture": "#0"}, - "east": {"uv": [2.5, 11, 2.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25, 11, 2.75, 11.25], "texture": "#0"}, - "west": {"uv": [2.25, 11, 2.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25, 11, 2.75, 11.25], "texture": "#0"}, - "down": {"uv": [2.25, 11.25, 2.75, 11], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 11, + 2.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 11, + 2.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 11, + 2.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 11, + 2.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 11, + 2.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 11.25, + 2.75, + 11 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_46", - "from": [8.25, 0, 11], - "to": [8.75, 1.25, 11.25], + "from": [ + 8.25, + 0, + 11 + ], + "to": [ + 8.75, + 1.25, + 11.25 + ], "faces": { - "north": {"uv": [8.75, 11, 8.25, 11.25], "texture": "#0"}, - "east": {"uv": [8.5, 11, 8.75, 11.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 11, 8.75, 11.25], "texture": "#0"}, - "west": {"uv": [8.25, 11, 8.5, 11.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 11, 8.75, 11.25], "texture": "#0"}, - "down": {"uv": [8.25, 11.25, 8.75, 11], "texture": "#0"} + "north": { + "uv": [ + 8.75, + 11, + 8.25, + 11.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 11, + 8.75, + 11.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 11, + 8.5, + 11.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 11, + 8.75, + 11.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11.25, + 8.75, + 11 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_47", - "from": [2.5, 0, 11.25], - "to": [2.75, 1.25, 11.75], + "from": [ + 2.5, + 0, + 11.25 + ], + "to": [ + 2.75, + 1.25, + 11.75 + ], "faces": { - "north": {"uv": [2.75, 11.25, 2.5, 11.5], "texture": "#0"}, - "east": {"uv": [2.5, 11.25, 2.75, 11.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.5, 11.5, 2.75, 11.75], "texture": "#0"}, - "west": {"uv": [2.5, 11.25, 2.75, 11.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.5, 11.25, 2.75, 11.75], "texture": "#0"}, - "down": {"uv": [2.5, 11.75, 2.75, 11.25], "texture": "#0"} + "north": { + "uv": [ + 2.75, + 11.25, + 2.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 11.5, + 2.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 11.25, + 2.75, + 11.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 11.75, + 2.75, + 11.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_48", - "from": [8.25, 0, 11.25], - "to": [8.5, 1.25, 11.5], + "from": [ + 8.25, + 0, + 11.25 + ], + "to": [ + 8.5, + 1.25, + 11.5 + ], "faces": { - "north": {"uv": [8.5, 11.25, 8.25, 11.5], "texture": "#0"}, - "east": {"uv": [8.25, 11.25, 8.5, 11.5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8.25, 11.25, 8.5, 11.5], "texture": "#0"}, - "west": {"uv": [8.25, 11.25, 8.5, 11.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8.25, 11.25, 8.5, 11.5], "texture": "#0"}, - "down": {"uv": [8.25, 11.5, 8.5, 11.25], "texture": "#0"} + "north": { + "uv": [ + 8.5, + 11.25, + 8.25, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 11.25, + 8.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 11.5, + 8.5, + 11.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_49", - "from": [7.25, 0, 11.75], - "to": [7.75, 1.25, 12.25], + "from": [ + 7.25, + 0, + 11.75 + ], + "to": [ + 7.75, + 1.25, + 12.25 + ], "faces": { - "north": {"uv": [7.75, 11.75, 7.25, 12], "texture": "#0"}, - "east": {"uv": [7.5, 11.75, 7.75, 12.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 12, 7.75, 12.25], "texture": "#0"}, - "west": {"uv": [7.25, 11.75, 7.5, 12.25], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 11.75, 7.75, 12.25], "texture": "#0"}, - "down": {"uv": [7.25, 12.25, 7.75, 11.75], "texture": "#0"} + "north": { + "uv": [ + 7.75, + 11.75, + 7.25, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11.75, + 7.75, + 12.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 12, + 7.75, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 11.75, + 7.5, + 12.25 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 11.75, + 7.75, + 12.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 12.25, + 7.75, + 11.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_50", - "from": [7.75, 0, 11.75], - "to": [8, 1.25, 12], + "from": [ + 7.75, + 0, + 11.75 + ], + "to": [ + 8, + 1.25, + 12 + ], "faces": { - "north": {"uv": [8, 11.75, 7.75, 12], "texture": "#0"}, - "east": {"uv": [7.75, 11.75, 8, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.75, 11.75, 8, 12], "texture": "#0"}, - "west": {"uv": [7.75, 11.75, 8, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.75, 11.75, 8, 12], "texture": "#0"}, - "down": {"uv": [7.75, 12, 8, 11.75], "texture": "#0"} + "north": { + "uv": [ + 8, + 11.75, + 7.75, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 11.75, + 8, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 12, + 8, + 11.75 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_51", - "from": [7.25, 0, 12.25], - "to": [7.5, 1.25, 12.75], + "from": [ + 7.25, + 0, + 12.25 + ], + "to": [ + 7.5, + 1.25, + 12.75 + ], "faces": { - "north": {"uv": [7.5, 12.25, 7.25, 12.5], "texture": "#0"}, - "east": {"uv": [7.25, 12.25, 7.5, 12.75], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7.25, 12.5, 7.5, 12.75], "texture": "#0"}, - "west": {"uv": [7.25, 12.25, 7.5, 12.75], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7.25, 12.25, 7.5, 12.75], "texture": "#0"}, - "down": {"uv": [7.25, 12.75, 7.5, 12.25], "texture": "#0"} + "north": { + "uv": [ + 7.5, + 12.25, + 7.25, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 12.25, + 7.5, + 12.75 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 12.5, + 7.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 12.25, + 7.5, + 12.75 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 12.25, + 7.5, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 12.75, + 7.5, + 12.25 + ], + "texture": "#0" + } } }, { "name": "chicken_steak_52", - "from": [4.5, 0, 12.75], - "to": [4.75, 1.25, 13], + "from": [ + 4.5, + 0, + 12.75 + ], + "to": [ + 4.75, + 1.25, + 13 + ], "faces": { - "north": {"uv": [4.75, 12.75, 4.5, 13], "texture": "#0"}, - "east": {"uv": [4.5, 12.75, 4.75, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.5, 12.75, 4.75, 13], "texture": "#0"}, - "west": {"uv": [4.5, 12.75, 4.75, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.5, 12.75, 4.75, 13], "texture": "#0"}, - "down": {"uv": [4.5, 13, 4.75, 12.75], "texture": "#0"} + "north": { + "uv": [ + 4.75, + 12.75, + 4.5, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 12.75, + 4.75, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 12.75, + 4.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 12.75, + 4.75, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 12.75, + 4.75, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 13, + 4.75, + 12.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 2.5, 0.75], - "scale": [0.3, 0.3, 0.3] + "translation": [ + 0, + 2.5, + 0.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "thirdperson_lefthand": { - "translation": [0, 2.5, 0.75], - "scale": [0.3, 0.3, 0.3] + "translation": [ + 0, + 2.5, + 0.75 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] }, "firstperson_righthand": { - "rotation": [90, 0, 0], - "translation": [2.75, 1.75, 2.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 2.75, + 1.75, + 2.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "firstperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [2.75, 1.75, 2.5], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 2.75, + 1.75, + 2.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "ground": { - "translation": [0, 4.75, 0] + "translation": [ + 0, + 4.75, + 0 + ] }, "gui": { - "rotation": [90, 0, 0], - "translation": [0, 0, 6.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 6.75 + ] }, "head": { - "rotation": [0, -24.25, 0], - "translation": [0, -2.25, -8.25], - "scale": [0.5, 0.5, 0.5] + "rotation": [ + 0, + -24.25, + 0 + ], + "translation": [ + 0, + -2.25, + -8.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0, 6.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 6.75 + ] } }, "groups": [ { "name": "chicken_steak", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/cut_fruits/grape.json b/pack/assets/minecraft/models/foods/cut_fruits/grape.json index c9da242c..c7bc5ad5 100644 --- a/pack/assets/minecraft/models/foods/cut_fruits/grape.json +++ b/pack/assets/minecraft/models/foods/cut_fruits/grape.json @@ -4,33 +4,79 @@ "textures": { "0": "block/white_stained_glass", "1": "block/purple_shulker_box", - "2": "skins/helms/riru2246", + "2": "item/skins/helms/riru2246", "particle": "block/white_stained_glass" }, "groups": [ { "name": "cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, "children": [ { "name": "top_cup", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] }, { "name": "bottom_cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, - "children": [11, 12, 13, 14, 15, 16, 17, 18, 19] + "children": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] } ] }, { "name": "kastera", - "origin": [7.9, 3.8, 8], + "origin": [ + 7.9, + 3.8, + 8 + ], "color": 0, - "children": [20, 21, 22, 23, 24] - }, 25] + "children": [ + 20, + 21, + 22, + 23, + 24 + ] + }, + 25 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/cut_fruits/melon.json b/pack/assets/minecraft/models/foods/cut_fruits/melon.json index facd12bd..1db23060 100644 --- a/pack/assets/minecraft/models/foods/cut_fruits/melon.json +++ b/pack/assets/minecraft/models/foods/cut_fruits/melon.json @@ -4,33 +4,79 @@ "textures": { "0": "block/white_stained_glass", "1": "block/lime_shulker_box", - "2": "skins/helms/riru2246", + "2": "item/skins/helms/riru2246", "particle": "block/white_stained_glass" }, "groups": [ { "name": "cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, "children": [ { "name": "top_cup", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] }, { "name": "bottom_cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, - "children": [11, 12, 13, 14, 15, 16, 17, 18, 19] + "children": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] } ] }, { "name": "kastera", - "origin": [7.9, 3.8, 8], + "origin": [ + 7.9, + 3.8, + 8 + ], "color": 0, - "children": [20, 21, 22, 23, 24] - }, 25] + "children": [ + 20, + 21, + 22, + 23, + 24 + ] + }, + 25 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/cut_fruits/pineapple.json b/pack/assets/minecraft/models/foods/cut_fruits/pineapple.json index 3f308b15..6b422f3b 100644 --- a/pack/assets/minecraft/models/foods/cut_fruits/pineapple.json +++ b/pack/assets/minecraft/models/foods/cut_fruits/pineapple.json @@ -4,33 +4,79 @@ "textures": { "0": "block/white_stained_glass", "1": "block/yellow_shulker_box", - "2": "skins/helms/riru2246", + "2": "item/skins/helms/riru2246", "particle": "block/white_stained_glass" }, "groups": [ { "name": "cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, "children": [ { "name": "top_cup", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] }, { "name": "bottom_cup", - "origin": [5.99698, 3, 10.18485], + "origin": [ + 5.99698, + 3, + 10.18485 + ], "color": 0, - "children": [11, 12, 13, 14, 15, 16, 17, 18, 19] + "children": [ + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] } ] }, { "name": "kastera", - "origin": [7.9, 3.8, 8], + "origin": [ + 7.9, + 3.8, + 8 + ], "color": 0, - "children": [20, 21, 22, 23, 24] - }, 25] + "children": [ + 20, + 21, + 22, + 23, + 24 + ] + }, + 25 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/don/rice.json b/pack/assets/minecraft/models/foods/don/rice.json index ba00641d..27516a15 100644 --- a/pack/assets/minecraft/models/foods/don/rice.json +++ b/pack/assets/minecraft/models/foods/don/rice.json @@ -3,215 +3,1200 @@ "credit": "Made with Blockbench", "textures": { "1": "block/nether_bricks", - "2": "foods/rice", - "particle": "foods/rice" + "2": "item/foods/rice", + "particle": "item/foods/rice" }, "elements": [ { - "from": [6, 0, 6.5], - "to": [6.5, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 8, 16]}, + "from": [ + 6, + 0, + 6.5 + ], + "to": [ + 6.5, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 0.5, 4], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 4 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [9.5, 0, 6.5], - "to": [10, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 16]}, + "from": [ + 9.5, + 0, + 6.5 + ], + "to": [ + 10, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.5, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 0.5, 4], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 4 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [6.5, 0, 6.5], - "to": [9.5, 0.5, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 16]}, + "from": [ + 6.5, + 0, + 6.5 + ], + "to": [ + 9.5, + 0.5, + 7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [0, 15, 3, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "south": {"uv": [4, 0, 7, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "up": {"uv": [0, 0, 3, 0.5], "texture": "#missing"}, - "down": {"uv": [0, 0, 3, 0.5], "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 3, + 15.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 4, + 0, + 7, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#1" + } } }, { - "from": [6.5, 0, 10], - "to": [9.5, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 19.5]}, + "from": [ + 6.5, + 0, + 10 + ], + "to": [ + 9.5, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "up": {"uv": [0, 0, 3, 0.5], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 0.5, 6], - "to": [10.5, 1, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8.5, 19.5]}, + "from": [ + 5.5, + 0.5, + 6 + ], + "to": [ + 10.5, + 1, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8.5, + 19.5 + ] + }, "faces": { - "north": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "east": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "south": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "west": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "up": {"uv": [5, 5, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 5, + 12, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 1, 5.5], - "to": [5.5, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 9, 19.5]}, + "from": [ + 5, + 1, + 5.5 + ], + "to": [ + 5.5, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [10.5, 1, 5.5], - "to": [11, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 19.5]}, + "from": [ + 10.5, + 1, + 5.5 + ], + "to": [ + 11, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [11, 2, 5], - "to": [11.5, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 10, 19.5]}, + "from": [ + 11, + 2, + 5 + ], + "to": [ + 11.5, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21.5, + 10, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [4.5, 2, 5], - "to": [5, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 19.5]}, + "from": [ + 4.5, + 2, + 5 + ], + "to": [ + 5, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 1, 11], - "to": [10.5, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 9, 19.5]}, + "from": [ + 5.5, + 1, + 11 + ], + "to": [ + 10.5, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [5, 10, 12, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "south": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 5, + 10, + 12, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 2, 11.5], - "to": [11, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 10, 20]}, + "from": [ + 5, + 2, + 11.5 + ], + "to": [ + 11, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 10, + 20 + ] + }, "faces": { - "north": {"uv": [5, 10, 12, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 5, + 10, + 12, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 2, 5], - "to": [11, 4, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 10, 13.5]}, + "from": [ + 5, + 2, + 5 + ], + "to": [ + 11, + 4, + 5.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 10, + 13.5 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "south": {"uv": [5, 6, 12, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 5, + 6, + 12, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 1, 5.5], - "to": [10.5, 2, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 9, 14]}, + "from": [ + 5.5, + 1, + 5.5 + ], + "to": [ + 10.5, + 2, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 9, + 14 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "south": {"uv": [5, 6, 12, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 5, + 6, + 12, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 4, 5.5], - "to": [11, 4.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 12, 16.5]}, + "from": [ + 5, + 4, + 5.5 + ], + "to": [ + 11, + 4.5, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 12, + 16.5 + ] + }, "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} + "north": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } } }, { - "from": [6, 4.4, 6.5], - "to": [10, 4.875, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 12.5, 16.5]}, + "from": [ + 6, + 4.4, + 6.5 + ], + "to": [ + 10, + 4.875, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 12.5, + 16.5 + ] + }, "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "up": {"uv": [3, 3, 13, 13], "texture": "#2"}, - "down": {"uv": [3, 3, 13, 13], "texture": "#2"} + "north": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 3, + 13, + 13 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 3, + 13, + 13 + ], + "texture": "#2" + } } } ], "display": { "thirdperson_righthand": { - "translation": [0, 5.75, 0] + "translation": [ + 0, + 5.75, + 0 + ] } }, "groups": [ { "name": "kodai", - "origin": [16, 8, 19.5], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - }, 13, 14] + "origin": [ + 16, + 8, + 19.5 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + 13, + 14 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/don/tuna_don.json b/pack/assets/minecraft/models/foods/don/tuna_don.json index 45d2a990..c3dabc7e 100644 --- a/pack/assets/minecraft/models/foods/don/tuna_don.json +++ b/pack/assets/minecraft/models/foods/don/tuna_don.json @@ -3,576 +3,3273 @@ "credit": "Made with Blockbench", "textures": { "1": "block/nether_bricks", - "2": "foods/rice", - "3": "foods/tuna", + "2": "item/foods/rice", + "3": "item/foods/tuna", "4": "block/gold_block", "5": "block/beetroots_stage3", - "particle": "foods/rice" + "particle": "item/foods/rice" }, "elements": [ { - "from": [6, 0, 6.5], - "to": [6.5, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 8, 16]}, + "from": [ + 6, + 0, + 6.5 + ], + "to": [ + 6.5, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 0.5, 4], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 4 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [9.5, 0, 6.5], - "to": [10, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8, 16]}, + "from": [ + 9.5, + 0, + 6.5 + ], + "to": [ + 10, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.5, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 0.5, 4], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 4 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [6.5, 0, 6.5], - "to": [9.5, 0.5, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 16]}, + "from": [ + 6.5, + 0, + 6.5 + ], + "to": [ + 9.5, + 0.5, + 7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 16 + ] + }, "faces": { - "north": {"uv": [0, 15, 3, 15.5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "south": {"uv": [4, 0, 7, 0.5], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "up": {"uv": [0, 0, 3, 0.5], "texture": "#missing"}, - "down": {"uv": [0, 0, 3, 0.5], "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 3, + 15.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 4, + 0, + 7, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#1" + } } }, { - "from": [6.5, 0, 10], - "to": [9.5, 0.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 19.5]}, + "from": [ + 6.5, + 0, + 10 + ], + "to": [ + 9.5, + 0.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#missing"}, - "up": {"uv": [0, 0, 3, 0.5], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0.5 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3, + 0.5 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 0.5, 6], - "to": [10.5, 1, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8.5, 19.5]}, + "from": [ + 5.5, + 0.5, + 6 + ], + "to": [ + 10.5, + 1, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8.5, + 19.5 + ] + }, "faces": { - "north": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "east": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "south": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "west": {"uv": [0, 9, 16, 11], "texture": "#1"}, - "up": {"uv": [5, 5, 12, 12], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 9, + 16, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 5, + 12, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 1, 5.5], - "to": [5.5, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 9, 19.5]}, + "from": [ + 5, + 1, + 5.5 + ], + "to": [ + 5.5, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [10.5, 1, 5.5], - "to": [11, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 9, 19.5]}, + "from": [ + 10.5, + 1, + 5.5 + ], + "to": [ + 11, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [11, 2, 5], - "to": [11.5, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [21.5, 10, 19.5]}, + "from": [ + 11, + 2, + 5 + ], + "to": [ + 11.5, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21.5, + 10, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [4.5, 2, 5], - "to": [5, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 19.5]}, + "from": [ + 4.5, + 2, + 5 + ], + "to": [ + 5, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 19.5 + ] + }, "faces": { - "north": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "east": {"uv": [4, 5, 13, 7], "texture": "#1"}, - "south": {"uv": [4, 0, 5, 5], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5, + 13, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 1, 11], - "to": [10.5, 2, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 9, 19.5]}, + "from": [ + 5.5, + 1, + 11 + ], + "to": [ + 10.5, + 2, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 9, + 19.5 + ] + }, "faces": { - "north": {"uv": [5, 10, 12, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "south": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 5, + 10, + 12, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 2, 11.5], - "to": [11, 4, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 10, 20]}, + "from": [ + 5, + 2, + 11.5 + ], + "to": [ + 11, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 10, + 20 + ] + }, "faces": { - "north": {"uv": [5, 10, 12, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 5, + 10, + 12, + 12 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 2, 5], - "to": [11, 4, 5.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 10, 13.5]}, + "from": [ + 5, + 2, + 5 + ], + "to": [ + 11, + 4, + 5.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 10, + 13.5 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "south": {"uv": [5, 6, 12, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 5, + 6, + 12, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 2 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5.5, 1, 5.5], - "to": [10.5, 2, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 9, 14]}, + "from": [ + 5.5, + 1, + 5.5 + ], + "to": [ + 10.5, + 2, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 9, + 14 + ] + }, "faces": { - "north": {"uv": [0, 5, 16, 9], "texture": "#1"}, - "east": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "south": {"uv": [5, 6, 12, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 0.5, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 1], "texture": "#1"} + "north": { + "uv": [ + 0, + 5, + 16, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 5, + 6, + 12, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "texture": "#1" + } } }, { - "from": [5, 3, 5.5], - "to": [11, 3.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 11, 16.5]}, + "from": [ + 5, + 3, + 5.5 + ], + "to": [ + 11, + 3.5, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 11, + 16.5 + ] + }, "faces": { - "north": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 14, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} + "north": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 14, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } } }, { - "from": [7.25, 2.675, 5.375], - "to": [8.375, 3.425, 8], - "rotation": {"angle": -22.5, "axis": "x", "origin": [7.875, 3.3, 5.5]}, + "from": [ + 7.25, + 2.675, + 5.375 + ], + "to": [ + 8.375, + 3.425, + 8 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.875, + 3.3, + 5.5 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + } } }, { - "from": [7.25, 3.625, 8.875], - "to": [8.375, 4.375, 11.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [7.875, 4.25, 9]}, + "from": [ + 7.25, + 3.625, + 8.875 + ], + "to": [ + 8.375, + 4.375, + 11.5 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7.875, + 4.25, + 9 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + } } }, { - "from": [7, 3.525, 8.775], - "to": [8.125, 3.775, 11.4], - "rotation": {"angle": -22.5, "axis": "y", "origin": [7.625, 3.65, 8.9]}, + "from": [ + 7, + 3.525, + 8.775 + ], + "to": [ + 8.125, + 3.775, + 11.4 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 7.625, + 3.65, + 8.9 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + } } }, { - "from": [5.075, 3.525, 8.25], - "to": [7.7, 3.775, 9.375], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.575, 3.65, 8.875]}, + "from": [ + 5.075, + 3.525, + 8.25 + ], + "to": [ + 7.7, + 3.775, + 9.375 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.575, + 3.65, + 8.875 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + } } }, { - "from": [6.95, 3.4, 8.8], - "to": [8.075, 3.65, 11.425], - "rotation": {"angle": -45, "axis": "y", "origin": [7.575, 3.525, 8.925]}, + "from": [ + 6.95, + 3.4, + 8.8 + ], + "to": [ + 8.075, + 3.65, + 11.425 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.575, + 3.525, + 8.925 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + } } }, { - "from": [4.95, 3.525, 7.45], - "to": [7.575, 3.775, 8.575], - "rotation": {"angle": -22.5, "axis": "y", "origin": [7.45, 3.65, 8.075]}, + "from": [ + 4.95, + 3.525, + 7.45 + ], + "to": [ + 7.575, + 3.775, + 8.575 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 7.45, + 3.65, + 8.075 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + } } }, { - "from": [4.875, 3.4, 7.375], - "to": [7.5, 3.65, 8.5], - "rotation": {"angle": -45, "axis": "y", "origin": [7.375, 3.525, 8]}, + "from": [ + 4.875, + 3.4, + 7.375 + ], + "to": [ + 7.5, + 3.65, + 8.5 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.375, + 3.525, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + } } }, { - "from": [7.025, 3.525, 5.5], - "to": [8.15, 3.775, 8.125], - "rotation": {"angle": 22.5, "axis": "y", "origin": [7.525, 3.65, 8]}, + "from": [ + 7.025, + 3.525, + 5.5 + ], + "to": [ + 8.15, + 3.775, + 8.125 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 7.525, + 3.65, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + } } }, { - "from": [8.225, 3.4, 8.4], - "to": [10.85, 3.65, 9.525], - "rotation": {"angle": -45, "axis": "y", "origin": [8.35, 3.525, 8.9]}, + "from": [ + 8.225, + 3.4, + 8.4 + ], + "to": [ + 10.85, + 3.65, + 9.525 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.35, + 3.525, + 8.9 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [8.375, 3.55, 7.85], - "to": [11, 4.3, 8.975], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8.5, 4.175, 8.35]}, + "from": [ + 8.375, + 3.55, + 7.85 + ], + "to": [ + 11, + 4.3, + 8.975 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.5, + 4.175, + 8.35 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [4.875, 2.675, 7.85], - "to": [7.5, 3.425, 8.975], - "rotation": {"angle": 22.5, "axis": "z", "origin": [5, 3.3, 8.35]}, + "from": [ + 4.875, + 2.675, + 7.85 + ], + "to": [ + 7.5, + 3.425, + 8.975 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 5, + 3.3, + 8.35 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [7.25, 3.9, 7.85], - "to": [8.375, 4.775, 8.975], - "rotation": {"angle": 0, "axis": "z", "origin": [5.875, 4.65, 8.35]}, + "from": [ + 7.25, + 3.9, + 7.85 + ], + "to": [ + 8.375, + 4.775, + 8.975 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.875, + 4.65, + 8.35 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#4"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#4"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#4"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#4"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#4"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#4" + } } }, { "name": "negi", - "from": [8.125, 4.7, 7.85], - "to": [8.25, 4.875, 7.975], - "rotation": {"angle": 0, "axis": "z", "origin": [5.75, 5.45, 7.35]}, + "from": [ + 8.125, + 4.7, + 7.85 + ], + "to": [ + 8.25, + 4.875, + 7.975 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.75, + 5.45, + 7.35 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [8.125, 4.15, 7.325], - "to": [8.25, 4.325, 7.45], - "rotation": {"angle": 0, "axis": "z", "origin": [5.75, 4.9, 6.825]}, + "from": [ + 8.125, + 4.15, + 7.325 + ], + "to": [ + 8.25, + 4.325, + 7.45 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.75, + 4.9, + 6.825 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [9.025, 3.75, 7.4], - "to": [9.15, 3.925, 7.525], - "rotation": {"angle": 0, "axis": "z", "origin": [6.65, 4.5, 6.9]}, + "from": [ + 9.025, + 3.75, + 7.4 + ], + "to": [ + 9.15, + 3.925, + 7.525 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.65, + 4.5, + 6.9 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [8.625, 4.425, 8.85], - "to": [8.75, 4.6, 8.975], - "rotation": {"angle": 0, "axis": "z", "origin": [6.25, 5.175, 8.35]}, + "from": [ + 8.625, + 4.425, + 8.85 + ], + "to": [ + 8.75, + 4.6, + 8.975 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.25, + 5.175, + 8.35 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [7, 4.225, 8.875], - "to": [7.125, 4.4, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [4.625, 4.975, 8.375]}, + "from": [ + 7, + 4.225, + 8.875 + ], + "to": [ + 7.125, + 4.4, + 9 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 4.625, + 4.975, + 8.375 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [7, 3.825, 7.625], - "to": [7.125, 4, 7.75], - "rotation": {"angle": 0, "axis": "z", "origin": [4.625, 4.575, 7.125]}, + "from": [ + 7, + 3.825, + 7.625 + ], + "to": [ + 7.125, + 4, + 7.75 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 4.625, + 4.575, + 7.125 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [6.825, 3.75, 9.2], - "to": [6.95, 3.925, 9.325], - "rotation": {"angle": 0, "axis": "z", "origin": [4.45, 4.5, 8.7]}, + "from": [ + 6.825, + 3.75, + 9.2 + ], + "to": [ + 6.95, + 3.925, + 9.325 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 4.45, + 4.5, + 8.7 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { "name": "negi", - "from": [8.625, 4.425, 8.85], - "to": [8.75, 4.6, 8.975], - "rotation": {"angle": 0, "axis": "z", "origin": [6.25, 5.175, 8.35]}, + "from": [ + 8.625, + 4.425, + 8.85 + ], + "to": [ + 8.75, + 4.6, + 8.975 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.25, + 5.175, + 8.35 + ] + }, "faces": { - "north": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "east": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "south": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "west": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "up": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"}, - "down": {"uv": [5, 7, 6, 8.125], "rotation": 180, "texture": "#5"} + "north": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "east": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "south": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "west": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "up": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 8.125 + ], + "rotation": 180, + "texture": "#5" + } } }, { - "from": [8.075, 3.525, 7.525], - "to": [10.7, 3.775, 8.65], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.2, 3.65, 8.025]}, + "from": [ + 8.075, + 3.525, + 7.525 + ], + "to": [ + 10.7, + 3.775, + 8.65 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.2, + 3.65, + 8.025 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [8.075, 3.4, 7.55], - "to": [10.7, 3.65, 8.675], - "rotation": {"angle": 45, "axis": "y", "origin": [8.2, 3.525, 8.05]}, + "from": [ + 8.075, + 3.4, + 7.55 + ], + "to": [ + 10.7, + 3.65, + 8.675 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.2, + 3.525, + 8.05 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [7.7, 3.525, 5.55], - "to": [8.825, 3.775, 8.175], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.2, 3.65, 8.05]}, + "from": [ + 7.7, + 3.525, + 5.55 + ], + "to": [ + 8.825, + 3.775, + 8.175 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.2, + 3.65, + 8.05 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + } } }, { - "from": [8.175, 3.525, 8.125], - "to": [10.8, 3.775, 9.25], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.3, 3.65, 8.625]}, + "from": [ + 8.175, + 3.525, + 8.125 + ], + "to": [ + 10.8, + 3.775, + 9.25 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.3, + 3.65, + 8.625 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 180, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 180, + "texture": "#3" + } } }, { - "from": [7.475, 3.525, 8.75], - "to": [8.6, 3.775, 11.375], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.1, 3.65, 8.875]}, + "from": [ + 7.475, + 3.525, + 8.75 + ], + "to": [ + 8.6, + 3.775, + 11.375 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.1, + 3.65, + 8.875 + ] + }, "faces": { - "north": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "east": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "south": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "west": {"uv": [0, 0, 4.625, 15.125], "texture": "#3"}, - "up": {"uv": [0, 0, 4.625, 15.125], "rotation": 270, "texture": "#3"}, - "down": {"uv": [0, 0, 4.625, 15.125], "rotation": 90, "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 270, + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 4.625, + 15.125 + ], + "rotation": 90, + "texture": "#3" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [70, 0, 0], - "translation": [-2.25, 2.75, 3.5], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 70, + 0, + 0 + ], + "translation": [ + -2.25, + 2.75, + 3.5 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "thirdperson_lefthand": { - "rotation": [70, 0, 0], - "translation": [-2.25, 2.75, 3.5], - "scale": [0.63, 0.63, 0.63] + "rotation": [ + 70, + 0, + 0 + ], + "translation": [ + -2.25, + 2.75, + 3.5 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "firstperson_righthand": { - "translation": [-2.25, 6, 3.5], - "scale": [0.63, 0.63, 0.63] + "translation": [ + -2.25, + 6, + 3.5 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "firstperson_lefthand": { - "translation": [-2.25, 6, 3.5], - "scale": [0.63, 0.63, 0.63] + "translation": [ + -2.25, + 6, + 3.5 + ], + "scale": [ + 0.63, + 0.63, + 0.63 + ] }, "ground": { - "translation": [0, 7.5, 0] + "translation": [ + 0, + 7.5, + 0 + ] }, "gui": { - "rotation": [22, 45, 0], - "translation": [-0.75, 6.5, 0], - "scale": [1.46, 1.46, 1.46] + "rotation": [ + 22, + 45, + 0 + ], + "translation": [ + -0.75, + 6.5, + 0 + ], + "scale": [ + 1.46, + 1.46, + 1.46 + ] }, "head": { - "rotation": [19, 0, 0], - "translation": [0, -0.25, -8.75] + "rotation": [ + 19, + 0, + 0 + ], + "translation": [ + 0, + -0.25, + -8.75 + ] }, "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, -0.5, -16], - "scale": [2.02, 2.02, 2.02] + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + -0.5, + -16 + ], + "scale": [ + 2.02, + 2.02, + 2.02 + ] } }, "groups": [ { "name": "kodai", - "origin": [16, 8, 19.5], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] - }, 13, + "origin": [ + 16, + 8, + 19.5 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + 13, { "name": "uenoyatu", - "origin": [8.1, 3.65, 8.875], - "children": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38] + "origin": [ + 8.1, + 3.65, + 8.875 + ], + "children": [ + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/kamaboko.json b/pack/assets/minecraft/models/foods/kamaboko.json index 58c0c6dc..3a6cd285 100644 --- a/pack/assets/minecraft/models/foods/kamaboko.json +++ b/pack/assets/minecraft/models/foods/kamaboko.json @@ -2,151 +2,775 @@ "__name": "かまぼこ", "credit": "Made with Blockbench", "textures": { - "0": "foods/kamaboko", + "0": "item/foods/kamaboko", "1": "block/birch_planks", - "particle": "foods/kamaboko" + "particle": "item/foods/kamaboko" }, "elements": [ { "name": "hexadecagon", - "from": [7.50272, 8.5, 1.45], - "to": [8.49728, 10.5, 15.05], - "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 7.50272, + 8.5, + 1.45 + ], + "to": [ + 8.49728, + 10.5, + 15.05 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2.25, 0, 9.25, 4.438], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [2.25, 0, 9.25, 4], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 2.25, + 0, + 9.25, + 4.438 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 2.25, + 0, + 9.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [7.50272, 8, 1.45], - "to": [8.49728, 10.5, 15.05], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 7.50272, + 8, + 1.45 + ], + "to": [ + 8.49728, + 10.5, + 15.05 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2.25, 0, 9.25, 5.125], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [2.25, 0, 9.25, 4.625], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 2.25, + 0, + 9.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 2.25, + 0, + 9.25, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [7.50272, 8, 1.45], - "to": [8.49728, 10.5, 15.05], + "from": [ + 7.50272, + 8, + 1.45 + ], + "to": [ + 8.49728, + 10.5, + 15.05 + ], "faces": { - "north": {"uv": [2.25, 0, 9.25, 4.625], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [2.25, 0, 9.25, 4.625], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 2.25, + 0, + 9.25, + 4.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 2.25, + 0, + 9.25, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [7.50272, 8.5, 1.45], - "to": [8.49728, 10.5, 15.05], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 7.50272, + 8.5, + 1.45 + ], + "to": [ + 8.49728, + 10.5, + 15.05 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2.25, 0, 9.25, 3.5], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [2.25, 0, 9.25, 3.688], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 2.25, + 0, + 9.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 2.25, + 0, + 9.25, + 3.688 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [7.50272, 8.5, 1.45], - "to": [8.49728, 10.5, 15.05], - "rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 7.50272, + 8.5, + 1.45 + ], + "to": [ + 8.49728, + 10.5, + 15.05 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2.25, 0, 9.25, 3.313], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [2.25, 0, 9.25, 3.688], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 2.25, + 0, + 9.25, + 3.313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 2.25, + 0, + 9.25, + 3.688 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [5.5, 7.50272, 1.45], - "to": [7.25, 8.49728, 15.05], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 5.5, + 7.50272, + 1.45 + ], + "to": [ + 7.25, + 8.49728, + 15.05 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [9.375, 1.25, 12.063, 8.25], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 1.75, 2.938, 6.375], "texture": "#0"}, - "west": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 9.375, + 1.25, + 12.063, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 1.75, + 2.938, + 6.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [5.5, 7.75272, 1.45], - "to": [8.5, 8.49728, 15.05], + "from": [ + 5.5, + 7.75272, + 1.45 + ], + "to": [ + 8.5, + 8.49728, + 15.05 + ], "faces": { - "north": {"uv": [8.063, 3.125, 12, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 1.625, 4.813, 6.25], "texture": "#0"}, - "west": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 8.063, + 3.125, + 12, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 1.625, + 4.813, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [7.5, 7.75272, 1.45], - "to": [10.5, 8.49728, 15.05], + "from": [ + 7.5, + 7.75272, + 1.45 + ], + "to": [ + 10.5, + 8.49728, + 15.05 + ], "faces": { - "north": {"uv": [0, 3.125, 6.063, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "south": {"uv": [6.125, 2.5, 12, 7.125], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 0, + 3.125, + 6.063, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.125, + 2.5, + 12, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "hexadecagon", - "from": [8.75, 7.50272, 1.45], - "to": [10.5, 8.49728, 15.05], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 8, 8]}, + "from": [ + 8.75, + 7.50272, + 1.45 + ], + "to": [ + 10.5, + 8.49728, + 15.05 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 1, 3.688, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 3.188, 0.5], "texture": "#0"}, - "south": {"uv": [8.688, 1.563, 12.063, 6.188], "texture": "#0"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 0, + 1, + 3.688, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 3.188, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.688, + 1.563, + 12.063, + 6.188 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { - "from": [5.5, 7, 1.45], - "to": [10.5, 7.75, 15.05], + "from": [ + 5.5, + 7, + 1.45 + ], + "to": [ + 10.5, + 7.75, + 15.05 + ], "faces": { - "north": {"uv": [0, 9, 16, 15.75], "texture": "#1"}, - "east": {"uv": [1, 5, 15.6, 8.75], "texture": "#1"}, - "south": {"uv": [0, 9, 16, 15.75], "texture": "#1"}, - "west": {"uv": [1, 5, 15.6, 8.75], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 13.6], "texture": "#missing"}, - "down": {"uv": [0, 0, 11, 15.6], "texture": "#1"} + "north": { + "uv": [ + 0, + 9, + 16, + 15.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 5, + 15.6, + 8.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 9, + 16, + 15.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 5, + 15.6, + 8.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 13.6 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 11, + 15.6 + ], + "texture": "#1" + } } } ], "groups": [ { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8] - }, 9] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ] + }, + 9 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/kizi.json b/pack/assets/minecraft/models/foods/kizi.json index e41ad6ec..0aea3c80 100644 --- a/pack/assets/minecraft/models/foods/kizi.json +++ b/pack/assets/minecraft/models/foods/kizi.json @@ -1,7 +1,7 @@ -{ - "__name": "生地", - "parent": "item/generated", - "textures": { - "layer0": "foods/material" - } +{ + "__name": "生地", + "parent": "item/generated", + "textures": { + "layer0": "item/foods/material" + } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/omelette.json b/pack/assets/minecraft/models/foods/omelette.json index 293aa121..28001895 100644 --- a/pack/assets/minecraft/models/foods/omelette.json +++ b/pack/assets/minecraft/models/foods/omelette.json @@ -2,146 +2,741 @@ "__name": "オムレツ", "credit": "Made with Blockbench", "textures": { - "0": "foods/omelet", - "particle": "foods/omelet" + "0": "item/foods/omelet", + "particle": "item/foods/omelet" }, "elements": [ { "name": "omelet_0", - "from": [9, 0, 3], - "to": [13, 1, 7], + "from": [ + 9, + 0, + 3 + ], + "to": [ + 13, + 1, + 7 + ], "faces": { - "north": {"uv": [13, 3, 9, 4], "texture": "#0"}, - "east": {"uv": [12, 3, 13, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 6, 13, 7], "texture": "#0"}, - "west": {"uv": [9, 3, 10, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 3, 13, 7], "texture": "#0"}, - "down": {"uv": [9, 7, 13, 3], "texture": "#0"} + "north": { + "uv": [ + 13, + 3, + 9, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6, + 13, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3, + 10, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3, + 13, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7, + 13, + 3 + ], + "texture": "#0" + } } }, { "name": "omelet_1", - "from": [7, 0, 4], - "to": [9, 1, 11], + "from": [ + 7, + 0, + 4 + ], + "to": [ + 9, + 1, + 11 + ], "faces": { - "north": {"uv": [9, 4, 7, 5], "texture": "#0"}, - "east": {"uv": [8, 4, 9, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 10, 9, 11], "texture": "#0"}, - "west": {"uv": [7, 4, 8, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 4, 9, 11], "texture": "#0"}, - "down": {"uv": [7, 11, 9, 4], "texture": "#0"} + "north": { + "uv": [ + 9, + 4, + 7, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 9, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10, + 9, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 8, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 11, + 9, + 4 + ], + "texture": "#0" + } } }, { "name": "omelet_2", - "from": [6, 0, 5], - "to": [7, 1, 12], + "from": [ + 6, + 0, + 5 + ], + "to": [ + 7, + 1, + 12 + ], "faces": { - "north": {"uv": [7, 5, 6, 6], "texture": "#0"}, - "east": {"uv": [6, 5, 7, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 11, 7, 12], "texture": "#0"}, - "west": {"uv": [6, 5, 7, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 5, 7, 12], "texture": "#0"}, - "down": {"uv": [6, 12, 7, 5], "texture": "#0"} + "north": { + "uv": [ + 7, + 5, + 6, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5, + 7, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 11, + 7, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5, + 7, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5, + 7, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 12, + 7, + 5 + ], + "texture": "#0" + } } }, { "name": "omelet_3", - "from": [4, 0, 6], - "to": [6, 1, 13], + "from": [ + 4, + 0, + 6 + ], + "to": [ + 6, + 1, + 13 + ], "faces": { - "north": {"uv": [6, 6, 4, 7], "texture": "#0"}, - "east": {"uv": [5, 6, 6, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 12, 6, 13], "texture": "#0"}, - "west": {"uv": [4, 6, 5, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 6, 6, 13], "texture": "#0"}, - "down": {"uv": [4, 13, 6, 6], "texture": "#0"} + "north": { + "uv": [ + 6, + 6, + 4, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6, + 6, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 12, + 6, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6, + 5, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6, + 6, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 13, + 6, + 6 + ], + "texture": "#0" + } } }, { "name": "omelet_4", - "from": [9, 0, 7], - "to": [12, 1, 9], + "from": [ + 9, + 0, + 7 + ], + "to": [ + 12, + 1, + 9 + ], "faces": { - "north": {"uv": [12, 7, 9, 8], "texture": "#0"}, - "east": {"uv": [11, 7, 12, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 8, 12, 9], "texture": "#0"}, - "west": {"uv": [9, 7, 10, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 7, 12, 9], "texture": "#0"}, - "down": {"uv": [9, 9, 12, 7], "texture": "#0"} + "north": { + "uv": [ + 12, + 7, + 9, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 7, + 12, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 12, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7, + 10, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9, + 12, + 7 + ], + "texture": "#0" + } } }, { "name": "omelet_5", - "from": [3, 0, 8], - "to": [4, 1, 13], + "from": [ + 3, + 0, + 8 + ], + "to": [ + 4, + 1, + 13 + ], "faces": { - "north": {"uv": [4, 8, 3, 9], "texture": "#0"}, - "east": {"uv": [3, 8, 4, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 12, 4, 13], "texture": "#0"}, - "west": {"uv": [3, 8, 4, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 8, 4, 13], "texture": "#0"}, - "down": {"uv": [3, 13, 4, 8], "texture": "#0"} + "north": { + "uv": [ + 4, + 8, + 3, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 4, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 12, + 4, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8, + 4, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8, + 4, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 13, + 4, + 8 + ], + "texture": "#0" + } } }, { "name": "omelet_6", - "from": [9, 0, 9], - "to": [11, 1, 10], + "from": [ + 9, + 0, + 9 + ], + "to": [ + 11, + 1, + 10 + ], "faces": { - "north": {"uv": [11, 9, 9, 10], "texture": "#0"}, - "east": {"uv": [10, 9, 11, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 9, 11, 10], "texture": "#0"}, - "west": {"uv": [9, 9, 10, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 9, 11, 10], "texture": "#0"}, - "down": {"uv": [9, 10, 11, 9], "texture": "#0"} + "north": { + "uv": [ + 11, + 9, + 9, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9, + 11, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 11, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 10, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9, + 11, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 10, + 11, + 9 + ], + "texture": "#0" + } } }, { "name": "omelet_7", - "from": [2, 0, 10], - "to": [3, 1, 13], + "from": [ + 2, + 0, + 10 + ], + "to": [ + 3, + 1, + 13 + ], "faces": { - "north": {"uv": [3, 10, 2, 11], "texture": "#0"}, - "east": {"uv": [2, 10, 3, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2, 12, 3, 13], "texture": "#0"}, - "west": {"uv": [2, 10, 3, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2, 10, 3, 13], "texture": "#0"}, - "down": {"uv": [2, 13, 3, 10], "texture": "#0"} + "north": { + "uv": [ + 3, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10, + 3, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 12, + 3, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 10, + 3, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 10, + 3, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 13, + 3, + 10 + ], + "texture": "#0" + } } }, { "name": "omelet_8", - "from": [9, 0, 10], - "to": [10, 1, 11], + "from": [ + 9, + 0, + 10 + ], + "to": [ + 10, + 1, + 11 + ], "faces": { - "north": {"uv": [10, 10, 9, 11], "texture": "#0"}, - "east": {"uv": [9, 10, 10, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9, 10, 10, 11], "texture": "#0"}, - "west": {"uv": [9, 10, 10, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9, 10, 10, 11], "texture": "#0"}, - "down": {"uv": [9, 11, 10, 10], "texture": "#0"} + "north": { + "uv": [ + 10, + 10, + 9, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 10, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 10, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10, + 10, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 10, + 10, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11, + 10, + 10 + ], + "texture": "#0" + } } }, { "name": "omelet_9", - "from": [7, 0, 11], - "to": [8, 1, 12], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 8, + 1, + 12 + ], "faces": { - "north": {"uv": [8, 11, 7, 12], "texture": "#0"}, - "east": {"uv": [7, 11, 8, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 11, 8, 12], "texture": "#0"}, - "west": {"uv": [7, 11, 8, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11, 8, 12], "texture": "#0"}, - "down": {"uv": [7, 12, 8, 11], "texture": "#0"} + "north": { + "uv": [ + 8, + 11, + 7, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11, + 8, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 11, + 8, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11, + 8, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11, + 8, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 12, + 8, + 11 + ], + "texture": "#0" + } } } ], "groups": [ { "name": "omelet", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/pizza.json b/pack/assets/minecraft/models/foods/pizza.json index b6c553fa..b2e30f36 100644 --- a/pack/assets/minecraft/models/foods/pizza.json +++ b/pack/assets/minecraft/models/foods/pizza.json @@ -2,744 +2,3956 @@ "__name": "ピザ", "credit": "Made with Blockbench", "textures": { - "0": "foods/pizza", - "particle": "foods/pizza" + "0": "item/foods/pizza", + "particle": "item/foods/pizza" }, "elements": [ { "name": "pizza_0", - "from": [6.5641, 0, 0], - "to": [9.23077, 0.58013, 15.79487], + "from": [ + 6.5641, + 0, + 0 + ], + "to": [ + 9.23077, + 0.58013, + 15.79487 + ], "faces": { - "north": {"uv": [9.23077, 0, 6.5641, 0.20513], "texture": "#0"}, - "east": {"uv": [9.02564, 0, 9.23077, 15.79487], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.5641, 15.58974, 9.23077, 15.79487], "texture": "#0"}, - "west": {"uv": [6.5641, 0, 6.76923, 15.79487], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.5641, 0, 9.23077, 15.79487], "texture": "#0"}, - "down": {"uv": [6.5641, 15.79487, 9.23077, 0], "texture": "#0"} + "north": { + "uv": [ + 9.23077, + 0, + 6.5641, + 0.20513 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.02564, + 0, + 9.23077, + 15.79487 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5641, + 15.58974, + 9.23077, + 15.79487 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5641, + 0, + 6.76923, + 15.79487 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5641, + 0, + 9.23077, + 15.79487 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5641, + 15.79487, + 9.23077, + 0 + ], + "texture": "#0" + } } }, { "name": "pizza_1", - "from": [5.33333, 0, 0.20513], - "to": [6.5641, 0.58013, 15.58974], + "from": [ + 5.33333, + 0, + 0.20513 + ], + "to": [ + 6.5641, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [6.5641, 0.20513, 5.33333, 0.41026], "texture": "#0"}, - "east": {"uv": [6.35897, 0.20513, 6.5641, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.33333, 15.38462, 6.5641, 15.58974], "texture": "#0"}, - "west": {"uv": [5.33333, 0.20513, 5.53846, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.33333, 0.20513, 6.5641, 15.58974], "texture": "#0"}, - "down": {"uv": [5.33333, 15.58974, 6.5641, 0.20513], "texture": "#0"} + "north": { + "uv": [ + 6.5641, + 0.20513, + 5.33333, + 0.41026 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.35897, + 0.20513, + 6.5641, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.33333, + 15.38462, + 6.5641, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.33333, + 0.20513, + 5.53846, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.33333, + 0.20513, + 6.5641, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.33333, + 15.58974, + 6.5641, + 0.20513 + ], + "texture": "#0" + } } }, { "name": "pizza_2", - "from": [9.23077, 0, 0.20513], - "to": [10.25641, 0.58013, 15.79487], + "from": [ + 9.23077, + 0, + 0.20513 + ], + "to": [ + 10.25641, + 0.58013, + 15.79487 + ], "faces": { - "north": {"uv": [10.25641, 0.20513, 9.23077, 0.41026], "texture": "#0"}, - "east": {"uv": [10.05128, 0.20513, 10.25641, 15.79487], "rotation": 90, "texture": "#0"}, - "south": {"uv": [9.23077, 15.58974, 10.25641, 15.79487], "texture": "#0"}, - "west": {"uv": [9.23077, 0.20513, 9.4359, 15.79487], "rotation": 270, "texture": "#0"}, - "up": {"uv": [9.23077, 0.20513, 10.25641, 15.79487], "texture": "#0"}, - "down": {"uv": [9.23077, 15.79487, 10.25641, 0.20513], "texture": "#0"} + "north": { + "uv": [ + 10.25641, + 0.20513, + 9.23077, + 0.41026 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.05128, + 0.20513, + 10.25641, + 15.79487 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.23077, + 15.58974, + 10.25641, + 15.79487 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.23077, + 0.20513, + 9.4359, + 15.79487 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 9.23077, + 0.20513, + 10.25641, + 15.79487 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.23077, + 15.79487, + 10.25641, + 0.20513 + ], + "texture": "#0" + } } }, { "name": "pizza_3", - "from": [11.48718, 0, 0.20513], - "to": [11.69231, 0.58013, 15.58974], + "from": [ + 11.48718, + 0, + 0.20513 + ], + "to": [ + 11.69231, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [11.69231, 0.20513, 11.48718, 0.41026], "texture": "#0"}, - "east": {"uv": [11.48718, 0.20513, 11.69231, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.48718, 15.38462, 11.69231, 15.58974], "texture": "#0"}, - "west": {"uv": [11.48718, 0.20513, 11.69231, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.48718, 0.20513, 11.69231, 15.58974], "texture": "#0"}, - "down": {"uv": [11.48718, 15.58974, 11.69231, 0.20513], "texture": "#0"} + "north": { + "uv": [ + 11.69231, + 0.20513, + 11.48718, + 0.41026 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.48718, + 0.20513, + 11.69231, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.48718, + 15.38462, + 11.69231, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.48718, + 0.20513, + 11.69231, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.48718, + 0.20513, + 11.69231, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.48718, + 15.58974, + 11.69231, + 0.20513 + ], + "texture": "#0" + } } }, { "name": "pizza_4", - "from": [4.92308, 0, 0.41026], - "to": [5.33333, 0.58013, 15.58974], + "from": [ + 4.92308, + 0, + 0.41026 + ], + "to": [ + 5.33333, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [5.33333, 0.41026, 4.92308, 0.61538], "texture": "#0"}, - "east": {"uv": [5.12821, 0.41026, 5.33333, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.92308, 15.38462, 5.33333, 15.58974], "texture": "#0"}, - "west": {"uv": [4.92308, 0.41026, 5.12821, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.92308, 0.41026, 5.33333, 15.58974], "texture": "#0"}, - "down": {"uv": [4.92308, 15.58974, 5.33333, 0.41026], "texture": "#0"} + "north": { + "uv": [ + 5.33333, + 0.41026, + 4.92308, + 0.61538 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.12821, + 0.41026, + 5.33333, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.92308, + 15.38462, + 5.33333, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.92308, + 0.41026, + 5.12821, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.92308, + 0.41026, + 5.33333, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.92308, + 15.58974, + 5.33333, + 0.41026 + ], + "texture": "#0" + } } }, { "name": "pizza_5", - "from": [10.25641, 0, 0.41026], - "to": [10.87179, 0.58013, 15.58974], + "from": [ + 10.25641, + 0, + 0.41026 + ], + "to": [ + 10.87179, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [10.87179, 0.41026, 10.25641, 0.61538], "texture": "#0"}, - "east": {"uv": [10.66667, 0.41026, 10.87179, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.25641, 15.38462, 10.87179, 15.58974], "texture": "#0"}, - "west": {"uv": [10.25641, 0.41026, 10.46154, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.25641, 0.41026, 10.87179, 15.58974], "texture": "#0"}, - "down": {"uv": [10.25641, 15.58974, 10.87179, 0.41026], "texture": "#0"} + "north": { + "uv": [ + 10.87179, + 0.41026, + 10.25641, + 0.61538 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.66667, + 0.41026, + 10.87179, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.25641, + 15.38462, + 10.87179, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25641, + 0.41026, + 10.46154, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.25641, + 0.41026, + 10.87179, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25641, + 15.58974, + 10.87179, + 0.41026 + ], + "texture": "#0" + } } }, { "name": "pizza_6", - "from": [11.28205, 0, 0.41026], - "to": [11.48718, 0.58013, 15.58974], + "from": [ + 11.28205, + 0, + 0.41026 + ], + "to": [ + 11.48718, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [11.48718, 0.41026, 11.28205, 0.61538], "texture": "#0"}, - "east": {"uv": [11.28205, 0.41026, 11.48718, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.28205, 15.38462, 11.48718, 15.58974], "texture": "#0"}, - "west": {"uv": [11.28205, 0.41026, 11.48718, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.28205, 0.41026, 11.48718, 15.58974], "texture": "#0"}, - "down": {"uv": [11.28205, 15.58974, 11.48718, 0.41026], "texture": "#0"} + "north": { + "uv": [ + 11.48718, + 0.41026, + 11.28205, + 0.61538 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.28205, + 0.41026, + 11.48718, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.28205, + 15.38462, + 11.48718, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.28205, + 0.41026, + 11.48718, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.28205, + 0.41026, + 11.48718, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.28205, + 15.58974, + 11.48718, + 0.41026 + ], + "texture": "#0" + } } }, { "name": "pizza_7", - "from": [11.69231, 0, 0.41026], - "to": [11.89744, 0.58013, 15.17949], + "from": [ + 11.69231, + 0, + 0.41026 + ], + "to": [ + 11.89744, + 0.58013, + 15.17949 + ], "faces": { - "north": {"uv": [11.89744, 0.41026, 11.69231, 0.61538], "texture": "#0"}, - "east": {"uv": [11.69231, 0.41026, 11.89744, 15.17949], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.69231, 14.97436, 11.89744, 15.17949], "texture": "#0"}, - "west": {"uv": [11.69231, 0.41026, 11.89744, 15.17949], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.69231, 0.41026, 11.89744, 15.17949], "texture": "#0"}, - "down": {"uv": [11.69231, 15.17949, 11.89744, 0.41026], "texture": "#0"} + "north": { + "uv": [ + 11.89744, + 0.41026, + 11.69231, + 0.61538 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.69231, + 0.41026, + 11.89744, + 15.17949 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.69231, + 14.97436, + 11.89744, + 15.17949 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.69231, + 0.41026, + 11.89744, + 15.17949 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.69231, + 0.41026, + 11.89744, + 15.17949 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.69231, + 15.17949, + 11.89744, + 0.41026 + ], + "texture": "#0" + } } }, { "name": "pizza_8", - "from": [4.51282, 0, 0.61538], - "to": [4.92308, 0.58013, 15.17949], + "from": [ + 4.51282, + 0, + 0.61538 + ], + "to": [ + 4.92308, + 0.58013, + 15.17949 + ], "faces": { - "north": {"uv": [4.92308, 0.61538, 4.51282, 0.82051], "texture": "#0"}, - "east": {"uv": [4.71795, 0.61538, 4.92308, 15.17949], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.51282, 14.97436, 4.92308, 15.17949], "texture": "#0"}, - "west": {"uv": [4.51282, 0.61538, 4.71795, 15.17949], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.51282, 0.61538, 4.92308, 15.17949], "texture": "#0"}, - "down": {"uv": [4.51282, 15.17949, 4.92308, 0.61538], "texture": "#0"} + "north": { + "uv": [ + 4.92308, + 0.61538, + 4.51282, + 0.82051 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.71795, + 0.61538, + 4.92308, + 15.17949 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.51282, + 14.97436, + 4.92308, + 15.17949 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.51282, + 0.61538, + 4.71795, + 15.17949 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.51282, + 0.61538, + 4.92308, + 15.17949 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.51282, + 15.17949, + 4.92308, + 0.61538 + ], + "texture": "#0" + } } }, { "name": "pizza_9", - "from": [10.87179, 0, 0.61538], - "to": [11.28205, 0.58013, 15.58974], + "from": [ + 10.87179, + 0, + 0.61538 + ], + "to": [ + 11.28205, + 0.58013, + 15.58974 + ], "faces": { - "north": {"uv": [11.28205, 0.61538, 10.87179, 0.82051], "texture": "#0"}, - "east": {"uv": [11.07692, 0.61538, 11.28205, 15.58974], "rotation": 90, "texture": "#0"}, - "south": {"uv": [10.87179, 15.38462, 11.28205, 15.58974], "texture": "#0"}, - "west": {"uv": [10.87179, 0.61538, 11.07692, 15.58974], "rotation": 270, "texture": "#0"}, - "up": {"uv": [10.87179, 0.61538, 11.28205, 15.58974], "texture": "#0"}, - "down": {"uv": [10.87179, 15.58974, 11.28205, 0.61538], "texture": "#0"} + "north": { + "uv": [ + 11.28205, + 0.61538, + 10.87179, + 0.82051 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.07692, + 0.61538, + 11.28205, + 15.58974 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10.87179, + 15.38462, + 11.28205, + 15.58974 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.87179, + 0.61538, + 11.07692, + 15.58974 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.87179, + 0.61538, + 11.28205, + 15.58974 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.87179, + 15.58974, + 11.28205, + 0.61538 + ], + "texture": "#0" + } } }, { "name": "pizza_10", - "from": [4.10256, 0, 0.82051], - "to": [4.51282, 0.58013, 14.97436], + "from": [ + 4.10256, + 0, + 0.82051 + ], + "to": [ + 4.51282, + 0.58013, + 14.97436 + ], "faces": { - "north": {"uv": [4.51282, 0.82051, 4.10256, 1.02564], "texture": "#0"}, - "east": {"uv": [4.30769, 0.82051, 4.51282, 14.97436], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.10256, 14.76923, 4.51282, 14.97436], "texture": "#0"}, - "west": {"uv": [4.10256, 0.82051, 4.30769, 14.97436], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.10256, 0.82051, 4.51282, 14.97436], "texture": "#0"}, - "down": {"uv": [4.10256, 14.97436, 4.51282, 0.82051], "texture": "#0"} + "north": { + "uv": [ + 4.51282, + 0.82051, + 4.10256, + 1.02564 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.30769, + 0.82051, + 4.51282, + 14.97436 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.10256, + 14.76923, + 4.51282, + 14.97436 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.10256, + 0.82051, + 4.30769, + 14.97436 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.10256, + 0.82051, + 4.51282, + 14.97436 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.10256, + 14.97436, + 4.51282, + 0.82051 + ], + "texture": "#0" + } } }, { "name": "pizza_11", - "from": [3.69231, 0, 1.02564], - "to": [4.10256, 0.58013, 14.76923], + "from": [ + 3.69231, + 0, + 1.02564 + ], + "to": [ + 4.10256, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [4.10256, 1.02564, 3.69231, 1.23077], "texture": "#0"}, - "east": {"uv": [3.89744, 1.02564, 4.10256, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.69231, 14.5641, 4.10256, 14.76923], "texture": "#0"}, - "west": {"uv": [3.69231, 1.02564, 3.89744, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.69231, 1.02564, 4.10256, 14.76923], "texture": "#0"}, - "down": {"uv": [3.69231, 14.76923, 4.10256, 1.02564], "texture": "#0"} + "north": { + "uv": [ + 4.10256, + 1.02564, + 3.69231, + 1.23077 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.89744, + 1.02564, + 4.10256, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.69231, + 14.5641, + 4.10256, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.69231, + 1.02564, + 3.89744, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.69231, + 1.02564, + 4.10256, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.69231, + 14.76923, + 4.10256, + 1.02564 + ], + "texture": "#0" + } } }, { "name": "pizza_12", - "from": [11.89744, 0, 1.02564], - "to": [12.30769, 0.58013, 15.17949], + "from": [ + 11.89744, + 0, + 1.02564 + ], + "to": [ + 12.30769, + 0.58013, + 15.17949 + ], "faces": { - "north": {"uv": [12.30769, 1.02564, 11.89744, 1.23077], "texture": "#0"}, - "east": {"uv": [12.10256, 1.02564, 12.30769, 15.17949], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11.89744, 14.97436, 12.30769, 15.17949], "texture": "#0"}, - "west": {"uv": [11.89744, 1.02564, 12.10256, 15.17949], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11.89744, 1.02564, 12.30769, 15.17949], "texture": "#0"}, - "down": {"uv": [11.89744, 15.17949, 12.30769, 1.02564], "texture": "#0"} + "north": { + "uv": [ + 12.30769, + 1.02564, + 11.89744, + 1.23077 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.10256, + 1.02564, + 12.30769, + 15.17949 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11.89744, + 14.97436, + 12.30769, + 15.17949 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.89744, + 1.02564, + 12.10256, + 15.17949 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11.89744, + 1.02564, + 12.30769, + 15.17949 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.89744, + 15.17949, + 12.30769, + 1.02564 + ], + "texture": "#0" + } } }, { "name": "pizza_13", - "from": [3.48718, 0, 1.23077], - "to": [3.69231, 0.58013, 14.76923], + "from": [ + 3.48718, + 0, + 1.23077 + ], + "to": [ + 3.69231, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [3.69231, 1.23077, 3.48718, 1.4359], "texture": "#0"}, - "east": {"uv": [3.48718, 1.23077, 3.69231, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.48718, 14.5641, 3.69231, 14.76923], "texture": "#0"}, - "west": {"uv": [3.48718, 1.23077, 3.69231, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.48718, 1.23077, 3.69231, 14.76923], "texture": "#0"}, - "down": {"uv": [3.48718, 14.76923, 3.69231, 1.23077], "texture": "#0"} + "north": { + "uv": [ + 3.69231, + 1.23077, + 3.48718, + 1.4359 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.48718, + 1.23077, + 3.69231, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.48718, + 14.5641, + 3.69231, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.48718, + 1.23077, + 3.69231, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.48718, + 1.23077, + 3.69231, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.48718, + 14.76923, + 3.69231, + 1.23077 + ], + "texture": "#0" + } } }, { "name": "pizza_14", - "from": [12.30769, 0, 1.23077], - "to": [12.51282, 0.58013, 15.17949], + "from": [ + 12.30769, + 0, + 1.23077 + ], + "to": [ + 12.51282, + 0.58013, + 15.17949 + ], "faces": { - "north": {"uv": [12.51282, 1.23077, 12.30769, 1.4359], "texture": "#0"}, - "east": {"uv": [12.30769, 1.23077, 12.51282, 15.17949], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.30769, 14.97436, 12.51282, 15.17949], "texture": "#0"}, - "west": {"uv": [12.30769, 1.23077, 12.51282, 15.17949], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.30769, 1.23077, 12.51282, 15.17949], "texture": "#0"}, - "down": {"uv": [12.30769, 15.17949, 12.51282, 1.23077], "texture": "#0"} + "north": { + "uv": [ + 12.51282, + 1.23077, + 12.30769, + 1.4359 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.30769, + 1.23077, + 12.51282, + 15.17949 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.30769, + 14.97436, + 12.51282, + 15.17949 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.30769, + 1.23077, + 12.51282, + 15.17949 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.30769, + 1.23077, + 12.51282, + 15.17949 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.30769, + 15.17949, + 12.51282, + 1.23077 + ], + "texture": "#0" + } } }, { "name": "pizza_15", - "from": [3.07692, 0, 1.4359], - "to": [3.48718, 0.58013, 14.76923], + "from": [ + 3.07692, + 0, + 1.4359 + ], + "to": [ + 3.48718, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [3.48718, 1.4359, 3.07692, 1.64103], "texture": "#0"}, - "east": {"uv": [3.28205, 1.4359, 3.48718, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.07692, 14.5641, 3.48718, 14.76923], "texture": "#0"}, - "west": {"uv": [3.07692, 1.4359, 3.28205, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.07692, 1.4359, 3.48718, 14.76923], "texture": "#0"}, - "down": {"uv": [3.07692, 14.76923, 3.48718, 1.4359], "texture": "#0"} + "north": { + "uv": [ + 3.48718, + 1.4359, + 3.07692, + 1.64103 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.28205, + 1.4359, + 3.48718, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.07692, + 14.5641, + 3.48718, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.07692, + 1.4359, + 3.28205, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.07692, + 1.4359, + 3.48718, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.07692, + 14.76923, + 3.48718, + 1.4359 + ], + "texture": "#0" + } } }, { "name": "pizza_16", - "from": [12.51282, 0, 1.4359], - "to": [12.92308, 0.58013, 14.76923], + "from": [ + 12.51282, + 0, + 1.4359 + ], + "to": [ + 12.92308, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [12.92308, 1.4359, 12.51282, 1.64103], "texture": "#0"}, - "east": {"uv": [12.71795, 1.4359, 12.92308, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.51282, 14.5641, 12.92308, 14.76923], "texture": "#0"}, - "west": {"uv": [12.51282, 1.4359, 12.71795, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.51282, 1.4359, 12.92308, 14.76923], "texture": "#0"}, - "down": {"uv": [12.51282, 14.76923, 12.92308, 1.4359], "texture": "#0"} + "north": { + "uv": [ + 12.92308, + 1.4359, + 12.51282, + 1.64103 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.71795, + 1.4359, + 12.92308, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.51282, + 14.5641, + 12.92308, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.51282, + 1.4359, + 12.71795, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.51282, + 1.4359, + 12.92308, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.51282, + 14.76923, + 12.92308, + 1.4359 + ], + "texture": "#0" + } } }, { "name": "pizza_17", - "from": [12.92308, 0, 1.64103], - "to": [13.12821, 0.58013, 14.76923], + "from": [ + 12.92308, + 0, + 1.64103 + ], + "to": [ + 13.12821, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [13.12821, 1.64103, 12.92308, 1.84615], "texture": "#0"}, - "east": {"uv": [12.92308, 1.64103, 13.12821, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12.92308, 14.5641, 13.12821, 14.76923], "texture": "#0"}, - "west": {"uv": [12.92308, 1.64103, 13.12821, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12.92308, 1.64103, 13.12821, 14.76923], "texture": "#0"}, - "down": {"uv": [12.92308, 14.76923, 13.12821, 1.64103], "texture": "#0"} + "north": { + "uv": [ + 13.12821, + 1.64103, + 12.92308, + 1.84615 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.92308, + 1.64103, + 13.12821, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12.92308, + 14.5641, + 13.12821, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.92308, + 1.64103, + 13.12821, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12.92308, + 1.64103, + 13.12821, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.92308, + 14.76923, + 13.12821, + 1.64103 + ], + "texture": "#0" + } } }, { "name": "pizza_18", - "from": [2.46154, 0, 1.84615], - "to": [3.07692, 0.58013, 14.35897], + "from": [ + 2.46154, + 0, + 1.84615 + ], + "to": [ + 3.07692, + 0.58013, + 14.35897 + ], "faces": { - "north": {"uv": [3.07692, 1.84615, 2.46154, 2.05128], "texture": "#0"}, - "east": {"uv": [2.87179, 1.84615, 3.07692, 14.35897], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.46154, 14.15385, 3.07692, 14.35897], "texture": "#0"}, - "west": {"uv": [2.46154, 1.84615, 2.66667, 14.35897], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.46154, 1.84615, 3.07692, 14.35897], "texture": "#0"}, - "down": {"uv": [2.46154, 14.35897, 3.07692, 1.84615], "texture": "#0"} + "north": { + "uv": [ + 3.07692, + 1.84615, + 2.46154, + 2.05128 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.87179, + 1.84615, + 3.07692, + 14.35897 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.46154, + 14.15385, + 3.07692, + 14.35897 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.46154, + 1.84615, + 2.66667, + 14.35897 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.46154, + 1.84615, + 3.07692, + 14.35897 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.46154, + 14.35897, + 3.07692, + 1.84615 + ], + "texture": "#0" + } } }, { "name": "pizza_19", - "from": [13.12821, 0, 1.84615], - "to": [13.33333, 0.58013, 14.35897], + "from": [ + 13.12821, + 0, + 1.84615 + ], + "to": [ + 13.33333, + 0.58013, + 14.35897 + ], "faces": { - "north": {"uv": [13.33333, 1.84615, 13.12821, 2.05128], "texture": "#0"}, - "east": {"uv": [13.12821, 1.84615, 13.33333, 14.35897], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.12821, 14.15385, 13.33333, 14.35897], "texture": "#0"}, - "west": {"uv": [13.12821, 1.84615, 13.33333, 14.35897], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.12821, 1.84615, 13.33333, 14.35897], "texture": "#0"}, - "down": {"uv": [13.12821, 14.35897, 13.33333, 1.84615], "texture": "#0"} + "north": { + "uv": [ + 13.33333, + 1.84615, + 13.12821, + 2.05128 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.12821, + 1.84615, + 13.33333, + 14.35897 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.12821, + 14.15385, + 13.33333, + 14.35897 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.12821, + 1.84615, + 13.33333, + 14.35897 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.12821, + 1.84615, + 13.33333, + 14.35897 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.12821, + 14.35897, + 13.33333, + 1.84615 + ], + "texture": "#0" + } } }, { "name": "pizza_20", - "from": [2.25641, 0, 2.05128], - "to": [2.46154, 0.58013, 14.35897], + "from": [ + 2.25641, + 0, + 2.05128 + ], + "to": [ + 2.46154, + 0.58013, + 14.35897 + ], "faces": { - "north": {"uv": [2.46154, 2.05128, 2.25641, 2.25641], "texture": "#0"}, - "east": {"uv": [2.25641, 2.05128, 2.46154, 14.35897], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.25641, 14.15385, 2.46154, 14.35897], "texture": "#0"}, - "west": {"uv": [2.25641, 2.05128, 2.46154, 14.35897], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.25641, 2.05128, 2.46154, 14.35897], "texture": "#0"}, - "down": {"uv": [2.25641, 14.35897, 2.46154, 2.05128], "texture": "#0"} + "north": { + "uv": [ + 2.46154, + 2.05128, + 2.25641, + 2.25641 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25641, + 2.05128, + 2.46154, + 14.35897 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.25641, + 14.15385, + 2.46154, + 14.35897 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25641, + 2.05128, + 2.46154, + 14.35897 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.25641, + 2.05128, + 2.46154, + 14.35897 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25641, + 14.35897, + 2.46154, + 2.05128 + ], + "texture": "#0" + } } }, { "name": "pizza_21", - "from": [13.33333, 0, 2.05128], - "to": [13.53846, 0.58013, 14.35897], + "from": [ + 13.33333, + 0, + 2.05128 + ], + "to": [ + 13.53846, + 0.58013, + 14.35897 + ], "faces": { - "north": {"uv": [13.53846, 2.05128, 13.33333, 2.25641], "texture": "#0"}, - "east": {"uv": [13.33333, 2.05128, 13.53846, 14.35897], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.33333, 14.15385, 13.53846, 14.35897], "texture": "#0"}, - "west": {"uv": [13.33333, 2.05128, 13.53846, 14.35897], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.33333, 2.05128, 13.53846, 14.35897], "texture": "#0"}, - "down": {"uv": [13.33333, 14.35897, 13.53846, 2.05128], "texture": "#0"} + "north": { + "uv": [ + 13.53846, + 2.05128, + 13.33333, + 2.25641 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.33333, + 2.05128, + 13.53846, + 14.35897 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.33333, + 14.15385, + 13.53846, + 14.35897 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.33333, + 2.05128, + 13.53846, + 14.35897 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.33333, + 2.05128, + 13.53846, + 14.35897 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.33333, + 14.35897, + 13.53846, + 2.05128 + ], + "texture": "#0" + } } }, { "name": "pizza_22", - "from": [13.53846, 0, 2.25641], - "to": [13.74359, 0.58013, 14.15385], + "from": [ + 13.53846, + 0, + 2.25641 + ], + "to": [ + 13.74359, + 0.58013, + 14.15385 + ], "faces": { - "north": {"uv": [13.74359, 2.25641, 13.53846, 2.46154], "texture": "#0"}, - "east": {"uv": [13.53846, 2.25641, 13.74359, 14.15385], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.53846, 13.94872, 13.74359, 14.15385], "texture": "#0"}, - "west": {"uv": [13.53846, 2.25641, 13.74359, 14.15385], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.53846, 2.25641, 13.74359, 14.15385], "texture": "#0"}, - "down": {"uv": [13.53846, 14.15385, 13.74359, 2.25641], "texture": "#0"} + "north": { + "uv": [ + 13.74359, + 2.25641, + 13.53846, + 2.46154 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.53846, + 2.25641, + 13.74359, + 14.15385 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.53846, + 13.94872, + 13.74359, + 14.15385 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.53846, + 2.25641, + 13.74359, + 14.15385 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.53846, + 2.25641, + 13.74359, + 14.15385 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.53846, + 14.15385, + 13.74359, + 2.25641 + ], + "texture": "#0" + } } }, { "name": "pizza_23", - "from": [2.05128, 0, 2.46154], - "to": [2.25641, 0.58013, 14.15385], + "from": [ + 2.05128, + 0, + 2.46154 + ], + "to": [ + 2.25641, + 0.58013, + 14.15385 + ], "faces": { - "north": {"uv": [2.25641, 2.46154, 2.05128, 2.66667], "texture": "#0"}, - "east": {"uv": [2.05128, 2.46154, 2.25641, 14.15385], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.05128, 13.94872, 2.25641, 14.15385], "texture": "#0"}, - "west": {"uv": [2.05128, 2.46154, 2.25641, 14.15385], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.05128, 2.46154, 2.25641, 14.15385], "texture": "#0"}, - "down": {"uv": [2.05128, 14.15385, 2.25641, 2.46154], "texture": "#0"} + "north": { + "uv": [ + 2.25641, + 2.46154, + 2.05128, + 2.66667 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.05128, + 2.46154, + 2.25641, + 14.15385 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.05128, + 13.94872, + 2.25641, + 14.15385 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.05128, + 2.46154, + 2.25641, + 14.15385 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.05128, + 2.46154, + 2.25641, + 14.15385 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.05128, + 14.15385, + 2.25641, + 2.46154 + ], + "texture": "#0" + } } }, { "name": "pizza_24", - "from": [13.74359, 0, 2.46154], - "to": [13.94872, 0.58013, 13.94872], + "from": [ + 13.74359, + 0, + 2.46154 + ], + "to": [ + 13.94872, + 0.58013, + 13.94872 + ], "faces": { - "north": {"uv": [13.94872, 2.46154, 13.74359, 2.66667], "texture": "#0"}, - "east": {"uv": [13.74359, 2.46154, 13.94872, 13.94872], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.74359, 13.74359, 13.94872, 13.94872], "texture": "#0"}, - "west": {"uv": [13.74359, 2.46154, 13.94872, 13.94872], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.74359, 2.46154, 13.94872, 13.94872], "texture": "#0"}, - "down": {"uv": [13.74359, 13.94872, 13.94872, 2.46154], "texture": "#0"} + "north": { + "uv": [ + 13.94872, + 2.46154, + 13.74359, + 2.66667 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.74359, + 2.46154, + 13.94872, + 13.94872 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.74359, + 13.74359, + 13.94872, + 13.94872 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.74359, + 2.46154, + 13.94872, + 13.94872 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.74359, + 2.46154, + 13.94872, + 13.94872 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.74359, + 13.94872, + 13.94872, + 2.46154 + ], + "texture": "#0" + } } }, { "name": "pizza_25", - "from": [1.84615, 0, 2.66667], - "to": [2.05128, 0.58013, 14.15385], + "from": [ + 1.84615, + 0, + 2.66667 + ], + "to": [ + 2.05128, + 0.58013, + 14.15385 + ], "faces": { - "north": {"uv": [2.05128, 2.66667, 1.84615, 2.87179], "texture": "#0"}, - "east": {"uv": [1.84615, 2.66667, 2.05128, 14.15385], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.84615, 13.94872, 2.05128, 14.15385], "texture": "#0"}, - "west": {"uv": [1.84615, 2.66667, 2.05128, 14.15385], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.84615, 2.66667, 2.05128, 14.15385], "texture": "#0"}, - "down": {"uv": [1.84615, 14.15385, 2.05128, 2.66667], "texture": "#0"} + "north": { + "uv": [ + 2.05128, + 2.66667, + 1.84615, + 2.87179 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.84615, + 2.66667, + 2.05128, + 14.15385 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.84615, + 13.94872, + 2.05128, + 14.15385 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.84615, + 2.66667, + 2.05128, + 14.15385 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.84615, + 2.66667, + 2.05128, + 14.15385 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.84615, + 14.15385, + 2.05128, + 2.66667 + ], + "texture": "#0" + } } }, { "name": "pizza_26", - "from": [13.94872, 0, 2.66667], - "to": [14.15385, 0.58013, 13.94872], + "from": [ + 13.94872, + 0, + 2.66667 + ], + "to": [ + 14.15385, + 0.58013, + 13.94872 + ], "faces": { - "north": {"uv": [14.15385, 2.66667, 13.94872, 2.87179], "texture": "#0"}, - "east": {"uv": [13.94872, 2.66667, 14.15385, 13.94872], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13.94872, 13.74359, 14.15385, 13.94872], "texture": "#0"}, - "west": {"uv": [13.94872, 2.66667, 14.15385, 13.94872], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13.94872, 2.66667, 14.15385, 13.94872], "texture": "#0"}, - "down": {"uv": [13.94872, 13.94872, 14.15385, 2.66667], "texture": "#0"} + "north": { + "uv": [ + 14.15385, + 2.66667, + 13.94872, + 2.87179 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.94872, + 2.66667, + 14.15385, + 13.94872 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13.94872, + 13.74359, + 14.15385, + 13.94872 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.94872, + 2.66667, + 14.15385, + 13.94872 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.94872, + 2.66667, + 14.15385, + 13.94872 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.94872, + 13.94872, + 14.15385, + 2.66667 + ], + "texture": "#0" + } } }, { "name": "pizza_27", - "from": [14.15385, 0, 2.87179], - "to": [14.35897, 0.58013, 13.74359], + "from": [ + 14.15385, + 0, + 2.87179 + ], + "to": [ + 14.35897, + 0.58013, + 13.74359 + ], "faces": { - "north": {"uv": [14.35897, 2.87179, 14.15385, 3.07692], "texture": "#0"}, - "east": {"uv": [14.15385, 2.87179, 14.35897, 13.74359], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.15385, 13.53846, 14.35897, 13.74359], "texture": "#0"}, - "west": {"uv": [14.15385, 2.87179, 14.35897, 13.74359], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.15385, 2.87179, 14.35897, 13.74359], "texture": "#0"}, - "down": {"uv": [14.15385, 13.74359, 14.35897, 2.87179], "texture": "#0"} + "north": { + "uv": [ + 14.35897, + 2.87179, + 14.15385, + 3.07692 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.15385, + 2.87179, + 14.35897, + 13.74359 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.15385, + 13.53846, + 14.35897, + 13.74359 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.15385, + 2.87179, + 14.35897, + 13.74359 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.15385, + 2.87179, + 14.35897, + 13.74359 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.15385, + 13.74359, + 14.35897, + 2.87179 + ], + "texture": "#0" + } } }, { "name": "pizza_28", - "from": [1.64103, 0, 3.07692], - "to": [1.84615, 0.58013, 13.94872], + "from": [ + 1.64103, + 0, + 3.07692 + ], + "to": [ + 1.84615, + 0.58013, + 13.94872 + ], "faces": { - "north": {"uv": [1.84615, 3.07692, 1.64103, 3.28205], "texture": "#0"}, - "east": {"uv": [1.64103, 3.07692, 1.84615, 13.94872], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.64103, 13.74359, 1.84615, 13.94872], "texture": "#0"}, - "west": {"uv": [1.64103, 3.07692, 1.84615, 13.94872], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.64103, 3.07692, 1.84615, 13.94872], "texture": "#0"}, - "down": {"uv": [1.64103, 13.94872, 1.84615, 3.07692], "texture": "#0"} + "north": { + "uv": [ + 1.84615, + 3.07692, + 1.64103, + 3.28205 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.64103, + 3.07692, + 1.84615, + 13.94872 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.64103, + 13.74359, + 1.84615, + 13.94872 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.64103, + 3.07692, + 1.84615, + 13.94872 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.64103, + 3.07692, + 1.84615, + 13.94872 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.64103, + 13.94872, + 1.84615, + 3.07692 + ], + "texture": "#0" + } } }, { "name": "pizza_29", - "from": [14.35897, 0, 3.07692], - "to": [14.5641, 0.58013, 12.71795], + "from": [ + 14.35897, + 0, + 3.07692 + ], + "to": [ + 14.5641, + 0.58013, + 12.71795 + ], "faces": { - "north": {"uv": [14.5641, 3.07692, 14.35897, 3.28205], "texture": "#0"}, - "east": {"uv": [14.35897, 3.07692, 14.5641, 12.71795], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.35897, 12.51282, 14.5641, 12.71795], "texture": "#0"}, - "west": {"uv": [14.35897, 3.07692, 14.5641, 12.71795], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.35897, 3.07692, 14.5641, 12.71795], "texture": "#0"}, - "down": {"uv": [14.35897, 12.71795, 14.5641, 3.07692], "texture": "#0"} + "north": { + "uv": [ + 14.5641, + 3.07692, + 14.35897, + 3.28205 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.35897, + 3.07692, + 14.5641, + 12.71795 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.35897, + 12.51282, + 14.5641, + 12.71795 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.35897, + 3.07692, + 14.5641, + 12.71795 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.35897, + 3.07692, + 14.5641, + 12.71795 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.35897, + 12.71795, + 14.5641, + 3.07692 + ], + "texture": "#0" + } } }, { "name": "pizza_30", - "from": [1.4359, 0, 3.28205], - "to": [1.64103, 0.58013, 13.53846], + "from": [ + 1.4359, + 0, + 3.28205 + ], + "to": [ + 1.64103, + 0.58013, + 13.53846 + ], "faces": { - "north": {"uv": [1.64103, 3.28205, 1.4359, 3.48718], "texture": "#0"}, - "east": {"uv": [1.4359, 3.28205, 1.64103, 13.53846], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.4359, 13.33333, 1.64103, 13.53846], "texture": "#0"}, - "west": {"uv": [1.4359, 3.28205, 1.64103, 13.53846], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.4359, 3.28205, 1.64103, 13.53846], "texture": "#0"}, - "down": {"uv": [1.4359, 13.53846, 1.64103, 3.28205], "texture": "#0"} + "north": { + "uv": [ + 1.64103, + 3.28205, + 1.4359, + 3.48718 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.4359, + 3.28205, + 1.64103, + 13.53846 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.4359, + 13.33333, + 1.64103, + 13.53846 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.4359, + 3.28205, + 1.64103, + 13.53846 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.4359, + 3.28205, + 1.64103, + 13.53846 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.4359, + 13.53846, + 1.64103, + 3.28205 + ], + "texture": "#0" + } } }, { "name": "pizza_31", - "from": [14.5641, 0, 3.28205], - "to": [14.76923, 0.58013, 12.71795], + "from": [ + 14.5641, + 0, + 3.28205 + ], + "to": [ + 14.76923, + 0.58013, + 12.71795 + ], "faces": { - "north": {"uv": [14.76923, 3.28205, 14.5641, 3.48718], "texture": "#0"}, - "east": {"uv": [14.5641, 3.28205, 14.76923, 12.71795], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.5641, 12.51282, 14.76923, 12.71795], "texture": "#0"}, - "west": {"uv": [14.5641, 3.28205, 14.76923, 12.71795], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.5641, 3.28205, 14.76923, 12.71795], "texture": "#0"}, - "down": {"uv": [14.5641, 12.71795, 14.76923, 3.28205], "texture": "#0"} + "north": { + "uv": [ + 14.76923, + 3.28205, + 14.5641, + 3.48718 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5641, + 3.28205, + 14.76923, + 12.71795 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.5641, + 12.51282, + 14.76923, + 12.71795 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5641, + 3.28205, + 14.76923, + 12.71795 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.5641, + 3.28205, + 14.76923, + 12.71795 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5641, + 12.71795, + 14.76923, + 3.28205 + ], + "texture": "#0" + } } }, { "name": "pizza_32", - "from": [1.23077, 0, 3.48718], - "to": [1.4359, 0.58013, 13.33333], + "from": [ + 1.23077, + 0, + 3.48718 + ], + "to": [ + 1.4359, + 0.58013, + 13.33333 + ], "faces": { - "north": {"uv": [1.4359, 3.48718, 1.23077, 3.69231], "texture": "#0"}, - "east": {"uv": [1.23077, 3.48718, 1.4359, 13.33333], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.23077, 13.12821, 1.4359, 13.33333], "texture": "#0"}, - "west": {"uv": [1.23077, 3.48718, 1.4359, 13.33333], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.23077, 3.48718, 1.4359, 13.33333], "texture": "#0"}, - "down": {"uv": [1.23077, 13.33333, 1.4359, 3.48718], "texture": "#0"} + "north": { + "uv": [ + 1.4359, + 3.48718, + 1.23077, + 3.69231 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.23077, + 3.48718, + 1.4359, + 13.33333 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.23077, + 13.12821, + 1.4359, + 13.33333 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.23077, + 3.48718, + 1.4359, + 13.33333 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.23077, + 3.48718, + 1.4359, + 13.33333 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.23077, + 13.33333, + 1.4359, + 3.48718 + ], + "texture": "#0" + } } }, { "name": "pizza_33", - "from": [14.76923, 0, 3.69231], - "to": [14.97436, 0.58013, 12.10256], + "from": [ + 14.76923, + 0, + 3.69231 + ], + "to": [ + 14.97436, + 0.58013, + 12.10256 + ], "faces": { - "north": {"uv": [14.97436, 3.69231, 14.76923, 3.89744], "texture": "#0"}, - "east": {"uv": [14.76923, 3.69231, 14.97436, 12.10256], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.76923, 11.89744, 14.97436, 12.10256], "texture": "#0"}, - "west": {"uv": [14.76923, 3.69231, 14.97436, 12.10256], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.76923, 3.69231, 14.97436, 12.10256], "texture": "#0"}, - "down": {"uv": [14.76923, 12.10256, 14.97436, 3.69231], "texture": "#0"} + "north": { + "uv": [ + 14.97436, + 3.69231, + 14.76923, + 3.89744 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.76923, + 3.69231, + 14.97436, + 12.10256 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.76923, + 11.89744, + 14.97436, + 12.10256 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.76923, + 3.69231, + 14.97436, + 12.10256 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.76923, + 3.69231, + 14.97436, + 12.10256 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.76923, + 12.10256, + 14.97436, + 3.69231 + ], + "texture": "#0" + } } }, { "name": "pizza_34", - "from": [1.02564, 0, 3.89744], - "to": [1.23077, 0.58013, 13.12821], + "from": [ + 1.02564, + 0, + 3.89744 + ], + "to": [ + 1.23077, + 0.58013, + 13.12821 + ], "faces": { - "north": {"uv": [1.23077, 3.89744, 1.02564, 4.10256], "texture": "#0"}, - "east": {"uv": [1.02564, 3.89744, 1.23077, 13.12821], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.02564, 12.92308, 1.23077, 13.12821], "texture": "#0"}, - "west": {"uv": [1.02564, 3.89744, 1.23077, 13.12821], "rotation": 270, "texture": "#0"}, - "up": {"uv": [1.02564, 3.89744, 1.23077, 13.12821], "texture": "#0"}, - "down": {"uv": [1.02564, 13.12821, 1.23077, 3.89744], "texture": "#0"} + "north": { + "uv": [ + 1.23077, + 3.89744, + 1.02564, + 4.10256 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.02564, + 3.89744, + 1.23077, + 13.12821 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 1.02564, + 12.92308, + 1.23077, + 13.12821 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.02564, + 3.89744, + 1.23077, + 13.12821 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 1.02564, + 3.89744, + 1.23077, + 13.12821 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.02564, + 13.12821, + 1.23077, + 3.89744 + ], + "texture": "#0" + } } }, { "name": "pizza_35", - "from": [14.97436, 0, 3.89744], - "to": [15.17949, 0.58013, 11.69231], + "from": [ + 14.97436, + 0, + 3.89744 + ], + "to": [ + 15.17949, + 0.58013, + 11.69231 + ], "faces": { - "north": {"uv": [15.17949, 3.89744, 14.97436, 4.10256], "texture": "#0"}, - "east": {"uv": [14.97436, 3.89744, 15.17949, 11.69231], "rotation": 90, "texture": "#0"}, - "south": {"uv": [14.97436, 11.48718, 15.17949, 11.69231], "texture": "#0"}, - "west": {"uv": [14.97436, 3.89744, 15.17949, 11.69231], "rotation": 270, "texture": "#0"}, - "up": {"uv": [14.97436, 3.89744, 15.17949, 11.69231], "texture": "#0"}, - "down": {"uv": [14.97436, 11.69231, 15.17949, 3.89744], "texture": "#0"} + "north": { + "uv": [ + 15.17949, + 3.89744, + 14.97436, + 4.10256 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.97436, + 3.89744, + 15.17949, + 11.69231 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 14.97436, + 11.48718, + 15.17949, + 11.69231 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.97436, + 3.89744, + 15.17949, + 11.69231 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 14.97436, + 3.89744, + 15.17949, + 11.69231 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.97436, + 11.69231, + 15.17949, + 3.89744 + ], + "texture": "#0" + } } }, { "name": "pizza_36", - "from": [0.82051, 0, 4.30769], - "to": [1.02564, 0.58013, 13.12821], + "from": [ + 0.82051, + 0, + 4.30769 + ], + "to": [ + 1.02564, + 0.58013, + 13.12821 + ], "faces": { - "north": {"uv": [1.02564, 4.30769, 0.82051, 4.51282], "texture": "#0"}, - "east": {"uv": [0.82051, 4.30769, 1.02564, 13.12821], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.82051, 12.92308, 1.02564, 13.12821], "texture": "#0"}, - "west": {"uv": [0.82051, 4.30769, 1.02564, 13.12821], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.82051, 4.30769, 1.02564, 13.12821], "texture": "#0"}, - "down": {"uv": [0.82051, 13.12821, 1.02564, 4.30769], "texture": "#0"} + "north": { + "uv": [ + 1.02564, + 4.30769, + 0.82051, + 4.51282 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.82051, + 4.30769, + 1.02564, + 13.12821 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.82051, + 12.92308, + 1.02564, + 13.12821 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.82051, + 4.30769, + 1.02564, + 13.12821 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.82051, + 4.30769, + 1.02564, + 13.12821 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.82051, + 13.12821, + 1.02564, + 4.30769 + ], + "texture": "#0" + } } }, { "name": "pizza_37", - "from": [15.17949, 0, 4.30769], - "to": [15.38462, 0.58013, 4.51282], + "from": [ + 15.17949, + 0, + 4.30769 + ], + "to": [ + 15.38462, + 0.58013, + 4.51282 + ], "faces": { - "north": {"uv": [15.38462, 4.30769, 15.17949, 4.51282], "texture": "#0"}, - "east": {"uv": [15.17949, 4.30769, 15.38462, 4.51282], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.17949, 4.30769, 15.38462, 4.51282], "texture": "#0"}, - "west": {"uv": [15.17949, 4.30769, 15.38462, 4.51282], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.17949, 4.30769, 15.38462, 4.51282], "texture": "#0"}, - "down": {"uv": [15.17949, 4.51282, 15.38462, 4.30769], "texture": "#0"} + "north": { + "uv": [ + 15.38462, + 4.30769, + 15.17949, + 4.51282 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.17949, + 4.30769, + 15.38462, + 4.51282 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.17949, + 4.30769, + 15.38462, + 4.51282 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.17949, + 4.30769, + 15.38462, + 4.51282 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.17949, + 4.30769, + 15.38462, + 4.51282 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.17949, + 4.51282, + 15.38462, + 4.30769 + ], + "texture": "#0" + } } }, { "name": "pizza_38", - "from": [15.38462, 0, 4.51282], - "to": [15.58974, 0.58013, 4.71795], + "from": [ + 15.38462, + 0, + 4.51282 + ], + "to": [ + 15.58974, + 0.58013, + 4.71795 + ], "faces": { - "north": {"uv": [15.58974, 4.51282, 15.38462, 4.71795], "texture": "#0"}, - "east": {"uv": [15.38462, 4.51282, 15.58974, 4.71795], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.38462, 4.51282, 15.58974, 4.71795], "texture": "#0"}, - "west": {"uv": [15.38462, 4.51282, 15.58974, 4.71795], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.38462, 4.51282, 15.58974, 4.71795], "texture": "#0"}, - "down": {"uv": [15.38462, 4.71795, 15.58974, 4.51282], "texture": "#0"} + "north": { + "uv": [ + 15.58974, + 4.51282, + 15.38462, + 4.71795 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.38462, + 4.51282, + 15.58974, + 4.71795 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.38462, + 4.51282, + 15.58974, + 4.71795 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.38462, + 4.51282, + 15.58974, + 4.71795 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.38462, + 4.51282, + 15.58974, + 4.71795 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.38462, + 4.71795, + 15.58974, + 4.51282 + ], + "texture": "#0" + } } }, { "name": "pizza_39", - "from": [0.61538, 0, 4.71795], - "to": [0.82051, 0.58013, 12.71795], + "from": [ + 0.61538, + 0, + 4.71795 + ], + "to": [ + 0.82051, + 0.58013, + 12.71795 + ], "faces": { - "north": {"uv": [0.82051, 4.71795, 0.61538, 4.92308], "texture": "#0"}, - "east": {"uv": [0.61538, 4.71795, 0.82051, 12.71795], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.61538, 12.51282, 0.82051, 12.71795], "texture": "#0"}, - "west": {"uv": [0.61538, 4.71795, 0.82051, 12.71795], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.61538, 4.71795, 0.82051, 12.71795], "texture": "#0"}, - "down": {"uv": [0.61538, 12.71795, 0.82051, 4.71795], "texture": "#0"} + "north": { + "uv": [ + 0.82051, + 4.71795, + 0.61538, + 4.92308 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.61538, + 4.71795, + 0.82051, + 12.71795 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.61538, + 12.51282, + 0.82051, + 12.71795 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.61538, + 4.71795, + 0.82051, + 12.71795 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.61538, + 4.71795, + 0.82051, + 12.71795 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.61538, + 12.71795, + 0.82051, + 4.71795 + ], + "texture": "#0" + } } }, { "name": "pizza_40", - "from": [15.17949, 0, 4.71795], - "to": [15.38462, 0.58013, 11.28205], + "from": [ + 15.17949, + 0, + 4.71795 + ], + "to": [ + 15.38462, + 0.58013, + 11.28205 + ], "faces": { - "north": {"uv": [15.38462, 4.71795, 15.17949, 4.92308], "texture": "#0"}, - "east": {"uv": [15.17949, 4.71795, 15.38462, 11.28205], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.17949, 11.07692, 15.38462, 11.28205], "texture": "#0"}, - "west": {"uv": [15.17949, 4.71795, 15.38462, 11.28205], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.17949, 4.71795, 15.38462, 11.28205], "texture": "#0"}, - "down": {"uv": [15.17949, 11.28205, 15.38462, 4.71795], "texture": "#0"} + "north": { + "uv": [ + 15.38462, + 4.71795, + 15.17949, + 4.92308 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.17949, + 4.71795, + 15.38462, + 11.28205 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.17949, + 11.07692, + 15.38462, + 11.28205 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.17949, + 4.71795, + 15.38462, + 11.28205 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.17949, + 4.71795, + 15.38462, + 11.28205 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.17949, + 11.28205, + 15.38462, + 4.71795 + ], + "texture": "#0" + } } }, { "name": "pizza_41", - "from": [0.41026, 0, 5.12821], - "to": [0.61538, 0.58013, 12.30769], + "from": [ + 0.41026, + 0, + 5.12821 + ], + "to": [ + 0.61538, + 0.58013, + 12.30769 + ], "faces": { - "north": {"uv": [0.61538, 5.12821, 0.41026, 5.33333], "texture": "#0"}, - "east": {"uv": [0.41026, 5.12821, 0.61538, 12.30769], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.41026, 12.10256, 0.61538, 12.30769], "texture": "#0"}, - "west": {"uv": [0.41026, 5.12821, 0.61538, 12.30769], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.41026, 5.12821, 0.61538, 12.30769], "texture": "#0"}, - "down": {"uv": [0.41026, 12.30769, 0.61538, 5.12821], "texture": "#0"} + "north": { + "uv": [ + 0.61538, + 5.12821, + 0.41026, + 5.33333 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.41026, + 5.12821, + 0.61538, + 12.30769 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.41026, + 12.10256, + 0.61538, + 12.30769 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.41026, + 5.12821, + 0.61538, + 12.30769 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.41026, + 5.12821, + 0.61538, + 12.30769 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.41026, + 12.30769, + 0.61538, + 5.12821 + ], + "texture": "#0" + } } }, { "name": "pizza_42", - "from": [15.38462, 0, 5.12821], - "to": [15.58974, 0.58013, 10.87179], + "from": [ + 15.38462, + 0, + 5.12821 + ], + "to": [ + 15.58974, + 0.58013, + 10.87179 + ], "faces": { - "north": {"uv": [15.58974, 5.12821, 15.38462, 5.33333], "texture": "#0"}, - "east": {"uv": [15.38462, 5.12821, 15.58974, 10.87179], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.38462, 10.66667, 15.58974, 10.87179], "texture": "#0"}, - "west": {"uv": [15.38462, 5.12821, 15.58974, 10.87179], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.38462, 5.12821, 15.58974, 10.87179], "texture": "#0"}, - "down": {"uv": [15.38462, 10.87179, 15.58974, 5.12821], "texture": "#0"} + "north": { + "uv": [ + 15.58974, + 5.12821, + 15.38462, + 5.33333 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.38462, + 5.12821, + 15.58974, + 10.87179 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.38462, + 10.66667, + 15.58974, + 10.87179 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.38462, + 5.12821, + 15.58974, + 10.87179 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.38462, + 5.12821, + 15.58974, + 10.87179 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.38462, + 10.87179, + 15.58974, + 5.12821 + ], + "texture": "#0" + } } }, { "name": "pizza_43", - "from": [0, 0, 5.74359], - "to": [0.41026, 0.58013, 10.46154], + "from": [ + 0, + 0, + 5.74359 + ], + "to": [ + 0.41026, + 0.58013, + 10.46154 + ], "faces": { - "north": {"uv": [0.41026, 5.74359, 0, 5.94872], "texture": "#0"}, - "east": {"uv": [0.20513, 5.74359, 0.41026, 10.46154], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 10.25641, 0.41026, 10.46154], "texture": "#0"}, - "west": {"uv": [0, 5.74359, 0.20513, 10.46154], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 5.74359, 0.41026, 10.46154], "texture": "#0"}, - "down": {"uv": [0, 10.46154, 0.41026, 5.74359], "texture": "#0"} + "north": { + "uv": [ + 0.41026, + 5.74359, + 0, + 5.94872 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.20513, + 5.74359, + 0.41026, + 10.46154 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 10.25641, + 0.41026, + 10.46154 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 5.74359, + 0.20513, + 10.46154 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 5.74359, + 0.41026, + 10.46154 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 10.46154, + 0.41026, + 5.74359 + ], + "texture": "#0" + } } }, { "name": "pizza_44", - "from": [15.58974, 0, 5.74359], - "to": [15.79487, 0.58013, 10.25641], + "from": [ + 15.58974, + 0, + 5.74359 + ], + "to": [ + 15.79487, + 0.58013, + 10.25641 + ], "faces": { - "north": {"uv": [15.79487, 5.74359, 15.58974, 5.94872], "texture": "#0"}, - "east": {"uv": [15.58974, 5.74359, 15.79487, 10.25641], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.58974, 10.05128, 15.79487, 10.25641], "texture": "#0"}, - "west": {"uv": [15.58974, 5.74359, 15.79487, 10.25641], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.58974, 5.74359, 15.79487, 10.25641], "texture": "#0"}, - "down": {"uv": [15.58974, 10.25641, 15.79487, 5.74359], "texture": "#0"} + "north": { + "uv": [ + 15.79487, + 5.74359, + 15.58974, + 5.94872 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.58974, + 5.74359, + 15.79487, + 10.25641 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.58974, + 10.05128, + 15.79487, + 10.25641 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.58974, + 5.74359, + 15.79487, + 10.25641 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.58974, + 5.74359, + 15.79487, + 10.25641 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.58974, + 10.25641, + 15.79487, + 5.74359 + ], + "texture": "#0" + } } }, { "name": "pizza_45", - "from": [15.79487, 0, 6.76923], - "to": [16, 0.58013, 9.23077], + "from": [ + 15.79487, + 0, + 6.76923 + ], + "to": [ + 16, + 0.58013, + 9.23077 + ], "faces": { - "north": {"uv": [16, 6.76923, 15.79487, 6.97436], "texture": "#0"}, - "east": {"uv": [15.79487, 6.76923, 16, 9.23077], "rotation": 90, "texture": "#0"}, - "south": {"uv": [15.79487, 9.02564, 16, 9.23077], "texture": "#0"}, - "west": {"uv": [15.79487, 6.76923, 16, 9.23077], "rotation": 270, "texture": "#0"}, - "up": {"uv": [15.79487, 6.76923, 16, 9.23077], "texture": "#0"}, - "down": {"uv": [15.79487, 9.23077, 16, 6.76923], "texture": "#0"} + "north": { + "uv": [ + 16, + 6.76923, + 15.79487, + 6.97436 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.79487, + 6.76923, + 16, + 9.23077 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 15.79487, + 9.02564, + 16, + 9.23077 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.79487, + 6.76923, + 16, + 9.23077 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 15.79487, + 6.76923, + 16, + 9.23077 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.79487, + 9.23077, + 16, + 6.76923 + ], + "texture": "#0" + } } }, { "name": "pizza_46", - "from": [0.20513, 0, 10.46154], - "to": [0.41026, 0.58013, 11.89744], + "from": [ + 0.20513, + 0, + 10.46154 + ], + "to": [ + 0.41026, + 0.58013, + 11.89744 + ], "faces": { - "north": {"uv": [0.41026, 10.46154, 0.20513, 10.66667], "texture": "#0"}, - "east": {"uv": [0.20513, 10.46154, 0.41026, 11.89744], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0.20513, 11.69231, 0.41026, 11.89744], "texture": "#0"}, - "west": {"uv": [0.20513, 10.46154, 0.41026, 11.89744], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0.20513, 10.46154, 0.41026, 11.89744], "texture": "#0"}, - "down": {"uv": [0.20513, 11.89744, 0.41026, 10.46154], "texture": "#0"} + "north": { + "uv": [ + 0.41026, + 10.46154, + 0.20513, + 10.66667 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.20513, + 10.46154, + 0.41026, + 11.89744 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 0.20513, + 11.69231, + 0.41026, + 11.89744 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.20513, + 10.46154, + 0.41026, + 11.89744 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0.20513, + 10.46154, + 0.41026, + 11.89744 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.20513, + 11.89744, + 0.41026, + 10.46154 + ], + "texture": "#0" + } } }, { "name": "pizza_47", - "from": [2.87179, 0, 14.35897], - "to": [3.07692, 0.58013, 14.76923], + "from": [ + 2.87179, + 0, + 14.35897 + ], + "to": [ + 3.07692, + 0.58013, + 14.76923 + ], "faces": { - "north": {"uv": [3.07692, 14.35897, 2.87179, 14.5641], "texture": "#0"}, - "east": {"uv": [2.87179, 14.35897, 3.07692, 14.76923], "rotation": 90, "texture": "#0"}, - "south": {"uv": [2.87179, 14.5641, 3.07692, 14.76923], "texture": "#0"}, - "west": {"uv": [2.87179, 14.35897, 3.07692, 14.76923], "rotation": 270, "texture": "#0"}, - "up": {"uv": [2.87179, 14.35897, 3.07692, 14.76923], "texture": "#0"}, - "down": {"uv": [2.87179, 14.76923, 3.07692, 14.35897], "texture": "#0"} + "north": { + "uv": [ + 3.07692, + 14.35897, + 2.87179, + 14.5641 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.87179, + 14.35897, + 3.07692, + 14.76923 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2.87179, + 14.5641, + 3.07692, + 14.76923 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.87179, + 14.35897, + 3.07692, + 14.76923 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 2.87179, + 14.35897, + 3.07692, + 14.76923 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.87179, + 14.76923, + 3.07692, + 14.35897 + ], + "texture": "#0" + } } }, { "name": "pizza_48", - "from": [3.89744, 0, 14.76923], - "to": [4.10256, 0.58013, 14.97436], + "from": [ + 3.89744, + 0, + 14.76923 + ], + "to": [ + 4.10256, + 0.58013, + 14.97436 + ], "faces": { - "north": {"uv": [4.10256, 14.76923, 3.89744, 14.97436], "texture": "#0"}, - "east": {"uv": [3.89744, 14.76923, 4.10256, 14.97436], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3.89744, 14.76923, 4.10256, 14.97436], "texture": "#0"}, - "west": {"uv": [3.89744, 14.76923, 4.10256, 14.97436], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3.89744, 14.76923, 4.10256, 14.97436], "texture": "#0"}, - "down": {"uv": [3.89744, 14.97436, 4.10256, 14.76923], "texture": "#0"} + "north": { + "uv": [ + 4.10256, + 14.76923, + 3.89744, + 14.97436 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.89744, + 14.76923, + 4.10256, + 14.97436 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3.89744, + 14.76923, + 4.10256, + 14.97436 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.89744, + 14.76923, + 4.10256, + 14.97436 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3.89744, + 14.76923, + 4.10256, + 14.97436 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.89744, + 14.97436, + 4.10256, + 14.76923 + ], + "texture": "#0" + } } }, { "name": "pizza_49", - "from": [4.30769, 0, 14.97436], - "to": [4.51282, 0.58013, 15.17949], + "from": [ + 4.30769, + 0, + 14.97436 + ], + "to": [ + 4.51282, + 0.58013, + 15.17949 + ], "faces": { - "north": {"uv": [4.51282, 14.97436, 4.30769, 15.17949], "texture": "#0"}, - "east": {"uv": [4.30769, 14.97436, 4.51282, 15.17949], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.30769, 14.97436, 4.51282, 15.17949], "texture": "#0"}, - "west": {"uv": [4.30769, 14.97436, 4.51282, 15.17949], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.30769, 14.97436, 4.51282, 15.17949], "texture": "#0"}, - "down": {"uv": [4.30769, 15.17949, 4.51282, 14.97436], "texture": "#0"} + "north": { + "uv": [ + 4.51282, + 14.97436, + 4.30769, + 15.17949 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.30769, + 14.97436, + 4.51282, + 15.17949 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.30769, + 14.97436, + 4.51282, + 15.17949 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.30769, + 14.97436, + 4.51282, + 15.17949 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.30769, + 14.97436, + 4.51282, + 15.17949 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.30769, + 15.17949, + 4.51282, + 14.97436 + ], + "texture": "#0" + } } }, { "name": "pizza_50", - "from": [4.71795, 0, 15.17949], - "to": [4.92308, 0.58013, 15.38462], + "from": [ + 4.71795, + 0, + 15.17949 + ], + "to": [ + 4.92308, + 0.58013, + 15.38462 + ], "faces": { - "north": {"uv": [4.92308, 15.17949, 4.71795, 15.38462], "texture": "#0"}, - "east": {"uv": [4.71795, 15.17949, 4.92308, 15.38462], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4.71795, 15.17949, 4.92308, 15.38462], "texture": "#0"}, - "west": {"uv": [4.71795, 15.17949, 4.92308, 15.38462], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4.71795, 15.17949, 4.92308, 15.38462], "texture": "#0"}, - "down": {"uv": [4.71795, 15.38462, 4.92308, 15.17949], "texture": "#0"} + "north": { + "uv": [ + 4.92308, + 15.17949, + 4.71795, + 15.38462 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.71795, + 15.17949, + 4.92308, + 15.38462 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4.71795, + 15.17949, + 4.92308, + 15.38462 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.71795, + 15.17949, + 4.92308, + 15.38462 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4.71795, + 15.17949, + 4.92308, + 15.38462 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.71795, + 15.38462, + 4.92308, + 15.17949 + ], + "texture": "#0" + } } }, { "name": "pizza_51", - "from": [5.74359, 0, 15.58974], - "to": [6.5641, 0.58013, 15.79487], + "from": [ + 5.74359, + 0, + 15.58974 + ], + "to": [ + 6.5641, + 0.58013, + 15.79487 + ], "faces": { - "north": {"uv": [6.5641, 15.58974, 5.74359, 15.79487], "texture": "#0"}, - "east": {"uv": [6.35897, 15.58974, 6.5641, 15.79487], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5.74359, 15.58974, 6.5641, 15.79487], "texture": "#0"}, - "west": {"uv": [5.74359, 15.58974, 5.94872, 15.79487], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5.74359, 15.58974, 6.5641, 15.79487], "texture": "#0"}, - "down": {"uv": [5.74359, 15.79487, 6.5641, 15.58974], "texture": "#0"} + "north": { + "uv": [ + 6.5641, + 15.58974, + 5.74359, + 15.79487 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.35897, + 15.58974, + 6.5641, + 15.79487 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.74359, + 15.58974, + 6.5641, + 15.79487 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.74359, + 15.58974, + 5.94872, + 15.79487 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5.74359, + 15.58974, + 6.5641, + 15.79487 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.74359, + 15.79487, + 6.5641, + 15.58974 + ], + "texture": "#0" + } } }, { "name": "pizza_52", - "from": [6.76923, 0, 15.79487], - "to": [9.64103, 0.58013, 16], + "from": [ + 6.76923, + 0, + 15.79487 + ], + "to": [ + 9.64103, + 0.58013, + 16 + ], "faces": { - "north": {"uv": [9.64103, 15.79487, 6.76923, 16], "texture": "#0"}, - "east": {"uv": [9.4359, 15.79487, 9.64103, 16], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6.76923, 15.79487, 9.64103, 16], "texture": "#0"}, - "west": {"uv": [6.76923, 15.79487, 6.97436, 16], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6.76923, 15.79487, 9.64103, 16], "texture": "#0"}, - "down": {"uv": [6.76923, 16, 9.64103, 15.79487], "texture": "#0"} + "north": { + "uv": [ + 9.64103, + 15.79487, + 6.76923, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.4359, + 15.79487, + 9.64103, + 16 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6.76923, + 15.79487, + 9.64103, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.76923, + 15.79487, + 6.97436, + 16 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6.76923, + 15.79487, + 9.64103, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.76923, + 16, + 9.64103, + 15.79487 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [0, 3.25, 5], - "scale": [0.56, 0.56, 0.56] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.25, + 5 + ], + "scale": [ + 0.56, + 0.56, + 0.56 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [0, 3.25, 5], - "scale": [0.56, 0.56, 0.56] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 3.25, + 5 + ], + "scale": [ + 0.56, + 0.56, + 0.56 + ] }, "firstperson_righthand": { - "rotation": [73, 0, 0], - "translation": [0, 3.25, 5], - "scale": [0.56, 0.56, 0.56] + "rotation": [ + 73, + 0, + 0 + ], + "translation": [ + 0, + 3.25, + 5 + ], + "scale": [ + 0.56, + 0.56, + 0.56 + ] }, "firstperson_lefthand": { - "rotation": [73, 0, 0], - "translation": [0, 3.25, 5], - "scale": [0.56, 0.56, 0.56] + "rotation": [ + 73, + 0, + 0 + ], + "translation": [ + 0, + 3.25, + 5 + ], + "scale": [ + 0.56, + 0.56, + 0.56 + ] }, "ground": { - "translation": [0, 9, 0] + "translation": [ + 0, + 9, + 0 + ] }, "gui": { - "rotation": [-90, -180, 0], - "translation": [-0.25, 0, -9.5], - "scale": [0.91, 0.91, 0.91] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + -0.25, + 0, + -9.5 + ], + "scale": [ + 0.91, + 0.91, + 0.91 + ] }, "head": { - "translation": [0, 2.5, -12.5] + "translation": [ + 0, + 2.5, + -12.5 + ] }, "fixed": { - "rotation": [-90, -180, 0], - "translation": [0, 0, -9.5], - "scale": [1.19, 1.19, 1.19] + "rotation": [ + -90, + -180, + 0 + ], + "translation": [ + 0, + 0, + -9.5 + ], + "scale": [ + 1.19, + 1.19, + 1.19 + ] } }, "groups": [ { "name": "pizza", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/rice_seed.json b/pack/assets/minecraft/models/foods/rice_seed.json index 5a72dea3..41ade3a1 100644 --- a/pack/assets/minecraft/models/foods/rice_seed.json +++ b/pack/assets/minecraft/models/foods/rice_seed.json @@ -2,159 +2,813 @@ "__name": "ご飯粒", "credit": "Made with Blockbench", "textures": { - "0": "foods/rice_seed", - "particle": "foods/rice_seed" + "0": "item/foods/rice_seed", + "particle": "item/foods/rice_seed" }, "elements": [ { "name": "rice_seed_0", - "from": [5, 0, 4], - "to": [6, 1, 7], + "from": [ + 5, + 0, + 4 + ], + "to": [ + 6, + 1, + 7 + ], "faces": { - "north": {"uv": [6, 4, 5, 5], "texture": "#0"}, - "east": {"uv": [5, 4, 6, 7], "rotation": 90, "texture": "#0"}, - "south": {"uv": [5, 6, 6, 7], "texture": "#0"}, - "west": {"uv": [5, 4, 6, 7], "rotation": 270, "texture": "#0"}, - "up": {"uv": [5, 4, 6, 7], "texture": "#0"}, - "down": {"uv": [5, 7, 6, 4], "texture": "#0"} + "north": { + "uv": [ + 6, + 4, + 5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4, + 6, + 7 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6, + 6, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4, + 6, + 7 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4, + 6, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7, + 6, + 4 + ], + "texture": "#0" + } } }, { "name": "rice_seed_1", - "from": [11, 0, 4], - "to": [12, 1, 5], + "from": [ + 11, + 0, + 4 + ], + "to": [ + 12, + 1, + 5 + ], "faces": { - "north": {"uv": [12, 4, 11, 5], "texture": "#0"}, - "east": {"uv": [11, 4, 12, 5], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 4, 12, 5], "texture": "#0"}, - "west": {"uv": [11, 4, 12, 5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 4, 12, 5], "texture": "#0"}, - "down": {"uv": [11, 5, 12, 4], "texture": "#0"} + "north": { + "uv": [ + 12, + 4, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 5, + 12, + 4 + ], + "texture": "#0" + } } }, { "name": "rice_seed_2", - "from": [12, 0, 5], - "to": [13, 1, 8], + "from": [ + 12, + 0, + 5 + ], + "to": [ + 13, + 1, + 8 + ], "faces": { - "north": {"uv": [13, 5, 12, 6], "texture": "#0"}, - "east": {"uv": [12, 5, 13, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [12, 7, 13, 8], "texture": "#0"}, - "west": {"uv": [12, 5, 13, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [12, 5, 13, 8], "texture": "#0"}, - "down": {"uv": [12, 8, 13, 5], "texture": "#0"} + "north": { + "uv": [ + 13, + 5, + 12, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5, + 13, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7, + 13, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5, + 13, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5, + 13, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 8, + 13, + 5 + ], + "texture": "#0" + } } }, { "name": "rice_seed_3", - "from": [13, 0, 6], - "to": [14, 1, 8], + "from": [ + 13, + 0, + 6 + ], + "to": [ + 14, + 1, + 8 + ], "faces": { - "north": {"uv": [14, 6, 13, 7], "texture": "#0"}, - "east": {"uv": [13, 6, 14, 8], "rotation": 90, "texture": "#0"}, - "south": {"uv": [13, 7, 14, 8], "texture": "#0"}, - "west": {"uv": [13, 6, 14, 8], "rotation": 270, "texture": "#0"}, - "up": {"uv": [13, 6, 14, 8], "texture": "#0"}, - "down": {"uv": [13, 8, 14, 6], "texture": "#0"} + "north": { + "uv": [ + 14, + 6, + 13, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 14, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 7, + 14, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 6, + 14, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 6, + 14, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 8, + 14, + 6 + ], + "texture": "#0" + } } }, { "name": "rice_seed_4", - "from": [4, 0, 7], - "to": [5, 1, 11], + "from": [ + 4, + 0, + 7 + ], + "to": [ + 5, + 1, + 11 + ], "faces": { - "north": {"uv": [5, 7, 4, 8], "texture": "#0"}, - "east": {"uv": [4, 7, 5, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [4, 10, 5, 11], "texture": "#0"}, - "west": {"uv": [4, 7, 5, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [4, 7, 5, 11], "texture": "#0"}, - "down": {"uv": [4, 11, 5, 7], "texture": "#0"} + "north": { + "uv": [ + 5, + 7, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7, + 5, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10, + 5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7, + 5, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7, + 5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 11, + 5, + 7 + ], + "texture": "#0" + } } }, { "name": "rice_seed_5", - "from": [8, 0, 7], - "to": [10, 1, 9], + "from": [ + 8, + 0, + 7 + ], + "to": [ + 10, + 1, + 9 + ], "faces": { - "north": {"uv": [10, 7, 8, 8], "texture": "#0"}, - "east": {"uv": [9, 7, 10, 9], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 8, 10, 9], "texture": "#0"}, - "west": {"uv": [8, 7, 9, 9], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 7, 10, 9], "texture": "#0"}, - "down": {"uv": [8, 9, 10, 7], "texture": "#0"} + "north": { + "uv": [ + 10, + 7, + 8, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7, + 10, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8, + 10, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7, + 9, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7, + 10, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9, + 10, + 7 + ], + "texture": "#0" + } } }, { "name": "rice_seed_6", - "from": [6, 0, 8], - "to": [7, 1, 10], + "from": [ + 6, + 0, + 8 + ], + "to": [ + 7, + 1, + 10 + ], "faces": { - "north": {"uv": [7, 8, 6, 9], "texture": "#0"}, - "east": {"uv": [6, 8, 7, 10], "rotation": 90, "texture": "#0"}, - "south": {"uv": [6, 9, 7, 10], "texture": "#0"}, - "west": {"uv": [6, 8, 7, 10], "rotation": 270, "texture": "#0"}, - "up": {"uv": [6, 8, 7, 10], "texture": "#0"}, - "down": {"uv": [6, 10, 7, 8], "texture": "#0"} + "north": { + "uv": [ + 7, + 8, + 6, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 7, + 10 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 7, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8, + 7, + 10 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8, + 7, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10, + 7, + 8 + ], + "texture": "#0" + } } }, { "name": "rice_seed_7", - "from": [3, 0, 9], - "to": [4, 1, 11], + "from": [ + 3, + 0, + 9 + ], + "to": [ + 4, + 1, + 11 + ], "faces": { - "north": {"uv": [4, 9, 3, 10], "texture": "#0"}, - "east": {"uv": [3, 9, 4, 11], "rotation": 90, "texture": "#0"}, - "south": {"uv": [3, 10, 4, 11], "texture": "#0"}, - "west": {"uv": [3, 9, 4, 11], "rotation": 270, "texture": "#0"}, - "up": {"uv": [3, 9, 4, 11], "texture": "#0"}, - "down": {"uv": [3, 11, 4, 9], "texture": "#0"} + "north": { + "uv": [ + 4, + 9, + 3, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9, + 4, + 11 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 4, + 11 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9, + 4, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 11, + 4, + 9 + ], + "texture": "#0" + } } }, { "name": "rice_seed_8", - "from": [8, 0, 10], - "to": [9, 1, 13], + "from": [ + 8, + 0, + 10 + ], + "to": [ + 9, + 1, + 13 + ], "faces": { - "north": {"uv": [9, 10, 8, 11], "texture": "#0"}, - "east": {"uv": [8, 10, 9, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [8, 12, 9, 13], "texture": "#0"}, - "west": {"uv": [8, 10, 9, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [8, 10, 9, 13], "texture": "#0"}, - "down": {"uv": [8, 13, 9, 10], "texture": "#0"} + "north": { + "uv": [ + 9, + 10, + 8, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 10, + 9, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 12, + 9, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10, + 9, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 10, + 9, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 13, + 9, + 10 + ], + "texture": "#0" + } } }, { "name": "rice_seed_9", - "from": [11, 0, 10], - "to": [13, 1, 12], + "from": [ + 11, + 0, + 10 + ], + "to": [ + 13, + 1, + 12 + ], "faces": { - "north": {"uv": [13, 10, 11, 11], "texture": "#0"}, - "east": {"uv": [12, 10, 13, 12], "rotation": 90, "texture": "#0"}, - "south": {"uv": [11, 11, 13, 12], "texture": "#0"}, - "west": {"uv": [11, 10, 12, 12], "rotation": 270, "texture": "#0"}, - "up": {"uv": [11, 10, 13, 12], "texture": "#0"}, - "down": {"uv": [11, 12, 13, 10], "texture": "#0"} + "north": { + "uv": [ + 13, + 10, + 11, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 10, + 13, + 12 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 11, + 13, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 10, + 12, + 12 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 10, + 13, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 12, + 13, + 10 + ], + "texture": "#0" + } } }, { "name": "rice_seed_10", - "from": [7, 0, 11], - "to": [8, 1, 13], + "from": [ + 7, + 0, + 11 + ], + "to": [ + 8, + 1, + 13 + ], "faces": { - "north": {"uv": [8, 11, 7, 12], "texture": "#0"}, - "east": {"uv": [7, 11, 8, 13], "rotation": 90, "texture": "#0"}, - "south": {"uv": [7, 12, 8, 13], "texture": "#0"}, - "west": {"uv": [7, 11, 8, 13], "rotation": 270, "texture": "#0"}, - "up": {"uv": [7, 11, 8, 13], "texture": "#0"}, - "down": {"uv": [7, 13, 8, 11], "texture": "#0"} + "north": { + "uv": [ + 8, + 11, + 7, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11, + 8, + 13 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12, + 8, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11, + 8, + 13 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11, + 8, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 13, + 8, + 11 + ], + "texture": "#0" + } } } ], "groups": [ { "name": "rice_seed", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/tuna_kirimi.json b/pack/assets/minecraft/models/foods/tuna_kirimi.json index 648b1fbb..43d90d3d 100644 --- a/pack/assets/minecraft/models/foods/tuna_kirimi.json +++ b/pack/assets/minecraft/models/foods/tuna_kirimi.json @@ -2,59 +2,199 @@ "__name": "つなのきりみ", "credit": "Made with Blockbench", "textures": { - "2": "foods/tuna", - "particle": "foods/tuna" + "2": "item/foods/tuna", + "particle": "item/foods/tuna" }, "elements": [ { - "from": [5.5, 1, 7.5], - "to": [10.5, 1.5, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 16]}, + "from": [ + 5.5, + 1, + 7.5 + ], + "to": [ + 10.5, + 1.5, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 9, + 16 + ] + }, "faces": { - "north": {"uv": [0, 0, 3, 15.5], "texture": "#2"}, - "east": {"uv": [0, 0, 3, 15.5], "texture": "#2"}, - "south": {"uv": [0, 0, 3, 15.5], "texture": "#2"}, - "west": {"uv": [0, 0, 3, 15.5], "texture": "#2"}, - "up": {"uv": [0, 0, 3, 15.5], "texture": "#2"}, - "down": {"uv": [0, 0, 3, 15.5], "texture": "#2"} + "north": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 3, + 15.5 + ], + "texture": "#2" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.75, 7.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.75, + 7.75 + ] }, "thirdperson_lefthand": { - "rotation": [90, 0, 0], - "translation": [-1.75, 0.75, 7.75] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + -1.75, + 0.75, + 7.75 + ] }, "firstperson_righthand": { - "rotation": [90, -45, 0], - "translation": [2, 2.5, 7.75] + "rotation": [ + 90, + -45, + 0 + ], + "translation": [ + 2, + 2.5, + 7.75 + ] }, "firstperson_lefthand": { - "rotation": [90, -45, 0], - "translation": [3.5, 2.5, 7.75] + "rotation": [ + 90, + -45, + 0 + ], + "translation": [ + 3.5, + 2.5, + 7.75 + ] }, "ground": { - "translation": [0, 12.5, 0], - "scale": [1.59, 1.59, 1.59] + "translation": [ + 0, + 12.5, + 0 + ], + "scale": [ + 1.59, + 1.59, + 1.59 + ] }, "gui": { - "rotation": [45, 30, 0], - "translation": [0, 14.25, 14.5], - "scale": [2.92, 2.92, 2.92] + "rotation": [ + 45, + 30, + 0 + ], + "translation": [ + 0, + 14.25, + 14.5 + ], + "scale": [ + 2.92, + 2.92, + 2.92 + ] }, "head": { - "rotation": [0, 90, 0], - "translation": [-1, 33.5, -3.75], - "scale": [4, 4, 4] + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1, + 33.5, + -3.75 + ], + "scale": [ + 4, + 4, + 4 + ] }, "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 1, 14.5], - "scale": [2.61, 2.61, 2.61] + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1, + 14.5 + ], + "scale": [ + 2.61, + 2.61, + 2.61 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/foods/yakinasu.json b/pack/assets/minecraft/models/foods/yakinasu.json index 7a088681..500c53b7 100644 --- a/pack/assets/minecraft/models/foods/yakinasu.json +++ b/pack/assets/minecraft/models/foods/yakinasu.json @@ -1,7 +1,7 @@ -{ - "__name": "焼きなす", - "parent": "item/generated", - "textures": { - "layer0": "foods/yakinasu" - } +{ + "__name": "焼きなす", + "parent": "item/generated", + "textures": { + "layer0": "item/foods/yakinasu" + } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/glass_shumu.json b/pack/assets/minecraft/models/hats/glass_shumu.json index 652f2246..0a18c216 100644 --- a/pack/assets/minecraft/models/hats/glass_shumu.json +++ b/pack/assets/minecraft/models/hats/glass_shumu.json @@ -2,515 +2,2865 @@ "__name": "丸メガネ", "credit": "Made with Blockbench", "textures": { - "0": "shumu1124_datemegane/black", - "particle": "shumu1124_datemegane/black" + "0": "item/shumu1124_datemegane/black", + "particle": "item/shumu1124_datemegane/black" }, "elements": [ { - "from": [7, 0, 7], - "to": [8.25, 0.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 8, 15]}, + "from": [ + 7, + 0, + 7 + ], + "to": [ + 8.25, + 0.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [7, 3.5, 7], - "to": [8.25, 3.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 11.5, 15]}, + "from": [ + 7, + 3.5, + 7 + ], + "to": [ + 8.25, + 3.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 11.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6.5, 0.25, 7], - "to": [7, 0.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15.25, 8.25, 15]}, + "from": [ + 6.5, + 0.25, + 7 + ], + "to": [ + 7, + 0.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.25, + 8.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6.5, 3.25, 7], - "to": [7, 3.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15.25, 11.25, 15]}, + "from": [ + 6.5, + 3.25, + 7 + ], + "to": [ + 7, + 3.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.25, + 11.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [8.25, 0.25, 7], - "to": [8.75, 0.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 8.25, 15]}, + "from": [ + 8.25, + 0.25, + 7 + ], + "to": [ + 8.75, + 0.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 8.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [8.25, 3.25, 7], - "to": [8.75, 3.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 11.25, 15]}, + "from": [ + 8.25, + 3.25, + 7 + ], + "to": [ + 8.75, + 3.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 11.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6.25, 0.5, 7], - "to": [6.5, 0.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 8.5, 15]}, + "from": [ + 6.25, + 0.5, + 7 + ], + "to": [ + 6.5, + 0.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 8.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6.25, 3, 7], - "to": [6.5, 3.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 15]}, + "from": [ + 6.25, + 3, + 7 + ], + "to": [ + 6.5, + 3.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [8.75, 0.5, 7], - "to": [9, 0.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 8.5, 15]}, + "from": [ + 8.75, + 0.5, + 7 + ], + "to": [ + 9, + 0.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.5, + 8.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [8.75, 3, 7], - "to": [9, 3.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17.5, 11, 15]}, + "from": [ + 8.75, + 3, + 7 + ], + "to": [ + 9, + 3.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.5, + 11, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6, 0.75, 7], - "to": [6.25, 1.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14.75, 8.75, 15]}, + "from": [ + 6, + 0.75, + 7 + ], + "to": [ + 6.25, + 1.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.75, + 8.75, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [6, 2.5, 7], - "to": [6.25, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14.75, 10.5, 15]}, + "from": [ + 6, + 2.5, + 7 + ], + "to": [ + 6.25, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.75, + 10.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [9, 0.75, 7], - "to": [9.25, 1.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17.75, 8.75, 15]}, + "from": [ + 9, + 0.75, + 7 + ], + "to": [ + 9.25, + 1.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.75, + 8.75, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [9, 2.5, 7], - "to": [9.25, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17.75, 10.5, 15]}, + "from": [ + 9, + 2.5, + 7 + ], + "to": [ + 9.25, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.75, + 10.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [9.25, 1.25, 7], - "to": [9.5, 2.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 9.25, 15]}, + "from": [ + 9.25, + 1.25, + 7 + ], + "to": [ + 9.5, + 2.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 9.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [5.75, 1.25, 7], - "to": [6, 2.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 9.25, 15]}, + "from": [ + 5.75, + 1.25, + 7 + ], + "to": [ + 6, + 2.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 9.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [2, 0, 7], - "to": [3.25, 0.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 8, 15]}, + "from": [ + 2, + 0, + 7 + ], + "to": [ + 3.25, + 0.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 8, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [2, 3.5, 7], - "to": [3.25, 3.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11.5, 15]}, + "from": [ + 2, + 3.5, + 7 + ], + "to": [ + 3.25, + 3.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 1.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1.5, 0.25, 7], - "to": [2, 0.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10.25, 8.25, 15]}, + "from": [ + 1.5, + 0.25, + 7 + ], + "to": [ + 2, + 0.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.25, + 8.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1.5, 3.25, 7], - "to": [2, 3.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10.25, 11.25, 15]}, + "from": [ + 1.5, + 3.25, + 7 + ], + "to": [ + 2, + 3.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.25, + 11.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [3.25, 0.25, 7], - "to": [3.75, 0.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 8.25, 15]}, + "from": [ + 3.25, + 0.25, + 7 + ], + "to": [ + 3.75, + 0.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 8.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [3.25, 3.25, 7], - "to": [3.75, 3.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11.25, 15]}, + "from": [ + 3.25, + 3.25, + 7 + ], + "to": [ + 3.75, + 3.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.5, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1.25, 0.5, 7], - "to": [1.5, 0.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 8.5, 15]}, + "from": [ + 1.25, + 0.5, + 7 + ], + "to": [ + 1.5, + 0.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 8.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1.25, 3, 7], - "to": [1.5, 3.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 15]}, + "from": [ + 1.25, + 3, + 7 + ], + "to": [ + 1.5, + 3.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [3.75, 0.5, 7], - "to": [4, 0.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 8.5, 15]}, + "from": [ + 3.75, + 0.5, + 7 + ], + "to": [ + 4, + 0.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.5, + 8.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [3.75, 3, 7], - "to": [4, 3.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 11, 15]}, + "from": [ + 3.75, + 3, + 7 + ], + "to": [ + 4, + 3.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.5, + 11, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1, 0.75, 7], - "to": [1.25, 1.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.75, 8.75, 15]}, + "from": [ + 1, + 0.75, + 7 + ], + "to": [ + 1.25, + 1.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.75, + 8.75, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [1, 2.5, 7], - "to": [1.25, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.75, 10.5, 15]}, + "from": [ + 1, + 2.5, + 7 + ], + "to": [ + 1.25, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.75, + 10.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [4, 0.75, 7], - "to": [4.25, 1.25, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12.75, 8.75, 15]}, + "from": [ + 4, + 0.75, + 7 + ], + "to": [ + 4.25, + 1.25, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.75, + 8.75, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [4, 2.5, 7], - "to": [4.25, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12.75, 10.5, 15]}, + "from": [ + 4, + 2.5, + 7 + ], + "to": [ + 4.25, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.75, + 10.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [4.25, 1.25, 7], - "to": [4.5, 2.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 9.25, 15]}, + "from": [ + 4.25, + 1.25, + 7 + ], + "to": [ + 4.5, + 2.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 9.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [0.75, 1.25, 7], - "to": [1, 2.5, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 9.25, 15]}, + "from": [ + 0.75, + 1.25, + 7 + ], + "to": [ + 1, + 2.5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 9.25, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 1.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [5.5, 1.5, 7], - "to": [5.75, 1.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 9.5, 15]}, + "from": [ + 5.5, + 1.5, + 7 + ], + "to": [ + 5.75, + 1.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.5, + 9.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [4.5, 1.5, 7], - "to": [4.75, 1.75, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12.5, 9.5, 15]}, + "from": [ + 4.5, + 1.5, + 7 + ], + "to": [ + 4.75, + 1.75, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.5, + 9.5, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + } } }, { - "from": [4.75, 1.75, 7], - "to": [5.5, 2, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13.25, 9.75, 15]}, + "from": [ + 4.75, + 1.75, + 7 + ], + "to": [ + 5.5, + 2, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.25, + 9.75, + 15 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.75, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 0.75, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 0.25, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 0.75, 0.25], "texture": "#0"}, - "down": {"uv": [0, 0, 0.75, 0.25], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 0.75, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.75, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.75, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.75, + 0.25 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "translation": [2.25, 5.75, 1], - "scale": [0.76, 0.76, 0.76] + "translation": [ + 2.25, + 5.75, + 1 + ], + "scale": [ + 0.76, + 0.76, + 0.76 + ] }, "thirdperson_lefthand": { - "translation": [-2, 5.75, 1], - "scale": [0.76, 0.76, 0.76] + "translation": [ + -2, + 5.75, + 1 + ], + "scale": [ + 0.76, + 0.76, + 0.76 + ] }, "firstperson_righthand": { - "translation": [2.75, 7.75, 1] + "translation": [ + 2.75, + 7.75, + 1 + ] }, "firstperson_lefthand": { - "rotation": [0, 0, 13], - "translation": [-0.25, 6.75, 1] + "rotation": [ + 0, + 0, + 13 + ], + "translation": [ + -0.25, + 6.75, + 1 + ] }, "ground": { - "translation": [0, 4.25, 0] + "translation": [ + 0, + 4.25, + 0 + ] }, "gui": { - "rotation": [19.5, -36, 0], - "translation": [3.75, 9.5, 1], - "scale": [1.79297, 1.79297, 1.79297] + "rotation": [ + 19.5, + -36, + 0 + ], + "translation": [ + 3.75, + 9.5, + 1 + ], + "scale": [ + 1.79297, + 1.79297, + 1.79297 + ] }, "head": { - "translation": [4.25, 6.75, -5.5], - "scale": [1.49023, 1.49023, 1.49023] + "translation": [ + 4.25, + 6.75, + -5.5 + ], + "scale": [ + 1.49023, + 1.49023, + 1.49023 + ] }, "fixed": { - "translation": [6.5, 14.5, 1], - "scale": [2.23828, 2.23828, 2.23828] + "translation": [ + 6.5, + 14.5, + 1 + ], + "scale": [ + 2.23828, + 2.23828, + 2.23828 + ] } }, "groups": [ { "name": "group", - "origin": [14.5, 9.25, 15], - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + "origin": [ + 14.5, + 9.25, + 15 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] }, { "name": "group", - "origin": [14.5, 9.25, 15], - "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31] + "origin": [ + 14.5, + 9.25, + 15 + ], + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] }, { "name": "group", - "origin": [13.25, 9.75, 15], - "children": [32, 33, 34] + "origin": [ + 13.25, + 9.75, + 15 + ], + "children": [ + 32, + 33, + 34 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/fox.json b/pack/assets/minecraft/models/hats/masks/fox.json index 23be80fe..33fac350 100644 --- a/pack/assets/minecraft/models/hats/masks/fox.json +++ b/pack/assets/minecraft/models/hats/masks/fox.json @@ -1,92 +1,381 @@ { "credit": "made by alphakun", "textures": { - "0": "skins/mobs/fox", - "particle": "skins/mobs/fox" + "0": "item/skins/mobs/fox", + "particle": "item/skins/mobs/fox" }, "elements": [ { - "from": [6, 0, 1], - "to": [10, 2, 3], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 2, + 3 + ], "faces": { - "north": {"uv": [2.25, 5.25, 3.25, 5.75], "texture": "#0"}, - "east": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 2], "texture": "#missing"}, - "west": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "up": {"uv": [3.25, 4.5, 4.25, 5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 5.25, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 2 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4.5, + 4.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 6, 4], - "to": [6, 8, 5], + "from": [ + 4, + 6, + 4 + ], + "to": [ + 6, + 8, + 5 + ], "faces": { - "north": {"uv": [4, 0.5, 4.5, 1], "texture": "#0"}, - "east": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "south": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "west": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "up": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 0.5, + 4.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [10, 6, 4], - "to": [12, 8, 5], + "from": [ + 10, + 6, + 4 + ], + "to": [ + 12, + 8, + 5 + ], "faces": { - "north": {"uv": [2.25, 0.5, 2.75, 1], "texture": "#0"}, - "east": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "south": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "west": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "up": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 0.5, + 2.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 0, 3], - "to": [12, 6, 6], + "from": [ + 4, + 0, + 3 + ], + "to": [ + 12, + 6, + 6 + ], "faces": { - "north": {"uv": [1.5, 2.75, 4, 4.25], "texture": "#0"}, - "east": {"uv": [0.5, 2.75, 1.5, 4.25], "texture": "#0"}, - "south": {"uv": [1.75, 1.25, 3.75, 2.75], "texture": "#0"}, - "west": {"uv": [4, 2.75, 5, 4.25], "texture": "#0"}, - "up": {"uv": [3.75, 1.25, 5.75, 2.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [3.75, 1.25, 5.75, 2.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 2.75, + 4, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 2.75, + 1.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 1.25, + 3.75, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2.75, + 5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 1.25, + 5.75, + 2.75 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 1.25, + 5.75, + 2.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "thirdperson_lefthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "firstperson_righthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "firstperson_lefthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "ground": { - "translation": [0, 5.5, 3.5] + "translation": [ + 0, + 5.5, + 3.5 + ] }, "gui": { - "rotation": [0, -180, 0], - "translation": [0, 3.5, 0], - "scale": [1.43, 1.43, 1.43] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 3.5, + 0 + ], + "scale": [ + 1.43, + 1.43, + 1.43 + ] }, "head": { - "translation": [0, 8.75, -0.5], - "scale": [1.67, 1.67, 1.67] + "translation": [ + 0, + 8.75, + -0.5 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] }, "fixed": { - "translation": [0, 7, 4.25], - "scale": [1.77, 1.77, 1.77] + "translation": [ + 0, + 7, + 4.25 + ], + "scale": [ + 1.77, + 1.77, + 1.77 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/fox_normal.json b/pack/assets/minecraft/models/hats/masks/fox_normal.json index dacecda1..1edf9f63 100644 --- a/pack/assets/minecraft/models/hats/masks/fox_normal.json +++ b/pack/assets/minecraft/models/hats/masks/fox_normal.json @@ -1,92 +1,382 @@ { "credit": "made by alphakun", "textures": { - "0": "skins/mobs/fox", - "particle": "skins/mobs/fox" + "0": "item/skins/mobs/fox", + "particle": "item/skins/mobs/fox" }, "elements": [ { - "from": [6, 0, 1], - "to": [10, 2, 3], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 2, + 3 + ], "faces": { - "north": {"uv": [2.25, 13.25, 3.25, 13.75], "texture": "#0"}, - "east": {"uv": [1.5, 13.25, 2.25, 13.75], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 2], "texture": "#missing"}, - "west": {"uv": [3.25, 13.25, 4, 13.75], "texture": "#0"}, - "up": {"uv": [2.25, 12.5, 3.25, 13], "texture": "#0"}, - "down": {"uv": [3.25, 12.5, 4.25, 13], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 2.25, + 13.25, + 3.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 13.25, + 2.25, + 13.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 2 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 3.25, + 13.25, + 4, + 13.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 12.5, + 3.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 12.5, + 4.25, + 13 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [4, 6, 4], - "to": [6, 8, 5], + "from": [ + 4, + 6, + 4 + ], + "to": [ + 6, + 8, + 5 + ], "faces": { - "north": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "south": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 8.5, + 4.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [10, 6, 4], - "to": [12, 8, 5], + "from": [ + 10, + 6, + 4 + ], + "to": [ + 12, + 8, + 5 + ], "faces": { - "north": {"uv": [2.25, 8.5, 2.75, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "south": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 8.5, + 2.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 0, 3], - "to": [12, 6, 6], + "from": [ + 4, + 0, + 3 + ], + "to": [ + 12, + 6, + 6 + ], "faces": { - "north": {"uv": [1.5, 10.75, 4, 12.25], "texture": "#0"}, - "east": {"uv": [0.5, 10.75, 1.5, 12.25], "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 3.75, 10.75], "texture": "#0"}, - "west": {"uv": [4, 10.75, 5, 12.25], "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 3.75, 10.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [3.75, 9.25, 5.75, 10.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 10.75, + 4, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10.75, + 1.5, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.75, + 5, + 12.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 3.75, + 10.75 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.25, + 5.75, + 10.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "thirdperson_lefthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "firstperson_righthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "firstperson_lefthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "ground": { - "translation": [0, 5.5, 3.5] + "translation": [ + 0, + 5.5, + 3.5 + ] }, "gui": { - "rotation": [0, -180, 0], - "translation": [0, 3.5, 0], - "scale": [1.43, 1.43, 1.43] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 3.5, + 0 + ], + "scale": [ + 1.43, + 1.43, + 1.43 + ] }, "head": { - "translation": [0, 8.75, -0.5], - "scale": [1.67, 1.67, 1.67] + "translation": [ + 0, + 8.75, + -0.5 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] }, "fixed": { - "translation": [0, 7, 4.25], - "scale": [1.77, 1.77, 1.77] + "translation": [ + 0, + 7, + 4.25 + ], + "scale": [ + 1.77, + 1.77, + 1.77 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/fox_oblique.json b/pack/assets/minecraft/models/hats/masks/fox_oblique.json index b1f588dc..7a483705 100644 --- a/pack/assets/minecraft/models/hats/masks/fox_oblique.json +++ b/pack/assets/minecraft/models/hats/masks/fox_oblique.json @@ -1,92 +1,385 @@ { "credit": "made by alphakun", "textures": { - "0": "skins/mobs/fox", - "particle": "skins/mobs/fox" + "0": "item/skins/mobs/fox", + "particle": "item/skins/mobs/fox" }, "elements": [ { - "from": [6, 0, 1], - "to": [10, 2, 3], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 2, + 3 + ], "faces": { - "north": {"uv": [2.25, 5.25, 3.25, 5.75], "texture": "#0"}, - "east": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 2], "texture": "#missing"}, - "west": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "up": {"uv": [3.25, 4.5, 4.25, 5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 5.25, + 3.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 2 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 4.5, + 4.25, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 6, 4], - "to": [6, 8, 5], + "from": [ + 4, + 6, + 4 + ], + "to": [ + 6, + 8, + 5 + ], "faces": { - "north": {"uv": [4, 0.5, 4.5, 1], "texture": "#0"}, - "east": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "south": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "west": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "up": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 0.5, + 4.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [10, 6, 4], - "to": [12, 8, 5], + "from": [ + 10, + 6, + 4 + ], + "to": [ + 12, + 8, + 5 + ], "faces": { - "north": {"uv": [2.25, 0.5, 2.75, 1], "texture": "#0"}, - "east": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "south": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "west": {"uv": [3, 5.25, 3.75, 5.75], "texture": "#0"}, - "up": {"uv": [2.25, 0.25, 2.75, 0.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 0.5, + 2.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 5.25, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 0.25, + 2.75, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 0, 3], - "to": [12, 6, 6], + "from": [ + 4, + 0, + 3 + ], + "to": [ + 12, + 6, + 6 + ], "faces": { - "north": {"uv": [1.5, 2.75, 4, 4.25], "texture": "#0"}, - "east": {"uv": [0.5, 2.75, 1.5, 4.25], "texture": "#0"}, - "south": {"uv": [1.75, 1.25, 3.75, 2.75], "texture": "#0"}, - "west": {"uv": [4, 2.75, 5, 4.25], "texture": "#0"}, - "up": {"uv": [3.75, 1.25, 5.75, 2.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [3.75, 1.25, 5.75, 2.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 2.75, + 4, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 2.75, + 1.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 1.25, + 3.75, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2.75, + 5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 1.25, + 5.75, + 2.75 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 1.25, + 5.75, + 2.75 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "thirdperson_lefthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "firstperson_righthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "firstperson_lefthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "ground": { - "translation": [0, 5.5, 3.5] + "translation": [ + 0, + 5.5, + 3.5 + ] }, "gui": { - "rotation": [0, -180, 0], - "translation": [0, 5, 0], - "scale": [1.43, 1.43, 1.43] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 5, + 0 + ], + "scale": [ + 1.43, + 1.43, + 1.43 + ] }, "head": { - "rotation": [27.25, 40.75, -17.75], - "translation": [1.25, 12, 1.5], - "scale": [1.67, 1.67, 1.67] + "rotation": [ + 27.25, + 40.75, + -17.75 + ], + "translation": [ + 1.25, + 12, + 1.5 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] }, "fixed": { - "translation": [0, 7.25, 4.25], - "scale": [1.67, 1.67, 1.67] + "translation": [ + 0, + 7.25, + 4.25 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/fox_oblique_normal.json b/pack/assets/minecraft/models/hats/masks/fox_oblique_normal.json index ce2a4448..bc3808a7 100644 --- a/pack/assets/minecraft/models/hats/masks/fox_oblique_normal.json +++ b/pack/assets/minecraft/models/hats/masks/fox_oblique_normal.json @@ -1,93 +1,387 @@ { "credit": "made by alphakun", "textures": { - "0": "skins/mobs/fox", - "particle": "skins/mobs/fox" + "0": "item/skins/mobs/fox", + "particle": "item/skins/mobs/fox" }, "elements": [ { - "from": [6, 0, 1], - "to": [10, 2, 3], + "from": [ + 6, + 0, + 1 + ], + "to": [ + 10, + 2, + 3 + ], "faces": { - "north": {"uv": [2.25, 13.25, 3.25, 13.75], "texture": "#0"}, - "east": {"uv": [1.5, 13.25, 2.25, 13.75], "texture": "#0"}, - "south": {"uv": [0, 0, 4, 2], "texture": "#missing"}, - "west": {"uv": [3.25, 13.25, 4, 13.75], "texture": "#0"}, - "up": {"uv": [2.25, 12.5, 3.25, 13], "texture": "#0"}, - "down": {"uv": [3.25, 12.5, 4.25, 13], "rotation": 180, "texture": "#0"} + "north": { + "uv": [ + 2.25, + 13.25, + 3.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 13.25, + 2.25, + 13.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 4, + 2 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 3.25, + 13.25, + 4, + 13.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 12.5, + 3.25, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 12.5, + 4.25, + 13 + ], + "rotation": 180, + "texture": "#0" + } } }, { - "from": [4, 6, 4], - "to": [6, 8, 5], + "from": [ + 4, + 6, + 4 + ], + "to": [ + 6, + 8, + 5 + ], "faces": { - "north": {"uv": [4, 8.5, 4.5, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "south": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 4, + 8.5, + 4.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [10, 6, 4], - "to": [12, 8, 5], + "from": [ + 10, + 6, + 4 + ], + "to": [ + 12, + 8, + 5 + ], "faces": { - "north": {"uv": [2.25, 8.5, 2.75, 9], "texture": "#0"}, - "east": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "south": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "west": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "up": {"uv": [2.25, 8.25, 2.75, 8.5], "texture": "#0"}, - "down": {"uv": [4.25, 5.25, 5, 5.75], "texture": "#0"} + "north": { + "uv": [ + 2.25, + 8.5, + 2.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.25, + 2.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 5, + 5.75 + ], + "texture": "#0" + } } }, { - "from": [4, 0, 3], - "to": [12, 6, 6], + "from": [ + 4, + 0, + 3 + ], + "to": [ + 12, + 6, + 6 + ], "faces": { - "north": {"uv": [1.5, 10.75, 4, 12.25], "texture": "#0"}, - "east": {"uv": [0.5, 10.75, 1.5, 12.25], "texture": "#0"}, - "south": {"uv": [1.75, 9.25, 3.75, 10.75], "texture": "#0"}, - "west": {"uv": [4, 10.75, 5, 12.25], "texture": "#0"}, - "up": {"uv": [1.75, 9.25, 3.75, 10.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [3.75, 9.25, 5.75, 10.75], "texture": "#0"} + "north": { + "uv": [ + 1.5, + 10.75, + 4, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10.75, + 1.5, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 3.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.75, + 5, + 12.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.25, + 3.75, + 10.75 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 9.25, + 5.75, + 10.75 + ], + "texture": "#0" + } } } ], "gui_light": "front", "display": { "thirdperson_righthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "thirdperson_lefthand": { - "rotation": [67.75, -31, 0], - "translation": [-3.5, 1.5, 7.75] + "rotation": [ + 67.75, + -31, + 0 + ], + "translation": [ + -3.5, + 1.5, + 7.75 + ] }, "firstperson_righthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "firstperson_lefthand": { - "rotation": [0, 117, 0], - "translation": [2.75, 10, 0] + "rotation": [ + 0, + 117, + 0 + ], + "translation": [ + 2.75, + 10, + 0 + ] }, "ground": { - "translation": [0, 5.5, 3.5] + "translation": [ + 0, + 5.5, + 3.5 + ] }, "gui": { - "rotation": [0, -180, 0], - "translation": [0, 5, 0], - "scale": [1.43, 1.43, 1.43] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 5, + 0 + ], + "scale": [ + 1.43, + 1.43, + 1.43 + ] }, "head": { - "rotation": [27.25, 40.75, -17.75], - "translation": [1.25, 12, 1.5], - "scale": [1.67, 1.67, 1.67] + "rotation": [ + 27.25, + 40.75, + -17.75 + ], + "translation": [ + 1.25, + 12, + 1.5 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] }, "fixed": { - "translation": [0, 7.25, 4.25], - "scale": [1.67, 1.67, 1.67] + "translation": [ + 0, + 7.25, + 4.25 + ], + "scale": [ + 1.67, + 1.67, + 1.67 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/maple8192_mask.json b/pack/assets/minecraft/models/hats/masks/maple8192_mask.json index 31b18f5a..30ea8cd9 100644 --- a/pack/assets/minecraft/models/hats/masks/maple8192_mask.json +++ b/pack/assets/minecraft/models/hats/masks/maple8192_mask.json @@ -4,2283 +4,13445 @@ "2": "block/black_concrete", "3": "block/red_concrete", "8": "block/quartz_block_bottom", - "9": "others/momizidani2", + "9": "item/others/momizidani2", "particle": "block/black_concrete" }, "elements": [ { - "from": [0, 0, 0], - "to": [1, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 2, 0], - "to": [1, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 3, 0], - "to": [1, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 5, 0], - "to": [1, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 6, 0], - "to": [1, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [0, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 0, 0], - "to": [3, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 2, 0], - "to": [3, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [2, 3, 0], - "to": [3, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 4, 0], - "to": [3, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 5, 0], - "to": [3, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [2, 6, 0], - "to": [3, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 7, 0], - "to": [3, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [2, 1, 0], - "to": [3, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 0, 0], - "to": [5, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 2, 0], - "to": [5, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 3, 0], - "to": [5, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 4, 0], - "to": [5, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 5, 0], - "to": [5, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 6, 0], - "to": [5, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 7, 0], - "to": [5, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [4, 1, 0], - "to": [5, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [6, 0, 0], - "to": [7, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 2, 0], - "to": [7, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 3, 0], - "to": [7, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 4, 0], - "to": [7, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [6, 5, 0], - "to": [7, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 6, 0], - "to": [7, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 7, 0], - "to": [7, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 1, 0], - "to": [7, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 0, 0], - "to": [2, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 2, 0], - "to": [2, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 3, 0], - "to": [2, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 4, 0], - "to": [2, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 5, 0], - "to": [2, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 6, 0], - "to": [2, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 7, 0], - "to": [2, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 1, 0], - "to": [2, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 0, 0], - "to": [4, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 2, 0], - "to": [4, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 3, 0], - "to": [4, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 4, 0], - "to": [4, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 5, 0], - "to": [4, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 6, 0], - "to": [4, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 7, 0], - "to": [4, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 1, 0], - "to": [4, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [5, 0, 0], - "to": [6, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 2, 0], - "to": [6, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [5, 3, 0], - "to": [6, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 4, 0], - "to": [6, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 5, 0], - "to": [6, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 6, 0], - "to": [6, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 7, 0], - "to": [6, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [5, 1, 0], - "to": [6, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 0, 0], - "to": [8, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 2, 0], - "to": [8, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 3, 0], - "to": [8, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 4, 0], - "to": [8, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 5, 0], - "to": [8, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 6, 0], - "to": [8, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 7, 0], - "to": [8, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [7, 1, 0], - "to": [8, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [3, 2, 1], - "to": [4, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [3, 2, 13.75], - "to": [4, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [5, 2, 1], - "to": [6, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [5, 2, 13.75], - "to": [6, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [9, 2, 1], - "to": [10, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [9, 2, 13.75], - "to": [10, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [12, 2, 1], - "to": [13, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [7, 2, 1], - "to": [8, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [7, 2, 13.75], - "to": [8, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [11, 2, 1], - "to": [12, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [11, 2, 13.75], - "to": [12, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14, 2, 1], - "to": [14.5, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14, 2, 13.75], - "to": [14.25, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [4, 2, 1], - "to": [5, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [4, 2, 13.75], - "to": [5, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [6, 2, 1], - "to": [7, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [6, 2, 13.75], - "to": [7, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [10, 2, 1], - "to": [11, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [10, 2, 13.75], - "to": [11, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [13, 2, 1], - "to": [14, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [13, 2, 13.75], - "to": [14, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [8, 2, 1], - "to": [9, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [8, 2, 13.75], - "to": [9, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [12, 2, 13.75], - "to": [13, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 1], - "to": [2, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [2, 2, 1], - "to": [3, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.75, 2, 13.75], - "to": [3, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [2, 3, 1], - "to": [3, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.75, 3, 13.75], - "to": [3, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 1], - "to": [2, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 1.25], - "to": [14.5, 4, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 1.25], - "to": [1.75, 4, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 3.25], - "to": [14.5, 4, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 3.25], - "to": [1.75, 4, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 5.25], - "to": [14.5, 4, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 5.25], - "to": [1.75, 4, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 7.25], - "to": [14.5, 4, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 7.25], - "to": [1.75, 4, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 9.25], - "to": [14.5, 4, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 9.25], - "to": [1.75, 4, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 11.25], - "to": [14.5, 4, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 11.25], - "to": [1.75, 4, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 2.25], - "to": [14.5, 4, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 2.25], - "to": [1.75, 4, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 4.25], - "to": [14.5, 4, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 4.25], - "to": [1.75, 4, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 6.25], - "to": [14.5, 4, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 6.25], - "to": [1.75, 4, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 8.25], - "to": [14.5, 4, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 8.25], - "to": [1.75, 4, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 10.25], - "to": [14.5, 4, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 10.25], - "to": [1.75, 4, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 12.25], - "to": [14.5, 4, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 12.25], - "to": [1.75, 4, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 13.25], - "to": [14.5, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 13.25], - "to": [1.75, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 1.25], - "to": [14.5, 3, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 1.25], - "to": [1.75, 3, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 3.25], - "to": [14.5, 3, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 3.25], - "to": [1.75, 3, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 5.25], - "to": [14.5, 3, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 5.25], - "to": [1.75, 3, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 7.25], - "to": [14.5, 3, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 7.25], - "to": [1.75, 3, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 9.25], - "to": [14.5, 3, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 9.25], - "to": [1.75, 3, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 11.25], - "to": [14.5, 3, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 11.25], - "to": [1.75, 3, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 2.25], - "to": [14.5, 3, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 2.25], - "to": [1.75, 3, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 4.25], - "to": [14.5, 3, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 4.25], - "to": [1.75, 3, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 6.25], - "to": [14.5, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 6.25], - "to": [1.75, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 8.25], - "to": [14.5, 3, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 8.25], - "to": [1.75, 3, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 10.25], - "to": [14.5, 3, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 10.25], - "to": [1.75, 3, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 12.25], - "to": [14.5, 3, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 12.25], - "to": [1.75, 3, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 13.25], - "to": [14.5, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 13.25], - "to": [1.75, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [3, 3, 1], - "to": [4, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [3, 3, 13.75], - "to": [4, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [5, 3, 1], - "to": [6, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [5, 3, 13.75], - "to": [6, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [9, 3, 1], - "to": [10, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [9, 3, 13.75], - "to": [10, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [12, 3, 1], - "to": [13, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [7, 3, 1], - "to": [8, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [7, 3, 13.75], - "to": [8, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [11, 3, 1], - "to": [12, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [11, 3, 13.75], - "to": [12, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14, 3, 1], - "to": [14.5, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [14, 3, 13.75], - "to": [14.25, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [4, 3, 1], - "to": [5, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [4, 3, 13.75], - "to": [5, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [6, 3, 1], - "to": [7, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [6, 3, 13.75], - "to": [7, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [10, 3, 1], - "to": [11, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [10, 3, 13.75], - "to": [11, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [13, 3, 1], - "to": [14, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [13, 3, 13.75], - "to": [14, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [8, 3, 1], - "to": [9, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [8, 3, 13.75], - "to": [9, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [12, 3, 13.75], - "to": [13, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#8"} - } - }, - { - "from": [9.25, 2, 0.99], - "to": [13.75, 4, 0.99], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#9"} + "from": [ + 0, + 0, + 0 + ], + "to": [ + 1, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 2, + 0 + ], + "to": [ + 1, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 3, + 0 + ], + "to": [ + 1, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 4, + 0 + ], + "to": [ + 1, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 5, + 0 + ], + "to": [ + 1, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 6, + 0 + ], + "to": [ + 1, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 7, + 0 + ], + "to": [ + 1, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 0, + 1, + 0 + ], + "to": [ + 1, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 0, + 0 + ], + "to": [ + 3, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 2, + 0 + ], + "to": [ + 3, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 2, + 3, + 0 + ], + "to": [ + 3, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 4, + 0 + ], + "to": [ + 3, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 5, + 0 + ], + "to": [ + 3, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 2, + 6, + 0 + ], + "to": [ + 3, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 7, + 0 + ], + "to": [ + 3, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 2, + 1, + 0 + ], + "to": [ + 3, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 0, + 0 + ], + "to": [ + 5, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 2, + 0 + ], + "to": [ + 5, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 3, + 0 + ], + "to": [ + 5, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 4, + 0 + ], + "to": [ + 5, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 5, + 0 + ], + "to": [ + 5, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 6, + 0 + ], + "to": [ + 5, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 7, + 0 + ], + "to": [ + 5, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 4, + 1, + 0 + ], + "to": [ + 5, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 6, + 0, + 0 + ], + "to": [ + 7, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 2, + 0 + ], + "to": [ + 7, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 3, + 0 + ], + "to": [ + 7, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 4, + 0 + ], + "to": [ + 7, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 6, + 5, + 0 + ], + "to": [ + 7, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 6, + 0 + ], + "to": [ + 7, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 7, + 0 + ], + "to": [ + 7, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 1, + 0 + ], + "to": [ + 7, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 0, + 0 + ], + "to": [ + 2, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 2, + 0 + ], + "to": [ + 2, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 3, + 0 + ], + "to": [ + 2, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 4, + 0 + ], + "to": [ + 2, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 5, + 0 + ], + "to": [ + 2, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 6, + 0 + ], + "to": [ + 2, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 7, + 0 + ], + "to": [ + 2, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 1, + 0 + ], + "to": [ + 2, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 0, + 0 + ], + "to": [ + 4, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 2, + 0 + ], + "to": [ + 4, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 3, + 0 + ], + "to": [ + 4, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 4, + 0 + ], + "to": [ + 4, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 5, + 0 + ], + "to": [ + 4, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 6, + 0 + ], + "to": [ + 4, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 7, + 0 + ], + "to": [ + 4, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 1, + 0 + ], + "to": [ + 4, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 5, + 0, + 0 + ], + "to": [ + 6, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 2, + 0 + ], + "to": [ + 6, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 5, + 3, + 0 + ], + "to": [ + 6, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 4, + 0 + ], + "to": [ + 6, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 5, + 0 + ], + "to": [ + 6, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 6, + 0 + ], + "to": [ + 6, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 7, + 0 + ], + "to": [ + 6, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 5, + 1, + 0 + ], + "to": [ + 6, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 0, + 0 + ], + "to": [ + 8, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 2, + 0 + ], + "to": [ + 8, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 3, + 0 + ], + "to": [ + 8, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 4, + 0 + ], + "to": [ + 8, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 5, + 0 + ], + "to": [ + 8, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 6, + 0 + ], + "to": [ + 8, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 7, + 0 + ], + "to": [ + 8, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 1, + 0 + ], + "to": [ + 8, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 3, + 2, + 1 + ], + "to": [ + 4, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 2, + 13.75 + ], + "to": [ + 4, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 2, + 1 + ], + "to": [ + 6, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 2, + 13.75 + ], + "to": [ + 6, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 2, + 1 + ], + "to": [ + 10, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 2, + 13.75 + ], + "to": [ + 10, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 2, + 1 + ], + "to": [ + 13, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 2, + 1 + ], + "to": [ + 8, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 2, + 13.75 + ], + "to": [ + 8, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 2, + 1 + ], + "to": [ + 12, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 2, + 13.75 + ], + "to": [ + 12, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 2, + 1 + ], + "to": [ + 14.5, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 2, + 13.75 + ], + "to": [ + 14.25, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 2, + 1 + ], + "to": [ + 5, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 2, + 13.75 + ], + "to": [ + 5, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 2, + 1 + ], + "to": [ + 7, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 2, + 13.75 + ], + "to": [ + 7, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 2, + 1 + ], + "to": [ + 11, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 2, + 13.75 + ], + "to": [ + 11, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 2, + 1 + ], + "to": [ + 14, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 2, + 13.75 + ], + "to": [ + 14, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 2, + 1 + ], + "to": [ + 9, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 2, + 13.75 + ], + "to": [ + 9, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 2, + 13.75 + ], + "to": [ + 13, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 1 + ], + "to": [ + 2, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 2, + 2, + 1 + ], + "to": [ + 3, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.75, + 2, + 13.75 + ], + "to": [ + 3, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 2, + 3, + 1 + ], + "to": [ + 3, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.75, + 3, + 13.75 + ], + "to": [ + 3, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 1 + ], + "to": [ + 2, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 1.25 + ], + "to": [ + 14.5, + 4, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 1.25 + ], + "to": [ + 1.75, + 4, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 3.25 + ], + "to": [ + 14.5, + 4, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 3.25 + ], + "to": [ + 1.75, + 4, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 5.25 + ], + "to": [ + 14.5, + 4, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 5.25 + ], + "to": [ + 1.75, + 4, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 7.25 + ], + "to": [ + 14.5, + 4, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 7.25 + ], + "to": [ + 1.75, + 4, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 9.25 + ], + "to": [ + 14.5, + 4, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 9.25 + ], + "to": [ + 1.75, + 4, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 11.25 + ], + "to": [ + 14.5, + 4, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 11.25 + ], + "to": [ + 1.75, + 4, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 2.25 + ], + "to": [ + 14.5, + 4, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 2.25 + ], + "to": [ + 1.75, + 4, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 4.25 + ], + "to": [ + 14.5, + 4, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 4.25 + ], + "to": [ + 1.75, + 4, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 6.25 + ], + "to": [ + 14.5, + 4, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 6.25 + ], + "to": [ + 1.75, + 4, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 8.25 + ], + "to": [ + 14.5, + 4, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 8.25 + ], + "to": [ + 1.75, + 4, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 10.25 + ], + "to": [ + 14.5, + 4, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 10.25 + ], + "to": [ + 1.75, + 4, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 12.25 + ], + "to": [ + 14.5, + 4, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 12.25 + ], + "to": [ + 1.75, + 4, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 13.25 + ], + "to": [ + 14.5, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 13.25 + ], + "to": [ + 1.75, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 1.25 + ], + "to": [ + 14.5, + 3, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 1.25 + ], + "to": [ + 1.75, + 3, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 3.25 + ], + "to": [ + 14.5, + 3, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 3.25 + ], + "to": [ + 1.75, + 3, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 5.25 + ], + "to": [ + 14.5, + 3, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 5.25 + ], + "to": [ + 1.75, + 3, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 7.25 + ], + "to": [ + 14.5, + 3, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 7.25 + ], + "to": [ + 1.75, + 3, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 9.25 + ], + "to": [ + 14.5, + 3, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 9.25 + ], + "to": [ + 1.75, + 3, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 11.25 + ], + "to": [ + 14.5, + 3, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 11.25 + ], + "to": [ + 1.75, + 3, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 2.25 + ], + "to": [ + 14.5, + 3, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 2.25 + ], + "to": [ + 1.75, + 3, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 4.25 + ], + "to": [ + 14.5, + 3, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 4.25 + ], + "to": [ + 1.75, + 3, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 6.25 + ], + "to": [ + 14.5, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 6.25 + ], + "to": [ + 1.75, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 8.25 + ], + "to": [ + 14.5, + 3, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 8.25 + ], + "to": [ + 1.75, + 3, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 10.25 + ], + "to": [ + 14.5, + 3, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 10.25 + ], + "to": [ + 1.75, + 3, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 12.25 + ], + "to": [ + 14.5, + 3, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 12.25 + ], + "to": [ + 1.75, + 3, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 13.25 + ], + "to": [ + 14.5, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 13.25 + ], + "to": [ + 1.75, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 3, + 1 + ], + "to": [ + 4, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 3, + 13.75 + ], + "to": [ + 4, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 3, + 1 + ], + "to": [ + 6, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 3, + 13.75 + ], + "to": [ + 6, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 3, + 1 + ], + "to": [ + 10, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 3, + 13.75 + ], + "to": [ + 10, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 3, + 1 + ], + "to": [ + 13, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 3, + 1 + ], + "to": [ + 8, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 3, + 13.75 + ], + "to": [ + 8, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 3, + 1 + ], + "to": [ + 12, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 3, + 13.75 + ], + "to": [ + 12, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 3, + 1 + ], + "to": [ + 14.5, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 3, + 13.75 + ], + "to": [ + 14.25, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 3, + 1 + ], + "to": [ + 5, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 3, + 13.75 + ], + "to": [ + 5, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 3, + 1 + ], + "to": [ + 7, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 3, + 13.75 + ], + "to": [ + 7, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 3, + 1 + ], + "to": [ + 11, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 3, + 13.75 + ], + "to": [ + 11, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 3, + 1 + ], + "to": [ + 14, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 3, + 13.75 + ], + "to": [ + 14, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 3, + 1 + ], + "to": [ + 9, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 3, + 13.75 + ], + "to": [ + 9, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 3, + 13.75 + ], + "to": [ + 13, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 2 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9.25, + 2, + 0.99 + ], + "to": [ + 13.75, + 4, + 0.99 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#9" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [76, 0, 0], - "translation": [0, 1.5, 1.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 76, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 1.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "thirdperson_lefthand": { - "rotation": [76, 0, 0], - "translation": [0, 1.5, 1.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 76, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 1.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "firstperson_righthand": { - "rotation": [0, 136, 0], - "translation": [10.25, 2.5, -10.5], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 136, + 0 + ], + "translation": [ + 10.25, + 2.5, + -10.5 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "firstperson_lefthand": { - "rotation": [0, 136, 0], - "translation": [10.25, 2.5, -10.5], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 136, + 0 + ], + "translation": [ + 10.25, + 2.5, + -10.5 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "ground": { - "translation": [0, 4, 0] + "translation": [ + 0, + 4, + 0 + ] }, "gui": { - "rotation": [18, 143, 0], - "translation": [0, 3, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 18, + 143, + 0 + ], + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "head": { - "translation": [0, 9.25, 0.5] + "translation": [ + 0, + 9.25, + 0.5 + ] }, "fixed": { - "translation": [0, 5.5, 0] + "translation": [ + 0, + 5.5, + 0 + ] } }, "groups": [ { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] }, { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169] + "children": [ + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169 + ] }, { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [170] + "children": [ + 170 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/hats/masks/taniyan18_mask.json b/pack/assets/minecraft/models/hats/masks/taniyan18_mask.json index 7ab55e5f..b484d797 100644 --- a/pack/assets/minecraft/models/hats/masks/taniyan18_mask.json +++ b/pack/assets/minecraft/models/hats/masks/taniyan18_mask.json @@ -10,2283 +10,13445 @@ "6": "block/pink_wool", "7": "block/sand", "8": "block/quartz_block_bottom", - "9": "others/momizidani2", + "9": "item/others/momizidani2", "particle": "block/brown_concrete" }, "elements": [ { - "from": [0, 0, 0], - "to": [1, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [0, 2, 0], - "to": [1, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [0, 3, 0], - "to": [1, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [0, 4, 0], - "to": [1, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 5, 0], - "to": [1, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 6, 0], - "to": [1, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [0, 1, 0], - "to": [1, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#6"} - } - }, - { - "from": [2, 0, 0], - "to": [3, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [2, 2, 0], - "to": [3, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} - } - }, - { - "from": [2, 3, 0], - "to": [3, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} - } - }, - { - "from": [2, 4, 0], - "to": [3, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [2, 5, 0], - "to": [3, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [2, 6, 0], - "to": [3, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [2, 7, 0], - "to": [3, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [2, 1, 0], - "to": [3, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [4, 0, 0], - "to": [5, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [4, 2, 0], - "to": [5, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [4, 3, 0], - "to": [5, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [4, 4, 0], - "to": [5, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [4, 5, 0], - "to": [5, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [4, 6, 0], - "to": [5, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [4, 7, 0], - "to": [5, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [4, 1, 0], - "to": [5, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [6, 0, 0], - "to": [7, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [6, 2, 0], - "to": [7, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [6, 3, 0], - "to": [7, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [6, 4, 0], - "to": [7, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [6, 5, 0], - "to": [7, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [6, 6, 0], - "to": [7, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [6, 7, 0], - "to": [7, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [6, 1, 0], - "to": [7, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#6"} - } - }, - { - "from": [1, 0, 0], - "to": [2, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [1, 2, 0], - "to": [2, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} - } - }, - { - "from": [1, 3, 0], - "to": [2, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#2"} - } - }, - { - "from": [1, 4, 0], - "to": [2, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [1, 5, 0], - "to": [2, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [1, 6, 0], - "to": [2, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [1, 7, 0], - "to": [2, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [1, 1, 0], - "to": [2, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#6"} - } - }, - { - "from": [3, 0, 0], - "to": [4, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [3, 2, 0], - "to": [4, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [3, 3, 0], - "to": [4, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 4, 0], - "to": [4, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [3, 5, 0], - "to": [4, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [3, 6, 0], - "to": [4, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [3, 7, 0], - "to": [4, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [3, 1, 0], - "to": [4, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [5, 0, 0], - "to": [6, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [5, 2, 0], - "to": [6, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} - } - }, - { - "from": [5, 3, 0], - "to": [6, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "south": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} - } - }, - { - "from": [5, 4, 0], - "to": [6, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [5, 5, 0], - "to": [6, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [5, 6, 0], - "to": [6, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [5, 7, 0], - "to": [6, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [5, 1, 0], - "to": [6, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [7, 0, 0], - "to": [8, 1, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [7, 2, 0], - "to": [8, 3, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#7"} - } - }, - { - "from": [7, 3, 0], - "to": [8, 4, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#1"} - } - }, - { - "from": [7, 4, 0], - "to": [8, 5, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 12, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [7, 5, 0], - "to": [8, 6, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 13, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [7, 6, 0], - "to": [8, 7, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 14, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [7, 7, 0], - "to": [8, 8, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 15, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#0"} - } - }, - { - "from": [7, 1, 0], - "to": [8, 2, 1], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 9, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#6"} - } - }, - { - "from": [3, 2, 1], - "to": [4, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [3, 2, 13.75], - "to": [4, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [5, 2, 1], - "to": [6, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [5, 2, 13.75], - "to": [6, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [9, 2, 1], - "to": [10, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [9, 2, 13.75], - "to": [10, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [12, 2, 1], - "to": [13, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [7, 2, 1], - "to": [8, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [7, 2, 13.75], - "to": [8, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [11, 2, 1], - "to": [12, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [11, 2, 13.75], - "to": [12, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14, 2, 1], - "to": [14.5, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14, 2, 13.75], - "to": [14.25, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [4, 2, 1], - "to": [5, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [4, 2, 13.75], - "to": [5, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [6, 2, 1], - "to": [7, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [6, 2, 13.75], - "to": [7, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [10, 2, 1], - "to": [11, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [10, 2, 13.75], - "to": [11, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [13, 2, 1], - "to": [14, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [13, 2, 13.75], - "to": [14, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [8, 2, 1], - "to": [9, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [8, 2, 13.75], - "to": [9, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [12, 2, 13.75], - "to": [13, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 1], - "to": [2, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [2, 2, 1], - "to": [3, 3, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.75, 2, 13.75], - "to": [3, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [2, 3, 1], - "to": [3, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.75, 3, 13.75], - "to": [3, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 1], - "to": [2, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 1.25], - "to": [14.5, 4, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 1.25], - "to": [1.75, 4, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 3.25], - "to": [14.5, 4, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 3.25], - "to": [1.75, 4, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 5.25], - "to": [14.5, 4, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 5.25], - "to": [1.75, 4, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 7.25], - "to": [14.5, 4, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 7.25], - "to": [1.75, 4, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 9.25], - "to": [14.5, 4, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 9.25], - "to": [1.75, 4, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 11.25], - "to": [14.5, 4, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 11.25], - "to": [1.75, 4, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 2.25], - "to": [14.5, 4, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 2.25], - "to": [1.75, 4, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 4.25], - "to": [14.5, 4, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 4.25], - "to": [1.75, 4, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 6.25], - "to": [14.5, 4, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 6.25], - "to": [1.75, 4, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 8.25], - "to": [14.5, 4, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 8.25], - "to": [1.75, 4, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 10.25], - "to": [14.5, 4, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 10.25], - "to": [1.75, 4, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 12.25], - "to": [14.5, 4, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 12.25], - "to": [1.75, 4, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 3, 13.25], - "to": [14.5, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 11, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 3, 13.25], - "to": [1.75, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 11, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 1.25], - "to": [14.5, 3, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 1.25], - "to": [1.75, 3, 2.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 10]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 3.25], - "to": [14.5, 3, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 3.25], - "to": [1.75, 3, 4.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 12]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 5.25], - "to": [14.5, 3, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 5.25], - "to": [1.75, 3, 6.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 7.25], - "to": [14.5, 3, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 7.25], - "to": [1.75, 3, 8.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 9.25], - "to": [14.5, 3, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 9.25], - "to": [1.75, 3, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 18]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 11.25], - "to": [14.5, 3, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 11.25], - "to": [1.75, 3, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 20]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 2.25], - "to": [14.5, 3, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 2.25], - "to": [1.75, 3, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 11]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 4.25], - "to": [14.5, 3, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 4.25], - "to": [1.75, 3, 5.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 13]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 6.25], - "to": [14.5, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 6.25], - "to": [1.75, 3, 7.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 15]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 8.25], - "to": [14.5, 3, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 8.25], - "to": [1.75, 3, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 17]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 10.25], - "to": [14.5, 3, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 10.25], - "to": [1.75, 3, 11.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 19]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 12.25], - "to": [14.5, 3, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 12.25], - "to": [1.75, 3, 13.25], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 21]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14.25, 2, 13.25], - "to": [14.5, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22.25, 10, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [1.5, 2, 13.25], - "to": [1.75, 3, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [9.5, 10, 22]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [3, 3, 1], - "to": [4, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [3, 3, 13.75], - "to": [4, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [11, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [5, 3, 1], - "to": [6, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [5, 3, 13.75], - "to": [6, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [9, 3, 1], - "to": [10, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [9, 3, 13.75], - "to": [10, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [17, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [12, 3, 1], - "to": [13, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [7, 3, 1], - "to": [8, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [7, 3, 13.75], - "to": [8, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [15, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [11, 3, 1], - "to": [12, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [11, 3, 13.75], - "to": [12, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [19, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14, 3, 1], - "to": [14.5, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [14, 3, 13.75], - "to": [14.25, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [22, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [4, 3, 1], - "to": [5, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [4, 3, 13.75], - "to": [5, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [12, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [6, 3, 1], - "to": [7, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [6, 3, 13.75], - "to": [7, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [10, 3, 1], - "to": [11, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [10, 3, 13.75], - "to": [11, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [13, 3, 1], - "to": [14, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [13, 3, 13.75], - "to": [14, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [8, 3, 1], - "to": [9, 4, 1.25], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 11, 9]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [8, 3, 13.75], - "to": [9, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [12, 3, 13.75], - "to": [13, 4, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 11, 21.75]}, - "faces": { - "north": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "east": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "south": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "up": {"uv": [0, 0, 16, 5], "texture": "#8"}, - "down": {"uv": [0, 0, 16, 5], "texture": "#8"} - } - }, - { - "from": [9.25, 2, 0.99], - "to": [13.75, 4, 0.99], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#9"} + "from": [ + 0, + 0, + 0 + ], + "to": [ + 1, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 0, + 2, + 0 + ], + "to": [ + 1, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 0, + 3, + 0 + ], + "to": [ + 1, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 0, + 4, + 0 + ], + "to": [ + 1, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0, + 5, + 0 + ], + "to": [ + 1, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0, + 6, + 0 + ], + "to": [ + 1, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0, + 7, + 0 + ], + "to": [ + 1, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0, + 1, + 0 + ], + "to": [ + 1, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 2, + 0, + 0 + ], + "to": [ + 3, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 2, + 2, + 0 + ], + "to": [ + 3, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } + } + }, + { + "from": [ + 2, + 3, + 0 + ], + "to": [ + 3, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } + } + }, + { + "from": [ + 2, + 4, + 0 + ], + "to": [ + 3, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 2, + 5, + 0 + ], + "to": [ + 3, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 2, + 6, + 0 + ], + "to": [ + 3, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2, + 7, + 0 + ], + "to": [ + 3, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2, + 1, + 0 + ], + "to": [ + 3, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 4, + 0, + 0 + ], + "to": [ + 5, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 4, + 2, + 0 + ], + "to": [ + 5, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 4, + 3, + 0 + ], + "to": [ + 5, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 4, + 4, + 0 + ], + "to": [ + 5, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4, + 5, + 0 + ], + "to": [ + 5, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4, + 6, + 0 + ], + "to": [ + 5, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4, + 7, + 0 + ], + "to": [ + 5, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4, + 1, + 0 + ], + "to": [ + 5, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 6, + 0, + 0 + ], + "to": [ + 7, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 6, + 2, + 0 + ], + "to": [ + 7, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 6, + 3, + 0 + ], + "to": [ + 7, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6, + 4, + 0 + ], + "to": [ + 7, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6, + 5, + 0 + ], + "to": [ + 7, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 6, + 0 + ], + "to": [ + 7, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 7, + 0 + ], + "to": [ + 7, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 1, + 0 + ], + "to": [ + 7, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 1, + 0, + 0 + ], + "to": [ + 2, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 1, + 2, + 0 + ], + "to": [ + 2, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } + } + }, + { + "from": [ + 1, + 3, + 0 + ], + "to": [ + 2, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 1, + 4, + 0 + ], + "to": [ + 2, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 1, + 5, + 0 + ], + "to": [ + 2, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 6, + 0 + ], + "to": [ + 2, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 7, + 0 + ], + "to": [ + 2, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 1, + 0 + ], + "to": [ + 2, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 3, + 0, + 0 + ], + "to": [ + 4, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 3, + 2, + 0 + ], + "to": [ + 4, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 3, + 3, + 0 + ], + "to": [ + 4, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3, + 4, + 0 + ], + "to": [ + 4, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3, + 5, + 0 + ], + "to": [ + 4, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3, + 6, + 0 + ], + "to": [ + 4, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3, + 7, + 0 + ], + "to": [ + 4, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3, + 1, + 0 + ], + "to": [ + 4, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 5, + 0, + 0 + ], + "to": [ + 6, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 5, + 2, + 0 + ], + "to": [ + 6, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } + } + }, + { + "from": [ + 5, + 3, + 0 + ], + "to": [ + 6, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } + } + }, + { + "from": [ + 5, + 4, + 0 + ], + "to": [ + 6, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 5, + 5, + 0 + ], + "to": [ + 6, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 6, + 0 + ], + "to": [ + 6, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5, + 7, + 0 + ], + "to": [ + 6, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5, + 1, + 0 + ], + "to": [ + 6, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 7, + 0, + 0 + ], + "to": [ + 8, + 1, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 7, + 2, + 0 + ], + "to": [ + 8, + 3, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#7" + } + } + }, + { + "from": [ + 7, + 3, + 0 + ], + "to": [ + 8, + 4, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7, + 4, + 0 + ], + "to": [ + 8, + 5, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 12, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 5, + 0 + ], + "to": [ + 8, + 6, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 13, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 6, + 0 + ], + "to": [ + 8, + 7, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 14, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 7, + 0 + ], + "to": [ + 8, + 8, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 15, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 1, + 0 + ], + "to": [ + 8, + 2, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 9, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 3, + 2, + 1 + ], + "to": [ + 4, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 2, + 13.75 + ], + "to": [ + 4, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 2, + 1 + ], + "to": [ + 6, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 2, + 13.75 + ], + "to": [ + 6, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 2, + 1 + ], + "to": [ + 10, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 2, + 13.75 + ], + "to": [ + 10, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 2, + 1 + ], + "to": [ + 13, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 2, + 1 + ], + "to": [ + 8, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 2, + 13.75 + ], + "to": [ + 8, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 2, + 1 + ], + "to": [ + 12, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 2, + 13.75 + ], + "to": [ + 12, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 2, + 1 + ], + "to": [ + 14.5, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 2, + 13.75 + ], + "to": [ + 14.25, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 2, + 1 + ], + "to": [ + 5, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 2, + 13.75 + ], + "to": [ + 5, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 2, + 1 + ], + "to": [ + 7, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 2, + 13.75 + ], + "to": [ + 7, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 2, + 1 + ], + "to": [ + 11, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 2, + 13.75 + ], + "to": [ + 11, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 2, + 1 + ], + "to": [ + 14, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 2, + 13.75 + ], + "to": [ + 14, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 2, + 1 + ], + "to": [ + 9, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 2, + 13.75 + ], + "to": [ + 9, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 2, + 13.75 + ], + "to": [ + 13, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 1 + ], + "to": [ + 2, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 2, + 2, + 1 + ], + "to": [ + 3, + 3, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.75, + 2, + 13.75 + ], + "to": [ + 3, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 2, + 3, + 1 + ], + "to": [ + 3, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.75, + 3, + 13.75 + ], + "to": [ + 3, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 1 + ], + "to": [ + 2, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 1.25 + ], + "to": [ + 14.5, + 4, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 1.25 + ], + "to": [ + 1.75, + 4, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 3.25 + ], + "to": [ + 14.5, + 4, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 3.25 + ], + "to": [ + 1.75, + 4, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 5.25 + ], + "to": [ + 14.5, + 4, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 5.25 + ], + "to": [ + 1.75, + 4, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 7.25 + ], + "to": [ + 14.5, + 4, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 7.25 + ], + "to": [ + 1.75, + 4, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 9.25 + ], + "to": [ + 14.5, + 4, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 9.25 + ], + "to": [ + 1.75, + 4, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 11.25 + ], + "to": [ + 14.5, + 4, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 11.25 + ], + "to": [ + 1.75, + 4, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 2.25 + ], + "to": [ + 14.5, + 4, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 2.25 + ], + "to": [ + 1.75, + 4, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 4.25 + ], + "to": [ + 14.5, + 4, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 4.25 + ], + "to": [ + 1.75, + 4, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 6.25 + ], + "to": [ + 14.5, + 4, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 6.25 + ], + "to": [ + 1.75, + 4, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 8.25 + ], + "to": [ + 14.5, + 4, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 8.25 + ], + "to": [ + 1.75, + 4, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 10.25 + ], + "to": [ + 14.5, + 4, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 10.25 + ], + "to": [ + 1.75, + 4, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 12.25 + ], + "to": [ + 14.5, + 4, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 12.25 + ], + "to": [ + 1.75, + 4, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 3, + 13.25 + ], + "to": [ + 14.5, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 11, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 3, + 13.25 + ], + "to": [ + 1.75, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 11, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 1.25 + ], + "to": [ + 14.5, + 3, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 1.25 + ], + "to": [ + 1.75, + 3, + 2.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 3.25 + ], + "to": [ + 14.5, + 3, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 3.25 + ], + "to": [ + 1.75, + 3, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 12 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 5.25 + ], + "to": [ + 14.5, + 3, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 5.25 + ], + "to": [ + 1.75, + 3, + 6.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 7.25 + ], + "to": [ + 14.5, + 3, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 7.25 + ], + "to": [ + 1.75, + 3, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 16 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 9.25 + ], + "to": [ + 14.5, + 3, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 9.25 + ], + "to": [ + 1.75, + 3, + 10.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 18 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 11.25 + ], + "to": [ + 14.5, + 3, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 11.25 + ], + "to": [ + 1.75, + 3, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 20 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 2.25 + ], + "to": [ + 14.5, + 3, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 2.25 + ], + "to": [ + 1.75, + 3, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 4.25 + ], + "to": [ + 14.5, + 3, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 4.25 + ], + "to": [ + 1.75, + 3, + 5.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 6.25 + ], + "to": [ + 14.5, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 6.25 + ], + "to": [ + 1.75, + 3, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 15 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 8.25 + ], + "to": [ + 14.5, + 3, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 8.25 + ], + "to": [ + 1.75, + 3, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 17 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 10.25 + ], + "to": [ + 14.5, + 3, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 10.25 + ], + "to": [ + 1.75, + 3, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 19 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 12.25 + ], + "to": [ + 14.5, + 3, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 12.25 + ], + "to": [ + 1.75, + 3, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14.25, + 2, + 13.25 + ], + "to": [ + 14.5, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22.25, + 10, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 1.5, + 2, + 13.25 + ], + "to": [ + 1.75, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5, + 10, + 22 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 3, + 1 + ], + "to": [ + 4, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 3, + 3, + 13.75 + ], + "to": [ + 4, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 3, + 1 + ], + "to": [ + 6, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 5, + 3, + 13.75 + ], + "to": [ + 6, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 3, + 1 + ], + "to": [ + 10, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9, + 3, + 13.75 + ], + "to": [ + 10, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 3, + 1 + ], + "to": [ + 13, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 3, + 1 + ], + "to": [ + 8, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 7, + 3, + 13.75 + ], + "to": [ + 8, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 3, + 1 + ], + "to": [ + 12, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 11, + 3, + 13.75 + ], + "to": [ + 12, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 3, + 1 + ], + "to": [ + 14.5, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 14, + 3, + 13.75 + ], + "to": [ + 14.25, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 22, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 3, + 1 + ], + "to": [ + 5, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 4, + 3, + 13.75 + ], + "to": [ + 5, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 3, + 1 + ], + "to": [ + 7, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 6, + 3, + 13.75 + ], + "to": [ + 7, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 3, + 1 + ], + "to": [ + 11, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 10, + 3, + 13.75 + ], + "to": [ + 11, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 3, + 1 + ], + "to": [ + 14, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 13, + 3, + 13.75 + ], + "to": [ + 14, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 3, + 1 + ], + "to": [ + 9, + 4, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 11, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 8, + 3, + 13.75 + ], + "to": [ + 9, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 12, + 3, + 13.75 + ], + "to": [ + 13, + 4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 11, + 21.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 5 + ], + "texture": "#8" + } + } + }, + { + "from": [ + 9.25, + 2, + 0.99 + ], + "to": [ + 13.75, + 4, + 0.99 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 20, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#9" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [76, 0, 0], - "translation": [0, 1.5, 1.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 76, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 1.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "thirdperson_lefthand": { - "rotation": [76, 0, 0], - "translation": [0, 1.5, 1.75], - "scale": [0.4, 0.4, 0.4] + "rotation": [ + 76, + 0, + 0 + ], + "translation": [ + 0, + 1.5, + 1.75 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] }, "firstperson_righthand": { - "rotation": [0, 136, 0], - "translation": [10.25, 2.5, -10.5], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 136, + 0 + ], + "translation": [ + 10.25, + 2.5, + -10.5 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "firstperson_lefthand": { - "rotation": [0, 136, 0], - "translation": [10.25, 2.5, -10.5], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 0, + 136, + 0 + ], + "translation": [ + 10.25, + 2.5, + -10.5 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "ground": { - "translation": [0, 4, 0] + "translation": [ + 0, + 4, + 0 + ] }, "gui": { - "rotation": [18, 143, 0], - "translation": [0, 3, 0], - "scale": [0.75, 0.75, 0.75] + "rotation": [ + 18, + 143, + 0 + ], + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] }, "head": { - "translation": [0, 9.25, 0.5] + "translation": [ + 0, + 9.25, + 0.5 + ] }, "fixed": { - "translation": [0, 5.5, 0] + "translation": [ + 0, + 5.5, + 0 + ] } }, "groups": [ { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] }, { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169] + "children": [ + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169 + ] }, { "name": "group", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "color": 0, - "children": [170] + "children": [ + 170 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/alpha9n.json b/pack/assets/minecraft/models/item/figure/alpha9n.json index 1d252843..61a7acd4 100644 --- a/pack/assets/minecraft/models/item/figure/alpha9n.json +++ b/pack/assets/minecraft/models/item/figure/alpha9n.json @@ -2,7 +2,7 @@ "__name": "Alpha9nのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/alpha9n", - "particle": "skins/alpha9n" + "0": "item/skins/alpha9n", + "particle": "item/skins/alpha9n" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/alpha9n2.json b/pack/assets/minecraft/models/item/figure/alpha9n2.json index fb31a566..89889396 100644 --- a/pack/assets/minecraft/models/item/figure/alpha9n2.json +++ b/pack/assets/minecraft/models/item/figure/alpha9n2.json @@ -2,7 +2,7 @@ "__name": "Alpha9nのフィギュア 2", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/alpha9n2", - "particle": "skins/alpha9n2" + "0": "item/skins/alpha9n2", + "particle": "item/skins/alpha9n2" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/alphakun914.json b/pack/assets/minecraft/models/item/figure/alphakun914.json index 505574ba..0ce677b4 100644 --- a/pack/assets/minecraft/models/item/figure/alphakun914.json +++ b/pack/assets/minecraft/models/item/figure/alphakun914.json @@ -2,7 +2,7 @@ "__name": "alphakun914のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/alphakun914", - "particle": "skins/alphakun914" + "0": "item/skins/alphakun914", + "particle": "item/skins/alphakun914" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/aoichaan0513.json b/pack/assets/minecraft/models/item/figure/aoichaan0513.json index b0a3d98a..0437243a 100644 --- a/pack/assets/minecraft/models/item/figure/aoichaan0513.json +++ b/pack/assets/minecraft/models/item/figure/aoichaan0513.json @@ -2,7 +2,7 @@ "__name": "aoichaan0513のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/aoichaan0513", - "particle": "skins/aoichaan0513" + "0": "item/skins/aoichaan0513", + "particle": "item/skins/aoichaan0513" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/azarash1_a_b_s_i.json b/pack/assets/minecraft/models/item/figure/azarash1_a_b_s_i.json index b508e4d8..1cbe8231 100644 --- a/pack/assets/minecraft/models/item/figure/azarash1_a_b_s_i.json +++ b/pack/assets/minecraft/models/item/figure/azarash1_a_b_s_i.json @@ -2,7 +2,7 @@ "__name": "azarash1_a_b_s_iのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/azarash1_a_b_s_i", - "particle": "skins/azarash1_a_b_s_i" + "0": "item/skins/azarash1_a_b_s_i", + "particle": "item/skins/azarash1_a_b_s_i" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/em0914.json b/pack/assets/minecraft/models/item/figure/em0914.json index 0f17175c..3cc8e1f3 100644 --- a/pack/assets/minecraft/models/item/figure/em0914.json +++ b/pack/assets/minecraft/models/item/figure/em0914.json @@ -2,7 +2,7 @@ "__name": "em0914のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/em0914", - "particle": "skins/em0914" + "0": "item/skins/em0914", + "particle": "item/skins/em0914" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/ganma_.json b/pack/assets/minecraft/models/item/figure/ganma_.json index 11d85e30..02a734d5 100644 --- a/pack/assets/minecraft/models/item/figure/ganma_.json +++ b/pack/assets/minecraft/models/item/figure/ganma_.json @@ -2,7 +2,7 @@ "__name": "ganma_のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/ganma_", - "particle": "skins/ganma_" + "0": "item/skins/ganma_", + "particle": "item/skins/ganma_" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/gray27.json b/pack/assets/minecraft/models/item/figure/gray27.json index 4d36263d..926d7544 100644 --- a/pack/assets/minecraft/models/item/figure/gray27.json +++ b/pack/assets/minecraft/models/item/figure/gray27.json @@ -2,7 +2,7 @@ "__name": "gray27のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/gray27", - "particle": "skins/gray27" + "0": "item/skins/gray27", + "particle": "item/skins/gray27" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/gray27wi.json b/pack/assets/minecraft/models/item/figure/gray27wi.json index aa0e4dca..4bf3fae4 100644 --- a/pack/assets/minecraft/models/item/figure/gray27wi.json +++ b/pack/assets/minecraft/models/item/figure/gray27wi.json @@ -2,7 +2,7 @@ "__name": "gray27のフィギュア(冬バージョン)", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/gray27wi", - "particle": "skins/gray27wi" + "0": "item/skins/gray27wi", + "particle": "item/skins/gray27wi" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/kanau3110.json b/pack/assets/minecraft/models/item/figure/kanau3110.json index 20ab002e..fdc8b091 100644 --- a/pack/assets/minecraft/models/item/figure/kanau3110.json +++ b/pack/assets/minecraft/models/item/figure/kanau3110.json @@ -2,7 +2,7 @@ "__name": "kanau3110のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/kanau3110", - "particle": "skins/kanau3110" + "0": "item/skins/kanau3110", + "particle": "item/skins/kanau3110" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/kanimiso2000.json b/pack/assets/minecraft/models/item/figure/kanimiso2000.json index 32cdaa13..3f6c0f11 100644 --- a/pack/assets/minecraft/models/item/figure/kanimiso2000.json +++ b/pack/assets/minecraft/models/item/figure/kanimiso2000.json @@ -2,7 +2,7 @@ "__name": "kanimiso2000のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/kanimiso2000", - "particle": "skins/kanimiso2000" + "0": "item/skins/kanimiso2000", + "particle": "item/skins/kanimiso2000" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/karioo_b.json b/pack/assets/minecraft/models/item/figure/karioo_b.json index 83523347..19713034 100644 --- a/pack/assets/minecraft/models/item/figure/karioo_b.json +++ b/pack/assets/minecraft/models/item/figure/karioo_b.json @@ -2,7 +2,7 @@ "__name": "KARIOO_Bのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/karioo_b", - "particle": "skins/karioo_b" + "0": "item/skins/karioo_b", + "particle": "item/skins/karioo_b" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/kotamaro_.json b/pack/assets/minecraft/models/item/figure/kotamaro_.json index 20b24440..293d056a 100644 --- a/pack/assets/minecraft/models/item/figure/kotamaro_.json +++ b/pack/assets/minecraft/models/item/figure/kotamaro_.json @@ -2,7 +2,7 @@ "__name": "kotamaro_のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/kotamaro_", - "particle": "skins/kotamaro_" + "0": "item/skins/kotamaro_", + "particle": "item/skins/kotamaro_" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/misolamen.json b/pack/assets/minecraft/models/item/figure/misolamen.json index 31639b0e..f581ccaa 100644 --- a/pack/assets/minecraft/models/item/figure/misolamen.json +++ b/pack/assets/minecraft/models/item/figure/misolamen.json @@ -2,7 +2,7 @@ "__name": "misolamenのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/misolamen", - "particle": "skins/misolamen" + "0": "item/skins/misolamen", + "particle": "item/skins/misolamen" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/momocok.json b/pack/assets/minecraft/models/item/figure/momocok.json index 39cd4d37..fa540090 100644 --- a/pack/assets/minecraft/models/item/figure/momocok.json +++ b/pack/assets/minecraft/models/item/figure/momocok.json @@ -2,7 +2,7 @@ "__name": "momocokのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/momocok", - "particle": "skins/momocok" + "0": "item/skins/momocok", + "particle": "item/skins/momocok" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/nakatai_0322.json b/pack/assets/minecraft/models/item/figure/nakatai_0322.json index c02fe973..fefddcd1 100644 --- a/pack/assets/minecraft/models/item/figure/nakatai_0322.json +++ b/pack/assets/minecraft/models/item/figure/nakatai_0322.json @@ -2,7 +2,7 @@ "__name": "nakatai_0322のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/nakatai_0322", - "particle": "skins/nakatai_0322" + "0": "item/skins/nakatai_0322", + "particle": "item/skins/nakatai_0322" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/nikuzuki.json b/pack/assets/minecraft/models/item/figure/nikuzuki.json index 12f185b4..a370b6d0 100644 --- a/pack/assets/minecraft/models/item/figure/nikuzuki.json +++ b/pack/assets/minecraft/models/item/figure/nikuzuki.json @@ -2,7 +2,7 @@ "__name": "nikuzukiのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/nikuzuki", - "particle": "skins/nikuzuki" + "0": "item/skins/nikuzuki", + "particle": "item/skins/nikuzuki" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/noaking.json b/pack/assets/minecraft/models/item/figure/noaking.json index 394af7a8..f3f4b9cd 100644 --- a/pack/assets/minecraft/models/item/figure/noaking.json +++ b/pack/assets/minecraft/models/item/figure/noaking.json @@ -2,7 +2,7 @@ "__name": "noakingのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/noaking", - "particle": "skins/noaking" + "0": "item/skins/noaking", + "particle": "item/skins/noaking" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/null.json b/pack/assets/minecraft/models/item/figure/null.json index 5023becd..264b67fc 100644 --- a/pack/assets/minecraft/models/item/figure/null.json +++ b/pack/assets/minecraft/models/item/figure/null.json @@ -2,7 +2,7 @@ "__name": "???????", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/null", - "particle": "skins/null" + "0": "item/skins/null", + "particle": "item/skins/null" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/others/snowman.json b/pack/assets/minecraft/models/item/figure/others/snowman.json index 04b94e3c..15ed9516 100644 --- a/pack/assets/minecraft/models/item/figure/others/snowman.json +++ b/pack/assets/minecraft/models/item/figure/others/snowman.json @@ -5,831 +5,4692 @@ "1": "block/white_concrete", "3": "block/gold_block", "particle": "block/white_concrete", - "1_0": "entity/villager/profession/farmer", + "1_0": "item/entity/villager/profession/farmer", "layer0": "item/stick" }, "elements": [ { - "from": [5.5, 0, 5.5], - "to": [10.5, 6, 10.5], + "from": [ + 5.5, + 0, + 5.5 + ], + "to": [ + 10.5, + 6, + 10.5 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [5, 0.5, 5.5], - "to": [11, 5.5, 10.5], + "from": [ + 5, + 0.5, + 5.5 + ], + "to": [ + 11, + 5.5, + 10.5 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 5, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 5, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [5.5, 0.5, 5], - "to": [10.5, 5.5, 11], + "from": [ + 5.5, + 0.5, + 5 + ], + "to": [ + 10.5, + 5.5, + 11 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 6, 5], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [7.5, 1, 4.875], - "to": [8.5, 2, 5.375], + "from": [ + 7.5, + 1, + 4.875 + ], + "to": [ + 8.5, + 2, + 5.375 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } } }, { - "from": [7.5, 2.5, 4.875], - "to": [8.5, 3.5, 5.375], + "from": [ + 7.5, + 2.5, + 4.875 + ], + "to": [ + 8.5, + 3.5, + 5.375 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } } }, { - "from": [7.5, 4, 4.875], - "to": [8.5, 5, 5.375], + "from": [ + 7.5, + 4, + 4.875 + ], + "to": [ + 8.5, + 5, + 5.375 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } } }, { - "from": [7.75, 7.5, 5.125], - "to": [8.25, 8, 5.625], + "from": [ + 7.75, + 7.5, + 5.125 + ], + "to": [ + 8.25, + 8, + 5.625 + ], "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#3"} + "north": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#3" + } } }, { - "from": [6, 6, 6], - "to": [10, 10.5, 10], + "from": [ + 6, + 6, + 6 + ], + "to": [ + 10, + 10.5, + 10 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 4, 4.5], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 4, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [5.5, 6.5, 6], - "to": [10.5, 10, 10], + "from": [ + 5.5, + 6.5, + 6 + ], + "to": [ + 10.5, + 10, + 10 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 4, 3.5], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 4, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [6, 6.5, 5.5], - "to": [10, 10, 10.5], + "from": [ + 6, + 6.5, + 5.5 + ], + "to": [ + 10, + 10, + 10.5 + ], "faces": { - "north": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 5, 3.5], "texture": "#1"}, - "up": {"uv": [0, 0, 5, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 5, 6], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 5, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5, + 6 + ], + "texture": "#1" + } } }, { - "from": [4, 10.43594, 4.52766], - "to": [12, 10.43604, 12.52766], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 8, 8]}, + "from": [ + 4, + 10.43594, + 4.52766 + ], + "to": [ + 12, + 10.43604, + 12.52766 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [0, 0, 2, 1], "texture": "#1_0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#1_0"}, - "south": {"uv": [0, 0, 2, 1], "texture": "#1_0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#1_0"}, - "up": {"uv": [7.75, 12, 11.75, 16], "texture": "#1_0"}, - "down": {"uv": [7.75, 12, 11.75, 16], "texture": "#1_0"} + "north": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#1_0" + }, + "east": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#1_0" + }, + "south": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#1_0" + }, + "west": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#1_0" + }, + "up": { + "uv": [ + 7.75, + 12, + 11.75, + 16 + ], + "texture": "#1_0" + }, + "down": { + "uv": [ + 7.75, + 12, + 11.75, + 16 + ], + "texture": "#1_0" + } } }, { - "from": [5.975, 10.44273, 6.49896], - "to": [10.025, 12.50523, 10.49896], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 8, 8]}, + "from": [ + 5.975, + 10.44273, + 6.49896 + ], + "to": [ + 10.025, + 12.50523, + 10.49896 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [8, 2, 10, 3], "texture": "#1_0"}, - "east": {"uv": [14, 2, 16, 3], "texture": "#1_0"}, - "south": {"uv": [12, 2, 14, 3], "texture": "#1_0"}, - "west": {"uv": [10, 2, 12, 3], "texture": "#1_0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#1_0"}, - "down": {"uv": [10, 0, 12, 2], "texture": "#1_0"} + "north": { + "uv": [ + 8, + 2, + 10, + 3 + ], + "texture": "#1_0" + }, + "east": { + "uv": [ + 14, + 2, + 16, + 3 + ], + "texture": "#1_0" + }, + "south": { + "uv": [ + 12, + 2, + 14, + 3 + ], + "texture": "#1_0" + }, + "west": { + "uv": [ + 10, + 2, + 12, + 3 + ], + "texture": "#1_0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#1_0" + }, + "down": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#1_0" + } } }, { "name": "stick_0", - "from": [4.8, 5, 7], - "to": [5, 5.2, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [8.8, 8, 8]}, + "from": [ + 4.8, + 5, + 7 + ], + "to": [ + 5, + 5.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [13, 2, 14, 3], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [13, 2, 14, 3], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [13, 3, 14, 2], "texture": "#layer0"}, - "west": {"uv": [13, 2, 14, 3], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [13, 2, 14, 3], "texture": "#layer0"}, - "down": {"uv": [14, 2, 13, 3], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 3, + 14, + 2 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 14, + 2, + 13, + 3 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_1", - "from": [5, 5, 7], - "to": [5.2, 5.2, 7.2], + "from": [ + 5, + 5, + 7 + ], + "to": [ + 5.2, + 5.2, + 7.2 + ], "faces": { - "north": {"uv": [14, 2, 15, 3], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [14, 2, 15, 3], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [14, 3, 15, 2], "texture": "#layer0"}, - "west": {"uv": [14, 2, 15, 3], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [14, 2, 15, 3], "texture": "#layer0"}, - "down": {"uv": [15, 2, 14, 3], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 14, + 3, + 15, + 2 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 15, + 2, + 14, + 3 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_2", - "from": [4.6, 5.2, 7], - "to": [4.8, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [9.6, 7.2, 8]}, + "from": [ + 4.6, + 5.2, + 7 + ], + "to": [ + 4.8, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 9.6, + 7.2, + 8 + ] + }, "faces": { - "north": {"uv": [12, 3, 13, 4], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [12, 3, 13, 4], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [12, 4, 13, 3], "texture": "#layer0"}, - "west": {"uv": [12, 3, 13, 4], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [12, 3, 13, 4], "texture": "#layer0"}, - "down": {"uv": [13, 3, 12, 4], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 4, + 13, + 3 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 3, + 12, + 4 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_3", - "from": [4.8, 5.2, 7], - "to": [5, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [8.8, 7.2, 8]}, + "from": [ + 4.8, + 5.2, + 7 + ], + "to": [ + 5, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.8, + 7.2, + 8 + ] + }, "faces": { - "north": {"uv": [13, 3, 14, 4], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [13, 3, 14, 4], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [13, 4, 14, 3], "texture": "#layer0"}, - "west": {"uv": [13, 3, 14, 4], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [13, 3, 14, 4], "texture": "#layer0"}, - "down": {"uv": [14, 3, 13, 4], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 4, + 14, + 3 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 14, + 3, + 13, + 4 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_4", - "from": [5, 5.2, 7], - "to": [5.2, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 7.2, 8]}, + "from": [ + 5, + 5.2, + 7 + ], + "to": [ + 5.2, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 7.2, + 8 + ] + }, "faces": { - "north": {"uv": [14, 3, 15, 4], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [14, 3, 15, 4], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [14, 4, 15, 3], "texture": "#layer0"}, - "west": {"uv": [14, 3, 15, 4], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [14, 3, 15, 4], "texture": "#layer0"}, - "down": {"uv": [15, 3, 14, 4], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 14, + 4, + 15, + 3 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 15, + 3, + 14, + 4 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_5", - "from": [4.4, 5.4, 7], - "to": [4.6, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [10.4, 6.4, 8]}, + "from": [ + 4.4, + 5.4, + 7 + ], + "to": [ + 4.6, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 10.4, + 6.4, + 8 + ] + }, "faces": { - "north": {"uv": [11, 4, 12, 5], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [11, 4, 12, 5], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [11, 5, 12, 4], "texture": "#layer0"}, - "west": {"uv": [11, 4, 12, 5], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [11, 4, 12, 5], "texture": "#layer0"}, - "down": {"uv": [12, 4, 11, 5], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 5, + 12, + 4 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 4, + 11, + 5 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_6", - "from": [4.6, 5.4, 7], - "to": [4.8, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [9.6, 6.4, 8]}, + "from": [ + 4.6, + 5.4, + 7 + ], + "to": [ + 4.8, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 9.6, + 6.4, + 8 + ] + }, "faces": { - "north": {"uv": [12, 4, 13, 5], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [12, 4, 13, 5], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [12, 5, 13, 4], "texture": "#layer0"}, - "west": {"uv": [12, 4, 13, 5], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [12, 4, 13, 5], "texture": "#layer0"}, - "down": {"uv": [13, 4, 12, 5], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 5, + 13, + 4 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 4, + 12, + 5 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_7", - "from": [4.8, 5.4, 7], - "to": [5, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [8.8, 6.4, 8]}, + "from": [ + 4.8, + 5.4, + 7 + ], + "to": [ + 5, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.8, + 6.4, + 8 + ] + }, "faces": { - "north": {"uv": [13, 4, 14, 5], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [13, 4, 14, 5], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [13, 5, 14, 4], "texture": "#layer0"}, - "west": {"uv": [13, 4, 14, 5], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [13, 4, 14, 5], "texture": "#layer0"}, - "down": {"uv": [14, 4, 13, 5], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 5, + 14, + 4 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 14, + 4, + 13, + 5 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_8", - "from": [4.2, 5.6, 7], - "to": [4.4, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [11.2, 5.6, 8]}, + "from": [ + 4.2, + 5.6, + 7 + ], + "to": [ + 4.4, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 11.2, + 5.6, + 8 + ] + }, "faces": { - "north": {"uv": [10, 5, 11, 6], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [10, 5, 11, 6], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [10, 6, 11, 5], "texture": "#layer0"}, - "west": {"uv": [10, 5, 11, 6], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [10, 5, 11, 6], "texture": "#layer0"}, - "down": {"uv": [11, 5, 10, 6], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 6, + 11, + 5 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 5, + 10, + 6 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_9", - "from": [4.4, 5.6, 7], - "to": [4.6, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [10.4, 5.6, 8]}, + "from": [ + 4.4, + 5.6, + 7 + ], + "to": [ + 4.6, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 10.4, + 5.6, + 8 + ] + }, "faces": { - "north": {"uv": [11, 5, 12, 6], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [11, 5, 12, 6], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [11, 6, 12, 5], "texture": "#layer0"}, - "west": {"uv": [11, 5, 12, 6], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [11, 5, 12, 6], "texture": "#layer0"}, - "down": {"uv": [12, 5, 11, 6], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 6, + 12, + 5 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 5, + 11, + 6 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_10", - "from": [4.6, 5.6, 7], - "to": [4.8, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [9.6, 5.6, 8]}, + "from": [ + 4.6, + 5.6, + 7 + ], + "to": [ + 4.8, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 9.6, + 5.6, + 8 + ] + }, "faces": { - "north": {"uv": [12, 5, 13, 6], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [12, 5, 13, 6], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [12, 6, 13, 5], "texture": "#layer0"}, - "west": {"uv": [12, 5, 13, 6], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [12, 5, 13, 6], "texture": "#layer0"}, - "down": {"uv": [13, 5, 12, 6], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 6, + 13, + 5 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 5, + 12, + 6 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_11", - "from": [4, 5.8, 7], - "to": [4.2, 6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [12, 4.8, 8]}, + "from": [ + 4, + 5.8, + 7 + ], + "to": [ + 4.2, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 12, + 4.8, + 8 + ] + }, "faces": { - "north": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [9, 7, 10, 6], "texture": "#layer0"}, - "west": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [9, 6, 10, 7], "texture": "#layer0"}, - "down": {"uv": [10, 6, 9, 7], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 7, + 10, + 6 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 6, + 9, + 7 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_12", - "from": [4.2, 5.8, 7], - "to": [4.4, 6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [11.2, 4.8, 8]}, + "from": [ + 4.2, + 5.8, + 7 + ], + "to": [ + 4.4, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 11.2, + 4.8, + 8 + ] + }, "faces": { - "north": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [10, 7, 11, 6], "texture": "#layer0"}, - "west": {"uv": [10, 6, 11, 7], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [10, 6, 11, 7], "texture": "#layer0"}, - "down": {"uv": [11, 6, 10, 7], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 7, + 11, + 6 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 6, + 10, + 7 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_13", - "from": [4.4, 5.8, 7], - "to": [4.6, 6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [10.4, 4.8, 8]}, + "from": [ + 4.4, + 5.8, + 7 + ], + "to": [ + 4.6, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 10.4, + 4.8, + 8 + ] + }, "faces": { - "north": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [11, 7, 12, 6], "texture": "#layer0"}, - "west": {"uv": [11, 6, 12, 7], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [11, 6, 12, 7], "texture": "#layer0"}, - "down": {"uv": [12, 6, 11, 7], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 7, + 12, + 6 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 6, + 11, + 7 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_14", - "from": [3.8, 6, 7], - "to": [4, 6.2, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [12.8, 4, 8]}, + "from": [ + 3.8, + 6, + 7 + ], + "to": [ + 4, + 6.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 12.8, + 4, + 8 + ] + }, "faces": { - "north": {"uv": [8, 7, 9, 8], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [8, 7, 9, 8], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [8, 8, 9, 7], "texture": "#layer0"}, - "west": {"uv": [8, 7, 9, 8], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [8, 7, 9, 8], "texture": "#layer0"}, - "down": {"uv": [9, 7, 8, 8], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 8, + 8, + 9, + 7 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 9, + 7, + 8, + 8 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_15", - "from": [4, 6, 7], - "to": [4.2, 6.2, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [12, 4, 8]}, + "from": [ + 4, + 6, + 7 + ], + "to": [ + 4.2, + 6.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 12, + 4, + 8 + ] + }, "faces": { - "north": {"uv": [9, 7, 10, 8], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [9, 7, 10, 8], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [9, 8, 10, 7], "texture": "#layer0"}, - "west": {"uv": [9, 7, 10, 8], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [9, 7, 10, 8], "texture": "#layer0"}, - "down": {"uv": [10, 7, 9, 8], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 8, + 10, + 7 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 7, + 9, + 8 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_16", - "from": [4.2, 6, 7], - "to": [4.4, 6.2, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [11.2, 4, 8]}, + "from": [ + 4.2, + 6, + 7 + ], + "to": [ + 4.4, + 6.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 11.2, + 4, + 8 + ] + }, "faces": { - "north": {"uv": [10, 7, 11, 8], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [10, 7, 11, 8], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [10, 8, 11, 7], "texture": "#layer0"}, - "west": {"uv": [10, 7, 11, 8], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [10, 7, 11, 8], "texture": "#layer0"}, - "down": {"uv": [11, 7, 10, 8], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 8, + 11, + 7 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 7, + 10, + 8 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_18", - "from": [3.8, 6.2, 7], - "to": [4, 6.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [12.8, 3.2, 8]}, + "from": [ + 3.8, + 6.2, + 7 + ], + "to": [ + 4, + 6.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 12.8, + 3.2, + 8 + ] + }, "faces": { - "north": {"uv": [8, 8, 9, 9], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [8, 8, 9, 9], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [8, 9, 9, 8], "texture": "#layer0"}, - "west": {"uv": [8, 8, 9, 9], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [8, 8, 9, 9], "texture": "#layer0"}, - "down": {"uv": [9, 8, 8, 9], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 8, + 9, + 9, + 8 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 9, + 8, + 8, + 9 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_19", - "from": [4, 6.2, 7], - "to": [4.2, 6.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [12, 3.2, 8]}, + "from": [ + 4, + 6.2, + 7 + ], + "to": [ + 4.2, + 6.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 12, + 3.2, + 8 + ] + }, "faces": { - "north": {"uv": [9, 8, 10, 9], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [9, 8, 10, 9], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [9, 9, 10, 8], "texture": "#layer0"}, - "west": {"uv": [9, 8, 10, 9], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [9, 8, 10, 9], "texture": "#layer0"}, - "down": {"uv": [10, 8, 9, 9], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 9, + 10, + 8 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 8, + 9, + 9 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_32", - "from": [3.6, 6.2, 7], - "to": [3.8, 6.4, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [18.6, -1.8, 8]}, + "from": [ + 3.6, + 6.2, + 7 + ], + "to": [ + 3.8, + 6.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 18.6, + -1.8, + 8 + ] + }, "faces": { - "north": {"uv": [2, 13, 3, 14], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [2, 13, 3, 14], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [2, 14, 3, 13], "texture": "#layer0"}, - "west": {"uv": [2, 13, 3, 14], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [2, 13, 3, 14], "texture": "#layer0"}, - "down": {"uv": [3, 13, 2, 14], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 2, + 14, + 3, + 13 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 3, + 13, + 2, + 14 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_35", - "from": [3.6, 6.4, 7], - "to": [3.8, 6.6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [18.6, -2.6, 8]}, + "from": [ + 3.6, + 6.4, + 7 + ], + "to": [ + 3.8, + 6.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 18.6, + -2.6, + 8 + ] + }, "faces": { - "north": {"uv": [2, 14, 3, 15], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [2, 14, 3, 15], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [2, 15, 3, 14], "texture": "#layer0"}, - "west": {"uv": [2, 14, 3, 15], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [2, 14, 3, 15], "texture": "#layer0"}, - "down": {"uv": [3, 14, 2, 15], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 2, + 15, + 3, + 14 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 3, + 14, + 2, + 15 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_36", - "from": [3.8, 6.4, 7], - "to": [4, 6.6, 7.2], - "rotation": {"angle": 0, "axis": "x", "origin": [17.8, -2.6, 8]}, + "from": [ + 3.8, + 6.4, + 7 + ], + "to": [ + 4, + 6.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 17.8, + -2.6, + 8 + ] + }, "faces": { - "north": {"uv": [3, 14, 4, 15], "rotation": 180, "texture": "#layer0"}, - "east": {"uv": [3, 14, 4, 15], "rotation": 180, "texture": "#layer0"}, - "south": {"uv": [3, 15, 4, 14], "texture": "#layer0"}, - "west": {"uv": [3, 14, 4, 15], "rotation": 180, "texture": "#layer0"}, - "up": {"uv": [3, 14, 4, 15], "texture": "#layer0"}, - "down": {"uv": [4, 14, 3, 15], "rotation": 180, "texture": "#layer0"} + "north": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "east": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "south": { + "uv": [ + 3, + 15, + 4, + 14 + ], + "texture": "#layer0" + }, + "west": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 180, + "texture": "#layer0" + }, + "up": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "texture": "#layer0" + }, + "down": { + "uv": [ + 4, + 14, + 3, + 15 + ], + "rotation": 180, + "texture": "#layer0" + } } }, { "name": "stick_1", - "from": [10.8, 4.8, 7], - "to": [11, 5, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 10.8, + 4.8, + 7 + ], + "to": [ + 11, + 5, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [13, 2, 14, 3], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [13, 2, 14, 3], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [13, 3, 14, 2], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [14, 2, 13, 3], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [13, 2, 14, 3], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [13, 2, 14, 3], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 3, + 14, + 2 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 14, + 2, + 13, + 3 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 2, + 14, + 3 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_2", - "from": [10.8, 4.6, 7], - "to": [11, 4.8, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 10.8, + 4.6, + 7 + ], + "to": [ + 11, + 4.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [14, 2, 15, 3], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [14, 2, 15, 3], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [14, 3, 15, 2], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [15, 2, 14, 3], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [14, 2, 15, 3], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [14, 2, 15, 3], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 14, + 3, + 15, + 2 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 15, + 2, + 14, + 3 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 14, + 2, + 15, + 3 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_3", - "from": [11, 5, 7], - "to": [11.2, 5.2, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11, + 5, + 7 + ], + "to": [ + 11.2, + 5.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [12, 3, 13, 4], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [12, 4, 13, 3], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [13, 3, 12, 4], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [12, 3, 13, 4], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 4, + 13, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 3, + 12, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 3, + 13, + 4 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_4", - "from": [11, 4.8, 7], - "to": [11.2, 5, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11, + 4.8, + 7 + ], + "to": [ + 11.2, + 5, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [13, 3, 14, 4], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [13, 3, 14, 4], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [13, 4, 14, 3], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [14, 3, 13, 4], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [13, 3, 14, 4], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [13, 3, 14, 4], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 4, + 14, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 14, + 3, + 13, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 3, + 14, + 4 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_5", - "from": [11, 4.6, 7], - "to": [11.2, 4.8, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11, + 4.6, + 7 + ], + "to": [ + 11.2, + 4.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [14, 3, 15, 4], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [14, 3, 15, 4], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [14, 4, 15, 3], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [15, 3, 14, 4], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [14, 3, 15, 4], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [14, 3, 15, 4], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 14, + 4, + 15, + 3 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 15, + 3, + 14, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 14, + 3, + 15, + 4 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_6", - "from": [11.2, 5.2, 7], - "to": [11.4, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.2, + 5.2, + 7 + ], + "to": [ + 11.4, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [11, 4, 12, 5], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [11, 4, 12, 5], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [11, 5, 12, 4], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [12, 4, 11, 5], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [11, 4, 12, 5], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [11, 4, 12, 5], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 5, + 12, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 4, + 11, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 4, + 12, + 5 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_7", - "from": [11.2, 5, 7], - "to": [11.4, 5.2, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.2, + 5, + 7 + ], + "to": [ + 11.4, + 5.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [12, 4, 13, 5], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [12, 4, 13, 5], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [12, 5, 13, 4], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [13, 4, 12, 5], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [12, 4, 13, 5], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [12, 4, 13, 5], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 5, + 13, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 4, + 12, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 4, + 13, + 5 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_8", - "from": [11.2, 4.8, 7], - "to": [11.4, 5, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.2, + 4.8, + 7 + ], + "to": [ + 11.4, + 5, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [13, 4, 14, 5], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [13, 4, 14, 5], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [13, 5, 14, 4], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [14, 4, 13, 5], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [13, 4, 14, 5], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [13, 4, 14, 5], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 13, + 5, + 14, + 4 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 14, + 4, + 13, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 13, + 4, + 14, + 5 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_9", - "from": [11.4, 5.4, 7], - "to": [11.6, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.4, + 5.4, + 7 + ], + "to": [ + 11.6, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [10, 5, 11, 6], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [10, 5, 11, 6], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [10, 6, 11, 5], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [11, 5, 10, 6], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [10, 5, 11, 6], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [10, 5, 11, 6], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 6, + 11, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 5, + 10, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 5, + 11, + 6 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_10", - "from": [11.4, 5.2, 7], - "to": [11.6, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.4, + 5.2, + 7 + ], + "to": [ + 11.6, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [11, 5, 12, 6], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [11, 5, 12, 6], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [11, 6, 12, 5], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [12, 5, 11, 6], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [11, 5, 12, 6], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [11, 5, 12, 6], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 6, + 12, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 5, + 11, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 5, + 12, + 6 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_11", - "from": [11.4, 5, 7], - "to": [11.6, 5.2, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.4, + 5, + 7 + ], + "to": [ + 11.6, + 5.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [12, 5, 13, 6], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [12, 5, 13, 6], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [12, 6, 13, 5], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [13, 5, 12, 6], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [12, 5, 13, 6], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [12, 5, 13, 6], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 12, + 6, + 13, + 5 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 13, + 5, + 12, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 12, + 5, + 13, + 6 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_12", - "from": [11.6, 5.6, 7], - "to": [11.8, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.6, + 5.6, + 7 + ], + "to": [ + 11.8, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [9, 6, 10, 7], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [9, 6, 10, 7], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [9, 7, 10, 6], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [10, 6, 9, 7], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [9, 6, 10, 7], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [9, 6, 10, 7], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 7, + 10, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 6, + 9, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 9, + 6, + 10, + 7 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_13", - "from": [11.6, 5.4, 7], - "to": [11.8, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.6, + 5.4, + 7 + ], + "to": [ + 11.8, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [10, 6, 11, 7], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [10, 7, 11, 6], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [11, 6, 10, 7], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [10, 6, 11, 7], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 7, + 11, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 6, + 10, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 6, + 11, + 7 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_14", - "from": [11.6, 5.2, 7], - "to": [11.8, 5.4, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.6, + 5.2, + 7 + ], + "to": [ + 11.8, + 5.4, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [11, 6, 12, 7], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [11, 7, 12, 6], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [12, 6, 11, 7], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [11, 6, 12, 7], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 11, + 7, + 12, + 6 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 12, + 6, + 11, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 11, + 6, + 12, + 7 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_15", - "from": [11.8, 5.8, 7], - "to": [12, 6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.8, + 5.8, + 7 + ], + "to": [ + 12, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [8, 7, 9, 8], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [8, 7, 9, 8], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [8, 8, 9, 7], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [9, 7, 8, 8], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [8, 7, 9, 8], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [8, 7, 9, 8], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 8, + 8, + 9, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 9, + 7, + 8, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 8, + 7, + 9, + 8 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_16", - "from": [11.8, 5.6, 7], - "to": [12, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.8, + 5.6, + 7 + ], + "to": [ + 12, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [9, 7, 10, 8], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [9, 7, 10, 8], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [9, 8, 10, 7], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [10, 7, 9, 8], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [9, 7, 10, 8], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [9, 7, 10, 8], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 8, + 10, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 7, + 9, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 9, + 7, + 10, + 8 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_17", - "from": [11.8, 5.4, 7], - "to": [12, 5.6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 11.8, + 5.4, + 7 + ], + "to": [ + 12, + 5.6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [10, 7, 11, 8], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [10, 7, 11, 8], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [10, 8, 11, 7], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [11, 7, 10, 8], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [10, 7, 11, 8], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [10, 7, 11, 8], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 10, + 8, + 11, + 7 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 11, + 7, + 10, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 10, + 7, + 11, + 8 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_19", - "from": [12, 5.8, 7], - "to": [12.2, 6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 12, + 5.8, + 7 + ], + "to": [ + 12.2, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [8, 8, 9, 9], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [8, 8, 9, 9], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [8, 9, 9, 8], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [9, 8, 8, 9], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [8, 8, 9, 9], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [8, 8, 9, 9], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 8, + 9, + 9, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 9, + 8, + 8, + 9 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_20", - "from": [12, 5.6, 7], - "to": [12.2, 5.8, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 12, + 5.6, + 7 + ], + "to": [ + 12.2, + 5.8, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [9, 8, 10, 9], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [9, 8, 10, 9], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [9, 9, 10, 8], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [10, 8, 9, 9], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [9, 8, 10, 9], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [9, 8, 10, 9], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 9, + 9, + 10, + 8 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 10, + 8, + 9, + 9 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 9, + 8, + 10, + 9 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_33", - "from": [12, 6, 7], - "to": [12.2, 6.2, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 12, + 6, + 7 + ], + "to": [ + 12.2, + 6.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2, 13, 3, 14], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [2, 13, 3, 14], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [2, 14, 3, 13], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [3, 13, 2, 14], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [2, 13, 3, 14], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [2, 13, 3, 14], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 2, + 14, + 3, + 13 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 3, + 13, + 2, + 14 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 2, + 13, + 3, + 14 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_36", - "from": [12.2, 6, 7], - "to": [12.4, 6.2, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 12.2, + 6, + 7 + ], + "to": [ + 12.4, + 6.2, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [2, 14, 3, 15], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [2, 14, 3, 15], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [2, 15, 3, 14], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [3, 14, 2, 15], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [2, 14, 3, 15], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [2, 14, 3, 15], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 2, + 15, + 3, + 14 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 3, + 14, + 2, + 15 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 2, + 14, + 3, + 15 + ], + "rotation": 270, + "texture": "#layer0" + } } }, { "name": "stick_37", - "from": [12.2, 5.8, 7], - "to": [12.4, 6, 7.2], - "rotation": {"angle": 0, "axis": "z", "origin": [8.8, 8, 8]}, + "from": [ + 12.2, + 5.8, + 7 + ], + "to": [ + 12.4, + 6, + 7.2 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.8, + 8, + 8 + ] + }, "faces": { - "north": {"uv": [3, 14, 4, 15], "rotation": 90, "texture": "#layer0"}, - "east": {"uv": [3, 14, 4, 15], "rotation": 90, "texture": "#layer0"}, - "south": {"uv": [3, 15, 4, 14], "rotation": 90, "texture": "#layer0"}, - "west": {"uv": [4, 14, 3, 15], "rotation": 270, "texture": "#layer0"}, - "up": {"uv": [3, 14, 4, 15], "rotation": 270, "texture": "#layer0"}, - "down": {"uv": [3, 14, 4, 15], "rotation": 270, "texture": "#layer0"} + "north": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 90, + "texture": "#layer0" + }, + "east": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 90, + "texture": "#layer0" + }, + "south": { + "uv": [ + 3, + 15, + 4, + 14 + ], + "rotation": 90, + "texture": "#layer0" + }, + "west": { + "uv": [ + 4, + 14, + 3, + 15 + ], + "rotation": 270, + "texture": "#layer0" + }, + "up": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 270, + "texture": "#layer0" + }, + "down": { + "uv": [ + 3, + 14, + 4, + 15 + ], + "rotation": 270, + "texture": "#layer0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [68.25, 0, 0], - "translation": [-0.25, 2, 3], - "scale": [0.47, 0.47, 0.47] + "rotation": [ + 68.25, + 0, + 0 + ], + "translation": [ + -0.25, + 2, + 3 + ], + "scale": [ + 0.47, + 0.47, + 0.47 + ] }, "thirdperson_lefthand": { - "rotation": [68.25, 0, 0], - "translation": [0.25, 0.75, 15], - "scale": [0.47, 0.47, 0.47] + "rotation": [ + 68.25, + 0, + 0 + ], + "translation": [ + 0.25, + 0.75, + 15 + ], + "scale": [ + 0.47, + 0.47, + 0.47 + ] }, "firstperson_righthand": { - "translation": [3.25, 6.5, 0] + "translation": [ + 3.25, + 6.5, + 0 + ] }, "firstperson_lefthand": { - "translation": [3.25, 6.5, 0] + "translation": [ + 3.25, + 6.5, + 0 + ] }, "ground": { - "translation": [0, 11.5, 0], - "scale": [0.94, 0.94, 0.94] + "translation": [ + 0, + 11.5, + 0 + ], + "scale": [ + 0.94, + 0.94, + 0.94 + ] }, "gui": { - "rotation": [25, 140, 0], - "translation": [0, 2.25, 0], - "scale": [1.12, 1.12, 1.12] + "rotation": [ + 25, + 140, + 0 + ], + "translation": [ + 0, + 2.25, + 0 + ], + "scale": [ + 1.12, + 1.12, + 1.12 + ] }, "head": { - "translation": [0, -14.25, 0], - "scale": [2.26, 2.26, 2.26] + "translation": [ + 0, + -14.25, + 0 + ], + "scale": [ + 2.26, + 2.26, + 2.26 + ] }, "fixed": { - "translation": [0, 1.5, -1.25] + "translation": [ + 0, + 1.5, + -1.25 + ] } }, "groups": [ { "name": "sita", - "origin": [8, 8, 8], - "children": [0, 1, 2, 3, 4, 5, 6] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] }, { "name": "ue", - "origin": [8, 8, 8], - "children": [7, 8, 9] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 7, + 8, + 9 + ] }, { "name": "mugiwara", - "origin": [8, 8, 8], - "children": [10, 11] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 10, + 11 + ] }, { "name": "stick", - "origin": [8, 8, 8], - "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] }, { "name": "stick", - "origin": [8, 8, 8], - "children": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/reiwarm.json b/pack/assets/minecraft/models/item/figure/reiwarm.json index 221aaf56..2c2b7129 100644 --- a/pack/assets/minecraft/models/item/figure/reiwarm.json +++ b/pack/assets/minecraft/models/item/figure/reiwarm.json @@ -2,7 +2,7 @@ "__name": "reiwarm", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/reiwarm", - "particle": "skins/reiwarm" + "0": "item/skins/reiwarm", + "particle": "item/skins/reiwarm" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/shirotamas.json b/pack/assets/minecraft/models/item/figure/shirotamas.json index ade37fcc..ce9485ca 100644 --- a/pack/assets/minecraft/models/item/figure/shirotamas.json +++ b/pack/assets/minecraft/models/item/figure/shirotamas.json @@ -2,7 +2,7 @@ "__name": "shirotamagoのフィギュア(夏バージョン)", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/shirotamagosu", - "particle": "skins/shirotamagosu" + "0": "item/skins/shirotamagosu", + "particle": "item/skins/shirotamagosu" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/shirotamaw.json b/pack/assets/minecraft/models/item/figure/shirotamaw.json index 11358ce9..c2dd1807 100644 --- a/pack/assets/minecraft/models/item/figure/shirotamaw.json +++ b/pack/assets/minecraft/models/item/figure/shirotamaw.json @@ -2,7 +2,7 @@ "__name": "shirotamagoのフィギュア(冬バージョン)", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/shirotamagowi", - "particle": "skins/shirotamagowi" + "0": "item/skins/shirotamagowi", + "particle": "item/skins/shirotamagowi" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/syubarium.json b/pack/assets/minecraft/models/item/figure/syubarium.json index dbc1ce2a..7ea1370a 100644 --- a/pack/assets/minecraft/models/item/figure/syubarium.json +++ b/pack/assets/minecraft/models/item/figure/syubarium.json @@ -2,7 +2,7 @@ "__name": "syubariumのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/syubarium", - "particle": "skins/syubarium" + "0": "item/skins/syubarium", + "particle": "item/skins/syubarium" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/takenoha.json b/pack/assets/minecraft/models/item/figure/takenoha.json index aca6c243..d35077ed 100644 --- a/pack/assets/minecraft/models/item/figure/takenoha.json +++ b/pack/assets/minecraft/models/item/figure/takenoha.json @@ -2,7 +2,7 @@ "__name": "takenohaのフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/takenoha", - "particle": "skins/takenoha" + "0": "item/skins/takenoha", + "particle": "item/skins/takenoha" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/taniyan18.json b/pack/assets/minecraft/models/item/figure/taniyan18.json index f4f1f5a5..ebecc5b2 100644 --- a/pack/assets/minecraft/models/item/figure/taniyan18.json +++ b/pack/assets/minecraft/models/item/figure/taniyan18.json @@ -2,7 +2,7 @@ "__name": "taniyan18のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/taniyan18", - "particle": "skins/taniyan18" + "0": "item/skins/taniyan18", + "particle": "item/skins/taniyan18" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/tererun.json b/pack/assets/minecraft/models/item/figure/tererun.json index d5ba6420..8af11eb3 100644 --- a/pack/assets/minecraft/models/item/figure/tererun.json +++ b/pack/assets/minecraft/models/item/figure/tererun.json @@ -2,7 +2,7 @@ "__name": "tererunのフィギュア", "parent": "minecraft:item/figure/figure_alex", "textures": { - "0": "skins/tererun", - "particle": "skins/tererun" + "0": "item/skins/tererun", + "particle": "item/skins/tererun" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/tererun2102.json b/pack/assets/minecraft/models/item/figure/tererun2102.json index 01eec1f2..020946c9 100644 --- a/pack/assets/minecraft/models/item/figure/tererun2102.json +++ b/pack/assets/minecraft/models/item/figure/tererun2102.json @@ -2,7 +2,7 @@ "__name": "tererunのフィギュア(2021年2月バージョン)", "parent": "minecraft:item/figure/figure_alex", "textures": { - "0": "skins/tererun2102", - "particle": "skins/tererun2102" + "0": "item/skins/tererun2102", + "particle": "item/skins/tererun2102" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/trophy_g.json b/pack/assets/minecraft/models/item/figure/trophy_g.json index 693bf3fb..2f92cba7 100644 --- a/pack/assets/minecraft/models/item/figure/trophy_g.json +++ b/pack/assets/minecraft/models/item/figure/trophy_g.json @@ -2,267 +2,1377 @@ "__name": "トロフィー", "credit": "Made with Blockbench", "textures": { - "0": "skins/goldensteve", + "0": "item/skins/goldensteve", "1": "block/gold_block", - "2": "font/congrats", - "particle": "skins/goldensteve" + "2": "item/font/congrats", + "particle": "item/skins/goldensteve" }, "elements": [ { - "from": [7, 0.5, 7.5], - "to": [9, 5, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8.5, 13]}, + "from": [ + 7, + 0.5, + 7.5 + ], + "to": [ + 9, + 5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 8.5, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 8, 16], "texture": "#1"}, - "east": {"uv": [0, 0, 8, 16], "texture": "#1"}, - "south": {"uv": [0, 0, 8, 16], "texture": "#1"}, - "west": {"uv": [8, 0, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#missing"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#missing"} + "north": { + "uv": [ + 0, + 0, + 8, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 8, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 8, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 2, + 2 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 2, + 2 + ], + "texture": "#missing" + } } }, { - "from": [6, 5, 6.5], - "to": [10, 5.5, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 13, 13]}, + "from": [ + 6, + 5, + 6.5 + ], + "to": [ + 10, + 5.5, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 13, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [5, 5.5, 5.5], - "to": [11, 6.5, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 13.5, 13]}, + "from": [ + 5, + 5.5, + 5.5 + ], + "to": [ + 11, + 6.5, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 13.5, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [5.5, 1, 6], - "to": [10.5, 1.5, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 9, 13]}, + "from": [ + 5.5, + 1, + 6 + ], + "to": [ + 10.5, + 1.5, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 9, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [5, 0.5, 5.5], - "to": [11, 1, 11.5], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8.5, 13]}, + "from": [ + 5, + 0.5, + 5.5 + ], + "to": [ + 11, + 1, + 11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 8.5, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [4.5, 0, 5], - "to": [11.5, 0.5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [18.5, 8, 13]}, + "from": [ + 4.5, + 0, + 5 + ], + "to": [ + 11.5, + 0.5, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 18.5, + 8, + 13 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "east": {"uv": [15, 0, 16, 16], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 15, 16, 16], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#1"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [6, 7.375, 6.5], - "to": [10, 8.375, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 7.375, 6.75]}, + "from": [ + 6, + 7.375, + 6.5 + ], + "to": [ + 10, + 8.375, + 7 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.375, + 6.75 + ] + }, "faces": { - "north": {"uv": [0, 0, 16, 4], "texture": "#1"}, - "east": {"uv": [0, 0, 1, 4], "texture": "#1"}, - "south": {"uv": [0, 0, 16, 4], "texture": "#1"}, - "west": {"uv": [15, 0, 16, 4], "texture": "#1"}, - "up": {"uv": [0, 0, 16, 1], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 4, 0.5], "texture": "#missing"} + "north": { + "uv": [ + 0, + 0, + 16, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 0, + 16, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 1 + ], + "rotation": 180, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#missing" + } } }, { - "from": [6, 6.45112, 6.11732], - "to": [10, 7.45112, 6.61732], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 6.45112, 6.36732]}, + "from": [ + 6, + 6.45112, + 6.11732 + ], + "to": [ + 10, + 7.45112, + 6.61732 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 6.45112, + 6.36732 + ] + }, "faces": { - "north": {"uv": [0, 12, 16, 16], "texture": "#1"}, - "east": {"uv": [0, 12, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 12, 16, 16], "texture": "#1"}, - "west": {"uv": [15, 12, 16, 16], "texture": "#1"}, - "up": {"uv": [0, 0, 4, 0.5], "texture": "#missing"}, - "down": {"uv": [0, 15, 16, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 12, + 16, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 12, + 1, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 12, + 16, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 15, + 12, + 16, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 15, + 16, + 16 + ], + "texture": "#1" + } } }, { "name": "font", - "from": [6, 6.64246, 6.14288], - "to": [10, 8.64246, 6.14288], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 6.64246, 5.89288]}, + "from": [ + 6, + 6.64246, + 6.14288 + ], + "to": [ + 10, + 8.64246, + 6.14288 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 6.64246, + 5.89288 + ] + }, "faces": { - "north": {"uv": [0, 4.75, 16, 11.25], "texture": "#2"} + "north": { + "uv": [ + 0, + 4.75, + 16, + 11.25 + ], + "texture": "#2" + } } }, { "name": "head", - "from": [7, 12.5, 8], - "to": [9, 14.5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 20.5, 13]}, + "from": [ + 7, + 12.5, + 8 + ], + "to": [ + 9, + 14.5, + 10 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 20.5, + 13 + ] + }, "faces": { - "north": {"uv": [2, 2, 4, 4], "texture": "#0"}, - "east": {"uv": [0, 2, 2, 4], "texture": "#0"}, - "south": {"uv": [6, 2, 8, 4], "texture": "#0"}, - "west": {"uv": [4, 2, 6, 4], "texture": "#0"}, - "up": {"uv": [2, 0, 4, 2], "texture": "#0"}, - "down": {"uv": [4, 0, 6, 2], "texture": "#0"} + "north": { + "uv": [ + 2, + 2, + 4, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 2, + 8, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 6, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 0, + 4, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 0, + 6, + 2 + ], + "texture": "#0" + } } }, { "name": "head_1", - "from": [6.875, 12.375, 7.875], - "to": [9.125, 14.625, 10.125], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 20.5, 13]}, + "from": [ + 6.875, + 12.375, + 7.875 + ], + "to": [ + 9.125, + 14.625, + 10.125 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 20.5, + 13 + ] + }, "faces": { - "north": {"uv": [10, 2, 12, 4], "texture": "#0"}, - "east": {"uv": [8, 2, 10, 4], "texture": "#0"}, - "south": {"uv": [14, 2, 16, 4], "texture": "#0"}, - "west": {"uv": [12, 2, 14, 4], "texture": "#0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#0"}, - "down": {"uv": [12, 0, 14, 2], "texture": "#0"} + "north": { + "uv": [ + 10, + 2, + 12, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 2, + 10, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 2, + 16, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 2, + 14, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 0, + 14, + 2 + ], + "texture": "#0" + } } }, { "name": "body", - "from": [7, 9.5, 8.5], - "to": [9, 12.5, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 17.5, 13]}, + "from": [ + 7, + 9.5, + 8.5 + ], + "to": [ + 9, + 12.5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 17.5, + 13 + ] + }, "faces": { - "north": {"uv": [5, 5, 7, 8], "texture": "#0"}, - "east": {"uv": [4, 5, 5, 8], "texture": "#0"}, - "south": {"uv": [6.75, 5, 8.75, 8], "texture": "#0"}, - "west": {"uv": [7, 5, 8, 8], "texture": "#0"}, - "up": {"uv": [5, 4, 7, 5], "texture": "#0"}, - "down": {"uv": [7, 4, 9, 5], "texture": "#0"} + "north": { + "uv": [ + 5, + 5, + 7, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 5, + 5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 5, + 8.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5, + 8, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4, + 7, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 4, + 9, + 5 + ], + "texture": "#0" + } } }, { "name": "left_leg", - "from": [7, 6.5, 8.5], - "to": [8, 9.5, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [15.5, 14.5, 13]}, + "from": [ + 7, + 6.5, + 8.5 + ], + "to": [ + 8, + 9.5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15.5, + 14.5, + 13 + ] + }, "faces": { - "north": {"uv": [6, 13, 7, 16], "texture": "#0"}, - "east": {"uv": [5, 13, 6, 16], "texture": "#0"}, - "south": {"uv": [4, 13, 5, 16], "texture": "#0"}, - "west": {"uv": [7, 13, 8, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#missing"} + "north": { + "uv": [ + 6, + 13, + 7, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 13, + 6, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 13, + 5, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 13, + 8, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#missing" + } } }, { "name": "right_leg", - "from": [8, 6.5, 8.5], - "to": [9, 9.5, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 14.5, 13]}, + "from": [ + 8, + 6.5, + 8.5 + ], + "to": [ + 9, + 9.5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 14.5, + 13 + ] + }, "faces": { - "north": {"uv": [5, 13, 6, 16], "texture": "#0"}, - "east": {"uv": [4, 13, 5, 16], "texture": "#0"}, - "south": {"uv": [6, 13, 7, 16], "texture": "#0"}, - "west": {"uv": [6.75, 13, 7.75, 16], "texture": "#0"}, - "up": {"uv": [5, 12, 6, 13], "texture": "#0"}, - "down": {"uv": [6, 12, 7, 13], "texture": "#0"} + "north": { + "uv": [ + 5, + 13, + 6, + 16 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 13, + 5, + 16 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 13, + 7, + 16 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 13, + 7.75, + 16 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 12, + 6, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 12, + 7, + 13 + ], + "texture": "#0" + } } }, { "name": "left_leg", - "from": [6, 9.5, 8.5], - "to": [7, 12.5, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 17.5, 13]}, + "from": [ + 6, + 9.5, + 8.5 + ], + "to": [ + 7, + 12.5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 17.5, + 13 + ] + }, "faces": { - "north": {"uv": [0, 5, 1, 8], "texture": "#0"}, - "east": {"uv": [3, 5, 4, 8], "texture": "#0"}, - "south": {"uv": [1, 5, 2, 8], "texture": "#0"}, - "west": {"uv": [2, 5, 3, 8], "texture": "#0"}, - "up": {"uv": [2, 4, 3, 5], "texture": "#0"}, - "down": {"uv": [2, 4, 3, 5], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 1, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5, + 4, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 5, + 2, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5, + 3, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4, + 3, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 4, + 3, + 5 + ], + "texture": "#0" + } } }, { "name": "right_leg", - "from": [9, 11.5, 8.5], - "to": [10, 14.5, 9.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [9.5, 12, 9]}, + "from": [ + 9, + 11.5, + 8.5 + ], + "to": [ + 10, + 14.5, + 9.5 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 9.5, + 12, + 9 + ] + }, "faces": { - "north": {"uv": [0, 5, 1, 8], "rotation": 180, "texture": "#0"}, - "east": {"uv": [1, 5, 2, 8], "rotation": 180, "texture": "#0"}, - "south": {"uv": [3, 5, 4, 8], "rotation": 180, "texture": "#0"}, - "west": {"uv": [2, 5, 3, 8], "rotation": 180, "texture": "#0"}, - "up": {"uv": [2, 4, 3, 5], "texture": "#0"}, - "down": {"uv": [1, 4, 2, 5], "texture": "#0"} + "north": { + "uv": [ + 0, + 5, + 1, + 8 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 5, + 2, + 8 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5, + 4, + 8 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5, + 3, + 8 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4, + 3, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 4, + 2, + 5 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 1.25, 1.5], - "scale": [0.64, 0.64, 0.64] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 1.25, + 1.5 + ], + "scale": [ + 0.64, + 0.64, + 0.64 + ] }, "thirdperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 1.25, 1.5], - "scale": [0.64, 0.64, 0.64] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 1.25, + 1.5 + ], + "scale": [ + 0.64, + 0.64, + 0.64 + ] }, "firstperson_righthand": { - "rotation": [0, -180, 0], - "translation": [0, 1.25, 1.5], - "scale": [0.64, 0.64, 0.64] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 1.25, + 1.5 + ], + "scale": [ + 0.64, + 0.64, + 0.64 + ] }, "firstperson_lefthand": { - "rotation": [0, -180, 0], - "translation": [0, 1.25, 1.5], - "scale": [0.64, 0.64, 0.64] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + 1.25, + 1.5 + ], + "scale": [ + 0.64, + 0.64, + 0.64 + ] }, "ground": { - "translation": [0, 10.75, 0] + "translation": [ + 0, + 10.75, + 0 + ] }, "gui": { - "rotation": [21, 135, -3], - "translation": [0, 1, 0], - "scale": [0.67, 0.67, 0.67] + "rotation": [ + 21, + 135, + -3 + ], + "translation": [ + 0, + 1, + 0 + ], + "scale": [ + 0.67, + 0.67, + 0.67 + ] }, "head": { - "translation": [0, -15, -1.25], - "scale": [2.03, 2.03, 2.03] + "translation": [ + 0, + -15, + -1.25 + ], + "scale": [ + 2.03, + 2.03, + 2.03 + ] }, "fixed": { - "translation": [0, 0.25, -1.75], - "scale": [1.17, 1.17, 1.17] + "translation": [ + 0, + 0.25, + -1.75 + ], + "scale": [ + 1.17, + 1.17, + 1.17 + ] } }, - "groups": [0, 1, 2, 3, 4, 5, 6, 7, 8, + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, { "name": "skin", - "origin": [9.5, 12, 9], - "children": [9, 10, 11, 12, 13, 14, 15] + "origin": [ + 9.5, + 12, + 9 + ], + "children": [ + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/tsutoringo.json b/pack/assets/minecraft/models/item/figure/tsutoringo.json index 1339b766..b5828c0f 100644 --- a/pack/assets/minecraft/models/item/figure/tsutoringo.json +++ b/pack/assets/minecraft/models/item/figure/tsutoringo.json @@ -3,7 +3,7 @@ "__comment": "俺", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/tsutoringo", - "particle": "skins/tsutoringo" + "0": "item/skins/tsutoringo", + "particle": "item/skins/tsutoringo" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/figure/ueki.json b/pack/assets/minecraft/models/item/figure/ueki.json index 64a624d9..ae427400 100644 --- a/pack/assets/minecraft/models/item/figure/ueki.json +++ b/pack/assets/minecraft/models/item/figure/ueki.json @@ -2,7 +2,7 @@ "__name": "Ueki(jinseimendoi)のフィギュア", "parent": "minecraft:item/figure/figure", "textures": { - "0": "skins/ueki", - "particle": "skins/ueki" + "0": "item/skins/ueki", + "particle": "item/skins/ueki" } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/mugiwara.json b/pack/assets/minecraft/models/item/mugiwara.json index 0b64abc8..64347957 100644 --- a/pack/assets/minecraft/models/item/mugiwara.json +++ b/pack/assets/minecraft/models/item/mugiwara.json @@ -3,67 +3,243 @@ "__comment": "麦わらの〜", "credit": "Made with Blockbench", "textures": { - "0": "entity/villager/profession/farmer", - "particle": "entity/villager/profession/farmer" + "0": "item/entity/villager/profession/farmer", + "particle": "item/entity/villager/profession/farmer" }, "elements": [ { - "from": [0, 0.5, 0], - "to": [16, 0.502, 16], + "from": [ + 0, + 0.5, + 0 + ], + "to": [ + 16, + 0.502, + 16 + ], "faces": { - "north": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [7.75, 12, 11.75, 16], "texture": "#0"}, - "down": {"uv": [7.75, 12, 11.75, 16], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 2, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 12, + 11.75, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 12, + 11.75, + 16 + ], + "texture": "#0" + } } }, { - "from": [3, 0.4375, 3], - "to": [13, 5, 13], + "from": [ + 3, + 0.4375, + 3 + ], + "to": [ + 13, + 5, + 13 + ], "faces": { - "north": {"uv": [8, 2, 10, 3], "texture": "#0"}, - "east": {"uv": [14, 2, 16, 3], "texture": "#0"}, - "south": {"uv": [12, 2, 14, 3], "texture": "#0"}, - "west": {"uv": [10, 2, 12, 3], "texture": "#0"}, - "up": {"uv": [10, 0, 12, 2], "texture": "#0"}, - "down": {"uv": [10, 0, 12, 2], "texture": "#0"} + "north": { + "uv": [ + 8, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 2, + 16, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 2, + 14, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 12, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 0, + 12, + 2 + ], + "texture": "#0" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [68.25, 0, 0], - "translation": [-0.25, 4, 3], - "scale": [0.47, 0.47, 0.47] + "rotation": [ + 68.25, + 0, + 0 + ], + "translation": [ + -0.25, + 4, + 3 + ], + "scale": [ + 0.47, + 0.47, + 0.47 + ] }, "thirdperson_lefthand": { - "rotation": [68.25, 0, 0], - "translation": [-0.25, 4, 3], - "scale": [0.47, 0.47, 0.47] + "rotation": [ + 68.25, + 0, + 0 + ], + "translation": [ + -0.25, + 4, + 3 + ], + "scale": [ + 0.47, + 0.47, + 0.47 + ] }, "firstperson_righthand": { - "translation": [3.25, 6.5, 0] + "translation": [ + 3.25, + 6.5, + 0 + ] }, "firstperson_lefthand": { - "translation": [3.25, 6.5, 0] + "translation": [ + 3.25, + 6.5, + 0 + ] }, "ground": { - "translation": [0, 8, 0] + "translation": [ + 0, + 8, + 0 + ] }, "gui": { - "rotation": [32, 45, 0], - "translation": [0, 3.75, -7.75], - "scale": [0.77, 0.77, 0.77] + "rotation": [ + 32, + 45, + 0 + ], + "translation": [ + 0, + 3.75, + -7.75 + ], + "scale": [ + 0.77, + 0.77, + 0.77 + ] }, "head": { - "translation": [0, 12, 0], - "scale": [1.39, 1.39, 1.39] + "translation": [ + 0, + 12, + 0 + ], + "scale": [ + 1.39, + 1.39, + 1.39 + ] }, "fixed": { - "rotation": [-90, 45, 0], - "translation": [0, 0.25, -7.75] + "rotation": [ + -90, + 45, + 0 + ], + "translation": [ + 0, + 0.25, + -7.75 + ] } } } \ No newline at end of file diff --git a/pack/assets/minecraft/models/item/zihanki.json b/pack/assets/minecraft/models/item/zihanki.json index 4882d738..c8f8139b 100644 --- a/pack/assets/minecraft/models/item/zihanki.json +++ b/pack/assets/minecraft/models/item/zihanki.json @@ -4,7 +4,7 @@ "textures": { "0": "block/white_concrete", "1": "block/glass", - "2": "poster/freeserver", + "2": "item/poster/freeserver", "3": "block/light_blue_shulker_box", "4": "block/red_glazed_terracotta", "5": "block/light_blue_glazed_terracotta", @@ -23,2391 +23,13187 @@ "elements": [ { "name": "tenzi", - "from": [2.875, 5.51563, 9.59375], - "to": [6.5625, 7.96875, 9.59375], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 12.45313, 12.79688]}, - "faces": { - "north": {"uv": [0, 0, 3.6875, 2.45313], "texture": "#missing"}, - "east": {"uv": [0, 0, 0, 2.45313], "texture": "#missing"}, - "south": {"uv": [0.075, 2.575, 16, 13.028], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 2.45313], "texture": "#missing"}, - "up": {"uv": [0, 0, 3.6875, 0], "texture": "#missing"}, - "down": {"uv": [0, 0, 3.6875, 0], "texture": "#missing"} + "from": [ + 2.875, + 5.51563, + 9.59375 + ], + "to": [ + 6.5625, + 7.96875, + 9.59375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 12.45313, + 12.79688 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.6875, + 2.45313 + ], + "texture": "#missing" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 2.45313 + ], + "texture": "#missing" + }, + "south": { + "uv": [ + 0.075, + 2.575, + 16, + 13.028 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 2.45313 + ], + "texture": "#missing" + }, + "up": { + "uv": [ + 0, + 0, + 3.6875, + 0 + ], + "texture": "#missing" + }, + "down": { + "uv": [ + 0, + 0, + 3.6875, + 0 + ], + "texture": "#missing" + } } }, { - "from": [3.67188, 15.57813, 11.04688], - "to": [4.40625, 15.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [19.1875, 20.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 3.67188, + 15.57813, + 11.04688 + ], + "to": [ + 4.40625, + 15.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19.1875, + 20.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [5.67188, 15.57813, 11.04688], - "to": [6.40625, 15.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [21.1875, 20.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 5.67188, + 15.57813, + 11.04688 + ], + "to": [ + 6.40625, + 15.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21.1875, + 20.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [7.67188, 15.57813, 11.04688], - "to": [8.40625, 15.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [23.1875, 20.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 7.67188, + 15.57813, + 11.04688 + ], + "to": [ + 8.40625, + 15.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 23.1875, + 20.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [9.67188, 15.57813, 11.04688], - "to": [10.40625, 15.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [25.1875, 20.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 9.67188, + 15.57813, + 11.04688 + ], + "to": [ + 10.40625, + 15.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 25.1875, + 20.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [11.67188, 15.57813, 11.04688], - "to": [12.40625, 15.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [27.1875, 20.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 11.67188, + 15.57813, + 11.04688 + ], + "to": [ + 12.40625, + 15.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 27.1875, + 20.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [2.875, 15.42188, 9.5625], - "to": [13.10938, 16.0625, 11.09375], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 20.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "east": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "south": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "west": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "up": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"}, - "down": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"} + "from": [ + 2.875, + 15.42188, + 9.5625 + ], + "to": [ + 13.10938, + 16.0625, + 11.09375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 20.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "east": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "west": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + } } }, { - "from": [2.875, 16.0625, 10.65625], - "to": [13.10938, 16.25, 10.73438], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 20.45313, 13.64063]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "east": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "south": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "west": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "up": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"}, - "down": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"} + "from": [ + 2.875, + 16.0625, + 10.65625 + ], + "to": [ + 13.10938, + 16.25, + 10.73438 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 20.45313, + 13.64063 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + } } }, { - "from": [3.67188, 12.57813, 11.04688], - "to": [4.40625, 12.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [19.1875, 17.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 3.67188, + 12.57813, + 11.04688 + ], + "to": [ + 4.40625, + 12.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19.1875, + 17.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [5.67188, 12.57813, 11.04688], - "to": [6.40625, 12.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [21.1875, 17.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 5.67188, + 12.57813, + 11.04688 + ], + "to": [ + 6.40625, + 12.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21.1875, + 17.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [7.67188, 12.57813, 11.04688], - "to": [8.40625, 12.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [23.1875, 17.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 7.67188, + 12.57813, + 11.04688 + ], + "to": [ + 8.40625, + 12.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 23.1875, + 17.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [9.67188, 12.57813, 11.04688], - "to": [10.40625, 12.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [25.1875, 17.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 9.67188, + 12.57813, + 11.04688 + ], + "to": [ + 10.40625, + 12.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 25.1875, + 17.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [11.67188, 12.57813, 11.04688], - "to": [12.40625, 12.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [27.1875, 17.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 11.67188, + 12.57813, + 11.04688 + ], + "to": [ + 12.40625, + 12.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 27.1875, + 17.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [2.875, 12.42188, 9.5625], - "to": [13.10938, 13.0625, 11.09375], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 17.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "east": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "south": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "west": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "up": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"}, - "down": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"} + "from": [ + 2.875, + 12.42188, + 9.5625 + ], + "to": [ + 13.10938, + 13.0625, + 11.09375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 17.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "east": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "west": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + } } }, { - "from": [2.875, 13.0625, 10.65625], - "to": [13.10938, 13.25, 10.73438], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 17.45313, 13.64063]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "east": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "south": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "west": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "up": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"}, - "down": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"} + "from": [ + 2.875, + 13.0625, + 10.65625 + ], + "to": [ + 13.10938, + 13.25, + 10.73438 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 17.45313, + 13.64063 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + } } }, { - "from": [3.67188, 9.57813, 11.04688], - "to": [4.40625, 9.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [19.1875, 14.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 3.67188, + 9.57813, + 11.04688 + ], + "to": [ + 4.40625, + 9.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 19.1875, + 14.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [5.67188, 9.57813, 11.04688], - "to": [6.40625, 9.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [21.1875, 14.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 5.67188, + 9.57813, + 11.04688 + ], + "to": [ + 6.40625, + 9.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 21.1875, + 14.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [7.67188, 9.57813, 11.04688], - "to": [8.40625, 9.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [23.1875, 14.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 7.67188, + 9.57813, + 11.04688 + ], + "to": [ + 8.40625, + 9.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 23.1875, + 14.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [9.67188, 9.57813, 11.04688], - "to": [10.40625, 9.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [25.1875, 14.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 9.67188, + 9.57813, + 11.04688 + ], + "to": [ + 10.40625, + 9.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 25.1875, + 14.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [11.67188, 9.57813, 11.04688], - "to": [12.40625, 9.85938, 11.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [27.1875, 14.51563, 14.10938]}, - "faces": { - "north": {"uv": [0, 0, 0.73438, 0.28125], "texture": "#3"}, - "east": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "south": {"uv": [1, 1, 14.735, 6.282], "texture": "#3"}, - "west": {"uv": [0, 0, 0.15625, 0.28125], "texture": "#3"}, - "up": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"}, - "down": {"uv": [0, 0, 0.73438, 0.15625], "texture": "#3"} + "from": [ + 11.67188, + 9.57813, + 11.04688 + ], + "to": [ + 12.40625, + 9.85938, + 11.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 27.1875, + 14.51563, + 14.10938 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.73438, + 0.28125 + ], + "texture": "#3" + }, + "east": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "south": { + "uv": [ + 1, + 1, + 14.735, + 6.282 + ], + "texture": "#3" + }, + "west": { + "uv": [ + 0, + 0, + 0.15625, + 0.28125 + ], + "texture": "#3" + }, + "up": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + }, + "down": { + "uv": [ + 0, + 0, + 0.73438, + 0.15625 + ], + "texture": "#3" + } } }, { - "from": [2.875, 9.42188, 9.5625], - "to": [13.10938, 10.0625, 11.09375], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 14.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "east": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "south": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#15"}, - "west": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#15"}, - "up": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"}, - "down": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#15"} + "from": [ + 2.875, + 9.42188, + 9.5625 + ], + "to": [ + 13.10938, + 10.0625, + 11.09375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 14.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "east": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#15" + }, + "west": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#15" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#15" + } } }, { - "from": [2.875, 10.0625, 10.65625], - "to": [13.10938, 10.25, 10.73438], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 14.45313, 13.64063]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "east": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "south": {"uv": [0, 0, 10.23438, 0.1875], "texture": "#0"}, - "west": {"uv": [0, 0, 0.07813, 0.1875], "texture": "#0"}, - "up": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"}, - "down": {"uv": [0, 0, 10.23438, 0.07813], "texture": "#0"} + "from": [ + 2.875, + 10.0625, + 10.65625 + ], + "to": [ + 13.10938, + 10.25, + 10.73438 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 14.45313, + 13.64063 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 0.07813, + 0.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 0.07813 + ], + "texture": "#0" + } } }, { - "from": [2, 0, 5], - "to": [13.98438, 2.07813, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 8, 14]}, - "faces": { - "north": {"uv": [0, 0, 11.98438, 2.07813], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2.07813], "texture": "#0"}, - "south": {"uv": [0, 0, 11.98438, 2.07813], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2.07813], "texture": "#0"}, - "up": {"uv": [0, 0, 11.98438, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 11.98438, 6], "texture": "#0"} + "from": [ + 2, + 0, + 5 + ], + "to": [ + 13.98438, + 2.07813, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 8, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 11.98438, + 2.07813 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 2.07813 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 11.98438, + 2.07813 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 2.07813 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 11.98438, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 11.98438, + 6 + ], + "texture": "#0" + } } }, { - "from": [13.29688, 2.0625, 5], - "to": [13.98438, 4.07813, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 0.6875, 2.01563], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "south": {"uv": [0, 0, 0.6875, 2.01563], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "up": {"uv": [0, 0, 0.6875, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 0.6875, 6], "texture": "#0"} + "from": [ + 13.29688, + 2.0625, + 5 + ], + "to": [ + 13.98438, + 4.07813, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.6875, + 2.01563 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.6875, + 2.01563 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.6875, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.6875, + 6 + ], + "texture": "#0" + } } }, { - "from": [10.84375, 2.0625, 5], - "to": [12.07813, 4.07813, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8.07813, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 1.23438, 2.01563], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "south": {"uv": [0, 0, 1.23438, 2.01563], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "up": {"uv": [0, 0, 1.23438, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 1.23438, 6], "texture": "#0"} + "from": [ + 10.84375, + 2.0625, + 5 + ], + "to": [ + 12.07813, + 4.07813, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.07813, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.23438, + 2.01563 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.23438, + 2.01563 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.23438, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.23438, + 6 + ], + "texture": "#0" + } } }, { - "from": [3.21875, 2.0625, 5], - "to": [10.84375, 4.07813, 9.70313], - "rotation": {"angle": 0, "axis": "y", "origin": [0.45313, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 7.625, 2.01563], "texture": "#0"}, - "east": {"uv": [0, 0, 4.70313, 2.01563], "texture": "#0"}, - "south": {"uv": [0, 0, 7.625, 2.01563], "texture": "#0"}, - "west": {"uv": [0, 0, 4.70313, 2.01563], "texture": "#0"}, - "up": {"uv": [0, 0, 7.625, 4.70313], "texture": "#0"}, - "down": {"uv": [0, 0, 7.625, 4.70313], "texture": "#0"} + "from": [ + 3.21875, + 2.0625, + 5 + ], + "to": [ + 10.84375, + 4.07813, + 9.70313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0.45313, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 7.625, + 2.01563 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4.70313, + 2.01563 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 7.625, + 2.01563 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 4.70313, + 2.01563 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 7.625, + 4.70313 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 7.625, + 4.70313 + ], + "texture": "#0" + } } }, { - "from": [2, 2.0625, 5], - "to": [3.23438, 4.07813, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.76562, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 1.23438, 2.01563], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "south": {"uv": [0, 0, 1.23438, 2.01563], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 2.01563], "texture": "#0"}, - "up": {"uv": [0, 0, 1.23438, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 1.23438, 6], "texture": "#0"} + "from": [ + 2, + 2.0625, + 5 + ], + "to": [ + 3.23438, + 4.07813, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + -0.76562, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.23438, + 2.01563 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.23438, + 2.01563 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 2.01563 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.23438, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.23438, + 6 + ], + "texture": "#0" + } } }, { - "from": [2, 4.0625, 5], - "to": [13.98438, 5.51563, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0.45313, 12, 14]}, - "faces": { - "north": {"uv": [0, 0, 11.98438, 1.45313], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 1.45313], "texture": "#0"}, - "south": {"uv": [0, 0, 11.98438, 1.45313], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 1.45313], "texture": "#0"}, - "up": {"uv": [0, 0, 11.98438, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 11.98438, 6], "texture": "#0"} + "from": [ + 2, + 4.0625, + 5 + ], + "to": [ + 13.98438, + 5.51563, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0.45313, + 12, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 11.98438, + 1.45313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 1.45313 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 11.98438, + 1.45313 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 1.45313 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 11.98438, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 11.98438, + 6 + ], + "texture": "#0" + } } }, { - "from": [12.09375, 2.0625, 5], - "to": [13.28375, 3.2525, 10.20313], - "rotation": {"angle": 0, "axis": "y", "origin": [9.28125, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 1.19, 1.19], "texture": "#0"}, - "east": {"uv": [0, 0, 5.20313, 1.19], "texture": "#0"}, - "south": {"uv": [0, 0, 1.19, 1.19], "texture": "#0"}, - "west": {"uv": [0, 0, 5.20313, 1.19], "texture": "#0"}, - "up": {"uv": [0, 0, 1.19, 5.20313], "texture": "#0"}, - "down": {"uv": [0, 0, 1.19, 5.20313], "texture": "#0"} + "from": [ + 12.09375, + 2.0625, + 5 + ], + "to": [ + 13.28375, + 3.2525, + 10.20313 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.28125, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.19, + 1.19 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5.20313, + 1.19 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.19, + 1.19 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 5.20313, + 1.19 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.19, + 5.20313 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.19, + 5.20313 + ], + "texture": "#0" + } } }, { - "from": [12.07813, 3.23438, 5], - "to": [13.29688, 4.07813, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [9.28125, 10, 14]}, - "faces": { - "north": {"uv": [0, 0, 1.21875, 0.84375], "texture": "#0"}, - "east": {"uv": [0, 0, 6, 0.84375], "texture": "#0"}, - "south": {"uv": [0, 0, 1.21875, 0.84375], "texture": "#0"}, - "west": {"uv": [0, 0, 6, 0.84375], "texture": "#0"}, - "up": {"uv": [0, 0, 1.21875, 6], "texture": "#0"}, - "down": {"uv": [0, 0, 1.21875, 6], "texture": "#0"} + "from": [ + 12.07813, + 3.23438, + 5 + ], + "to": [ + 13.29688, + 4.07813, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.28125, + 10, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.21875, + 0.84375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 0.84375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.21875, + 0.84375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 6, + 0.84375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 1.21875, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 1.21875, + 6 + ], + "texture": "#0" + } } }, { - "from": [2, 5.51563, 5], - "to": [13.98438, 19.96875, 9.5625], - "rotation": {"angle": 0, "axis": "y", "origin": [0.45313, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 11.98438, 14.45313], "texture": "#0"}, - "east": {"uv": [0, 0, 4.5625, 14.45313], "texture": "#0"}, - "south": {"uv": [0, 0, 11.98438, 14.45313], "texture": "#0"}, - "west": {"uv": [0, 0, 4.5625, 14.45313], "texture": "#0"}, - "up": {"uv": [0, 0, 11.98438, 4.5625], "texture": "#0"}, - "down": {"uv": [0, 0, 11.98438, 4.5625], "texture": "#0"} + "from": [ + 2, + 5.51563, + 5 + ], + "to": [ + 13.98438, + 19.96875, + 9.5625 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0.45313, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 11.98438, + 14.45313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4.5625, + 14.45313 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 11.98438, + 14.45313 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 4.5625, + 14.45313 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 11.98438, + 4.5625 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 11.98438, + 4.5625 + ], + "texture": "#0" + } } }, { - "from": [2, 5.51563, 9.5625], - "to": [2.875, 19.96875, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0.45313, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 0.875, 14.45313], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4375, 14.45313], "texture": "#0"}, - "south": {"uv": [0, 0, 0.875, 14.45313], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4375, 14.45313], "texture": "#0"}, - "up": {"uv": [0, 0, 0.875, 1.4375], "texture": "#0"}, - "down": {"uv": [0, 0, 0.875, 1.4375], "texture": "#0"} + "from": [ + 2, + 5.51563, + 9.5625 + ], + "to": [ + 2.875, + 19.96875, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0.45313, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.875, + 14.45313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.4375, + 14.45313 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.875, + 14.45313 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.4375, + 14.45313 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.875, + 1.4375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.875, + 1.4375 + ], + "texture": "#0" + } } }, { - "from": [13.10938, 5.51563, 9.5625], - "to": [13.98438, 19.96875, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 0.875, 14.45313], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4375, 14.45313], "texture": "#0"}, - "south": {"uv": [0, 0, 0.875, 14.45313], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4375, 14.45313], "texture": "#0"}, - "up": {"uv": [0, 0, 0.875, 1.4375], "texture": "#0"}, - "down": {"uv": [0, 0, 0.875, 1.4375], "texture": "#0"} + "from": [ + 13.10938, + 5.51563, + 9.5625 + ], + "to": [ + 13.98438, + 19.96875, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.875, + 14.45313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.4375, + 14.45313 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0.875, + 14.45313 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.4375, + 14.45313 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 0.875, + 1.4375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0.875, + 1.4375 + ], + "texture": "#0" + } } }, { - "from": [2.85938, 18.82813, 9.5625], - "to": [13.125, 19.96875, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [10.34375, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 10.26563, 1.14063], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4375, 1.14063], "texture": "#0"}, - "south": {"uv": [0, 0, 10.26563, 1.14063], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4375, 1.14063], "texture": "#0"}, - "up": {"uv": [0, 0, 10.26563, 1.4375], "texture": "#0"}, - "down": {"uv": [0, 0, 10.26563, 1.4375], "texture": "#0"} + "from": [ + 2.85938, + 18.82813, + 9.5625 + ], + "to": [ + 13.125, + 19.96875, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.34375, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.26563, + 1.14063 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.4375, + 1.14063 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 10.26563, + 1.14063 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.4375, + 1.14063 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 10.26563, + 1.4375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 10.26563, + 1.4375 + ], + "texture": "#0" + } } }, { - "from": [2.875, 7.96875, 9.5625], - "to": [6.5625, 8.96875, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 3.6875, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4375, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 3.6875, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4375, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 3.6875, 1.4375], "texture": "#0"}, - "down": {"uv": [0, 0, 3.6875, 1.4375], "texture": "#0"} + "from": [ + 2.875, + 7.96875, + 9.5625 + ], + "to": [ + 6.5625, + 8.96875, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.6875, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.4375, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 3.6875, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.4375, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 3.6875, + 1.4375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 3.6875, + 1.4375 + ], + "texture": "#0" + } } }, { - "from": [2.875, 18.42188, 8.5625], - "to": [13.10938, 19.0625, 10.09375], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 23.45313, 13]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#0"}, - "east": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#0"}, - "south": {"uv": [0, 0, 10.23438, 0.64063], "texture": "#0"}, - "west": {"uv": [0, 0, 1.53125, 0.64063], "texture": "#0"}, - "up": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#0"}, - "down": {"uv": [0, 0, 10.23438, 1.53125], "texture": "#0"} + "from": [ + 2.875, + 18.42188, + 8.5625 + ], + "to": [ + 13.10938, + 19.0625, + 10.09375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 23.45313, + 13 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 10.23438, + 0.64063 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.53125, + 0.64063 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 1.53125 + ], + "texture": "#0" + } } }, { - "from": [6.5625, 5.51563, 9.5625], - "to": [13.10938, 8.96875, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 13.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 6.54688, 3.45313], "texture": "#0"}, - "east": {"uv": [0, 0, 1.4375, 3.45313], "texture": "#0"}, - "south": {"uv": [0, 0, 6.54688, 3.45313], "texture": "#0"}, - "west": {"uv": [0, 0, 1.4375, 3.45313], "texture": "#0"}, - "up": {"uv": [0, 0, 6.54688, 1.4375], "texture": "#0"}, - "down": {"uv": [0, 0, 6.54688, 1.4375], "texture": "#0"} + "from": [ + 6.5625, + 5.51563, + 9.5625 + ], + "to": [ + 13.10938, + 8.96875, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 13.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 6.54688, + 3.45313 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.4375, + 3.45313 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 6.54688, + 3.45313 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.4375, + 3.45313 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 0, + 6.54688, + 1.4375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 6.54688, + 1.4375 + ], + "texture": "#0" + } } }, { - "from": [3.21875, 2.23438, 10.71875], - "to": [10.84375, 4.07813, 10.90625], - "rotation": {"angle": 0, "axis": "y", "origin": [0.45313, 10, 15.20313]}, - "faces": { - "north": {"uv": [0, 0, 7.625, 1.84375], "texture": "#1"}, - "east": {"uv": [0, 0, 0.1875, 1.84375], "texture": "#1"}, - "south": {"uv": [0, 11, 15.625, 15.844], "texture": "#1"}, - "west": {"uv": [0, 0, 0.1875, 1.84375], "texture": "#1"}, - "up": {"uv": [0, 0, 7.625, 0.1875], "texture": "#1"}, - "down": {"uv": [0, 0, 7.625, 0.1875], "texture": "#1"} + "from": [ + 3.21875, + 2.23438, + 10.71875 + ], + "to": [ + 10.84375, + 4.07813, + 10.90625 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0.45313, + 10, + 15.20313 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 7.625, + 1.84375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.1875, + 1.84375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 11, + 15.625, + 15.844 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.1875, + 1.84375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 7.625, + 0.1875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 7.625, + 0.1875 + ], + "texture": "#1" + } } }, { - "from": [12.07813, 2.1875, 10.875], - "to": [13.29688, 3.23438, 10.9375], - "rotation": {"angle": 0, "axis": "y", "origin": [9.28125, 9.15625, 13.9375]}, - "faces": { - "north": {"uv": [0, 0, 1.21875, 1.04688], "texture": "#1"}, - "east": {"uv": [0, 0, 0.0625, 1.04688], "texture": "#1"}, - "south": {"uv": [0, 1, 15.625, 14.844], "texture": "#1"}, - "west": {"uv": [0, 0, 0.0625, 1.04688], "texture": "#1"}, - "up": {"uv": [0, 0, 1.21875, 0.0625], "texture": "#1"}, - "down": {"uv": [0, 0, 1.21875, 0.0625], "texture": "#1"} + "from": [ + 12.07813, + 2.1875, + 10.875 + ], + "to": [ + 13.29688, + 3.23438, + 10.9375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.28125, + 9.15625, + 13.9375 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.21875, + 1.04688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.0625, + 1.04688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 1, + 15.625, + 14.844 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.0625, + 1.04688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 1.21875, + 0.0625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 1.21875, + 0.0625 + ], + "texture": "#1" + } } }, { - "from": [2.875, 5.51563, 10.79688], - "to": [6.5625, 7.96875, 10.92188], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5625, 12.45313, 14]}, - "faces": { - "north": {"uv": [0, 0, 3.6875, 2.45313], "texture": "#1"}, - "east": {"uv": [0, 0, 0.125, 2.45313], "texture": "#1"}, - "south": {"uv": [0, 0, 11.625, 7.844], "texture": "#1"}, - "west": {"uv": [0, 0, 0.125, 2.45313], "texture": "#1"}, - "up": {"uv": [0, 0, 3.6875, 0.125], "texture": "#1"}, - "down": {"uv": [0, 0, 3.6875, 0.125], "texture": "#1"} + "from": [ + 2.875, + 5.51563, + 10.79688 + ], + "to": [ + 6.5625, + 7.96875, + 10.92188 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 11.5625, + 12.45313, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.6875, + 2.45313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.125, + 2.45313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 11.625, + 7.844 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.125, + 2.45313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 3.6875, + 0.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 3.6875, + 0.125 + ], + "texture": "#1" + } } }, { - "from": [2.89063, 8.82813, 10.73438], - "to": [13.125, 18.96875, 10.875], - "rotation": {"angle": 0, "axis": "y", "origin": [10.34375, 12.45313, 13.875]}, - "faces": { - "north": {"uv": [0, 0, 10.23438, 10.14063], "texture": "#1"}, - "east": {"uv": [0, 0, 0.14063, 10.14063], "texture": "#1"}, - "south": {"uv": [0, 0, 15.625, 15.844], "texture": "#1"}, - "west": {"uv": [0, 0, 0.14063, 10.14063], "texture": "#1"}, - "up": {"uv": [0, 0, 10.23438, 0.14063], "texture": "#1"}, - "down": {"uv": [0, 0, 10.23438, 0.14063], "texture": "#1"} + "from": [ + 2.89063, + 8.82813, + 10.73438 + ], + "to": [ + 13.125, + 18.96875, + 10.875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.34375, + 12.45313, + 13.875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 10.23438, + 10.14063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.14063, + 10.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 15.625, + 15.844 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.14063, + 10.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 10.23438, + 0.14063 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 10.23438, + 0.14063 + ], + "texture": "#1" + } } }, { "name": "hexadecagon", - "from": [3.96731, 10.125, 9.81875], - "to": [4.12644, 12, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.96731, + 10.125, + 9.81875 + ], + "to": [ + 4.12644, + 12, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.96731, 10.125, 9.81875], - "to": [4.12644, 12, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.96731, + 10.125, + 9.81875 + ], + "to": [ + 4.12644, + 12, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.96731, 10.125, 9.81875], - "to": [4.12644, 12, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.96731, + 10.125, + 9.81875 + ], + "to": [ + 4.12644, + 12, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.96731, 10.125, 9.81875], - "to": [4.12644, 12, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.96731, + 10.125, + 9.81875 + ], + "to": [ + 4.12644, + 12, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.96731, 10.125, 9.81875], - "to": [4.12644, 12, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.96731, + 10.125, + 9.81875 + ], + "to": [ + 4.12644, + 12, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.64687, 10.125, 10.13919], - "to": [4.44688, 12, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.64687, + 10.125, + 10.13919 + ], + "to": [ + 4.44688, + 12, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.64687, 10.125, 10.13919], - "to": [4.44688, 12, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.64687, + 10.125, + 10.13919 + ], + "to": [ + 4.44688, + 12, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [3.64687, 10.125, 10.13919], - "to": [4.44688, 12, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#4"} + "from": [ + 3.64687, + 10.125, + 10.13919 + ], + "to": [ + 4.44688, + 12, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#4" + } } }, { "name": "hexadecagon", - "from": [11.96731, 10.125, 9.81875], - "to": [12.12644, 11.35938, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.96731, + 10.125, + 9.81875 + ], + "to": [ + 12.12644, + 11.35938, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.96731, 10.125, 9.81875], - "to": [12.12644, 11.35938, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.96731, + 10.125, + 9.81875 + ], + "to": [ + 12.12644, + 11.35938, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.96731, 10.125, 9.81875], - "to": [12.12644, 11.35938, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.96731, + 10.125, + 9.81875 + ], + "to": [ + 12.12644, + 11.35938, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.96731, 10.125, 9.81875], - "to": [12.12644, 11.35938, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.96731, + 10.125, + 9.81875 + ], + "to": [ + 12.12644, + 11.35938, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.96731, 10.125, 9.81875], - "to": [12.12644, 11.35938, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.96731, + 10.125, + 9.81875 + ], + "to": [ + 12.12644, + 11.35938, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.64688, 10.125, 10.13919], - "to": [12.44688, 11.35938, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.64688, + 10.125, + 10.13919 + ], + "to": [ + 12.44688, + 11.35938, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.64688, 10.125, 10.13919], - "to": [12.44688, 11.35938, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.64688, + 10.125, + 10.13919 + ], + "to": [ + 12.44688, + 11.35938, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [11.64688, 10.125, 10.13919], - "to": [12.44688, 11.35938, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#8"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#8"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#8"} + "from": [ + 11.64688, + 10.125, + 10.13919 + ], + "to": [ + 12.44688, + 11.35938, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#8" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#8" + } } }, { "name": "hexadecagon", - "from": [5.96731, 10.125, 9.81875], - "to": [6.12644, 11.40625, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.96731, + 10.125, + 9.81875 + ], + "to": [ + 6.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.96731, 10.125, 9.81875], - "to": [6.12644, 11.40625, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.96731, + 10.125, + 9.81875 + ], + "to": [ + 6.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.96731, 10.125, 9.81875], - "to": [6.12644, 11.40625, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.96731, + 10.125, + 9.81875 + ], + "to": [ + 6.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.96731, 10.125, 9.81875], - "to": [6.12644, 11.40625, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.96731, + 10.125, + 9.81875 + ], + "to": [ + 6.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.96731, 10.125, 9.81875], - "to": [6.12644, 11.40625, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.96731, + 10.125, + 9.81875 + ], + "to": [ + 6.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.64688, 10.125, 10.13919], - "to": [6.44688, 11.40625, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.64688, + 10.125, + 10.13919 + ], + "to": [ + 6.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.64688, 10.125, 10.13919], - "to": [6.44688, 11.40625, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.64688, + 10.125, + 10.13919 + ], + "to": [ + 6.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.64688, 10.125, 10.13919], - "to": [6.44688, 11.40625, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 5.64688, + 10.125, + 10.13919 + ], + "to": [ + 6.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 10.125, 9.81875], - "to": [8.12644, 11.40625, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 10.125, + 9.81875 + ], + "to": [ + 8.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 10.125, 9.81875], - "to": [8.12644, 11.40625, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 10.125, + 9.81875 + ], + "to": [ + 8.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 10.125, 9.81875], - "to": [8.12644, 11.40625, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 10.125, + 9.81875 + ], + "to": [ + 8.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 10.125, 9.81875], - "to": [8.12644, 11.40625, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 10.125, + 9.81875 + ], + "to": [ + 8.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 10.125, 9.81875], - "to": [8.12644, 11.40625, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 10.125, + 9.81875 + ], + "to": [ + 8.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 10.125, 10.13919], - "to": [8.44688, 11.40625, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 10.125, + 10.13919 + ], + "to": [ + 8.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 10.125, 10.13919], - "to": [8.44688, 11.40625, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 10.125, + 10.13919 + ], + "to": [ + 8.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 10.125, 10.13919], - "to": [8.44688, 11.40625, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 10.125, + 10.13919 + ], + "to": [ + 8.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [9.96731, 10.125, 9.81875], - "to": [10.12644, 11.40625, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.96731, + 10.125, + 9.81875 + ], + "to": [ + 10.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.96731, 10.125, 9.81875], - "to": [10.12644, 11.40625, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.96731, + 10.125, + 9.81875 + ], + "to": [ + 10.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.96731, 10.125, 9.81875], - "to": [10.12644, 11.40625, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.96731, + 10.125, + 9.81875 + ], + "to": [ + 10.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.96731, 10.125, 9.81875], - "to": [10.12644, 11.40625, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.96731, + 10.125, + 9.81875 + ], + "to": [ + 10.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.96731, 10.125, 9.81875], - "to": [10.12644, 11.40625, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.96731, + 10.125, + 9.81875 + ], + "to": [ + 10.12644, + 11.40625, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.64688, 10.125, 10.13919], - "to": [10.44688, 11.40625, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.64688, + 10.125, + 10.13919 + ], + "to": [ + 10.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.64688, 10.125, 10.13919], - "to": [10.44688, 11.40625, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.64688, + 10.125, + 10.13919 + ], + "to": [ + 10.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.64688, 10.125, 10.13919], - "to": [10.44688, 11.40625, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 10.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#7"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#7"} + "from": [ + 9.64688, + 10.125, + 10.13919 + ], + "to": [ + 10.44688, + 11.40625, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 10.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#7" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#7" + } } }, { "name": "hexadecagon", - "from": [9.96731, 13.125, 9.81875], - "to": [10.12644, 15, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.96731, + 13.125, + 9.81875 + ], + "to": [ + 10.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.96731, 13.125, 9.81875], - "to": [10.12644, 15, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.96731, + 13.125, + 9.81875 + ], + "to": [ + 10.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.96731, 13.125, 9.81875], - "to": [10.12644, 15, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.96731, + 13.125, + 9.81875 + ], + "to": [ + 10.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.96731, 13.125, 9.81875], - "to": [10.12644, 15, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.96731, + 13.125, + 9.81875 + ], + "to": [ + 10.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.96731, 13.125, 9.81875], - "to": [10.12644, 15, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.96731, + 13.125, + 9.81875 + ], + "to": [ + 10.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.64688, 13.125, 10.13919], - "to": [10.44688, 15, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.64688, + 13.125, + 10.13919 + ], + "to": [ + 10.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.64688, 13.125, 10.13919], - "to": [10.44688, 15, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.64688, + 13.125, + 10.13919 + ], + "to": [ + 10.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [9.64688, 13.125, 10.13919], - "to": [10.44688, 15, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 9.64688, + 13.125, + 10.13919 + ], + "to": [ + 10.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [7.96731, 13.125, 9.81875], - "to": [8.12644, 15, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 13.125, + 9.81875 + ], + "to": [ + 8.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 13.125, 9.81875], - "to": [8.12644, 15, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 13.125, + 9.81875 + ], + "to": [ + 8.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 13.125, 9.81875], - "to": [8.12644, 15, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 13.125, + 9.81875 + ], + "to": [ + 8.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 13.125, 9.81875], - "to": [8.12644, 15, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 13.125, + 9.81875 + ], + "to": [ + 8.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.96731, 13.125, 9.81875], - "to": [8.12644, 15, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.96731, + 13.125, + 9.81875 + ], + "to": [ + 8.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 13.125, 10.13919], - "to": [8.44688, 15, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 13.125, + 10.13919 + ], + "to": [ + 8.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 13.125, 10.13919], - "to": [8.44688, 15, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 13.125, + 10.13919 + ], + "to": [ + 8.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [7.64688, 13.125, 10.13919], - "to": [8.44688, 15, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "south": {"uv": [6, 0, 7, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#5"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#5"} + "from": [ + 7.64688, + 13.125, + 10.13919 + ], + "to": [ + 8.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "south": { + "uv": [ + 6, + 0, + 7, + 16 + ], + "texture": "#5" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#5" + } } }, { "name": "hexadecagon", - "from": [5.96731, 13.125, 9.81875], - "to": [6.12644, 15, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.96731, + 13.125, + 9.81875 + ], + "to": [ + 6.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.96731, 13.125, 9.81875], - "to": [6.12644, 15, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.96731, + 13.125, + 9.81875 + ], + "to": [ + 6.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.96731, 13.125, 9.81875], - "to": [6.12644, 15, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.96731, + 13.125, + 9.81875 + ], + "to": [ + 6.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.96731, 13.125, 9.81875], - "to": [6.12644, 15, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.96731, + 13.125, + 9.81875 + ], + "to": [ + 6.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.96731, 13.125, 9.81875], - "to": [6.12644, 15, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.96731, + 13.125, + 9.81875 + ], + "to": [ + 6.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.64688, 13.125, 10.13919], - "to": [6.44688, 15, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.64688, + 13.125, + 10.13919 + ], + "to": [ + 6.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.64688, 13.125, 10.13919], - "to": [6.44688, 15, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.64688, + 13.125, + 10.13919 + ], + "to": [ + 6.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [5.64688, 13.125, 10.13919], - "to": [6.44688, 15, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 5.64688, + 13.125, + 10.13919 + ], + "to": [ + 6.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.96731, 13.125, 9.81875], - "to": [4.12644, 15, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.96731, + 13.125, + 9.81875 + ], + "to": [ + 4.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.96731, 13.125, 9.81875], - "to": [4.12644, 15, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.96731, + 13.125, + 9.81875 + ], + "to": [ + 4.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.96731, 13.125, 9.81875], - "to": [4.12644, 15, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.96731, + 13.125, + 9.81875 + ], + "to": [ + 4.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.96731, 13.125, 9.81875], - "to": [4.12644, 15, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.96731, + 13.125, + 9.81875 + ], + "to": [ + 4.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.96731, 13.125, 9.81875], - "to": [4.12644, 15, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.96731, + 13.125, + 9.81875 + ], + "to": [ + 4.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.64687, 13.125, 10.13919], - "to": [4.44688, 15, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.64687, + 13.125, + 10.13919 + ], + "to": [ + 4.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.64687, 13.125, 10.13919], - "to": [4.44688, 15, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.64687, + 13.125, + 10.13919 + ], + "to": [ + 4.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [3.64687, 13.125, 10.13919], - "to": [4.44688, 15, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#9"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#9"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#9"} + "from": [ + 3.64687, + 13.125, + 10.13919 + ], + "to": [ + 4.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#9" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#9" + } } }, { "name": "hexadecagon", - "from": [11.96731, 13.125, 9.81875], - "to": [12.12644, 15, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.96731, + 13.125, + 9.81875 + ], + "to": [ + 12.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.96731, 13.125, 9.81875], - "to": [12.12644, 15, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.96731, + 13.125, + 9.81875 + ], + "to": [ + 12.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.96731, 13.125, 9.81875], - "to": [12.12644, 15, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.96731, + 13.125, + 9.81875 + ], + "to": [ + 12.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.96731, 13.125, 9.81875], - "to": [12.12644, 15, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.96731, + 13.125, + 9.81875 + ], + "to": [ + 12.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.96731, 13.125, 9.81875], - "to": [12.12644, 15, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.96731, + 13.125, + 9.81875 + ], + "to": [ + 12.12644, + 15, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.64688, 13.125, 10.13919], - "to": [12.44688, 15, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.64688, + 13.125, + 10.13919 + ], + "to": [ + 12.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.64688, 13.125, 10.13919], - "to": [12.44688, 15, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.64688, + 13.125, + 10.13919 + ], + "to": [ + 12.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [11.64688, 13.125, 10.13919], - "to": [12.44688, 15, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 13.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#6"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#6"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#6"} + "from": [ + 11.64688, + 13.125, + 10.13919 + ], + "to": [ + 12.44688, + 15, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 13.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2, + 0, + 3, + 16 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#6" + } } }, { "name": "hexadecagon", - "from": [3.96731, 16.125, 9.81875], - "to": [4.12644, 17.32813, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.96731, + 16.125, + 9.81875 + ], + "to": [ + 4.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.96731, 16.125, 9.81875], - "to": [4.12644, 17.32813, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.96731, + 16.125, + 9.81875 + ], + "to": [ + 4.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.96731, 16.125, 9.81875], - "to": [4.12644, 17.32813, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.96731, + 16.125, + 9.81875 + ], + "to": [ + 4.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.96731, 16.125, 9.81875], - "to": [4.12644, 17.32813, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.96731, + 16.125, + 9.81875 + ], + "to": [ + 4.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.96731, 16.125, 9.81875], - "to": [4.12644, 17.32813, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.96731, + 16.125, + 9.81875 + ], + "to": [ + 4.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.64687, 16.125, 10.13919], - "to": [4.44688, 17.32813, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.64687, + 16.125, + 10.13919 + ], + "to": [ + 4.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.64687, 16.125, 10.13919], - "to": [4.44688, 17.32813, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.64687, + 16.125, + 10.13919 + ], + "to": [ + 4.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [3.64687, 16.125, 10.13919], - "to": [4.44688, 17.32813, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [4.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 3.64687, + 16.125, + 10.13919 + ], + "to": [ + 4.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 4.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.96731, 16.125, 9.81875], - "to": [6.12644, 17.32813, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.96731, + 16.125, + 9.81875 + ], + "to": [ + 6.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.96731, 16.125, 9.81875], - "to": [6.12644, 17.32813, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.96731, + 16.125, + 9.81875 + ], + "to": [ + 6.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.96731, 16.125, 9.81875], - "to": [6.12644, 17.32813, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.96731, + 16.125, + 9.81875 + ], + "to": [ + 6.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.96731, 16.125, 9.81875], - "to": [6.12644, 17.32813, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.96731, + 16.125, + 9.81875 + ], + "to": [ + 6.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.96731, 16.125, 9.81875], - "to": [6.12644, 17.32813, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.96731, + 16.125, + 9.81875 + ], + "to": [ + 6.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.64688, 16.125, 10.13919], - "to": [6.44688, 17.32813, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.64688, + 16.125, + 10.13919 + ], + "to": [ + 6.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.64688, 16.125, 10.13919], - "to": [6.44688, 17.32813, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.64688, + 16.125, + 10.13919 + ], + "to": [ + 6.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [5.64688, 16.125, 10.13919], - "to": [6.44688, 17.32813, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "south": {"uv": [11, 0, 12, 16], "texture": "#10"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#10"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#10"} + "from": [ + 5.64688, + 16.125, + 10.13919 + ], + "to": [ + 6.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 6.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "south": { + "uv": [ + 11, + 0, + 12, + 16 + ], + "texture": "#10" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#10" + } } }, { "name": "hexadecagon", - "from": [7.96731, 16.125, 9.81875], - "to": [8.12644, 17.32813, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.96731, + 16.125, + 9.81875 + ], + "to": [ + 8.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.96731, 16.125, 9.81875], - "to": [8.12644, 17.32813, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.96731, + 16.125, + 9.81875 + ], + "to": [ + 8.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.96731, 16.125, 9.81875], - "to": [8.12644, 17.32813, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.96731, + 16.125, + 9.81875 + ], + "to": [ + 8.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.96731, 16.125, 9.81875], - "to": [8.12644, 17.32813, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.96731, + 16.125, + 9.81875 + ], + "to": [ + 8.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.96731, 16.125, 9.81875], - "to": [8.12644, 17.32813, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.96731, + 16.125, + 9.81875 + ], + "to": [ + 8.12644, + 17.32813, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.64688, 16.125, 10.13919], - "to": [8.44688, 17.32813, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.64688, + 16.125, + 10.13919 + ], + "to": [ + 8.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.64688, 16.125, 10.13919], - "to": [8.44688, 17.32813, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.64688, + 16.125, + 10.13919 + ], + "to": [ + 8.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [7.64688, 16.125, 10.13919], - "to": [8.44688, 17.32813, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#11"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#11"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#11"} + "from": [ + 7.64688, + 16.125, + 10.13919 + ], + "to": [ + 8.44688, + 17.32813, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "south": { + "uv": [ + 4, + 0, + 5, + 16 + ], + "texture": "#11" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#11" + } } }, { "name": "hexadecagon", - "from": [9.96731, 16.125, 9.81875], - "to": [10.12644, 18, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.96731, + 16.125, + 9.81875 + ], + "to": [ + 10.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.96731, 16.125, 9.81875], - "to": [10.12644, 18, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.96731, + 16.125, + 9.81875 + ], + "to": [ + 10.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.96731, 16.125, 9.81875], - "to": [10.12644, 18, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.96731, + 16.125, + 9.81875 + ], + "to": [ + 10.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.96731, 16.125, 9.81875], - "to": [10.12644, 18, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.96731, + 16.125, + 9.81875 + ], + "to": [ + 10.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.96731, 16.125, 9.81875], - "to": [10.12644, 18, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.96731, + 16.125, + 9.81875 + ], + "to": [ + 10.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.64688, 16.125, 10.13919], - "to": [10.44688, 18, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.64688, + 16.125, + 10.13919 + ], + "to": [ + 10.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.64688, 16.125, 10.13919], - "to": [10.44688, 18, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.64688, + 16.125, + 10.13919 + ], + "to": [ + 10.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [9.64688, 16.125, 10.13919], - "to": [10.44688, 18, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [10.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 9.64688, + 16.125, + 10.13919 + ], + "to": [ + 10.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 10.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.96731, 16.125, 9.81875], - "to": [12.12644, 18, 10.61875], - "rotation": {"angle": -45, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.96731, + 16.125, + 9.81875 + ], + "to": [ + 12.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.96731, 16.125, 9.81875], - "to": [12.12644, 18, 10.61875], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.96731, + 16.125, + 9.81875 + ], + "to": [ + 12.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.96731, 16.125, 9.81875], - "to": [12.12644, 18, 10.61875], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.96731, + 16.125, + 9.81875 + ], + "to": [ + 12.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.96731, 16.125, 9.81875], - "to": [12.12644, 18, 10.61875], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.96731, + 16.125, + 9.81875 + ], + "to": [ + 12.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.96731, 16.125, 9.81875], - "to": [12.12644, 18, 10.61875], - "rotation": {"angle": 45, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.96731, + 16.125, + 9.81875 + ], + "to": [ + 12.12644, + 18, + 10.61875 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.64688, 16.125, 10.13919], - "to": [12.44688, 18, 10.29831], - "rotation": {"angle": -22.5, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.64688, + 16.125, + 10.13919 + ], + "to": [ + 12.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.64688, 16.125, 10.13919], - "to": [12.44688, 18, 10.29831], - "rotation": {"angle": 0, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.64688, + 16.125, + 10.13919 + ], + "to": [ + 12.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { "name": "hexadecagon", - "from": [11.64688, 16.125, 10.13919], - "to": [12.44688, 18, 10.29831], - "rotation": {"angle": 22.5, "axis": "y", "origin": [12.04688, 16.625, 10.21875]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "east": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#12"}, - "west": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "up": {"uv": [0, 0, 1, 1], "texture": "#12"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#12"} + "from": [ + 11.64688, + 16.125, + 10.13919 + ], + "to": [ + 12.44688, + 18, + 10.29831 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 12.04688, + 16.625, + 10.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "south": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#12" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 1 + ], + "texture": "#12" + } } }, { - "from": [7.54688, 8.53125, 7.21875], - "to": [8.98438, 10.21875, 8.21875], - "rotation": {"angle": -22.5, "axis": "x", "origin": [15.85938, 16.53125, 15.21875]}, - "faces": { - "north": {"uv": [0, 0, 1.4375, 1.6875], "texture": "#14"}, - "east": {"uv": [0, 0, 1, 1.6875], "texture": "#14"}, - "south": {"uv": [0.25, 0.25, 7.5, 9.438], "texture": "#14"}, - "west": {"uv": [0, 0, 1, 1.6875], "texture": "#14"}, - "up": {"uv": [0, 0, 1.4375, 1], "texture": "#14"}, - "down": {"uv": [0, 0, 1.4375, 1], "texture": "#14"} + "from": [ + 7.54688, + 8.53125, + 7.21875 + ], + "to": [ + 8.98438, + 10.21875, + 8.21875 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 15.85938, + 16.53125, + 15.21875 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.4375, + 1.6875 + ], + "texture": "#14" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 1.6875 + ], + "texture": "#14" + }, + "south": { + "uv": [ + 0.25, + 0.25, + 7.5, + 9.438 + ], + "texture": "#14" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 1.6875 + ], + "texture": "#14" + }, + "up": { + "uv": [ + 0, + 0, + 1.4375, + 1 + ], + "texture": "#14" + }, + "down": { + "uv": [ + 0, + 0, + 1.4375, + 1 + ], + "texture": "#14" + } } }, { - "from": [10.26563, 7.14063, 10.17188], - "to": [12.35938, 8.03125, 11.17188], - "rotation": {"angle": 0, "axis": "x", "origin": [18.92188, 14.34375, 18.17188]}, - "faces": { - "north": {"uv": [0, 0, 2.09375, 0.89063], "texture": "#13"}, - "east": {"uv": [0, 0, 1, 0.89063], "texture": "#13"}, - "south": {"uv": [0, 0, 16, 8], "texture": "#13"}, - "west": {"uv": [0, 0, 1, 0.89063], "texture": "#13"}, - "up": {"uv": [0, 0, 2.09375, 1], "texture": "#13"}, - "down": {"uv": [0, 0, 2.09375, 1], "texture": "#13"} + "from": [ + 10.26563, + 7.14063, + 10.17188 + ], + "to": [ + 12.35938, + 8.03125, + 11.17188 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 18.92188, + 14.34375, + 18.17188 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 2.09375, + 0.89063 + ], + "texture": "#13" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 0.89063 + ], + "texture": "#13" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 8 + ], + "texture": "#13" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 0.89063 + ], + "texture": "#13" + }, + "up": { + "uv": [ + 0, + 0, + 2.09375, + 1 + ], + "texture": "#13" + }, + "down": { + "uv": [ + 0, + 0, + 2.09375, + 1 + ], + "texture": "#13" + } } }, { - "from": [9.10938, 6.17188, 10.17188], - "to": [10.20313, 6.85938, 11.17188], - "rotation": {"angle": 0, "axis": "y", "origin": [17.76563, 13.28125, 18.17188]}, - "faces": { - "north": {"uv": [0, 0, 2.09375, 0.89063], "texture": "#14"}, - "east": {"uv": [0, 0, 1, 0.89063], "texture": "#14"}, - "south": {"uv": [0, 9.125, 7.75, 13.625], "texture": "#14"}, - "west": {"uv": [0, 0, 1, 0.89063], "texture": "#14"}, - "up": {"uv": [0, 0, 2.09375, 1], "texture": "#14"}, - "down": {"uv": [0, 0, 2.09375, 1], "texture": "#14"} + "from": [ + 9.10938, + 6.17188, + 10.17188 + ], + "to": [ + 10.20313, + 6.85938, + 11.17188 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 17.76563, + 13.28125, + 18.17188 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 2.09375, + 0.89063 + ], + "texture": "#14" + }, + "east": { + "uv": [ + 0, + 0, + 1, + 0.89063 + ], + "texture": "#14" + }, + "south": { + "uv": [ + 0, + 9.125, + 7.75, + 13.625 + ], + "texture": "#14" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 0.89063 + ], + "texture": "#14" + }, + "up": { + "uv": [ + 0, + 0, + 2.09375, + 1 + ], + "texture": "#14" + }, + "down": { + "uv": [ + 0, + 0, + 2.09375, + 1 + ], + "texture": "#14" + } } } ], "display": { "head": { - "rotation": [0, -180, 0], - "translation": [0, -12.75, 0], - "scale": [4, 4, 4] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + 0, + -12.75, + 0 + ], + "scale": [ + 4, + 4, + 4 + ] } }, - "groups": [0, + "groups": [ + 0, { "name": "buy", - "origin": [11.5625, 14.45313, 14], + "origin": [ + 11.5625, + 14.45313, + 14 + ], "children": [ { "name": "1", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "children": [ { "name": "button_1", - "origin": [27.1875, 14.51563, 14.10938], - "children": [1, 2, 3, 4, 5] - }, 6, 7] + "origin": [ + 27.1875, + 14.51563, + 14.10938 + ], + "children": [ + 1, + 2, + 3, + 4, + 5 + ] + }, + 6, + 7 + ] }, { "name": "2", - "origin": [11.5625, 20.45313, 14], + "origin": [ + 11.5625, + 20.45313, + 14 + ], "children": [ { "name": "button_2", - "origin": [27.1875, 14.51563, 14.10938], - "children": [8, 9, 10, 11, 12] - }, 13, 14] + "origin": [ + 27.1875, + 14.51563, + 14.10938 + ], + "children": [ + 8, + 9, + 10, + 11, + 12 + ] + }, + 13, + 14 + ] }, { "name": "3", - "origin": [11.5625, 17.45313, 14], + "origin": [ + 11.5625, + 17.45313, + 14 + ], "children": [ { "name": "button_3", - "origin": [27.1875, 14.51563, 14.10938], - "children": [15, 16, 17, 18, 19] - }, 20, 21] + "origin": [ + 27.1875, + 14.51563, + 14.10938 + ], + "children": [ + 15, + 16, + 17, + 18, + 19 + ] + }, + 20, + 21 + ] } ] }, { "name": "hontai", - "origin": [10, 8, 14], - "children": [22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36] + "origin": [ + 10, + 8, + 14 + ], + "children": [ + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ] }, { "name": "glass", - "origin": [11.5625, 12.45313, 14], - "children": [37, 38, 39, 40] + "origin": [ + 11.5625, + 12.45313, + 14 + ], + "children": [ + 37, + 38, + 39, + 40 + ] }, { "name": "mihon", - "origin": [8, 8, 8], + "origin": [ + 8, + 8, + 8 + ], "children": [ { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [41, 42, 43, 44, 45, 46, 47, 48] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [49, 50, 51, 52, 53, 54, 55, 56] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [57, 58, 59, 60, 61, 62, 63, 64] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [65, 66, 67, 68, 69, 70, 71, 72] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [73, 74, 75, 76, 77, 78, 79, 80] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [81, 82, 83, 84, 85, 86, 87, 88] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [89, 90, 91, 92, 93, 94, 95, 96] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [97, 98, 99, 100, 101, 102, 103, 104] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [105, 106, 107, 108, 109, 110, 111, 112] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [113, 114, 115, 116, 117, 118, 119, 120] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [121, 122, 123, 124, 125, 126, 127, 128] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [129, 130, 131, 132, 133, 134, 135, 136] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [137, 138, 139, 140, 141, 142, 143, 144] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [145, 146, 147, 148, 149, 150, 151, 152] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152 + ] }, { "name": "hexadecagon", - "origin": [8, 8, 8], - "children": [153, 154, 155, 156, 157, 158, 159, 160] + "origin": [ + 8, + 8, + 8 + ], + "children": [ + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160 + ] } ] - }, 161, 162, 163] + }, + 161, + 162, + 163 + ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/tools/backpacks/backpack.json b/pack/assets/minecraft/models/tools/backpacks/backpack.json index 6fec1828..095eaa11 100644 --- a/pack/assets/minecraft/models/tools/backpacks/backpack.json +++ b/pack/assets/minecraft/models/tools/backpacks/backpack.json @@ -1,462 +1,2653 @@ { "credit": "Made with Blockbench", "textures": { - "0": "tools/backpack_1", - "1": "tools/backpack_2", - "particle": "tools/backpack_1" + "0": "item/tools/backpack_1", + "1": "item/tools/backpack_2", + "particle": "item/tools/backpack_1" }, "elements": [ { - "from": [3, 0.1, 5.4], - "to": [8.5, 5.3, 6.33333], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.8, 0]}, + "from": [ + 3, + 0.1, + 5.4 + ], + "to": [ + 8.5, + 5.3, + 6.33333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0.8, + 0 + ] + }, "faces": { - "north": {"uv": [2, 15, 3, 16], "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [3.33333, 0.1, 5.2], - "to": [8.16667, 3.8, 6.13333], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.8, 0]}, + "from": [ + 3.33333, + 0.1, + 5.2 + ], + "to": [ + 8.16667, + 3.8, + 6.13333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0.8, + 0 + ] + }, "faces": { - "north": {"uv": [0, 15.75, 0.25, 16], "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"} + "north": { + "uv": [ + 0, + 15.75, + 0.25, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [9.98959, -0.71041, 5.5], - "to": [10.98959, -0.04374, 6.33333], - "rotation": {"angle": 45, "axis": "z", "origin": [2.48959, -0.71041, 0]}, + "from": [ + 9.98959, + -0.71041, + 5.5 + ], + "to": [ + 10.98959, + -0.04374, + 6.33333 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 2.48959, + -0.71041, + 0 + ] + }, "faces": { - "north": {"uv": [2, 15, 2.83333, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 16, 4], "rotation": 180, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 2.83333, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 0, + 16, + 4 + ], + "rotation": 180, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [3, 2, 6.5], - "to": [8.5, 7.2, 7.33333], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2.7, 1]}, + "from": [ + 3, + 2, + 6.5 + ], + "to": [ + 8.5, + 7.2, + 7.33333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 2.7, + 1 + ] + }, "faces": { - "north": {"uv": [2, 15, 3, 16], "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.25, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.25, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [0.51041, 1.18959, 6.5], - "to": [1.51041, 1.85626, 7.33333], - "rotation": {"angle": -45, "axis": "z", "origin": [9.01041, 1.18959, 1]}, + "from": [ + 0.51041, + 1.18959, + 6.5 + ], + "to": [ + 1.51041, + 1.85626, + 7.33333 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.01041, + 1.18959, + 1 + ] + }, "faces": { - "north": {"uv": [2, 15, 2.83333, 16], "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "west": {"uv": [12, 0, 16, 5.25], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 2.83333, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [6.72421, 6.81843, 6.5], - "to": [7.72421, 8.31843, 7.33333], - "rotation": {"angle": 22.5, "axis": "z", "origin": [6.72421, -0.18157, 1]}, + "from": [ + 6.72421, + 6.81843, + 6.5 + ], + "to": [ + 7.72421, + 8.31843, + 7.33333 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 6.72421, + -0.18157, + 1 + ] + }, "faces": { - "north": {"uv": [2.75, 15, 4.25, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2.75, + 15, + 4.25, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [4.39821, 6.65409, 6.5], - "to": [7.10472, 8.05409, 7.33333], - "rotation": {"angle": 0, "axis": "y", "origin": [7.10472, -0.44591, 1]}, + "from": [ + 4.39821, + 6.65409, + 6.5 + ], + "to": [ + 7.10472, + 8.05409, + 7.33333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.10472, + -0.44591, + 1 + ] + }, "faces": { - "north": {"uv": [2, 15, 3.4, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 14.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 14.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [3.77579, 6.81843, 6.5], - "to": [4.77579, 8.31843, 7.33333], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.77579, -0.18157, 1]}, + "from": [ + 3.77579, + 6.81843, + 6.5 + ], + "to": [ + 4.77579, + 8.31843, + 7.33333 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 4.77579, + -0.18157, + 1 + ] + }, "faces": { - "north": {"uv": [2, 15, 3.5, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [9.98959, 1.18959, 6.5], - "to": [10.98959, 1.85626, 7.33333], - "rotation": {"angle": 45, "axis": "z", "origin": [2.48959, 1.18959, 1]}, + "from": [ + 9.98959, + 1.18959, + 6.5 + ], + "to": [ + 10.98959, + 1.85626, + 7.33333 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 2.48959, + 1.18959, + 1 + ] + }, "faces": { - "north": {"uv": [2, 15, 2.83333, 16], "texture": "#1"}, - "east": {"uv": [12, 0, 16, 4], "rotation": 180, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 2.83333, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 0, + 16, + 4 + ], + "rotation": 180, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [9.98959, 1.18959, 7.33333], - "to": [10.98959, 1.85626, 8.16667], - "rotation": {"angle": 45, "axis": "z", "origin": [2.48959, 1.18959, 1.83333]}, + "from": [ + 9.98959, + 1.18959, + 7.33333 + ], + "to": [ + 10.98959, + 1.85626, + 8.16667 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 2.48959, + 1.18959, + 1.83333 + ] + }, "faces": { - "north": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"}, - "east": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"}, - "south": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"}, - "west": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"}, - "up": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4.75, 0.5, 8.75, 4.5], "rotation": 180, "texture": "#1"} + "north": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + }, + "down": { + "uv": [ + 4.75, + 0.5, + 8.75, + 4.5 + ], + "rotation": 180, + "texture": "#1" + } } }, { - "from": [3.77579, 6.81843, 7.33333], - "to": [4.77579, 8.31843, 8.16667], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.77579, -0.18157, 1.83333]}, + "from": [ + 3.77579, + 6.81843, + 7.33333 + ], + "to": [ + 4.77579, + 8.31843, + 8.16667 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 4.77579, + -0.18157, + 1.83333 + ] + }, "faces": { - "north": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [4.39821, 6.65409, 7.33333], - "to": [7.10472, 8.05409, 8.16667], - "rotation": {"angle": 0, "axis": "y", "origin": [7.10472, -0.44591, 1.83333]}, + "from": [ + 4.39821, + 6.65409, + 7.33333 + ], + "to": [ + 7.10472, + 8.05409, + 8.16667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.10472, + -0.44591, + 1.83333 + ] + }, "faces": { - "north": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 15, 1.4, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 15, + 1.4, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [6.72421, 6.81843, 7.33333], - "to": [7.72421, 8.31843, 8.16667], - "rotation": {"angle": 22.5, "axis": "z", "origin": [6.72421, -0.18157, 1.83333]}, + "from": [ + 6.72421, + 6.81843, + 7.33333 + ], + "to": [ + 7.72421, + 8.31843, + 8.16667 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 6.72421, + -0.18157, + 1.83333 + ] + }, "faces": { - "north": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 15, 1.5, 16], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 15, + 1.5, + 16 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [0.51041, 1.18959, 7.33333], - "to": [1.51041, 1.85626, 8.16667], - "rotation": {"angle": -45, "axis": "z", "origin": [9.01041, 1.18959, 1.83333]}, + "from": [ + 0.51041, + 1.18959, + 7.33333 + ], + "to": [ + 1.51041, + 1.85626, + 8.16667 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.01041, + 1.18959, + 1.83333 + ] + }, "faces": { - "north": {"uv": [0, 15, 0.83333, 16], "texture": "#1"}, - "east": {"uv": [0, 15, 0.83333, 16], "texture": "#1"}, - "south": {"uv": [0, 15, 0.83333, 16], "texture": "#1"}, - "west": {"uv": [0, 15, 0.83333, 16], "texture": "#1"}, - "up": {"uv": [0, 15, 0.83333, 16], "texture": "#1"}, - "down": {"uv": [0, 15, 0.83333, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 15, + 0.83333, + 16 + ], + "texture": "#1" + } } }, { - "from": [3, 2, 7.33333], - "to": [8.5, 7.2, 8.16667], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2.7, 1.83333]}, + "from": [ + 3, + 2, + 7.33333 + ], + "to": [ + 8.5, + 7.2, + 8.16667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 2.7, + 1.83333 + ] + }, "faces": { - "north": {"uv": [0, 15, 1, 16], "texture": "#1"}, - "east": {"uv": [0, 15, 1, 16], "texture": "#1"}, - "south": {"uv": [0, 15, 1, 16], "texture": "#1"}, - "west": {"uv": [0, 15, 1, 16], "texture": "#1"}, - "up": {"uv": [0, 15, 1, 16], "texture": "#1"}, - "down": {"uv": [0, 15, 1, 16], "texture": "#1"} + "north": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 15, + 1, + 16 + ], + "texture": "#1" + } } }, { - "from": [3.77579, 4.91843, 5.5], - "to": [4.77579, 6.41843, 6.33333], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.77579, -2.08157, 0]}, + "from": [ + 3.77579, + 4.91843, + 5.5 + ], + "to": [ + 4.77579, + 6.41843, + 6.33333 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 4.77579, + -2.08157, + 0 + ] + }, "faces": { - "north": {"uv": [2, 15, 3.5, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3.5, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [6.72421, 4.91843, 5.5], - "to": [7.72421, 6.41843, 6.33333], - "rotation": {"angle": 22.5, "axis": "z", "origin": [6.72421, -2.08157, 0]}, + "from": [ + 6.72421, + 4.91843, + 5.5 + ], + "to": [ + 7.72421, + 6.41843, + 6.33333 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 6.72421, + -2.08157, + 0 + ] + }, "faces": { - "north": {"uv": [2.75, 15, 4.25, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 5.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.75, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2.75, + 15, + 4.25, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.75, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [0.51041, -0.71041, 5.5], - "to": [1.51041, -0.04374, 6.33333], - "rotation": {"angle": -45, "axis": "z", "origin": [9.01041, -0.71041, 0]}, + "from": [ + 0.51041, + -0.71041, + 5.5 + ], + "to": [ + 1.51041, + -0.04374, + 6.33333 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.01041, + -0.71041, + 0 + ] + }, "faces": { - "north": {"uv": [2, 15, 2.83333, 16], "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "west": {"uv": [12, 0, 16, 5.25], "texture": "#1"}, - "up": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.08333, 15.5], "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 2.83333, + 16 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 0, + 16, + 5.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.08333, + 15.5 + ], + "texture": "#1" + } } }, { - "from": [4.39821, 4.75409, 5.5], - "to": [7.10472, 6.15409, 6.33333], - "rotation": {"angle": 0, "axis": "y", "origin": [7.10472, -2.34591, 0]}, + "from": [ + 4.39821, + 4.75409, + 5.5 + ], + "to": [ + 7.10472, + 6.15409, + 6.33333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.10472, + -2.34591, + 0 + ] + }, "faces": { - "north": {"uv": [2, 15, 3.4, 16], "rotation": 270, "texture": "#1"}, - "east": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "south": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "west": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"}, - "up": {"uv": [12, 0, 16, 14.5], "rotation": 90, "texture": "#1"}, - "down": {"uv": [7.25, 14.5, 8.65, 15.5], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 2, + 15, + 3.4, + 16 + ], + "rotation": 270, + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0, + 16, + 14.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.25, + 14.5, + 8.65, + 15.5 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [5.29899, 8.66997, 7.23594], - "to": [6.20472, 8.90331, 7.43333], - "rotation": {"angle": 0, "axis": "y", "origin": [7.20472, -0.39669, 0.7]}, + "from": [ + 5.29899, + 8.66997, + 7.23594 + ], + "to": [ + 6.20472, + 8.90331, + 7.43333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.20472, + -0.39669, + 0.7 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.23333, 0.90573], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 0.23333, 0.1974], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 0.23333, 0.90573], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 0, 0.23333, 0.1974], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 0.1974, 0.90573], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.1974, 0.90573], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 0.23333, + 0.90573 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0.23333, + 0.90573 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.1974, + 0.90573 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0.1974, + 0.90573 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [-0.92955, 10.04633, 7.23594], - "to": [-0.52382, 10.27966, 7.43333], - "rotation": {"angle": -45, "axis": "z", "origin": [0.97618, 0.97966, 0.7]}, + "from": [ + -0.92955, + 10.04633, + 7.23594 + ], + "to": [ + -0.52382, + 10.27966, + 7.43333 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 0.97618, + 0.97966, + 0.7 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.23333, 0.40573], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 0.23333, 0.1974], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 0.23333, 0.40573], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 0, 0.23333, 0.1974], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 0.1974, 0.40573], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 0.1974, 0.40573], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 0.23333, + 0.40573 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0.23333, + 0.40573 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.1974, + 0.40573 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0.1974, + 0.40573 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [6.25828, 8.01068, 7.23594], - "to": [6.49161, 8.61641, 7.43333], - "rotation": {"angle": 0, "axis": "y", "origin": [-2.80839, 6.71068, 0.7]}, + "from": [ + 6.25828, + 8.01068, + 7.23594 + ], + "to": [ + 6.49161, + 8.61641, + 7.43333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + -2.80839, + 6.71068, + 0.7 + ] + }, "faces": { - "north": {"uv": [0, 0, 0.23333, 0.60573], "texture": "#1"}, - "east": {"uv": [0, 0, 0.1974, 0.60573], "texture": "#1"}, - "south": {"uv": [0, 0, 0.23333, 0.60573], "texture": "#1"}, - "west": {"uv": [0, 0, 0.1974, 0.60573], "texture": "#1"}, - "up": {"uv": [0, 0, 0.23333, 0.1974], "texture": "#1"}, - "down": {"uv": [0, 0, 0.23333, 0.1974], "texture": "#1"} + "north": { + "uv": [ + 0, + 0, + 0.23333, + 0.60573 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.1974, + 0.60573 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0.23333, + 0.60573 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.1974, + 0.60573 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0.23333, + 0.1974 + ], + "texture": "#1" + } } }, { - "from": [5.01209, 8.01068, 7.23594], - "to": [5.24543, 8.61641, 7.43333], - "rotation": {"angle": 0, "axis": "y", "origin": [14.31209, 6.71068, 0.7]}, + "from": [ + 5.01209, + 8.01068, + 7.23594 + ], + "to": [ + 5.24543, + 8.61641, + 7.43333 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.31209, + 6.71068, + 0.7 + ] + }, "faces": { - "north": {"uv": [0.23333, 0, 0.46667, 0.60573], "texture": "#1"}, - "east": {"uv": [0.1974, 0, 0.39479, 0.60573], "texture": "#1"}, - "south": {"uv": [0.23333, 0, 0.46667, 0.60573], "texture": "#1"}, - "west": {"uv": [0.1974, 0, 0.39479, 0.60573], "texture": "#1"}, - "up": {"uv": [0.23333, 0, 0.46667, 0.1974], "texture": "#1"}, - "down": {"uv": [0.23333, 0, 0.46667, 0.1974], "texture": "#1"} + "north": { + "uv": [ + 0.23333, + 0, + 0.46667, + 0.60573 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.1974, + 0, + 0.39479, + 0.60573 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.23333, + 0, + 0.46667, + 0.60573 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.1974, + 0, + 0.39479, + 0.60573 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.23333, + 0, + 0.46667, + 0.1974 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.23333, + 0, + 0.46667, + 0.1974 + ], + "texture": "#1" + } } }, { - "from": [12.02753, 10.04633, 7.23594], - "to": [12.43326, 10.27966, 7.43333], - "rotation": {"angle": 45, "axis": "z", "origin": [10.52753, 0.97966, 0.7]}, + "from": [ + 12.02753, + 10.04633, + 7.23594 + ], + "to": [ + 12.43326, + 10.27966, + 7.43333 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 10.52753, + 0.97966, + 0.7 + ] + }, "faces": { - "north": {"uv": [0, 0.40573, 0.23333, 0.81146], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0.1974, 0.23333, 0.39479], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0.40573, 0.23333, 0.81146], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 0.1974, 0.23333, 0.39479], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0.40573, 0.1974, 0.81146], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0.40573, 0.1974, 0.81146], "rotation": 270, "texture": "#1"} + "north": { + "uv": [ + 0, + 0.40573, + 0.23333, + 0.81146 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0.1974, + 0.23333, + 0.39479 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0.40573, + 0.23333, + 0.81146 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0.1974, + 0.23333, + 0.39479 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0.40573, + 0.1974, + 0.81146 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0.40573, + 0.1974, + 0.81146 + ], + "rotation": 270, + "texture": "#1" + } } }, { - "from": [2.72898, 0.14392, 5.93989], - "to": [8.77098, 6.43392, 8.39709], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.34502, 2.08792, 0.10989]}, + "from": [ + 2.72898, + 0.14392, + 5.93989 + ], + "to": [ + 8.77098, + 6.43392, + 8.39709 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + -0.34502, + 2.08792, + 0.10989 + ] + }, "faces": { - "north": {"uv": [3.5, 3.75, 9.2, 10.25], "texture": "#1"}, - "east": {"uv": [0, 0, 5.7, 6.5], "texture": "#1"}, - "south": {"uv": [3.25, 4, 8.95, 10.5], "texture": "#1"}, - "west": {"uv": [0, 0, 5.7, 6.5], "texture": "#1"}, - "up": {"uv": [0, 0, 5.7, 6.5], "texture": "#1"}, - "down": {"uv": [0, 0, 5.7, 6.5], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 3.75, + 9.2, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 5.7, + 6.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 4, + 8.95, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 5.7, + 6.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 5.7, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 5.7, + 6.5 + ], + "texture": "#1" + } } }, { - "from": [2.52898, 0.14392, 6.35916], - "to": [8.97098, 2.93392, 8.18303], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.34502, 2.08792, 0.10989]}, + "from": [ + 2.52898, + 0.14392, + 6.35916 + ], + "to": [ + 8.97098, + 2.93392, + 8.18303 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + -0.34502, + 2.08792, + 0.10989 + ] + }, "faces": { - "north": {"uv": [0, 0, 7.7, 7.5], "texture": "#0"}, - "east": {"uv": [0, 0, 4.00365, 7.5], "texture": "#0"}, - "south": {"uv": [0, 0, 7.7, 7.5], "texture": "#0"}, - "west": {"uv": [0, 0, 4.00365, 7.5], "texture": "#0"}, - "up": {"uv": [12, 15.49635, 12.45, 16], "texture": "#0"}, - "down": {"uv": [0, 0, 7.7, 3.00365], "texture": "#0"} + "north": { + "uv": [ + 0, + 0, + 7.7, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4.00365, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 7.7, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 4.00365, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 15.49635, + 12.45, + 16 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 7.7, + 3.00365 + ], + "texture": "#0" + } } }, { - "from": [10.34995, 0.06289, 5.93989], - "to": [11.40995, 0.76955, 8.39709], - "rotation": {"angle": 45, "axis": "z", "origin": [2.39995, 0.06289, 0.10989]}, + "from": [ + 10.34995, + 0.06289, + 5.93989 + ], + "to": [ + 11.40995, + 0.76955, + 8.39709 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 2.39995, + 0.06289, + 0.10989 + ] + }, "faces": { - "north": {"uv": [3.5, 3.75, 4.5, 4.41667], "texture": "#1"}, - "east": {"uv": [5.75, 4.25, 6.75, 4.91667], "texture": "#1"}, - "south": {"uv": [3.25, 4, 4.25, 4.66667], "texture": "#1"}, - "west": {"uv": [0, 0, 1, 0.66667], "texture": "#1"}, - "up": {"uv": [0, 0, 1, 0.66667], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 0.66667], "texture": "#1"} + "north": { + "uv": [ + 3.5, + 3.75, + 4.5, + 4.41667 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 4.25, + 6.75, + 4.91667 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 4, + 4.25, + 4.66667 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 0.66667 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 1, + 0.66667 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 1, + 0.66667 + ], + "texture": "#1" + } } }, { - "from": [3.76332, 6.02945, 5.93989], - "to": [4.82332, 7.61945, 8.39709], - "rotation": {"angle": -22.5, "axis": "z", "origin": [4.82332, -1.39055, 0.10989]}, + "from": [ + 3.76332, + 6.02945, + 5.93989 + ], + "to": [ + 4.82332, + 7.61945, + 8.39709 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 4.82332, + -1.39055, + 0.10989 + ] + }, "faces": { - "north": {"uv": [3.5, 3.75, 5, 4.75], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 1.5, 1], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 4, 4.75, 5], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 0, 1.5, 1], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 0, 1.5, 1], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 1.5, 1], "rotation": 90, "texture": "#1"} + "north": { + "uv": [ + 3.5, + 3.75, + 5, + 4.75 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 1.5, + 1 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 4, + 4.75, + 5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1.5, + 1 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 1.5, + 1 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 1.5, + 1 + ], + "rotation": 90, + "texture": "#1" + } } }, { - "from": [4.21191, 5.85525, 5.93989], - "to": [7.29198, 7.33925, 8.39709], - "rotation": {"angle": 0, "axis": "y", "origin": [7.29198, -1.67075, 0.10989]}, + "from": [ + 4.21191, + 5.85525, + 5.93989 + ], + "to": [ + 7.29198, + 7.33925, + 8.39709 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.29198, + -1.67075, + 0.10989 + ] + }, "faces": { - "north": {"uv": [3.5, 3.75, 4.9, 6.65573], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 1.4, 2.90573], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 4, 4.65, 6.90573], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 0, 1.4, 2.90573], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 0, 1.4, 2.90573], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 1.4, 2.90573], "rotation": 90, "texture": "#1"} + "north": { + "uv": [ + 3.5, + 3.75, + 4.9, + 6.65573 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 1.4, + 2.90573 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 4, + 4.65, + 6.90573 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1.4, + 2.90573 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 0, + 1.4, + 2.90573 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 1.4, + 2.90573 + ], + "rotation": 90, + "texture": "#1" + } } }, { - "from": [0.09001, 0.06289, 5.93989], - "to": [1.15001, 0.76955, 8.39709], - "rotation": {"angle": -45, "axis": "z", "origin": [9.10001, 0.06289, 0.10989]}, + "from": [ + 0.09001, + 0.06289, + 5.93989 + ], + "to": [ + 1.15001, + 0.76955, + 8.39709 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.10001, + 0.06289, + 0.10989 + ] + }, "faces": { - "north": {"uv": [4.5, 3.75, 5.5, 4.41667], "texture": "#1"}, - "east": {"uv": [1, 0, 2, 0.66667], "texture": "#1"}, - "south": {"uv": [4.25, 4, 5.25, 4.66667], "texture": "#1"}, - "west": {"uv": [1, 0, 2, 0.66667], "texture": "#1"}, - "up": {"uv": [1, 0, 2, 0.66667], "texture": "#1"}, - "down": {"uv": [1, 0, 2, 0.66667], "texture": "#1"} + "north": { + "uv": [ + 4.5, + 3.75, + 5.5, + 4.41667 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 0, + 2, + 0.66667 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 4, + 5.25, + 4.66667 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 0, + 2, + 0.66667 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 0, + 2, + 0.66667 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 0, + 2, + 0.66667 + ], + "texture": "#1" + } } }, { - "from": [6.67665, 6.02945, 5.93989], - "to": [7.73665, 7.61945, 8.39709], - "rotation": {"angle": 22.5, "axis": "z", "origin": [6.67665, -1.39055, 0.10989]}, + "from": [ + 6.67665, + 6.02945, + 5.93989 + ], + "to": [ + 7.73665, + 7.61945, + 8.39709 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 6.67665, + -1.39055, + 0.10989 + ] + }, "faces": { - "north": {"uv": [3.5, 4.75, 5, 5.75], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 1, 1.5, 2], "rotation": 90, "texture": "#1"}, - "south": {"uv": [3.25, 5, 4.75, 6], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 1, 1.5, 2], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 1, 1.5, 2], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 1, 1.5, 2], "rotation": 90, "texture": "#1"} + "north": { + "uv": [ + 3.5, + 4.75, + 5, + 5.75 + ], + "rotation": 90, + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 1, + 1.5, + 2 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 5, + 4.75, + 6 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 1, + 1.5, + 2 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 1, + 1.5, + 2 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 1, + 1.5, + 2 + ], + "rotation": 90, + "texture": "#1" + } } } ], "display": { "thirdperson_righthand": { - "rotation": [-90, 0, -180], - "translation": [-3, -4.75, 12.75] + "rotation": [ + -90, + 0, + -180 + ], + "translation": [ + -3, + -4.75, + 12.75 + ] }, "thirdperson_lefthand": { - "rotation": [-90, 0, -180], - "translation": [0.5, -4.75, 12.75] + "rotation": [ + -90, + 0, + -180 + ], + "translation": [ + 0.5, + -4.75, + 12.75 + ] }, "firstperson_righthand": { - "rotation": [-180, 15.5, -180], - "translation": [-3, 7.5, 1.5] + "rotation": [ + -180, + 15.5, + -180 + ], + "translation": [ + -3, + 7.5, + 1.5 + ] }, "firstperson_lefthand": { - "rotation": [-180, 15.5, -180], - "translation": [1.5, 7.5, 1.5] + "rotation": [ + -180, + 15.5, + -180 + ], + "translation": [ + 1.5, + 7.5, + 1.5 + ] }, "ground": { - "translation": [3.25, 8.5, 1] + "translation": [ + 3.25, + 8.5, + 1 + ] }, "gui": { - "rotation": [21, 155, 19], - "translation": [0, 4.5, 0], - "scale": [1.2, 1.2, 1.2] + "rotation": [ + 21, + 155, + 19 + ], + "translation": [ + 0, + 4.5, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] }, "head": { - "rotation": [0, -180, 0], - "translation": [-4.25, -6.5, 4.5], - "scale": [2, 2, 2] + "rotation": [ + 0, + -180, + 0 + ], + "translation": [ + -4.25, + -6.5, + 4.5 + ], + "scale": [ + 2, + 2, + 2 + ] }, "fixed": { - "translation": [4.25, 8.25, 0], - "scale": [2, 2, 2] + "translation": [ + 4.25, + 8.25, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] } }, "groups": [ { "name": "group", - "origin": [7.10472, -1.34591, 0], + "origin": [ + 7.10472, + -1.34591, + 0 + ], "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18] + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] }, { "name": "group", - "origin": [7.10472, -1.34591, 0], + "origin": [ + 7.10472, + -1.34591, + 0 + ], "color": 0, - "children": [19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] + "children": [ + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30 + ] } ] } \ No newline at end of file diff --git a/pack/assets/minecraft/models/tools/bundle.json b/pack/assets/minecraft/models/tools/bundle.json index 587f7266..473249ec 100644 --- a/pack/assets/minecraft/models/tools/bundle.json +++ b/pack/assets/minecraft/models/tools/bundle.json @@ -1,7 +1,7 @@ -{ - "__name": "アイテムバンドル", - "parent": "item/generated", - "textures": { - "layer0": "tools/bundle" - } -} +{ + "__name": "アイテムバンドル", + "parent": "item/generated", + "textures": { + "layer0": "item/tools/bundle" + } +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/tools/redstone_pickaxe.json b/pack/assets/minecraft/models/tools/redstone_pickaxe.json index fedbb384..1ceeb716 100644 --- a/pack/assets/minecraft/models/tools/redstone_pickaxe.json +++ b/pack/assets/minecraft/models/tools/redstone_pickaxe.json @@ -1,7 +1,7 @@ -{ - "__name": "レッドストーンピッケル", - "parent": "item/handheld", - "textures": { - "layer0": "tools/redstone_pickaxe" - } -} +{ + "__name": "レッドストーンピッケル", + "parent": "item/handheld", + "textures": { + "layer0": "item/tools/redstone_pickaxe" + } +} \ No newline at end of file diff --git a/pack/assets/minecraft/models/tools/redstone_shovel.json b/pack/assets/minecraft/models/tools/redstone_shovel.json index ab482fe2..56ff440b 100644 --- a/pack/assets/minecraft/models/tools/redstone_shovel.json +++ b/pack/assets/minecraft/models/tools/redstone_shovel.json @@ -1,7 +1,7 @@ -{ - "__name": "レッドストーンシャベル", - "parent": "item/handheld", - "textures": { - "layer0": "tools/redstone_shovel" - } -} +{ + "__name": "レッドストーンシャベル", + "parent": "item/handheld", + "textures": { + "layer0": "item/tools/redstone_shovel" + } +} \ No newline at end of file diff --git a/pack/assets/minecraft/textures/balloon/balloon_present.png b/pack/assets/minecraft/textures/item/balloon/balloon_present.png similarity index 100% rename from pack/assets/minecraft/textures/balloon/balloon_present.png rename to pack/assets/minecraft/textures/item/balloon/balloon_present.png diff --git a/pack/assets/minecraft/textures/coins/fscoin_bronze.png b/pack/assets/minecraft/textures/item/coins/fscoin_bronze.png similarity index 100% rename from pack/assets/minecraft/textures/coins/fscoin_bronze.png rename to pack/assets/minecraft/textures/item/coins/fscoin_bronze.png diff --git a/pack/assets/minecraft/textures/coins/fscoin_gold.png b/pack/assets/minecraft/textures/item/coins/fscoin_gold.png similarity index 100% rename from pack/assets/minecraft/textures/coins/fscoin_gold.png rename to pack/assets/minecraft/textures/item/coins/fscoin_gold.png diff --git a/pack/assets/minecraft/textures/coins/fscoin_silver.png b/pack/assets/minecraft/textures/item/coins/fscoin_silver.png similarity index 100% rename from pack/assets/minecraft/textures/coins/fscoin_silver.png rename to pack/assets/minecraft/textures/item/coins/fscoin_silver.png diff --git a/pack/assets/minecraft/textures/coins/ktc.png b/pack/assets/minecraft/textures/item/coins/ktc.png similarity index 100% rename from pack/assets/minecraft/textures/coins/ktc.png rename to pack/assets/minecraft/textures/item/coins/ktc.png diff --git a/pack/assets/minecraft/textures/coins/lbc.png b/pack/assets/minecraft/textures/item/coins/lbc.png similarity index 100% rename from pack/assets/minecraft/textures/coins/lbc.png rename to pack/assets/minecraft/textures/item/coins/lbc.png diff --git a/pack/assets/minecraft/textures/dish/don_surface.png b/pack/assets/minecraft/textures/item/dish/don_surface.png similarity index 100% rename from pack/assets/minecraft/textures/dish/don_surface.png rename to pack/assets/minecraft/textures/item/dish/don_surface.png diff --git a/pack/assets/minecraft/textures/item/fish/antyobi.png b/pack/assets/minecraft/textures/item/fish/antyobi.png new file mode 100644 index 0000000000000000000000000000000000000000..fe106527aed1c2a07b2656432279e43751499602 GIT binary patch literal 2588 zcmV+%3gh*OP)HaS8FMA={1uH%13VJQ1$wrx?AKPZfJ$YsFR`M21nizglw zq-%Jdz?BA}<+!gf7@1R$A?@7b@ue^nrYKio=QY|O%6ZB^;UKJ8wjqwNHx17vBD?dYPd(fVJOGhTr0Jobho zT`)N~rBMOxZEv$Jk3Rb-z0|OWtin;X<=>F_%<>yh3(6^&=Sr#Vr*n-`+djm>&)Rl93n9uk3G}DpPJoRO5iG# z%Akl5LZb^oQREmQ$mF@51!Kh683-)IDM6F(srE=su+nP7Iue)CG?f&K4%KQgS-8>YBX9VcqSaD`v};2Rrl{{EMr zh(=T+jG{7VP_7^|i9L3OEEM|bn5M;AH%^b!L#hxF^1qF|~uMQhU(MV`|i z#H4vaI_lxLu-;ikDT&bnZO+Xh@VtOR=O}5&vJA&_sMTE3JYzUWP)u?C`#y~{T|6h_ zwfo-nU!DK-k^4jxxOTj9uU*HZ%oJr@lt(l*E?efWH-~Et7azhx7Nm znU%#~i1xzG8|_}05X{Z*{t!EMUCJF_{)o-4cm47q2;2Ppo(K5Voge0l_dG%`>Chi^ znVp+vY4H?!mNGNH9gLvfsNuOTqd1|}o}}CDG1Z=;ySh%Z)g(?v_T)yjfL^~(t=^zF z=u@lJ8TJQwL4Z<knC`0Jnl!j+d_%o9%?XYZcP3rDb+*TVVP0SuWbMnf2~~`b2|HZ-5_2glLeZ0~(DsNd`f? z&R{gc_Z=MN;NenpCBhM`6^e<(vkB4hJqQAZnW5M1anogc`Sb7Y5`j}*i|Rigf#*&f z6kE36V7_wO=lQ}{zezXu=$t-9H_4gZxy82GysgEjZ@ze=^X)&qkM_(oPB!Aw3%29t zF&CY;z-Yb0)~N=OG&I{ybe0eaD14Wege-7~OiW8=OuGgVIYd$+JdcJ_xW0!B9ERzT zR++reGy@OMRfOfWs0_*&LZ$INb?)NDo6z{KOH;zLX@;7dq}FupT0=h|3~OZnc2r() z3*5^n518L|qxsC|K1C;XaGP7$v~?Sw`QR-aUQXE5_Ej z#N}_;%kuIHbDL**dhs}OTeh;c)?u>Qz!3pbNTd?zyuf!1YwK&&>rF<3oO-j)T7SS) z;FG4Q)fTzY2x*9vgDx@(DacYyoD{_UAw|-|R|)Z;gVHIrMhhiUJmuj`%y4vRz~hT2 z*)&;W=S+)hUbCCC|2QCoNomjD@=^z!dFs2IURvi&H|M(jx7sB0?H~OR5l-Mw)R~;9 zapC#rv8y?4+u!lsAM@yAM+qkq9ali4%uw_kZja(E|Sq zx7~FoGrP`b<;*(1=d*P>VqtC;U!)XChkch^%L51R6pl&|Iz^TeSZk{h3hC3=0jsgY zdv5u#dHC3q)Md^EJ1=7S+55%J{M$BGu#p3_+hlU8RAOrkhXY)l^6mS*3;l<=}MoXmR=?Z&aJ3e-Y4}M8FvJYCJM2Hck6joNT z8a<*W68tdWz=3ax%XjTI#}@x)`x*1%J$+sXmG`VyV`5689G6bAN>RjC7`s~HN(h5- z!ZH8STcv@e{1qYrQBZ!hH;61{v9V55GC>9 zD}zHPvTF+RE`gq4qFG~b@;UbHyP97g_?l4kP$IKeZoM{zazikqu{lC88m=?ycae-x zj^Pi7zaw@n>^09kb-xhe#cA;QBXHuE2)k}+72kTV%WyCxPh!y8p5?sI8(P0Sj8=}8 zA6ub~i<0tlPP3N}ElO4HA&id^9+{P~DaIstN+PvecD8~lbfk@{QC=|8itBFpxH)?4 zFv)tKOZV;PHwV5xzRHxL7S)+(Gzg*wLJFiwF)~DpGLiP^uAFAn?-OSN>D6hsr)f=w zNR>0a?HwDK{$9011xD=)=*|n`^wH3w&KZw{gyOlw=%hH(@;&g;b*T;qYtCrO& yDk>@}Dk>@}Dk>@}Dk>@}Dk>@}Dk@%8fPVt~N@Fs(=LxR>0000KBK literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/arowana.png b/pack/assets/minecraft/textures/item/fish/arowana.png new file mode 100644 index 0000000000000000000000000000000000000000..8efb31bea30072d84419b45cea8bbeebbd80b357 GIT binary patch literal 2654 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 a+?5aOVjpjDyo>oEL;(DmbJ%)oAM(E>adGwl literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/beta.png b/pack/assets/minecraft/textures/item/fish/beta.png new file mode 100644 index 0000000000000000000000000000000000000000..5903a91302e60782f156abe55169350ad57a11ea GIT binary patch literal 4637 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 TXi$>100000NkvXXu0mjffsz4T literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/burakkubasu.png b/pack/assets/minecraft/textures/item/fish/burakkubasu.png new file mode 100644 index 0000000000000000000000000000000000000000..ffc44cfec806c9d08c6d1457ac0f6880f31acbff GIT binary patch literal 2323 zcmV+u3GDWXP)odvjxiQvEU&%r`jqhP=(H_L{ZA&?t-8g{2;VH)8cP`ZXlcRuz$49a ztObk3+8rvg#j|dIG`T<93hC@_ptYf14-f(zN8!3quUP{Bh77O(zkB_A06co+rAZm* zW`$3jl!9@bvU|3U1!kKe?b#Z8+I55!2n45>#1(v4W@Ml@;xQc7B_3R)Yalthsr@a=WC_s2hb0>|0jBj;v>3n8diJd#Wk1|CtI zvf3Ln->$RJZqjMjrrzH@pK|4LM!oLR8z!`x9&rTC8JFI0Os(c1<#a>)!x(X~OBlL% zo`cqq-hglb#}UlUDwZ$jw0Ai-WWbI+e(z!jwdQJbmn2R#=Px8gqm14#p;7m*Dzo&T zF`agW{vfB>a2XDB!qDO3l>xik0lj|4op&}crs&<3?ht@pKj!qAWu%gP=FZ(1Bd#_4 z?Yi)Fw6^s78rKn%y06Co`^#zUjwHIFB9K)s*ee?T| zkR%zt?`{NJSKzv!Bv-{DXQy6&=DDLRpDTLc?t2c?8@)4mpC0oOjXzjYs}T_kP9+f4DY=& z8^JJliymmSV9u`+r#XS|g0)B~xwtx{JBS&@DMna`3ez4qa63q_u?1DsVMXDnl^eaP zq(n-ASaU#1kWyeR#Bs_~kG(P#H>T`3`tVmdw{(U}t6lzf>MgV}xO0L_-HW(Nu&>== zG#(LD<|k!>utOYO1RxqGgcTnp1#`_djnF}m0XemW2G$wz?wPZA(r4D61E5~3tTj}U zBq?)^3bXZq3zr9ExnUeXJ>;LK-(hd3ji)49YmzKMYsLQC7N~_GLD-q9Zod$ljDYvgen1d-v|4q( z^x)@N?e}pVMYp?(wT4DLq*5(}kH<05C}KR0w@n{+-Eo+p(m;x0=;fqn5wFchhfHTk zC5h7np#;iNq)Cn|CF3lk5mtz!F;WOx^`DQcU=Rh(MpyZ|L#thHo%geC#9B4~E|wEYeTItz4rUBVz_Jc{sxfGo?XH|q4e zy={%{4pT;PMl?<)_kQrqi&wq3bsb;~WT_=d3}Gm*xf!x2jvvEw742Ou27_gCtx?jU z)#{+NW@V*Ioa!Rrh$6_vN#VE@lD!L6<`)hDiZ~lGNX|3LF0gcI31c-4Ig3Cr=T|3l zUn)hOWjKz5)*8EItd3$yKg!6nG0VNdR^i)jqc@u%1UL!~9}1{c1lFdU9Zk`$d6ja{yyGwzfDXU?7FTVH?iT06pt5%(Pqs8;2588B7&H?RC0 zZRNy-jYWsVaUH_2hExjWg@srlKCC@c&$Y?Xxh|#y33--qr5~epG1YQ&nfV1pt?8hY zKuXASO`2s~xby)}9)0<`w#3_Qhi~*C0f0A7{`STXKU{$^24le5>CcX$0i#hLYb>58 z87F$OY4IyLyXJ=|2Qr;f3#;ThCyrxQ`+edxxn2W4`U8>cF~m`dMx#ouBSxbXtv90Z zBVYao0Kb0q7e&fkTiiVP#Iuw8Rz#TK6xM*}dHBAA>$nU?LoD`2#NX00!5vR0E-w9* zEXx^=mZ?^&?7RId+kM~e&@OwcHGC|m!T@K^K93YLq}dX#SLiyh_a~o>{{r2b{9cH&J^26t002ovPDHLkV1nX4X+Hn} literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/buru-giru.png b/pack/assets/minecraft/textures/item/fish/buru-giru.png new file mode 100644 index 0000000000000000000000000000000000000000..a67aad6b52d4be522f2753d6116f1efd7fcba77e GIT binary patch literal 3503 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/chouchouuo.png b/pack/assets/minecraft/textures/item/fish/chouchouuo.png new file mode 100644 index 0000000000000000000000000000000000000000..94b69d525ba48edb7cc49f5bbeefeabd1d7b9d22 GIT binary patch literal 4005 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 LNkvXXu0mjf+0Vx0 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/chouzame.png b/pack/assets/minecraft/textures/item/fish/chouzame.png new file mode 100644 index 0000000000000000000000000000000000000000..926d20b7206c8c6b6fdd0d8e2c7cf66e873a56c3 GIT binary patch literal 1415 zcmV;21$g?2P) zg^!o7dQm-~31Vm{N`NMap`j=NnjnUTGT{UugrwrBe%Bit&iGMH`h|__aNV`jqTd!^s3>(m}w zZv|9?+qiZqN}i7?8IcqNODTGTL?#BFfI$c05h5ls;fOhbNf?4SMaDHy>J5-}Ot`iQ zL)S6MF=b^Cs=*H#3Z9Q$dk+op{p6|#p=%VHVWO+h1H+)$wP*j3D=Ok#JZ~l(OGj5J zg6rBi@a=ast7Sw1s)=t{eLsqY0(R~@F3WqxlDm=c%3MMz3|#{yR9J*<8VKVAj%`7h zkD>^SR~l|Ph{Z-g$~nR)mh%Wwv}PPkvUOx#6TH%@5XBrZsBsAchQGeF3UisouBr|)~Oay@sO{1_Z3n@>At?mH=$Xn466;S2vSGRyM3eW376o;7RdAR)2 zOE4vugCE6+f=DJ6Mxk8gN;hLtl)(4ps)?=O*f!!MM!6h-QVn4oNDmq{pb>&@&y!73 z*K}yQDL-3QrHU?e7Nl>np!*IS9I{zfKhK$Y8zz}H9)D=TuotHRr@%;e_TuyS z@#mi~IX4+C83&tRd20l{>*MLQkK(Vt&*AE;F2lPYd^%vxEjQf&T{nib(?9-dyiYv5 z80#NfT2q9&kHK0UcmAANF!VE++TK=k+-MPY@0~vzr++(LGqIIR<_^2E)%PP^w*J#i zu)1xQEx89NOR#m*no-}=hqL?grd2q2^wglgVHCdyMjA6FKZg2mkFltL{&vUG-jF`j ze}yMFN`NMap`j=NnjnUTq6BDy7#fNapb27VC`y1Ph(V!HC=?2XLZMJ76ypkje*oqI V4>tV+l}Z2r002ovPDHLkV1fdohu{DJ literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/demekin.png b/pack/assets/minecraft/textures/item/fish/demekin.png new file mode 100644 index 0000000000000000000000000000000000000000..fed21bc799ecf774b7a7d65d6320528b151254e4 GIT binary patch literal 2863 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 N002ovPDHLkV1nsrnVtXu literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/demenigisu.png b/pack/assets/minecraft/textures/item/fish/demenigisu.png new file mode 100644 index 0000000000000000000000000000000000000000..43929a19a3c40a3053ca8bdada7e4273022ec7ea GIT binary patch literal 2902 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/dojou.png b/pack/assets/minecraft/textures/item/fish/dojou.png new file mode 100644 index 0000000000000000000000000000000000000000..cc7274c35c5a487fabfb4cebe74c8738e66abd23 GIT binary patch literal 1895 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/ei.png b/pack/assets/minecraft/textures/item/fish/ei.png new file mode 100644 index 0000000000000000000000000000000000000000..62572f839cc82135cb1b77ded614b3ab487f3167 GIT binary patch literal 3251 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/endlicheri.png b/pack/assets/minecraft/textures/item/fish/endlicheri.png new file mode 100644 index 0000000000000000000000000000000000000000..2377472433657cbd03c619d02d03ddba189dc7c0 GIT binary patch literal 1868 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 V+trE;Ur_)6002ovPDHLkV1m|y*`ELa literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/funa.png b/pack/assets/minecraft/textures/item/fish/funa.png new file mode 100644 index 0000000000000000000000000000000000000000..1eb9a453e252e8173da8aa07bff3299c4093d35c GIT binary patch literal 2555 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 Rgt`C#002ovPDHLkV1hoN-n#$* literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/gar.png b/pack/assets/minecraft/textures/item/fish/gar.png new file mode 100644 index 0000000000000000000000000000000000000000..011c74b32b595384b7793c3d150b204a02e12ade GIT binary patch literal 1528 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 FV1h1_ZfpPm literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/guppy.png b/pack/assets/minecraft/textures/item/fish/guppy.png new file mode 100644 index 0000000000000000000000000000000000000000..8d964e8f76e64e111cf8de29c9698882cf25ae6b GIT binary patch literal 2717 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 PE)ENG4DzL!NBn;P=}4S0 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/hirame.png b/pack/assets/minecraft/textures/item/fish/hirame.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4c120622c7b7de440955e3999cfe45314b3a21 GIT binary patch literal 4791 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 Ri>d$s002ovPDHLkV1h!SC+h$J literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/iero-pa-ti.png b/pack/assets/minecraft/textures/item/fish/iero-pa-ti.png new file mode 100644 index 0000000000000000000000000000000000000000..2a068044a0da39bfec01910b96959d342c35eaac GIT binary patch literal 2400 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 T!h8|w00000NkvXXu0mjfArksG literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/kajiki.png b/pack/assets/minecraft/textures/item/fish/kajiki.png new file mode 100644 index 0000000000000000000000000000000000000000..dc701c3aa6171c220f00741fd4534e7e616e721d GIT binary patch literal 3006 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 JPDHLkV1f~6BIN)8 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/kingsalmon.png b/pack/assets/minecraft/textures/item/fish/kingsalmon.png new file mode 100644 index 0000000000000000000000000000000000000000..32b93fe84804ba70c0592d9716685a84482b50e1 GIT binary patch literal 2068 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

kts;&h=@#Q? z7&@*%8zagwh+49|Pj1FIM2ho+#>P$C-!>HIQ+DK!WXnw2^&{i6SoXfpi%wryvj*db z>$rQzjZgz;x`_i1yr~S98OC3^kJ2>9OnnBkjTEPzaq%%@Yr_reF+G!^mAAywSt~=N z3vAtX$2%6ZO`C4{A!eF6rl)40Yy&s_X!BdnJoMWQ#0fg7FmOh|Ww0ppE~K?@hgFHa zd-q87Y2`VbB|P)kCOR^eu}BbjUvqx4{xP71|seQq!oA4{IFxN*YU6;J&{%LZGiK9btsh~ zOgMKm8%-2N1DfXwTgAtgUn&OO``kS=Ha3C;c(U4N2 zL&D?^kBr5x`!>+>&s^kg-ST6k%{pFtZNEHUShZ+0W(AnCu&^Xuii8C>D^{z}_xmwv zsGsoE?oITOGcR)w{pLm*9U2he@}h~d@Iwt-lanJS#5k@<%yTaxO`6OYfYwe*X(g%f z)GeT~!O~_EhsP&TpPq(NGuZd9pVR1~G4b5AIhO?eEFf0XhzAEnL{5HbmLbbh-)G zQi%IIC-E<)a4zf)=I;kWTdVwTfWuhE}Tu-m%mc z)Fgf(%9g>x%5Rq(g~5+|3Ke97G)CxbhQeoZVH4z}P1c$)G`vuN=cbBt2?N{FyA7Jm za=vBrhsE7&SYS8-hhvKryHN%Id~!Q&-hL03E*bJU0#TUOAn}W^T{4o;To_~^9Ubo$ zm^Uk2sa8?ztBFvoI9raNl`iZl(B792+Uu&hEfPA0lJAxGxVcq9DH{3^GGR_p^LAWq z51@G~D%IXwi7H`-7IuSt87U;SKE!DQe}3pDI^*nbx#yp`ms+ht5O!hhBuz|Mj&OFO zwy-j+Fgq1S@8G!{gH(oTPX{acF42Y60TFd}12kXJ_C(uR82GS|Nl{89`G$+;p7p3l zJ?c@{Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`Zv!{13zgm=zNw9kl=e N002ovPDHLkV1lN>T*CkW literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/koi.png b/pack/assets/minecraft/textures/item/fish/koi.png new file mode 100644 index 0000000000000000000000000000000000000000..6a039e8b0e0499ef7fbfdd3577a6701638d08e83 GIT binary patch literal 1796 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/manbou.png b/pack/assets/minecraft/textures/item/fish/manbou.png new file mode 100644 index 0000000000000000000000000000000000000000..de001da147027b3f6f62fc196852e82ee87bb583 GIT binary patch literal 2865 zcmV-13(oY3P)f=}MikUW?e1y=$INkCA74ioKFL@GH6Otf^f`5VfATgVmb+5BC-Cb3u&PBfORQ2@q&h&K8OmAAv2Q_`E zI+ySF-M`a=cj;aF|0Xesd++@_3XTw>*?^dJFG5UYZAfyLdz(8E^I!eO_i_8@?xv;u zv<%Hk3kyI)@44oKa|I#V_ZjzrNcy)Ny}LF+k9k_+LTkVqZ=FO{Rq)=j8<@u$3kN_W zeFWLVSj(Cq1l&B1e~>yQb9UDmoTu<8la?v zGdgTj{f~#iOQcUBN-220H@`5juo@7n1aX`~%7_d<*uxxXF#!+)GLn!oXo9zXa?ZX7 zS_lBf)n7s(jv`3u;Y<$i=Mn+ywcbG@#z&bKbrF*!5?L!ns#>ttV4kVqWlM#{7M^U} z=~29oV}*9sMw+Ia{P~M)1bF4d3se&bdfnH3O}e?4a(JBKQD(=9)i6o0lqFa`*ufPC zmQm#%x-_uHc1P2dyvC>Tu zXKlz}^03aJ$Sv|gg|lxDV5lk#yMmysSO908IBuHEPE%`u zl+xUI+ZVlsjFLFvLZ#j5V5uA9$dSWHmlCA(eH1|@G4miDhHWkKdXCiE%Yfam-`fat z0}0QSAiZ<&PM|abdFfE)2D;SHgA!H0wO3QJf~r-Hg@w6E|MR&5FthBxwt+OhNhJ-D&yLc`_8~QxDwBOdb32Pgyn7mtHsv&bt8 zr4*{s=olg-cmA61=#TZo=*f){v=Vr0*{Nzn21)j=AmSLV-=}#iYo|Ad9cuwvK&b>P zhYsVKk6ep`S0BO8AAbxFef=H`d!)^7mW>{coP(TdsGN(!rj%tawe)2DgyyeMF|h!j-4_0F&2&W9d@?yW&P2O%U*oqU7K`n{F5 zA)Ll5ZCLA|2YG0o#4S=0L@riSOfsaYe87iq_?VzVg*>tp5)VH8{Dd6Avxioy1;8Nf zb`fh0IFBe&92xdRByrN9EJeEFVG9l8JTnjHX0C5{dR+YFrQ@R2P8~NWghJ))4jH0g zkXr48pCd;}>0Q=IaozRTlV9H(0H_-#q)M>_BEbqT*zRYq?spt<%h9{V(+}P&BQd>Z z2`QnX7)yt`c>YHZBa#uKR)$~y|kb^XabuuDmmlq zlC2f@Kk*!%dhkBpI}8pxNu<& zMNu*kn}H^V9fS-mGwXcl9?wYA03e=x;GRudKxju%j7~en%JOn3bA_nSF9hN^f}rY- z%_ca_NXFnYk=k5J@N=TB=$!AM+wFoAm^%1-MOy8+O8ob!(Zv%0RsGyW=zU4yQiBr7YOn^t zzxeWN+di8|8CQDbm^^}K798~@C-NIdoAsQHOzDQ#%(N*TOl44(C3<;*UQwW|G&e?? zk=}TCTcOM~^7HF(TpbRuwt5E6R(R#aucm}M(7v_BGn2!KPz(6F+!f&+d+eI)VT+$I z_1s->(AGm2C0ym83yr~AjzN*5Qeq=<@*%^d($@?$bbkP+X^ep}RX9JGM>d^A5^8MBX5RfdYAT%ir_m!hO}er+e^7gu_yzkVXQEoEb^oT2ECUmBr-btTr%( zM%B-md80LhNzPCgIjk|<3n2U7cK{lC@#WWc1Yt8x7n7xw9636j7TQ@7ICf4b?buA5 zF{nz7s#l<*-XQk^41Z5`fUa^Vq2`tdF*VMx24SK<*bNDU=%G|269G&9q_U`3@&&4* zfYUaFz^a0&O7vG(xzG~zIP(6p^aN+p0GgOIV0KNIVs3;6K$(~D)^TEEt%u1g=-vR; zpg@(ED2qH?d4WN19oAHA3eC~ktn1F~1jjW2!8B%_W^B@6%NJL3tX^10QAdK(TJ8js z`WyP3_fZsmZjV={;PO`~>0dqZg4hl7M7xRtqae`dy#mo6l<4tgj73Z;&I` z8d__(%7)Nbfnt>ja1)Zf>2r7b_N^oS>y)r&rd{3jt zXwtddBR_a%TPOASqsKgf;N3>SF3F2*7^;z&}8+`393= P00000NkvXXu0mjfPKs+2 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/medaka.png b/pack/assets/minecraft/textures/item/fish/medaka.png new file mode 100644 index 0000000000000000000000000000000000000000..640ded285567662087622d4d004ebe6bab871cbd GIT binary patch literal 2182 zcmV;12zmF3P)ReZLH&*qqY z`Y-^y58k1tF+l;I{libm^8#x?j6uX~ndtrtDS6H~_Qa3z{WbE=48~PRn)}{XT(eI- zKu~BOe}dj@jmnO9W1>1CUqzxC##PQ}z-a|OdH>C)Jg;?fRy%zz8m|qlG_fEGs+-T% zF=#JL`_ z#+w0vq}3&=cQ7X4k_=41XDPosM0Ot491Ti9NTQ4o48{zMj%!_9DoB)&j&u+ch*Hmq zmp{tBrhx#W#1Lq=WS9E#td07y}|LBoq_{ zNC+ST!DB2)WH90p4d4T|7J&q0CD6^PFbcjfq@87oUK?u@(%LS>SX`7KViA!+*B628 z80wmcO~EzM-u!R_=I2f@dwei>*WHJB@Udq$jF=p`oY5tN0);?#2HHKr?05~aeMT<6 zY={E}H4fCH>hZmKBB^q=@VeoQ^Foi<4h$eMRe|bH16pd0O@14@$B5McZ-s1!G)R9Cf zw%9s^g0eF0Nr+iuXBDbr&|SV=H?w^-0KAm|aVTXF#6ks9L^q$Mww2 zuQGRHfyq5%OkFZTR%{g*PaUDs+)Z3iO`}j&@sByi% zVh!u1A{g21*!{si1VD9lZtyfZOBy`NfPSSm}`oyjn3`;CsLoHD`T{xWt`+VQxGupLW3e1qt=K9FGgvv zW_TY4UwnP7NZy37h7XEp!Aozf(Wn|;Ii3$S=L=sxyk!>vXztvHbunTr!RJ^PuPbyw zK$BgN>;jvBiP*jOgRmYM!%R3yt1&{;8g|4fYBrCOMJ4w8igBTzAe6n4hb z^D&K9MBdApYu9L0J*{LFBLP7{b5KtRfwh$xjxVf|7oZx5j8cshXO(L%Ujg8eXU0y7 zA9@aG_h58%oZvI!$|#k__*)KS2BJ~u4@zd&`|jS>006!JXZH`pbk_*&6T^oP&@`z!Ac-;o}h+aVK)t}bV+S*(B;W_@ue5Z`uRpAA3Ly&u?^Jj zModEJA0>=khuSItQwMGznz;bS{`hs)mR^J45trig4$bi^aB+%;FjymG7|}Btu(9Z` ze{}EWo@-W#WQB@-fglxLPHsBu^Su$J8uuBmt?=Zte;tb z@7eYTRur$NE*)D>Yzyj1kHqCn+usjNtz3z*6|(m8s6tYG7e4gx@g(Y6sENaV2K)umqdjAb?+klNlPnyuLMzmdP+lh@h#~G!aJNn*W zO~4vYs8@{{U`*iNl-#|kK2)S+HE0>|` z#-2;@=W=0v^-tfyB{iJ!h)uDz3C6FyigtpET307*qo IM6N<$f(^b literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/minokasago.png b/pack/assets/minecraft/textures/item/fish/minokasago.png new file mode 100644 index 0000000000000000000000000000000000000000..f9ffad3dc6cc40891572cbeeac06f7ceb385ee04 GIT binary patch literal 3613 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/napoleonfish.png b/pack/assets/minecraft/textures/item/fish/napoleonfish.png new file mode 100644 index 0000000000000000000000000000000000000000..7efb9987a8d002e96a3ad7c5101a546cd5a0c202 GIT binary patch literal 3766 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/neontetra.png b/pack/assets/minecraft/textures/item/fish/neontetra.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8f9cce0440b480c9a5c6605a640d1cbae4e0c8 GIT binary patch literal 2494 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/nisikigoi.png b/pack/assets/minecraft/textures/item/fish/nisikigoi.png new file mode 100644 index 0000000000000000000000000000000000000000..def4e84aeb64301257f79e701c3ccbbe2bce760f GIT binary patch literal 2046 zcmV z_GPW*!Ymq(yi?-4ySxAY!oEsZS6A)(y}TW63G?UAmw@Z2nPZe+{wljWTWZ_E zIfrwOuCA`y=iM;mW)f2E0ZW@VT*X>Ry!;6+KeYlAM>HS&kZ|9gk!SnCPkHva^%M$) znn?!^9JuYtTHL7ctBM|s*7Urvog~a*qayi_j??(|TO$sS7cHXyk;TLlIslkH=P|mw zyD1b3)zjm)7$L7yxGQbmFt&IEq$$eFlM7oBLJ&`$M9&w$F!B{qjLqe0zfb=2J$AkJ zElS1S+BUfz+d|*;ic1MXfH9yHX3G7PS9T%WCZXFV<4lSSLTtGV%`K!4%tU{Dyl#qQ z<}9Mwvq_tq>P-=nv;R88>)-n(n>KCY)TvWUn>NkeKqR=4qF>*r@N~vZk~woxJw14b z4q6$|IV_SMH)T4b4+1BC-8Fl;_POf4K*F?i^?j=V^+ME+uIj4+w;m z2t>tH=Wxz4?$jxEg=KhU`wfY%)*@8~@{0q+NCvpk!rTP`{oO0U30n5VLE6}aLULj27F1t9`us)2^x5cf z9SAjiS})g38uw#5CSoQ{LY_H|3qy(v9>RnnQYwT{NGY&R;mZ*1sNO9XP5Bj5B^qHc~(!Ap%E~W0X6YGQx?#*Y8r)~{|XVub%QQH z{Uo`t71cDpVz`jFOXm=+9izr%(9lkl{+r^`r8J#9L3z__KTQ#52KD8qVG%VNtP_7IByPVOA99F)6jZ9Nm3k9_+Zfk$Lp{h;7Xe} zaOR~~*}8QHFRow5-0|lamv7)qDI$Jx2b@2L%LRl@ZHR`JN&>6~`558>r1J3c<4KIA zZ{4$`jUiI|2q93)M@otILWEF*>S>F!kaW&O_ZGRlW;Hr&#yW$_HQ?z0heJq3TgR+A z;e$mN3WdS7g%}zEuK(x{>Gkeo>y{n0i&R61A5`|M?U)Gd9pDFp&*kezc{yyZ5jkT# z9uAbiS&NVwt%Ex8K*bQLFr_}+)ceW1fK&%)sW8qWwO<>%cI~>lYloUKRDAV^JNlzF z+_$Xa*1i)fYC{&yu>fq|wv#u0`HLZ^pF(PlGp4di1EuY?V3RV=qzI`I+CzweqjdB) zD@;;CpT7Y4254>pQD4Tiv`?taHAdJENrHl9-}nn>cIB}Tb+cmj5dtsbzjop1^`j6- zB~hM_b%r#KF=={j)t8q8?>b9XA<%vvCg(>S^UO1=#)^PpHG~G-nU`0JaO1D}%C?C# zw>0s>msi&YY~Hq$&wuW@N+u5ik|@IS1C-YM=aY|^I&D5lIYJ1D!y<*m-GX{82=k;# zy{XnDluH-!gC>NKC>@L_c$6GaXM(6Dz*jdg?xj6A=Qw`w_ZU2O|Lz0cc=K)c@86F} zW2BJ8afG#o%NI`b*6w{gvFu@{&t6IzN8l_<`+&o_O4wHOMQwWshcos{p#w-MuY|4; zXip=Az?zgai7-h-nkK|iKh{K8J94CL-nR3)PJzMU;LaZS8Ry1LCZ7*$6aDzLZ`07& zN)R>?gv}_gl60bS#P`4Z9n#qH^ixY%{^UBMauMMKN_!+pgrCc!JddPYf&oDez+TB2 zQYn=7QCcGeSd(H*f=OfIs6-MMiOYQhW;vvge0<~(UF)}CM|d@G&W%|IR81I~6x@k_ z{AqYN=9=-tW)R@}dE`Lo9sK+Iyz`qq1fj>urg~2N$2#bNGUk{;ZgqhhXRWqSxB+(Jl3XMsveEiuCP>07*qoM6N<$f_iT6*8l(j literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/nokogirizame.png b/pack/assets/minecraft/textures/item/fish/nokogirizame.png new file mode 100644 index 0000000000000000000000000000000000000000..82011641ebab708fedb37e1b8d368ee1e7716e45 GIT binary patch literal 1868 zcmV-S2ebHzP)Zf-N}Y}^s1ylCpLn1ajkcOrf)g$wMnfP#OlqQ|N#l!AUyLCk z5}QU;;sqZd;Q@$<7)c091R|G*l1$V@OBrA?!Z6b_w{zQT{bv1Z?=y4Ssq)VHnsfF( z-D}qR|L?zj8xau^5fKp)5fKp)5fKp)5fKp)5fKp)5fSebkax4W@TbySmXBix^0!1_ zW)S&hN}l=OvXaX`AqT+1xvl>vXxW;<^6gL2ia>BEiUOpJtoQqpQZT7P}M1J6<~H4-Sc^Qrh?HN9N^$6 z`NiG{F~ol~l+u9+av_CWP*`7REo;)g`v_p~*vfLogbBs-2&!f{btQ8~6Q=}Oo zs~Lc`IRD_!zKOAYGprPefkI^P1k8a9=L$JHPcw||J;uaaPL|OaNLvok2!RyW2#ORm z>HZp1QY?&8c{nKzE;m=2LRh(qJ_p9Vab*^m#1j;<#S=BO`-_b8@a?Z2#;$sbv3)mR z@a)Ld2k^>^|CIZBJ%=m&88&>lkbV6>tu)##i?O|j`Qcxl!06ti++28ytVA}1ZYw89 z2uu=#`uL%NGw0_X=`$q+D4he!LV0G$v*ev~P)bQu!6D^*3OR2Ol|(s4eFta1f8r}R z^V(ZjUEKtF7GxFPTI|3i1#X-943aEIeYlP^O|ZVc3ZpZmiN*u>ehamU!x!v#KCU}- z1^zyFCJ>e6*=cnOA=%WL77Ch&$1NS zDCB7>^}F8cqElET+QJx99?Z~MBTZ8@n`>BFYJxOjWLJjIefApMK6}pv1pWAXcVKyW z1*>aoXsvg!v9XDfi4pwbp=adz8~=EWKJ>900%6;7=Ktc>nQJAbdOZs+7>!-SIJdfq z2cP_lr0JKB9YoP9(Ct}tt%Ei|ZY-3^z?LvFT!T>-S`}dDLW>ObgjSEy+$aDx@Ew?~ zgHa^?Wv$(ob&bXlk~Br9+mn1uOi1y(mI&FCyC+~2u(sNSbH4E!+;ji$`)-|n<+qe2 zIVL|ahKZ>!Y!R@!_-Fj);nV*!`u;jQJG&!CKl$NZc>C=ote@L}D+n8{Hk#`#6otb` zJp(&Nr(3|JMw;WUdWJ+L=yrRsmeF$xtzJ)hP`A}V&pBjrzI3A7|VBQSM<-PVD!J@k^#c zJG32G8ye+*{`Dxe+ilpwq9`ob5emC0Y5Vbm$NBh;pTf;EM=>!uj(3*d#gSW1?0DL% zFWg6;xaRBp(5d4xF+4uFX97f-3?1Juv{wC!^$v4fm62xKTrE zeHo*dj^mR@PT=(Or^u(fkBHF*CdrX!HPHti`#*dcHd`&Z9~v5mwS|mhKY9AH$7>g# zfesP`2`V`-l_RjsWf4_+gCN3I-uxqtO&{aAmwqK{ z3v1;N-z%s(f@s@E!&xW4r6Ae$1ymryNmNC>a8SA15h}_XqfAhI27}P_S7nsRW#}vaj54Nx5x3Kq)Ax6)xHG4)#zf zNncC0bTp))70103fo(k?L;DdZ&l%r68KNok-!CvyPF3aw!-LVbd=Ghd{)zsETkj+2 z?<-qNv{i_HCEUu)MI~T8F=bXrd7qa7raHi@JmyN_a#=5BA(1o+iM|wF_0BNxvNQ-O zsX#ZhHduW9aoV&0OT2jY3Gx}Iv@VVG>ukvtNj69p?XX|}-2l}+^;sqv4^)z>w!I*Q zOy)8$YKOfeA|fIpA|fIpA|fIpA|fIpA|fIpA|l=g0PtU5k3l^g^i;+G0000F=G literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/oikawa.png b/pack/assets/minecraft/textures/item/fish/oikawa.png new file mode 100644 index 0000000000000000000000000000000000000000..c871f8539e34b69a571d91bb8cf02264d2294b81 GIT binary patch literal 1824 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/paiku.png b/pack/assets/minecraft/textures/item/fish/paiku.png new file mode 100644 index 0000000000000000000000000000000000000000..583dd10f1a35b3289f909b64fc34e98ac8ab3aa0 GIT binary patch literal 1654 zcmV-+28sEJP)X6HP0`Y7`&TLL`V#C<#GR zh;2+>8Uihp)<{xQ5J5zQfM}s8>Whex8fq=-q(%xwT4HNJty0DpHEl?nrsgtd&UIhb zT0We~Nt(%I&P+#1aQ$FE?Y%Dl|N6dft-ZkG@pwEQkH_Qjcsw4D$K&yMJpVt4TX^nn zIdt5r2DqPm_db#!XJunGckTM#lC|852Do2*e5)_B=ZCij0tuM>#q&D{2u+NiJRN&3X6hqhG>wTiC46 z`DTZe8QN|ILlU-yM8t3vnRHGD93_TyB z1c4d~ZMQPA%rMqS2*Y4FwAPA7V+HkE1?L7s1%XBgfpcJtnVs0B}qcUP?Kc^Gcz6jeDd!^GNTkJ#!8BEAlUoWlAF>ya{6rX`1uWORrL`mU!*8v%|5sZ~ru{R+p0}r$~~BdcDfV53Q%!?C|1? zuK@73zy6CnHwXcnK6)FqTA4gA==Czr|9cvtHF;s_^et=alClyvJO{Xa`?k~1`&?>H zQ!1AL%eplmq+Bj@@zOsrv%&;W6a__YD3v3uwPa~dxm?0J$EJ^LV0^sBxi{ay7=yEx zH{NRViBEo*x6WSR^y#x0W6)X?MVcrK2tv*HM1v%WdH(r75k(=@YKishSCi)jr%t^| zyWJ&hNNiCI%qf*9vW))pG-n38f5CqoE zYrvvUawnd=9{}Stfp)ZA9iw8V+iE23CcVfVs|LG6Cw08u4B7p_6E|%0%O7pUS;&p1 z$N+1RMa~xw{qBYbqN9hmVg+CwyB_=Pf(DGdekY#1pQI8|7>Norx?165TfQ}N2S5Aa z!$T83zT*cYZO=y@zl&Ig6h;D$P&n?{e{7+)bAF-aa@;9w-t}XWYD5qU;*zG->Rmm^ zg3r|}{+DMS93}e1p8d}ufl%5}#a}xgmdgMDloEuAMoG)qcxBP;r``@0ZTvlt90SLw z;;+lH8BhcjqyVwB9>wklo>-a*??U`?8X)et^P9M21tzR6xsRoqa8q4aO#Sg|ZmD+x z@8%xiX1%QRcsw4D$K&yMJRXn7u}! A-T(jq literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/piranha.png b/pack/assets/minecraft/textures/item/fish/piranha.png new file mode 100644 index 0000000000000000000000000000000000000000..c586006696076a58af9ea257677808131a16d857 GIT binary patch literal 3817 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

5m3vP^`4 zlPAxOJwQ)SPqVbtX*9|>MVoVP5145baEb;|lww)Xm?{t_imAFyoFqhXI@+;f ztv$pv1WIX?hJHU_;AO@D(0V&3Nhz=_i!{}M0y14=UwHWVQGWZG#U-wJav)w zX8(P~ZfpoR6(~hz;zAMRFNbK)3m8i){p|E%sMtb%IqqQS-#w6 zVX*-kk|d?y^H8ZG7)H$Oo+R=EgvesQR4U*PV>~aSQZ6!on~Ueicz!^dDzwhZR2arw zTJo^WEF2aWrp5x!p6_$ujtXbbZy(lgUi>2f4?cL`xS5LM1R=mMB>Jij%Y1KL{PnZ1 zXn;q*`&9sL+vCvd`IJh%*slWTD8coh22!@7M>Ra3a{^>lm-ox zjVe+K(li;lAXwIR+!u?Pd#0%-3?r0MoV&0k%FaY2_E_|G*0wlvJ^-w1YW#^4C-qhd ztX5pgkq&GtsU28qmPP1s#OEalt^jNY^VI^?U1RuWO~X*DNU~z z;Q0}K&q8aB5Msxc#8p)~juWJmsEad`#>Xn&;-?rLlDMD zAqc|wBh&FoeiOWvYv<(T@! literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/rainbowfish.png b/pack/assets/minecraft/textures/item/fish/rainbowfish.png new file mode 100644 index 0000000000000000000000000000000000000000..e6508bd6a31fb9b8d74ceeb4e45895f7d45fa774 GIT binary patch literal 3090 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/saba.png b/pack/assets/minecraft/textures/item/fish/saba.png new file mode 100644 index 0000000000000000000000000000000000000000..4d941b370fb3f6294727265c8ae9c28699a41fed GIT binary patch literal 3525 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 literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/sake.png b/pack/assets/minecraft/textures/item/fish/sake.png new file mode 100644 index 0000000000000000000000000000000000000000..8d61e3c5e7182379612f66d7324b89fb531336bf GIT binary patch literal 3431 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 JPDHLkV1h%VdHVnW literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/same.png b/pack/assets/minecraft/textures/item/fish/same.png new file mode 100644 index 0000000000000000000000000000000000000000..eaf8651706e9bd6e50a388cf8ea46d3914fa9e8e GIT binary patch literal 3521 zcmV;y4LgF=XS%1Sr<b=DGdVk zFlOOD`}HF@?+sVlNQLG80s(Qf0f(aaBgJ^dJF*b8HyMClS>WMXHUM)Jcx6gR5tjGe zE?(0t0I#?1Gb=>7_hdEximU_ZJb{CRMwWJvryW?6@qxx$!EGHt$PhA!`Bg}TS}nxb zj`!P7eEBeD=jPpWfwL?#N9V(^kc0#&m0L?_^GJh70<%Ww^oA;gr)T-1wTvbp5E2vH z-(#^(0gC<^OM0;$%9gD}!b_{1H;|TP#5QN4i80bBymqa7hBQRS2Lw@GXISIBCo4iB z3Kd4D_u1Hg7Yhs2($cCFmqUmS&Cvf)$;?0uA8}Z^;7H?DynmJ|>hg0@lZ|jAIC?L0HF6Eeg<{ zaKay7T;1SWr3<)VWy(z*%pC09;d-5$6qj(?4ORtaOe(vM8b6J6*F=FL}KXl|S{O0kaxcf7o$Km^q zltDt3nx^P399-bRT|n5yLfTjj*#|4r;8bcLgC#-Ly8!29AWd=TkVH#z8UFS2l=4ytRII+ z1}UUa8x`P_DKj6b7&4G(j_)m*`NWs+z-ljpwiZvla2z6#s6`Rlag3-Ia&%{usGx)- z39pT2bmh5bm_-7pK_Ci4E{rk*x7;o{KL9TspG#eElr9m8q$h1V;Tl?D2 z9>UzoB~B~Het!&Ms1Vgd)SC^|!W!zK;0sy?K(310VU)7dea)QxPd8R?KU2{H+@lvvlH7 z(X7SDvebQkWf`#$tkC=J{0DRw9v03m%rM&(3g{*&#-^O6-?INobUHm8eex+r0zum- zg-iv=;uv`^K@vt7wCXS;Ei5muBFi=VA)_Ev&{+l*5+cG98RSv~|4;>35`ul7+-G5F z8J(35@?IY=K7R~KSVqWzEJ~;hLl`MR$->qn)Y~l}j&c3%w;|1Q29w*GsMYH1%aoDUI(;Om24&t)-gXOCG6(T?qsC{i zt*o(uz^K%|jFzV>;Q6QT7rS;}WiQ?PF0|TpG#VjZH@*c|z2g!bJorg$X*KYtuiuFs zQxljyK99MDWz=gS3zB3xnym)rmsZftGc;Qkd7d+J;wVNGDTq)(DT!ExtOT+s@*Mp% zL!N19oilWGn!%ESgun&oZpY;p?M6RI&`UE+Ol(11i#R(_Y#}!r8>u19GGuv2 zP@zUH+8jZ%QOE2nOZdruJ>f;o%ZgpRIty&w(#A8t`<^)e!oPgYfOG$MzJX>Oq28$D z_1n*Yl?nk2(tZcOeDWD|`c&1WSXf%aaxX#JAMh#MI0XTMKsYxDUBFZ-bVV1X%G@{w zq#3d-<68d>+qdE4fBsH1TTQGc30AuUb^$|?pRyALN#Rm<+c!IxUvcdQo`3e!f5xLv zJcoYImD+(UI|`K5UV(-A|9udO;NR)s)JrEZ=w(=4j1Z8ynhm_`FFs~}_P`Habk9>3 zBpW0MY=-5vRV=Qo;`quc9(nvII=z0`GoUP-isA~sowi7I&hIyG8o^m-PGV|ogc;j0 zwG}&O&VULd7@^SKya}5}$55*`F*|z{OUp0f-Iv{PnvtG;`p1GQKZ-FYPMyGoZ~nNw z{?JW$_QeHUbp90Xy7dk$%snJrYBrdddEXELRI^eAR&S1A`s^C=G{xGQzrga zUp)+?b6D~tX52!kkS#DVvIS#PIeN!lKvzExG&Vy;&ca+15ctvo@+5)HQ&x^r3V(9W zS=cc>g>!byV0zmm6rm)fCPpE*2B{vvB7smE^+t@5RvY=$7F>Mk`|!eZKNgXSI5RCS zFLS#*F+T3*4ltORn#S)Q`|-BQzU~3fA*HQpXM5mJ^mXQV>k}f1BuB2Fgo@$7Loy?tz+K$k|E!a0&M|~B{O4V zIPY~cn4H*(Fp9Xi$+Hy3rWlw3_U^s>wY;#TrQ;6^`2K=~-8MeX#Zi_eenWhfx;#(mmxA%h#S^&TjUTm#Zas+IyUxHz zKYSBT%|0l$dKd5t_$kWf-FH%aQ@Uvm)#2RqZIs-%nfwrbw=HuIQ)+fBEDx zuKdv7+RHz65SvHa3~Pi6J2sEvjvH>ouYdV9n#~{#0~Rn2BOa23VT6!_qc2QZ5Z9FP zsLuC+ZbUGIukvd22-1jc$>^hg{ z0Pqcsvzm4-jWN)EzBugf43GMpfL?0r=a%L8OO%rzX4npA97J0-ZNc0z3X(N0jI0ex z1t^0WQUfQKuT#|b$EaZLfwXg^*vT(KGJlx%EPjFen!jAF{Gc=A&i&-ww5@PnFi zcte~U3V=;NUZY!PqXL|O0S7Hn%-KX(w#d@Y>xvCgz|J4SV6$!{uBihKnt0nK7vO=P z92WO}`ZLJ098tZ2yS{x7&OGP+!yyy26Lj5J9bUj9z=(1n;-@@*f<3glL!uiU7(WaV z!?_`f(S7mEhBBZSi^Gk!r1wE7{1v*^v6u_;yr5t#a26<9>2gdhxL^rX6PLVkH-7u* zJ>n}j96;PV2^)LpaZj&Hh`IqsUXHt^^o0_S$0RmrqnJ6GjFDnlfjJ|!up9a3LYp0HgNX#UHI>3zAw%`{~BKQ zKhOS1m?CP!&k$|y(Wc8(RJ`X4()F^%@hDkj^-?;7Q#ORf`s=mHg0 vR8d70Ra8+$6;)JGMHN+4QAK}T1mOPw8<=KtUb8a%00000NkvXXu0mjf1geoT literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/shanhaigani.png b/pack/assets/minecraft/textures/item/fish/shanhaigani.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef52205905dd1429de3a5e183e3839cd049c838 GIT binary patch literal 6396 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 LNkvXXu0mjfYbK0- literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/suppon.png b/pack/assets/minecraft/textures/item/fish/suppon.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ed4caad36f447462e4ca9b6c1ee4b027a51c17 GIT binary patch literal 2713 zcmV;K3TE|*P)sxCNj^s#=Po6}Ka@frL#B!ht z=(#_+c!YhxQG}WWkEP&`FzkYaPUl!7Ks2N!PXgs5Fn)@A`BNilss4rXjB1x+D{_jCGdHx}^qS6}fYuYdC9fK4U2I2k%bMtz+D(GxgQV4&|AZ{YeTZ}R_d zzxC;3#}GrLjG?l?_KL1wXtH#TCf~mZlDtruIn%=Yg(9NOsuVKGG?2`f4d}yTzV;ycSEyt@LEaBaYM1LX1#&f*-%ah15g*;Py zb}qtuhq4S<{_=mgf8U_pHq~FR-_~!xH>X~Dc@9NJK$#RomPZPMq1VwQXw zSz_h86}af}-18@K{CJMpQyLSK8oJOFyr4fs!Oa!pBG&JAvA$-px@P0*_Zxz!^668v z$ch50CQdgO7kTm5ZoDDhe(TerCOs4e(4@DAA6aK^{yeIxf-xm#P8>%uqA)RCV0yN| zv17#g1Zw=^#q$XQBRXRCbPFS`9C@o0BP|Wv^)R-A^9}+6ckbNX8f)0alMD@lJp}Go z#O>S57#|;Jj-M40#i+#CxWL4OLY9j`zY`Bn^o%@Ln3x2N%dq)_fwuw9MpWGj-A*TQ zh@Tk$Nu)6uX6T$nhyfx~@IExUc#@|^g#)#G zyoVJQRY`8_AorkvKngGpRTWSfkIH!{@(O79sL9p0=t2`ru+g@7j~C3(ox^JTK7u#w zzDfy9OchvIIDyt^j>m;7#ryjGF7Dmg#L7y03;Z%wK#EbU-uXU$cx6d!XMl%}0X>O9 zpmGk;dp>AhS}WvIV|BGer(-cd`38Oqn9`x$_6Pwea>=1X1ye*|T!`Ya`g>w&OaW~D zOY`yN`FT8OZy*K>nl=?Wl*^-#On6Kc;C88bsaMe6^zhbmzNa>s)+tJjw{X6TpPfB} zcN**+HtGSy3VbY~1z9a}gh?fNA=LDg2Wf7fM6vit@_|OWi}y=f*@lYIY0oHxuOnNBP1f~QwAP&gz7&*PKmN>SpgX_ z!+ZjFzFWh!tBaB0V3*F+UZqhF@SNl|v$@FL5ZHp&dT1>yot;9an~?uSd1c>vKk z({+tfmCNE%Z>9R@;E^HUPwDe7** z$db3fDb9`a5S4^ify-oRV(RhMZa`c=P-d_m-cbA~?gtcEflTI*N|S31j5(|{-xE|4 z_wKFY_~ZmyBcm9}Td1loDq8}yxag91i1^U;Q-zdj2?9qSi1%GKDJdz!qMAu!*n#`wjl__tp6EjW-zQXp{BhD@*pb zzk3Da<73cD!BQh6Gz$VxrXvE`zdkQz*)^D+ znM7w}6JLB$%HO;`B766+LW>J T3L6=k00000NkvXXu0mjfziucy literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/suzuki.png b/pack/assets/minecraft/textures/item/fish/suzuki.png new file mode 100644 index 0000000000000000000000000000000000000000..f5a52a730d471d03e1108c530cf8510480686fe0 GIT binary patch literal 3847 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 JPDHLkV1jPSZfXDk literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/syumokuzame.png b/pack/assets/minecraft/textures/item/fish/syumokuzame.png new file mode 100644 index 0000000000000000000000000000000000000000..53bb986f0df88ad5afc600ea5840486c124df304 GIT binary patch literal 3340 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%0Dre+5MJpFc#A z=pPYl=pQQ-1i>$A{{+(hQ6V;NT4PE<{|J>No9t$jnVq?F&yn|?dv4C0xpQYWJ2MG7 z4-7MR?z!il=Y5~|<9=X-5k?r{{~6*wbJx!H(ART64A4UQ>ecJ~Jv&>r{~p@9hHU^Q zZ%C(M*oGLo0kX*3unaNKHOfIw?!b-rOjw56&~Y2ZFb$9?{VwANW`toGpd*2EmzVg{ z34=Dm&=ip7eM9`jV~2V@w(myp`#oVV=!H0qvGo20BB!tjBaSlL1XqH3+07*e< zfk?QnpkER}uYG!GWyT(Qz-O7 z1*V#a4JSeJ`iB>f;JZINi#07!?PFmg1>G*rV18m8k4{f^9Jh&z(6-v13}Acy@F$Mr z8$bLpZVjk6qiO%Wb{nO@$HNoj@T6#Klq_ZRS`m`fx>uiF54OpFVEay-`OWXJZb{z! z>bE^61eKDT$#z;e^q33Uu0ZV&>ZubX@;g4X7e8^x6UO5#-*4R30{PMu&q~$d9??SH zQ4$mBNj@_V&Ee(W{{h!jD^(GHytvE_A}Xj%K2|PcN2v&DmB=0vVH0Z=`gV$#IdmqkdDtI>JQj0%(}*Ro$vfUpwYdp_RPwL=t?7r;-}wQ; z+zej+(dTjP`Z7M1uVGn9yiw03lTiOpL~kmIBSDB;2r#Dwu0~BKQCXXn3OOM#?CJ|R;f_e8nsAacMe!X0TfuxN~2IxA%DyF-%AK6OA#5@ z4;>>evlIOCH-CEfL`q}aD`IP;l0bSq2=Qh;$0cx^RP3dv^ELQ%HK-%Zqk_DYEO9d0 zlvD`yI&R1@6otf2uYpkbxGe$%IzpfuIP8Z!KHt1vX4%sj*M*;&XpJ$*5chHqAqluM zXU<^%bI-F12#-9HYa2XUf2$dXG00;S>*Vn%sj*FJuG{8}cSH^|UNg?axPkJt!nmrV zE`45+)SAgvM1XY>U{@Rtw6Ik<#`8#MjOh@5%Jn7@r%$JQi`{O-wj{wlj~~Pze{q(H zZ9VuT|7nsS8D#m=pZWKNOYh+5!2|r8O4Pq}0kaghs)mAYa7Cb;K;B)Gc_v)c&7u}T zVnr7C_l&Bt#K{0eeq7hsKv68sy6}+G5zj&Ml1gmiX-Er$tftBRgWY$1=})|2j6kr- z6N~}Kv(y9;sWII^PB&U6B>Aq&0=B4i_9USueB6?GOh?tkt5p#&VH)S678|l0-Dx9l zCppvj81gAMQnC#|RUodhi4knLhO4f!7|{AEMiJk6VHfv4bQxAGL1(|ipXe$S~#~fLUDJ+1ImX!+Lb)w7FhAMfY)YT z@+#$R@~pJhN3zdxFvKyfn{tnwzD(h6b7jci+_lFgZcZy+J%5frwDHB`Cld1X-6{SBEmbOUdM%qMb*(+f>s-z}08zlX_ZY0F*28RfC z;nCI-TgQm31KTDs;m}D1W?(hW}+fo__IB!7A7 zEjF^r^j#j3^a4(hlms2}oL76gne+N9X9ax_Cr39ylE=w=YqHRi#SKW>w#O+TFo4u{fil7Wm-b*Wi)D4Eh!G9kPhb(Zk@o!1HA250j`ZspTT9Rz zV^Dujm4O-_L!QFN?$`{vdEG`oACC><{hOq8lKhKS2l&w9$HPVx1!ka~lsb7G={fE4T zm%HDu$|CFK$zi-J_#hYn-JahK^285{0np*u%7e7N5k?qcgb_vpt literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/tatunootosigo.png b/pack/assets/minecraft/textures/item/fish/tatunootosigo.png new file mode 100644 index 0000000000000000000000000000000000000000..c7b4db53466d60361c3a4ee4020abaa4b619c69c GIT binary patch literal 2108 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 XI4nn9ez$3I00000NkvXXu0mjf2o2nA literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/ugui.png b/pack/assets/minecraft/textures/item/fish/ugui.png new file mode 100644 index 0000000000000000000000000000000000000000..d632f6ba7bda7b85d8f47f97ac8252bec85e1a23 GIT binary patch literal 1635 zcmV-p2AuhcP)7la6#mZrnR&kj+aQIIfM`>q&_ENbVI_hUbtxNh=|;lBM7kg`1~f6zq>W46uuv0O zK;p_jHYU1oMJWb|Bm~L=u~3A<-Nk&$W?f4a+9^y;m7Jg$ z820SwF)t_}KroL{k@IniYYL`Q7q>1bXN{JCl7E2S8#OXb0`!997jNf3QB7PL5S*1fazKt zV`r~Hs~{}|9#stEClLarbTrMAsTUJ(2=G8PU_R2XY~2W7SKyhqvH+cTuqy9Dx(rN9 zI1V8@+c+mED41m6lEGnw{=Rj%SFJ$^h9HP$gb_o>b9GTsTJ0&~c1`4mhld;FGp^0) zIA`FUFK(UFW?$b%e0c0f9NE7cE+^!R5^iS!TuPXv(($MiT{`~Nm`ykhu0m*HP^O_) z2!jwal`5*WFq$*2>w-yvydxkbZ`eI>^mxkveRcGmrf2UT`5tNVF`qfnUr+!;J|X_r z?w1d*q>V1V zd8<^E{>(&P`%qvAb9pGnjT7LJW+7^Ih5v3%fd_;wGneppR}Xl;gkre_#^%y6jk28WP4P|^WWQB=_0B3|K@r+Nn1h>v!X0gv1c?9y60;-&MhJ~G zCjE)SH-b14zAV6V3h>+#>Y@Oj=TYZ5Fk;|Zql^%pEWkR)M;F(SDuD1ktiO95&)m9< zZ8t8MRMuaAvcC~^BSLz&8L$6MwW9TA0MI7F&+QnD{v^@QP62bz1R+lnnv;pJ$z!Tk zr)hRxYLGJ1qO}oHCgF87Nk}UQ9hxc!k2#TGIUS;B>UvxgTyRqGCMWgH+c)S=Ex`EN zUTEn+t5>gLY-|jJgM&D6 z;sgc;2GG~n7Ypz%dOEux90`yFV;rP(R3LS|241VeEfkUK?g7a>Dj}g#_u&Tt9M?r@ zRT+Pry^LLbo6!H-+mX#&&JE6tj>_B@yYcJhSLYSrz|rH44bVa&v@C)b&Yz>0tj;`d zh+>2Y!!U}x8EABL6dN{dz{JEvWFTp$0v|MU4?#LFpx&A0=5W}W}-uaQ`EFY-WCN1TfV3dy-S+J} zu=&}|sCiXPPTWR)#)Gf?mYHL6D)4KXF+og-hKTctpSG9To8Uoqi3x}FvfgT(W1hA} literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/unagi.png b/pack/assets/minecraft/textures/item/fish/unagi.png new file mode 100644 index 0000000000000000000000000000000000000000..205092f646c0670f43ec7c1eeb10276590b3f8cd GIT binary patch literal 2844 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 SshrsW0000ZrG!mjj z5=#OlsTw5l#h93)j~JsdN~3|8_+pGUp?&dz2cuC#0*RoKT98r#1*Dx$JH5>9oU_lI zeOVVDhMBfZTUsQok^M{7%U)}*_5Htf`M$NFq@<*zq@<*zq@<*zq@<*zq@<*zq~s%m zxB_GP{}DT`$iV*K-d*Hbk1R6;fkY|I<~ts_Vong3Tl_n3yi8QBy0FyGs}<`uhfG3=CeDZMT2dqYEECzWs3z z2>n3?@B8bo0myU1`0-OrO|_YrYGaFnJjh2}TJr?YZ;*#~0d*3kjc}Wq?D6 zkCL>zbi1=8-JI!;!@CLt^;v}QOm;E^{q#jCN^7dsxuT>%N`d#{w8zD{chBEno94Q! z1H6Y?t;(_SlXPc$3-xPOjSy&sl#;jJ8D(g&k6IkDe%&y4efhCP{k^p7dlVRCq%jH# z91hQ2TX&w<0Sm(a@xsdhj2;KHa3Rs;NbaLz7)P z#-Oxd<&p}a6eNWv$>wIc7AvH1gv#J6E69yTnQ5d=5yFxAew4^?rbVCyS}43c+fe5X zLMZ0lDs&Yc#0Yu1;fi96#z2EC5GbusQnKZXKR8RbI#c{_p8PJi-LQ&@i4MPd`fc{T zKFw!u{TR5M^+Ur9)f%iFTtXv?SW>Go(d|+T8%%Uy?b0gMK#`;c#(Hw=8H_6o*J{*M zK+^3olVmst%1K6Q6+)r$4rW?2!M-Q=d=`!NNy1Pf5Lf|1od2j>STE22^B`{@>+$xn9w$zm z;NDM<@Tr@I0kF;yhn3SOrxYMHnN+M9Y~sCVupTm4uh7d4-g_F6q7j}RSWAJDf;bA% zQc?>Q-U}p9(UK+MoGGHI zIKgxtpp>RkjfpEUjlKc$JV#1NQ51CBZIFUBD_7vUEqYOtHxInZs?}Gcg`n4(WW~l$ z;7!5F$w`(C^wXIY23cBqnngfG`Q5B^Fgz11Q5W0#rISNa&uYn2&kgkhV3gauxBq{y%%30RT zBq>p#P*R|k#8~^TjUKHu##pr02q6$c&`k@R^Te&!(6WowG0G))pOU31pMPlQ#oiyz zl?uaLuC}=0v(G#Yu;7eEHz?szI5b_PO|acVU|TenY@`xFVwRG+3dSjn*Ju34Tw)}| zoY~%?qyV9C&QsXAJYk-1KJqX}$Hv&Zdk0QxiZDWWi^noO)8R`G|Kd_FP>U`@;$rgt zd5650qBDxmPvKn;EhWoFuA>qKYxd_d(dBYGpzyAPI2%<`Z{-sw@jbpS9Sa;)t7wqs) zyT6T6b;4i}kxx){8C$mPeBVi#cLeZ$?Jo*>365G+4!n6%-1E?rbE&DbSUVR5-W4w{ zRPNsP1lA^``EhdGMcc4t+s=969}4nA=tJDS?Fou}mQL#wX|H=p|9O{R+QY&bj<}Lf zY3Ey_{!$-G0RQJb-|>5Q@Ax49{@?JC7GF|QQc_Ybo?X}nhMBIde(Qandf)o! z>cuKnv5K+~?aweU%(io=+L2{LJdG-PL~9$QtN|ffz7Vp&lq@9bZ@NGT5m}#Q8=1BT z0@dYQhOG2RlyNMJBJ!o}mNn4Li4<`yk&q>ywYMxHAdQrRr6Zvi`LZw~05pkUn!JQD z0Z>weD#%M16#z>Vp(^qc#sxr00w&2zR3ZSDNW?UG3GD*N@LeR#d!|9R`F;TV14F9- z(zz=~4nUDCaJEo{BJ#>k*1isyOo5!UgM@TyiQTbd!bxocC`Y$__9dPB3!8-Bp&IYdY-`ox19wM?0o4kH=R z$3!D3kx{Vd!Y38J{nTC0)@cJ$&j+Cp^;Eo<-wn z(PX27!4V8m%<)e+rvy~@ z&~ChavNe08Nuw13Mh;w!2%u1u1{Me$#t=6Is0Z*sU?j-r@uF#@2_^*~MbGh=Wr56b z2qq8(9Eb@BW9cg0?lbbV$Y=xpml>;&3zvMhS>RK`oMW z0d?ecIh#v`(Fn+_5pv#BLJ{)_5c2s!*A&n`=w)F{fG&hpShvb$^!pq<6v;x!VsdQA z*Uc<)R@5v|n8$TL1d9ZM`!Vc>Ks-vo2(V^d&K=`pL6zqMowvJwzd47QsR-N`_@;3m z&HEg8>j5tOaW7ZbG>k<+`e|{ys1w#6wQ(B)*P3&%2*J;xkImEtC!KL%VY(O`3yelU z>a=G;C|~ni%igWEQ9SC@@Bp(Bae}`CKWDlUI#2ddh4o0poG8`KqC|JWw*Kg zqLPKsV&Th$K&Rg`)lz9>Oo^c!j&jbE+*hpR-oPak+`xH4FI2V=N@I)TMInzZpAgK8 z7&S`4;z(?)d2u(NR{Tp+8IVt}{wnH0fH8|H$-x4 z+?wskNnmBaA+i!NGy!C;t9(!Yt{OvoNlNCrA}=AYtDXT8N6H!)bih)ZqlxW1a(|PD zs;b%`c9+e`P|wB)5$6u>6Mx;jLp;Wk)t`V!PRSb)MBmA z$NlLW&6+dM;0cy&gyb7l(nKscESDl4A=tFljh}w+Yu2v_%kE!hvXJDje|!L&H;mMX zCm(%LIIacPvEaHkJkJKP80G~>RO6_*7L)Z&Zi5w!3!um&S?o}}aeNYMsRIU*g!&^p zz2tk!_kA9UXzwSdVX+qJszfLSk%VyZrw#RpONo*EK7Vi@ipnze`)Okp0|UVS>;PeC TE5&D&00000NkvXXu0mjfteOnq literal 0 HcmV?d00001 diff --git a/pack/assets/minecraft/textures/item/fish/zinbeezame.png b/pack/assets/minecraft/textures/item/fish/zinbeezame.png new file mode 100644 index 0000000000000000000000000000000000000000..e90d77297e7fbe88dca470582b71149c8c4d8d5a GIT binary patch literal 3144 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 isicxhD(U}*0Q?8IZN)NE%l;Su0000 Date: Mon, 6 Feb 2023 23:25:35 +0900 Subject: [PATCH 04/17] Update pack.mcmeta --- pack/pack.mcmeta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index a194e590..b2ba6660 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 6, - "pack_version": "v1.16.4", - "description": "F-Tex %pack_version% §aHAPPY §bNEW §eYEAR!!" + "pack_version": "v1.17.0", + "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From 8bb26d4dec470bc1e244bc7a04ad3396eb5dc175 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:42:16 +0900 Subject: [PATCH 05/17] Move congrats File :rage: --- .../minecraft/textures/{ => item}/font/congrats.png | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename pack/assets/minecraft/textures/{ => item}/font/congrats.png (100%) diff --git a/pack/assets/minecraft/textures/font/congrats.png b/pack/assets/minecraft/textures/item/font/congrats.png similarity index 100% rename from pack/assets/minecraft/textures/font/congrats.png rename to pack/assets/minecraft/textures/item/font/congrats.png From d149b5a97e86516e1170ea146c53586667e78731 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:42:55 +0900 Subject: [PATCH 06/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index b2ba6660..33928613 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 6, - "pack_version": "v1.17.0", + "pack_version": "v1.17.1", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From 63ee3f1fe7bd76a3652f82e2c1598507e878138b Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:48:43 +0900 Subject: [PATCH 07/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index 33928613..673709c7 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 6, - "pack_version": "v1.17.1", + "pack_version": "v1.19.0", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From eff8f41d6424f38e3f874faae3b86a2af6712d7e Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 19:44:38 +0900 Subject: [PATCH 08/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index 673709c7..312bd015 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,6 +1,6 @@ { "pack":{ - "pack_format": 6, + "pack_format": 12, "pack_version": "v1.19.0", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } From 88dc26a1de70285d09fac63c1c39772a979f7c1c Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 19:45:09 +0900 Subject: [PATCH 09/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index 312bd015..00e9e072 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 12, - "pack_version": "v1.19.0", + "pack_version": "v1.19.1", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From 0c31d5c34e7700aec3fc651ff9867b4aef7262c6 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:29:23 +0900 Subject: [PATCH 10/17] Fix texture path --- pack/assets/minecraft/models/item/figure/others/snowman.json | 2 +- pack/assets/minecraft/models/item/mugiwara.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pack/assets/minecraft/models/item/figure/others/snowman.json b/pack/assets/minecraft/models/item/figure/others/snowman.json index 15ed9516..3ec2da9b 100644 --- a/pack/assets/minecraft/models/item/figure/others/snowman.json +++ b/pack/assets/minecraft/models/item/figure/others/snowman.json @@ -5,7 +5,7 @@ "1": "block/white_concrete", "3": "block/gold_block", "particle": "block/white_concrete", - "1_0": "item/entity/villager/profession/farmer", + "1_0": "entity/villager/profession/farmer", "layer0": "item/stick" }, "elements": [ diff --git a/pack/assets/minecraft/models/item/mugiwara.json b/pack/assets/minecraft/models/item/mugiwara.json index 64347957..66f51c19 100644 --- a/pack/assets/minecraft/models/item/mugiwara.json +++ b/pack/assets/minecraft/models/item/mugiwara.json @@ -3,8 +3,8 @@ "__comment": "麦わらの〜", "credit": "Made with Blockbench", "textures": { - "0": "item/entity/villager/profession/farmer", - "particle": "item/entity/villager/profession/farmer" + "0": "entity/villager/profession/farmer", + "particle": "entity/villager/profession/farmer" }, "elements": [ { From f91387b3322c77ab515f562f1ec487409d4b32ac Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:29:58 +0900 Subject: [PATCH 11/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index 00e9e072..a4e6a96e 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 12, - "pack_version": "v1.19.1", + "pack_version": "v1.19.2", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From 3a4692443bd4ebd90b0a7f1a5971d3005fcf8520 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:55:13 +0900 Subject: [PATCH 12/17] Add files via upload --- pack/assets/minecraft/textures/item/skins/farmer.png | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pack/assets/minecraft/textures/item/skins/farmer.png diff --git a/pack/assets/minecraft/textures/item/skins/farmer.png b/pack/assets/minecraft/textures/item/skins/farmer.png new file mode 100644 index 00000000..e69de29b From 99ca630de195bcd6f7e2809994b1a221f1efdb11 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:56:45 +0900 Subject: [PATCH 13/17] Fix missing texture --- pack/assets/minecraft/models/item/figure/others/snowman.json | 2 +- pack/assets/minecraft/models/item/mugiwara.json | 4 ++-- .../assets/minecraft/textures/item/skins/{ => hat}/farmer.png | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename pack/assets/minecraft/textures/item/skins/{ => hat}/farmer.png (100%) diff --git a/pack/assets/minecraft/models/item/figure/others/snowman.json b/pack/assets/minecraft/models/item/figure/others/snowman.json index 3ec2da9b..595f1a10 100644 --- a/pack/assets/minecraft/models/item/figure/others/snowman.json +++ b/pack/assets/minecraft/models/item/figure/others/snowman.json @@ -5,7 +5,7 @@ "1": "block/white_concrete", "3": "block/gold_block", "particle": "block/white_concrete", - "1_0": "entity/villager/profession/farmer", + "1_0": "item/skins/hat/farmer", "layer0": "item/stick" }, "elements": [ diff --git a/pack/assets/minecraft/models/item/mugiwara.json b/pack/assets/minecraft/models/item/mugiwara.json index 66f51c19..1ad178d9 100644 --- a/pack/assets/minecraft/models/item/mugiwara.json +++ b/pack/assets/minecraft/models/item/mugiwara.json @@ -3,8 +3,8 @@ "__comment": "麦わらの〜", "credit": "Made with Blockbench", "textures": { - "0": "entity/villager/profession/farmer", - "particle": "entity/villager/profession/farmer" + "0": "item/skins/hat/farmer", + "particle": "item/skins/hat/farmer" }, "elements": [ { diff --git a/pack/assets/minecraft/textures/item/skins/farmer.png b/pack/assets/minecraft/textures/item/skins/hat/farmer.png similarity index 100% rename from pack/assets/minecraft/textures/item/skins/farmer.png rename to pack/assets/minecraft/textures/item/skins/hat/farmer.png From 4be3c3b3784f34578232a50e88d2a85bd2f145e3 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 22:57:09 +0900 Subject: [PATCH 14/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index a4e6a96e..8ea8d64b 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 12, - "pack_version": "v1.19.2", + "pack_version": "v1.19.3", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } } From ef5772cc3488704e273b85d12455a5fa08c0b167 Mon Sep 17 00:00:00 2001 From: tsutoringo <33830878+tsutoringo@users.noreply.github.com> Date: Tue, 7 Feb 2023 23:05:11 +0900 Subject: [PATCH 15/17] Add files via upload --- .../minecraft/textures/item/skins/hat/farmer.png | Bin 0 -> 954 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/pack/assets/minecraft/textures/item/skins/hat/farmer.png b/pack/assets/minecraft/textures/item/skins/hat/farmer.png index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..06fd478b0559e2591d592ec062a693c67c8d2847 100644 GIT binary patch literal 954 zcmV;r14aCaP)Rnu#^T-`>=+XdnzW0BipHhlwD{h-?^m0GO2dpI@gl2-G(; z_yCZM1Hop%rU0N3m-$VV0WxbdAbJh@8vv@CX`2DDd85A1fNW0J)E3YA_7%`9p!%Y} z4Q%TLW>J0ggLE9XLqz~|pZe%$;<$7G8ojdQ033h=Z~zX#0aW{+qW@G5zyUY_2jBo4 zfCF#<4!{9800-az9DoCG01m(bH~TN@)5~4y@?3u1U(upTU1I@sb6>^M7fD+47<~0;@4Cg0F$As= zfL;fnQ~)xcrTyGkmgZ(lOe#=v}K~o`o!nsb_gKHE}Rdd9JgIJ z71aS~RJ#Gt%`A`uu(tL)h=(gG#{g7cB(7uBXQyh}=&LWqqP+s0W`JH7+CRQIu`wCY z$~@)x6C1Mak$rstppn=4I0Lll0dt*Xfc6ecYrcLkvgVDMHxqC^!p!x-f6^!D6=apd^cd8_~YZr%)HH%RsiUuA2J|7 z(1u8i^5BAjsB4^0?C9&a0DW|7o<1t|TYv}Pp?DQAO2n-FdECf~L=YOUOz!7!Y^+sA csIB_=3#p8gA; Date: Tue, 7 Feb 2023 23:13:59 +0900 Subject: [PATCH 16/17] Delete files --- pack/assets/minecraft/textures/fish/antyobi.png | Bin 2588 -> 0 bytes pack/assets/minecraft/textures/fish/arowana.png | Bin 2654 -> 0 bytes pack/assets/minecraft/textures/fish/ayu.png | Bin 1880 -> 0 bytes pack/assets/minecraft/textures/fish/azi.png | Bin 2359 -> 0 bytes pack/assets/minecraft/textures/fish/beta.png | Bin 4637 -> 0 bytes .../minecraft/textures/fish/burakkubasu.png | Bin 2323 -> 0 bytes .../assets/minecraft/textures/fish/buru-giru.png | Bin 3503 -> 0 bytes .../minecraft/textures/fish/chouchouuo.png | Bin 4005 -> 0 bytes pack/assets/minecraft/textures/fish/chouzame.png | Bin 1415 -> 0 bytes pack/assets/minecraft/textures/fish/demekin.png | Bin 2863 -> 0 bytes .../minecraft/textures/fish/demenigisu.png | Bin 2902 -> 0 bytes .../minecraft/textures/fish/doctorfish.png | Bin 2488 -> 0 bytes pack/assets/minecraft/textures/fish/dojou.png | Bin 1895 -> 0 bytes pack/assets/minecraft/textures/fish/donko.png | Bin 4279 -> 0 bytes pack/assets/minecraft/textures/fish/dorado.png | Bin 3417 -> 0 bytes pack/assets/minecraft/textures/fish/ei.png | Bin 3251 -> 0 bytes .../minecraft/textures/fish/endlicheri.png | Bin 1868 -> 0 bytes .../assets/minecraft/textures/fish/engelfish.png | Bin 2962 -> 0 bytes pack/assets/minecraft/textures/fish/fugu.png | Bin 3131 -> 0 bytes pack/assets/minecraft/textures/fish/funa.png | Bin 2555 -> 0 bytes pack/assets/minecraft/textures/fish/gar.png | Bin 1528 -> 0 bytes .../minecraft/textures/fish/go-rudentorauto.png | Bin 1867 -> 0 bytes pack/assets/minecraft/textures/fish/guppy.png | Bin 2717 -> 0 bytes .../minecraft/textures/fish/hanahigeutubo.png | Bin 2608 -> 0 bytes .../minecraft/textures/fish/harisenbon.png | Bin 2458 -> 0 bytes pack/assets/minecraft/textures/fish/hirame.png | Bin 4791 -> 0 bytes .../minecraft/textures/fish/iero-pa-ti.png | Bin 2400 -> 0 bytes pack/assets/minecraft/textures/fish/ika.png | Bin 2830 -> 0 bytes pack/assets/minecraft/textures/fish/isidai.png | Bin 4767 -> 0 bytes pack/assets/minecraft/textures/fish/itou.png | Bin 1726 -> 0 bytes .../minecraft/textures/fish/jinbeezame.png | Bin 3144 -> 0 bytes pack/assets/minecraft/textures/fish/kaeru.png | Bin 1101 -> 0 bytes pack/assets/minecraft/textures/fish/kajiki.png | Bin 3006 -> 0 bytes .../minecraft/textures/fish/kamitukigame.png | Bin 2853 -> 0 bytes pack/assets/minecraft/textures/fish/karei.png | Bin 4835 -> 0 bytes .../minecraft/textures/fish/kingsalmon.png | Bin 2068 -> 0 bytes pack/assets/minecraft/textures/fish/kingyo.png | Bin 2953 -> 0 bytes .../assets/minecraft/textures/fish/kobanzame.png | Bin 2863 -> 0 bytes pack/assets/minecraft/textures/fish/koi.png | Bin 1796 -> 0 bytes pack/assets/minecraft/textures/fish/kumanomi.png | Bin 3348 -> 0 bytes pack/assets/minecraft/textures/fish/kurione.png | Bin 1648 -> 0 bytes pack/assets/minecraft/textures/fish/maguro.png | Bin 1578 -> 0 bytes pack/assets/minecraft/textures/fish/manbou.png | Bin 2865 -> 0 bytes pack/assets/minecraft/textures/fish/medaka.png | Bin 2182 -> 0 bytes .../minecraft/textures/fish/minokasago.png | Bin 3613 -> 0 bytes pack/assets/minecraft/textures/fish/namazu.png | Bin 1523 -> 0 bytes .../minecraft/textures/fish/nanyouhagi.png | Bin 3419 -> 0 bytes .../minecraft/textures/fish/napoleonfish.png | Bin 3766 -> 0 bytes .../assets/minecraft/textures/fish/neontetra.png | Bin 2494 -> 0 bytes .../assets/minecraft/textures/fish/nisikigoi.png | Bin 2046 -> 0 bytes .../minecraft/textures/fish/nokogirizame.png | Bin 1868 -> 0 bytes pack/assets/minecraft/textures/fish/oikawa.png | Bin 1824 -> 0 bytes pack/assets/minecraft/textures/fish/ooiwana.png | Bin 2064 -> 0 bytes .../minecraft/textures/fish/otamajakusi.png | Bin 1856 -> 0 bytes pack/assets/minecraft/textures/fish/paiku.png | Bin 1654 -> 0 bytes pack/assets/minecraft/textures/fish/piranha.png | Bin 3817 -> 0 bytes pack/assets/minecraft/textures/fish/piraruku.png | Bin 1958 -> 0 bytes pack/assets/minecraft/textures/fish/raigyo.png | Bin 2079 -> 0 bytes .../minecraft/textures/fish/rainbowfish.png | Bin 3090 -> 0 bytes pack/assets/minecraft/textures/fish/ranchu.png | Bin 3960 -> 0 bytes .../assets/minecraft/textures/fish/rouninaji.png | Bin 4640 -> 0 bytes .../minecraft/textures/fish/ryuguunotukai.png | Bin 714 -> 0 bytes pack/assets/minecraft/textures/fish/saba.png | Bin 3525 -> 0 bytes pack/assets/minecraft/textures/fish/sake.png | Bin 3431 -> 0 bytes pack/assets/minecraft/textures/fish/same.png | Bin 3521 -> 0 bytes .../minecraft/textures/fish/shanhaigani.png | Bin 6396 -> 0 bytes pack/assets/minecraft/textures/fish/siira.png | Bin 3891 -> 0 bytes .../minecraft/textures/fish/siirakansu.png | Bin 1301 -> 0 bytes pack/assets/minecraft/textures/fish/suppon.png | Bin 2713 -> 0 bytes pack/assets/minecraft/textures/fish/suzuki.png | Bin 3847 -> 0 bytes .../minecraft/textures/fish/syumokuzame.png | Bin 3340 -> 0 bytes pack/assets/minecraft/textures/fish/tai.png | Bin 5143 -> 0 bytes pack/assets/minecraft/textures/fish/tanago.png | Bin 2249 -> 0 bytes .../minecraft/textures/fish/tatunootosigo.png | Bin 2108 -> 0 bytes pack/assets/minecraft/textures/fish/thirapia.png | Bin 3496 -> 0 bytes .../minecraft/textures/fish/tyotinankou.png | Bin 5109 -> 0 bytes pack/assets/minecraft/textures/fish/ugui.png | Bin 1635 -> 0 bytes pack/assets/minecraft/textures/fish/unagi.png | Bin 2844 -> 0 bytes pack/assets/minecraft/textures/fish/utubo.png | Bin 1828 -> 0 bytes pack/assets/minecraft/textures/fish/wakasagi.png | Bin 1620 -> 0 bytes pack/assets/minecraft/textures/fish/yamame.png | Bin 2140 -> 0 bytes pack/assets/minecraft/textures/fish/zarigani.png | Bin 1673 -> 0 bytes .../minecraft/textures/fish/zinbeezame.png | Bin 3144 -> 0 bytes 83 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 pack/assets/minecraft/textures/fish/antyobi.png delete mode 100644 pack/assets/minecraft/textures/fish/arowana.png delete mode 100644 pack/assets/minecraft/textures/fish/ayu.png delete mode 100644 pack/assets/minecraft/textures/fish/azi.png delete mode 100644 pack/assets/minecraft/textures/fish/beta.png delete mode 100644 pack/assets/minecraft/textures/fish/burakkubasu.png delete mode 100644 pack/assets/minecraft/textures/fish/buru-giru.png delete mode 100644 pack/assets/minecraft/textures/fish/chouchouuo.png delete mode 100644 pack/assets/minecraft/textures/fish/chouzame.png delete mode 100644 pack/assets/minecraft/textures/fish/demekin.png delete mode 100644 pack/assets/minecraft/textures/fish/demenigisu.png delete mode 100644 pack/assets/minecraft/textures/fish/doctorfish.png delete mode 100644 pack/assets/minecraft/textures/fish/dojou.png delete mode 100644 pack/assets/minecraft/textures/fish/donko.png delete mode 100644 pack/assets/minecraft/textures/fish/dorado.png delete mode 100644 pack/assets/minecraft/textures/fish/ei.png delete mode 100644 pack/assets/minecraft/textures/fish/endlicheri.png delete mode 100644 pack/assets/minecraft/textures/fish/engelfish.png delete mode 100644 pack/assets/minecraft/textures/fish/fugu.png delete mode 100644 pack/assets/minecraft/textures/fish/funa.png delete mode 100644 pack/assets/minecraft/textures/fish/gar.png delete mode 100644 pack/assets/minecraft/textures/fish/go-rudentorauto.png delete mode 100644 pack/assets/minecraft/textures/fish/guppy.png delete mode 100644 pack/assets/minecraft/textures/fish/hanahigeutubo.png delete mode 100644 pack/assets/minecraft/textures/fish/harisenbon.png delete mode 100644 pack/assets/minecraft/textures/fish/hirame.png delete mode 100644 pack/assets/minecraft/textures/fish/iero-pa-ti.png delete mode 100644 pack/assets/minecraft/textures/fish/ika.png delete mode 100644 pack/assets/minecraft/textures/fish/isidai.png delete mode 100644 pack/assets/minecraft/textures/fish/itou.png delete mode 100644 pack/assets/minecraft/textures/fish/jinbeezame.png delete mode 100644 pack/assets/minecraft/textures/fish/kaeru.png delete mode 100644 pack/assets/minecraft/textures/fish/kajiki.png delete mode 100644 pack/assets/minecraft/textures/fish/kamitukigame.png delete mode 100644 pack/assets/minecraft/textures/fish/karei.png delete mode 100644 pack/assets/minecraft/textures/fish/kingsalmon.png delete mode 100644 pack/assets/minecraft/textures/fish/kingyo.png delete mode 100644 pack/assets/minecraft/textures/fish/kobanzame.png delete mode 100644 pack/assets/minecraft/textures/fish/koi.png delete mode 100644 pack/assets/minecraft/textures/fish/kumanomi.png delete mode 100644 pack/assets/minecraft/textures/fish/kurione.png delete mode 100644 pack/assets/minecraft/textures/fish/maguro.png delete mode 100644 pack/assets/minecraft/textures/fish/manbou.png delete mode 100644 pack/assets/minecraft/textures/fish/medaka.png delete mode 100644 pack/assets/minecraft/textures/fish/minokasago.png delete mode 100644 pack/assets/minecraft/textures/fish/namazu.png delete mode 100644 pack/assets/minecraft/textures/fish/nanyouhagi.png delete mode 100644 pack/assets/minecraft/textures/fish/napoleonfish.png delete mode 100644 pack/assets/minecraft/textures/fish/neontetra.png delete mode 100644 pack/assets/minecraft/textures/fish/nisikigoi.png delete mode 100644 pack/assets/minecraft/textures/fish/nokogirizame.png delete mode 100644 pack/assets/minecraft/textures/fish/oikawa.png delete mode 100644 pack/assets/minecraft/textures/fish/ooiwana.png delete mode 100644 pack/assets/minecraft/textures/fish/otamajakusi.png delete mode 100644 pack/assets/minecraft/textures/fish/paiku.png delete mode 100644 pack/assets/minecraft/textures/fish/piranha.png delete mode 100644 pack/assets/minecraft/textures/fish/piraruku.png delete mode 100644 pack/assets/minecraft/textures/fish/raigyo.png delete mode 100644 pack/assets/minecraft/textures/fish/rainbowfish.png delete mode 100644 pack/assets/minecraft/textures/fish/ranchu.png delete mode 100644 pack/assets/minecraft/textures/fish/rouninaji.png delete mode 100644 pack/assets/minecraft/textures/fish/ryuguunotukai.png delete mode 100644 pack/assets/minecraft/textures/fish/saba.png delete mode 100644 pack/assets/minecraft/textures/fish/sake.png delete mode 100644 pack/assets/minecraft/textures/fish/same.png delete mode 100644 pack/assets/minecraft/textures/fish/shanhaigani.png delete mode 100644 pack/assets/minecraft/textures/fish/siira.png delete mode 100644 pack/assets/minecraft/textures/fish/siirakansu.png delete mode 100644 pack/assets/minecraft/textures/fish/suppon.png delete mode 100644 pack/assets/minecraft/textures/fish/suzuki.png delete mode 100644 pack/assets/minecraft/textures/fish/syumokuzame.png delete mode 100644 pack/assets/minecraft/textures/fish/tai.png delete mode 100644 pack/assets/minecraft/textures/fish/tanago.png delete mode 100644 pack/assets/minecraft/textures/fish/tatunootosigo.png delete mode 100644 pack/assets/minecraft/textures/fish/thirapia.png delete mode 100644 pack/assets/minecraft/textures/fish/tyotinankou.png delete mode 100644 pack/assets/minecraft/textures/fish/ugui.png delete mode 100644 pack/assets/minecraft/textures/fish/unagi.png delete mode 100644 pack/assets/minecraft/textures/fish/utubo.png delete mode 100644 pack/assets/minecraft/textures/fish/wakasagi.png delete mode 100644 pack/assets/minecraft/textures/fish/yamame.png delete mode 100644 pack/assets/minecraft/textures/fish/zarigani.png delete mode 100644 pack/assets/minecraft/textures/fish/zinbeezame.png diff --git a/pack/assets/minecraft/textures/fish/antyobi.png b/pack/assets/minecraft/textures/fish/antyobi.png deleted file mode 100644 index fe106527aed1c2a07b2656432279e43751499602..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2588 zcmV+%3gh*OP)HaS8FMA={1uH%13VJQ1$wrx?AKPZfJ$YsFR`M21nizglw zq-%Jdz?BA}<+!gf7@1R$A?@7b@ue^nrYKio=QY|O%6ZB^;UKJ8wjqwNHx17vBD?dYPd(fVJOGhTr0Jobho zT`)N~rBMOxZEv$Jk3Rb-z0|OWtin;X<=>F_%<>yh3(6^&=Sr#Vr*n-`+djm>&)Rl93n9uk3G}DpPJoRO5iG# z%Akl5LZb^oQREmQ$mF@51!Kh683-)IDM6F(srE=su+nP7Iue)CG?f&K4%KQgS-8>YBX9VcqSaD`v};2Rrl{{EMr zh(=T+jG{7VP_7^|i9L3OEEM|bn5M;AH%^b!L#hxF^1qF|~uMQhU(MV`|i z#H4vaI_lxLu-;ikDT&bnZO+Xh@VtOR=O}5&vJA&_sMTE3JYzUWP)u?C`#y~{T|6h_ zwfo-nU!DK-k^4jxxOTj9uU*HZ%oJr@lt(l*E?efWH-~Et7azhx7Nm znU%#~i1xzG8|_}05X{Z*{t!EMUCJF_{)o-4cm47q2;2Ppo(K5Voge0l_dG%`>Chi^ znVp+vY4H?!mNGNH9gLvfsNuOTqd1|}o}}CDG1Z=;ySh%Z)g(?v_T)yjfL^~(t=^zF z=u@lJ8TJQwL4Z<knC`0Jnl!j+d_%o9%?XYZcP3rDb+*TVVP0SuWbMnf2~~`b2|HZ-5_2glLeZ0~(DsNd`f? z&R{gc_Z=MN;NenpCBhM`6^e<(vkB4hJqQAZnW5M1anogc`Sb7Y5`j}*i|Rigf#*&f z6kE36V7_wO=lQ}{zezXu=$t-9H_4gZxy82GysgEjZ@ze=^X)&qkM_(oPB!Aw3%29t zF&CY;z-Yb0)~N=OG&I{ybe0eaD14Wege-7~OiW8=OuGgVIYd$+JdcJ_xW0!B9ERzT zR++reGy@OMRfOfWs0_*&LZ$INb?)NDo6z{KOH;zLX@;7dq}FupT0=h|3~OZnc2r() z3*5^n518L|qxsC|K1C;XaGP7$v~?Sw`QR-aUQXE5_Ej z#N}_;%kuIHbDL**dhs}OTeh;c)?u>Qz!3pbNTd?zyuf!1YwK&&>rF<3oO-j)T7SS) z;FG4Q)fTzY2x*9vgDx@(DacYyoD{_UAw|-|R|)Z;gVHIrMhhiUJmuj`%y4vRz~hT2 z*)&;W=S+)hUbCCC|2QCoNomjD@=^z!dFs2IURvi&H|M(jx7sB0?H~OR5l-Mw)R~;9 zapC#rv8y?4+u!lsAM@yAM+qkq9ali4%uw_kZja(E|Sq zx7~FoGrP`b<;*(1=d*P>VqtC;U!)XChkch^%L51R6pl&|Iz^TeSZk{h3hC3=0jsgY zdv5u#dHC3q)Md^EJ1=7S+55%J{M$BGu#p3_+hlU8RAOrkhXY)l^6mS*3;l<=}MoXmR=?Z&aJ3e-Y4}M8FvJYCJM2Hck6joNT z8a<*W68tdWz=3ax%XjTI#}@x)`x*1%J$+sXmG`VyV`5689G6bAN>RjC7`s~HN(h5- z!ZH8STcv@e{1qYrQBZ!hH;61{v9V55GC>9 zD}zHPvTF+RE`gq4qFG~b@;UbHyP97g_?l4kP$IKeZoM{zazikqu{lC88m=?ycae-x zj^Pi7zaw@n>^09kb-xhe#cA;QBXHuE2)k}+72kTV%WyCxPh!y8p5?sI8(P0Sj8=}8 zA6ub~i<0tlPP3N}ElO4HA&id^9+{P~DaIstN+PvecD8~lbfk@{QC=|8itBFpxH)?4 zFv)tKOZV;PHwV5xzRHxL7S)+(Gzg*wLJFiwF)~DpGLiP^uAFAn?-OSN>D6hsr)f=w zNR>0a?HwDK{$9011xD=)=*|n`^wH3w&KZw{gyOlw=%hH(@;&g;b*T;qYtCrO& yDk>@}Dk>@}Dk>@}Dk>@}Dk>@}Dk@%8fPVt~N@Fs(=LxR>0000KBK diff --git a/pack/assets/minecraft/textures/fish/arowana.png b/pack/assets/minecraft/textures/fish/arowana.png deleted file mode 100644 index 8efb31bea30072d84419b45cea8bbeebbd80b357..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2654 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 a+?5aOVjpjDyo>oEL;(DmbJ%)oAM(E>adGwl diff --git a/pack/assets/minecraft/textures/fish/beta.png b/pack/assets/minecraft/textures/fish/beta.png deleted file mode 100644 index 5903a91302e60782f156abe55169350ad57a11ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4637 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 TXi$>100000NkvXXu0mjffsz4T diff --git a/pack/assets/minecraft/textures/fish/burakkubasu.png b/pack/assets/minecraft/textures/fish/burakkubasu.png deleted file mode 100644 index ffc44cfec806c9d08c6d1457ac0f6880f31acbff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2323 zcmV+u3GDWXP)odvjxiQvEU&%r`jqhP=(H_L{ZA&?t-8g{2;VH)8cP`ZXlcRuz$49a ztObk3+8rvg#j|dIG`T<93hC@_ptYf14-f(zN8!3quUP{Bh77O(zkB_A06co+rAZm* zW`$3jl!9@bvU|3U1!kKe?b#Z8+I55!2n45>#1(v4W@Ml@;xQc7B_3R)Yalthsr@a=WC_s2hb0>|0jBj;v>3n8diJd#Wk1|CtI zvf3Ln->$RJZqjMjrrzH@pK|4LM!oLR8z!`x9&rTC8JFI0Os(c1<#a>)!x(X~OBlL% zo`cqq-hglb#}UlUDwZ$jw0Ai-WWbI+e(z!jwdQJbmn2R#=Px8gqm14#p;7m*Dzo&T zF`agW{vfB>a2XDB!qDO3l>xik0lj|4op&}crs&<3?ht@pKj!qAWu%gP=FZ(1Bd#_4 z?Yi)Fw6^s78rKn%y06Co`^#zUjwHIFB9K)s*ee?T| zkR%zt?`{NJSKzv!Bv-{DXQy6&=DDLRpDTLc?t2c?8@)4mpC0oOjXzjYs}T_kP9+f4DY=& z8^JJliymmSV9u`+r#XS|g0)B~xwtx{JBS&@DMna`3ez4qa63q_u?1DsVMXDnl^eaP zq(n-ASaU#1kWyeR#Bs_~kG(P#H>T`3`tVmdw{(U}t6lzf>MgV}xO0L_-HW(Nu&>== zG#(LD<|k!>utOYO1RxqGgcTnp1#`_djnF}m0XemW2G$wz?wPZA(r4D61E5~3tTj}U zBq?)^3bXZq3zr9ExnUeXJ>;LK-(hd3ji)49YmzKMYsLQC7N~_GLD-q9Zod$ljDYvgen1d-v|4q( z^x)@N?e}pVMYp?(wT4DLq*5(}kH<05C}KR0w@n{+-Eo+p(m;x0=;fqn5wFchhfHTk zC5h7np#;iNq)Cn|CF3lk5mtz!F;WOx^`DQcU=Rh(MpyZ|L#thHo%geC#9B4~E|wEYeTItz4rUBVz_Jc{sxfGo?XH|q4e zy={%{4pT;PMl?<)_kQrqi&wq3bsb;~WT_=d3}Gm*xf!x2jvvEw742Ou27_gCtx?jU z)#{+NW@V*Ioa!Rrh$6_vN#VE@lD!L6<`)hDiZ~lGNX|3LF0gcI31c-4Ig3Cr=T|3l zUn)hOWjKz5)*8EItd3$yKg!6nG0VNdR^i)jqc@u%1UL!~9}1{c1lFdU9Zk`$d6ja{yyGwzfDXU?7FTVH?iT06pt5%(Pqs8;2588B7&H?RC0 zZRNy-jYWsVaUH_2hExjWg@srlKCC@c&$Y?Xxh|#y33--qr5~epG1YQ&nfV1pt?8hY zKuXASO`2s~xby)}9)0<`w#3_Qhi~*C0f0A7{`STXKU{$^24le5>CcX$0i#hLYb>58 z87F$OY4IyLyXJ=|2Qr;f3#;ThCyrxQ`+edxxn2W4`U8>cF~m`dMx#ouBSxbXtv90Z zBVYao0Kb0q7e&fkTiiVP#Iuw8Rz#TK6xM*}dHBAA>$nU?LoD`2#NX00!5vR0E-w9* zEXx^=mZ?^&?7RId+kM~e&@OwcHGC|m!T@K^K93YLq}dX#SLiyh_a~o>{{r2b{9cH&J^26t002ovPDHLkV1nX4X+Hn} diff --git a/pack/assets/minecraft/textures/fish/buru-giru.png b/pack/assets/minecraft/textures/fish/buru-giru.png deleted file mode 100644 index a67aad6b52d4be522f2753d6116f1efd7fcba77e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3503 zcmV;g4N&rlP)Po0Bw(Ttq6kDj1Pc>e zVIg*~QAjL52#GADfDqJ!}c5iHqWe4J1~__Yz#t(9Z$I;_KP=@{N|Z;EXN{OEzww7 z1E4rw#TdiZ$_7!AU`s_|v`pA)6GbtWWic{8O|adexw1iNaugj!#8J$4eTz5PMuF$QeU!Dx+F$RVYm zwcfyJ!}QU`H!OmITEzD=IIhe1 z#57?y#1@in)FqB%qBufp4JM6eV+@A$uht2cWmBmX@UkvO8%AboDBDVN!SXsnNWhS- z6zH}CsC~@1in4LR_)|zZCN5;=GHZg_cxJ2760CbX|dxQa`5C|y{ zh`ta}93iFT^zv!y^=7(^-Vq8W7bn;}vkpMF9pdFOG*>q$PmNtp5hgBI0JC?;v-v!> z>(c22xUPea6M}Xd(d`m-yI8i3P!eU^=r{oZ%C-?UWQtjutF8WAVY7)bhS|wk5~ER4 z(Q0oI#sO}|q228C$9CHRQc1#Ao9&Iwep0-c?GHcxC;-25^Q}8|%Ik8O0rGx6kCY0n zHREG7^4a{r;IYvWd^bb2HiA-;&82Nw>ok8PNnf;6 z%RgY@x`VxAalMy2pg1u?zE-}N`x}5i`Rj)%dIH~-J0buG>vG6v@&%+6Xk!?uRghAW z=mdd42*Kpo1j6e&=u`2mm`J#4z@YuabB?&qK!Z=u#z*gdQ<$wY5UN%QAm!ViF^b^?p z>>OHalu{ri`9hJT8**@Z3fH#CdJYqn5=Z8zskg#(VI?`a+Th2onc|sOR`48~tyYV~ zXyUk=hKrS&*NwWAOBKHV+({-5j-rg={$Kz2#ge)C;IVuA1yp^t4%HGZTT;%dOBP^& zys~Uu&!JK(b7*dXAPk7&2-k6ua<{6sJRjduWIczBYm+3JLe^nvquoz}aiUqAr~+_k zyv%DGEws@zx0(ned*09!-ShE0pOw{R-g6+&FMjNvi-m8W{7w*TZZt94;AR{^UD91( zfV}N`SdK%t8`Id_WNCQ`$95>@iv#2VbR1*bHc_nUgfS!KOrQA9j_fd4u6KHckwdH@ zlgpCveO$SJZ>~LZ9WMknfB5Hrb-p`-*+;%tYsB4{sRLuEvuqWYLS8Dx_(+lZc6`pk z8>`FYG7i6V$6drh2S*s@Cntz?LbZ?~=i6+xyR?FcIN2?Zj?B%_+}^|(jgo?w)*Gn@ zX+_pjEU(u&U9XdL6O^L{)=ZLwc591LsZ10neD8bzb>5wHeTT|enWOJmAn%ERB&aS# z{`TA6MI3MQf%hC@W<1NuGi{PY4=R`hwA&qmAY^mn3^yD-ifvhFoiJL-p+7S}DzFf~%8-R{r~Ly{;#SrRD(wvyyro2hCEgFr}0 zu~?+lY7xhSo1|=o=etZFnqs2r4Uj)q2=vL9N~zm^>pQ1-ensHe3f(jQ;Oq>u(^KR; zMWf!J(+NouP0;D|TpbdvIkVazNfNTYMHp$qC>e0OI7!e(Q!bQv_riP{3dSZD={U<$ zEKHAc{roJ-R^)7(itn&c%dt3KV4|Gi@I;!7{Y;j_*S?+k`9p(cw_`CnJwm>e-$(xJ zBsk#qj+1^>$QO9(o6pg`wuF@F?_T-eA8=@Xj>SU@Y&GgkjE~~G7C-&I_xB?!(HgBa zwyg$sy?=-sLpumiB2G__9wHgzD8+N9PE*Ndn5snZ9Fmk)`u2(KC zou*hUvALOsQ)RqNd9;i$=A4a$9RbXf|N1ze`1BVr#^C1*SXSyBANlYNgkj9m@)mNX z4#45XYk2YH|KaG{=J?t7y_Y!dvN(5;a3(^8$0 z@fyDGp0kxQkZKPt%(AqyL7ZsnP576upWw$2=J?jh^!Vy@y8O(0e~RVRW#0A9>v3(E zpPizVFCfJJeCpbQtnc-|tK?jKuRx*`l#mDkuH&YCf@}shHW+c>)mA{G6ZGeK@ys&r z)=Omb2SG}Vjxahw>lh&=fPM7Ug8$aihXu-peKRQqf_XYUc zH%{}(JKxV29(j^-Ws;@kWx_DzKc3$}8^e$O$RWP_!U+JzM`{#&hg`;`ka72s-`?KB zaV#-l? zPU;QioP)v82@(qV9ASH%pt(#EwUL%g%j39 zeDrS8*2^9-{`imX?H3N!a)}#`yp1FCGhBb@AV=nAu$1cWwh(DylNdv*)gauigS3dF zfX?PB+x2C1lALp=w02Oc0s`{69JXa)*%lk?Cy~k~3^s|nZ3H%nw$NH)_d;b4d2#mV z=YIL;_mNME$v^h*Y-}k zKnY+7!-Up$n|7y7oEV<`?lWZayS;}Cc*5>=SPI_$?rW)4vgAAq+Y)^bxRi!SU*)ep z^621eA0&xZ#M;L6ipp-djb*z?Y4t{GgwPmcBLpa=D3|i*U(9GAZG(kjOgjkZ1R-G< zvfkL_)%A6BZ&xc*HU8j}cV5y)KKQqPM=dLmLU8*n=P!lN*Ekh`xbe1I`)VY{O39mD z@@dA+ruDtNT_hZD3+*JgpXsSxTd2v`P5Adp`Dhc$l-tUQSn7+<4oq1Igzr zfAhq^fYtgMOY19yIz~!`?Yd;LITos8#IZ(N0*OTQW?5ZdM@mUHli`_{UZmX#I8$#R z5LmWDA)mu_(;~_79dhM7w(B6|>)t={X1y6Y?+eR2@4k=8!-ugf$@Fv?$FXo$1RuKN zCT>1<*KVekz2Zsh)GLIfSS}(EI6d-~YcoDKfwU}y6ny$uZ+*iYuGHIMalX&z|MD~a ztL=_VAG+fv0P*IRk&ByLyM~shu;(lz~-Z#P6!X&n9_Zy{GV)w7600Uw2=-2*n zp9p(w83?C)?t1_s1!D^n+<*74U2)s5rT`awMRke!<*l-Jh#`g;Vu&Gz7-EPah8SXq dA^tz%{{X_GxHed};`0Ci002ovPDHLkV1nF{)8zmF diff --git a/pack/assets/minecraft/textures/fish/chouchouuo.png b/pack/assets/minecraft/textures/fish/chouchouuo.png deleted file mode 100644 index 94b69d525ba48edb7cc49f5bbeefeabd1d7b9d22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4005 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 LNkvXXu0mjf+0Vx0 diff --git a/pack/assets/minecraft/textures/fish/chouzame.png b/pack/assets/minecraft/textures/fish/chouzame.png deleted file mode 100644 index 926d20b7206c8c6b6fdd0d8e2c7cf66e873a56c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1415 zcmV;21$g?2P) zg^!o7dQm-~31Vm{N`NMap`j=NnjnUTGT{UugrwrBe%Bit&iGMH`h|__aNV`jqTd!^s3>(m}w zZv|9?+qiZqN}i7?8IcqNODTGTL?#BFfI$c05h5ls;fOhbNf?4SMaDHy>J5-}Ot`iQ zL)S6MF=b^Cs=*H#3Z9Q$dk+op{p6|#p=%VHVWO+h1H+)$wP*j3D=Ok#JZ~l(OGj5J zg6rBi@a=ast7Sw1s)=t{eLsqY0(R~@F3WqxlDm=c%3MMz3|#{yR9J*<8VKVAj%`7h zkD>^SR~l|Ph{Z-g$~nR)mh%Wwv}PPkvUOx#6TH%@5XBrZsBsAchQGeF3UisouBr|)~Oay@sO{1_Z3n@>At?mH=$Xn466;S2vSGRyM3eW376o;7RdAR)2 zOE4vugCE6+f=DJ6Mxk8gN;hLtl)(4ps)?=O*f!!MM!6h-QVn4oNDmq{pb>&@&y!73 z*K}yQDL-3QrHU?e7Nl>np!*IS9I{zfKhK$Y8zz}H9)D=TuotHRr@%;e_TuyS z@#mi~IX4+C83&tRd20l{>*MLQkK(Vt&*AE;F2lPYd^%vxEjQf&T{nib(?9-dyiYv5 z80#NfT2q9&kHK0UcmAANF!VE++TK=k+-MPY@0~vzr++(LGqIIR<_^2E)%PP^w*J#i zu)1xQEx89NOR#m*no-}=hqL?grd2q2^wglgVHCdyMjA6FKZg2mkFltL{&vUG-jF`j ze}yMFN`NMap`j=NnjnUTq6BDy7#fNapb27VC`y1Ph(V!HC=?2XLZMJ76ypkje*oqI V4>tV+l}Z2r002ovPDHLkV1fdohu{DJ diff --git a/pack/assets/minecraft/textures/fish/demekin.png b/pack/assets/minecraft/textures/fish/demekin.png deleted file mode 100644 index fed21bc799ecf774b7a7d65d6320528b151254e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2863 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 N002ovPDHLkV1nsrnVtXu diff --git a/pack/assets/minecraft/textures/fish/demenigisu.png b/pack/assets/minecraft/textures/fish/demenigisu.png deleted file mode 100644 index 43929a19a3c40a3053ca8bdada7e4273022ec7ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2902 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 diff --git a/pack/assets/minecraft/textures/fish/dojou.png b/pack/assets/minecraft/textures/fish/dojou.png deleted file mode 100644 index cc7274c35c5a487fabfb4cebe74c8738e66abd23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1895 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 diff --git a/pack/assets/minecraft/textures/fish/ei.png b/pack/assets/minecraft/textures/fish/ei.png deleted file mode 100644 index 62572f839cc82135cb1b77ded614b3ab487f3167..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3251 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 diff --git a/pack/assets/minecraft/textures/fish/endlicheri.png b/pack/assets/minecraft/textures/fish/endlicheri.png deleted file mode 100644 index 2377472433657cbd03c619d02d03ddba189dc7c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1868 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 V+trE;Ur_)6002ovPDHLkV1m|y*`ELa diff --git a/pack/assets/minecraft/textures/fish/funa.png b/pack/assets/minecraft/textures/fish/funa.png deleted file mode 100644 index 1eb9a453e252e8173da8aa07bff3299c4093d35c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2555 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 Rgt`C#002ovPDHLkV1hoN-n#$* diff --git a/pack/assets/minecraft/textures/fish/gar.png b/pack/assets/minecraft/textures/fish/gar.png deleted file mode 100644 index 011c74b32b595384b7793c3d150b204a02e12ade..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1528 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 FV1h1_ZfpPm diff --git a/pack/assets/minecraft/textures/fish/guppy.png b/pack/assets/minecraft/textures/fish/guppy.png deleted file mode 100644 index 8d964e8f76e64e111cf8de29c9698882cf25ae6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2717 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 PE)ENG4DzL!NBn;P=}4S0 diff --git a/pack/assets/minecraft/textures/fish/hirame.png b/pack/assets/minecraft/textures/fish/hirame.png deleted file mode 100644 index 2d4c120622c7b7de440955e3999cfe45314b3a21..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4791 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 Ri>d$s002ovPDHLkV1h!SC+h$J diff --git a/pack/assets/minecraft/textures/fish/iero-pa-ti.png b/pack/assets/minecraft/textures/fish/iero-pa-ti.png deleted file mode 100644 index 2a068044a0da39bfec01910b96959d342c35eaac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2400 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 T!h8|w00000NkvXXu0mjfArksG diff --git a/pack/assets/minecraft/textures/fish/kajiki.png b/pack/assets/minecraft/textures/fish/kajiki.png deleted file mode 100644 index dc701c3aa6171c220f00741fd4534e7e616e721d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3006 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 JPDHLkV1f~6BIN)8 diff --git a/pack/assets/minecraft/textures/fish/kingsalmon.png b/pack/assets/minecraft/textures/fish/kingsalmon.png deleted file mode 100644 index 32b93fe84804ba70c0592d9716685a84482b50e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2068 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

kts;&h=@#Q? z7&@*%8zagwh+49|Pj1FIM2ho+#>P$C-!>HIQ+DK!WXnw2^&{i6SoXfpi%wryvj*db z>$rQzjZgz;x`_i1yr~S98OC3^kJ2>9OnnBkjTEPzaq%%@Yr_reF+G!^mAAywSt~=N z3vAtX$2%6ZO`C4{A!eF6rl)40Yy&s_X!BdnJoMWQ#0fg7FmOh|Ww0ppE~K?@hgFHa zd-q87Y2`VbB|P)kCOR^eu}BbjUvqx4{xP71|seQq!oA4{IFxN*YU6;J&{%LZGiK9btsh~ zOgMKm8%-2N1DfXwTgAtgUn&OO``kS=Ha3C;c(U4N2 zL&D?^kBr5x`!>+>&s^kg-ST6k%{pFtZNEHUShZ+0W(AnCu&^Xuii8C>D^{z}_xmwv zsGsoE?oITOGcR)w{pLm*9U2he@}h~d@Iwt-lanJS#5k@<%yTaxO`6OYfYwe*X(g%f z)GeT~!O~_EhsP&TpPq(NGuZd9pVR1~G4b5AIhO?eEFf0XhzAEnL{5HbmLbbh-)G zQi%IIC-E<)a4zf)=I;kWTdVwTfWuhE}Tu-m%mc z)Fgf(%9g>x%5Rq(g~5+|3Ke97G)CxbhQeoZVH4z}P1c$)G`vuN=cbBt2?N{FyA7Jm za=vBrhsE7&SYS8-hhvKryHN%Id~!Q&-hL03E*bJU0#TUOAn}W^T{4o;To_~^9Ubo$ zm^Uk2sa8?ztBFvoI9raNl`iZl(B792+Uu&hEfPA0lJAxGxVcq9DH{3^GGR_p^LAWq z51@G~D%IXwi7H`-7IuSt87U;SKE!DQe}3pDI^*nbx#yp`ms+ht5O!hhBuz|Mj&OFO zwy-j+Fgq1S@8G!{gH(oTPX{acF42Y60TFd}12kXJ_C(uR82GS|Nl{89`G$+;p7p3l zJ?c@{Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`b}1Q`Zv!{13zgm=zNw9kl=e N002ovPDHLkV1lN>T*CkW diff --git a/pack/assets/minecraft/textures/fish/koi.png b/pack/assets/minecraft/textures/fish/koi.png deleted file mode 100644 index 6a039e8b0e0499ef7fbfdd3577a6701638d08e83..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1796 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 diff --git a/pack/assets/minecraft/textures/fish/manbou.png b/pack/assets/minecraft/textures/fish/manbou.png deleted file mode 100644 index de001da147027b3f6f62fc196852e82ee87bb583..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2865 zcmV-13(oY3P)f=}MikUW?e1y=$INkCA74ioKFL@GH6Otf^f`5VfATgVmb+5BC-Cb3u&PBfORQ2@q&h&K8OmAAv2Q_`E zI+ySF-M`a=cj;aF|0Xesd++@_3XTw>*?^dJFG5UYZAfyLdz(8E^I!eO_i_8@?xv;u zv<%Hk3kyI)@44oKa|I#V_ZjzrNcy)Ny}LF+k9k_+LTkVqZ=FO{Rq)=j8<@u$3kN_W zeFWLVSj(Cq1l&B1e~>yQb9UDmoTu<8la?v zGdgTj{f~#iOQcUBN-220H@`5juo@7n1aX`~%7_d<*uxxXF#!+)GLn!oXo9zXa?ZX7 zS_lBf)n7s(jv`3u;Y<$i=Mn+ywcbG@#z&bKbrF*!5?L!ns#>ttV4kVqWlM#{7M^U} z=~29oV}*9sMw+Ia{P~M)1bF4d3se&bdfnH3O}e?4a(JBKQD(=9)i6o0lqFa`*ufPC zmQm#%x-_uHc1P2dyvC>Tu zXKlz}^03aJ$Sv|gg|lxDV5lk#yMmysSO908IBuHEPE%`u zl+xUI+ZVlsjFLFvLZ#j5V5uA9$dSWHmlCA(eH1|@G4miDhHWkKdXCiE%Yfam-`fat z0}0QSAiZ<&PM|abdFfE)2D;SHgA!H0wO3QJf~r-Hg@w6E|MR&5FthBxwt+OhNhJ-D&yLc`_8~QxDwBOdb32Pgyn7mtHsv&bt8 zr4*{s=olg-cmA61=#TZo=*f){v=Vr0*{Nzn21)j=AmSLV-=}#iYo|Ad9cuwvK&b>P zhYsVKk6ep`S0BO8AAbxFef=H`d!)^7mW>{coP(TdsGN(!rj%tawe)2DgyyeMF|h!j-4_0F&2&W9d@?yW&P2O%U*oqU7K`n{F5 zA)Ll5ZCLA|2YG0o#4S=0L@riSOfsaYe87iq_?VzVg*>tp5)VH8{Dd6Avxioy1;8Nf zb`fh0IFBe&92xdRByrN9EJeEFVG9l8JTnjHX0C5{dR+YFrQ@R2P8~NWghJ))4jH0g zkXr48pCd;}>0Q=IaozRTlV9H(0H_-#q)M>_BEbqT*zRYq?spt<%h9{V(+}P&BQd>Z z2`QnX7)yt`c>YHZBa#uKR)$~y|kb^XabuuDmmlq zlC2f@Kk*!%dhkBpI}8pxNu<& zMNu*kn}H^V9fS-mGwXcl9?wYA03e=x;GRudKxju%j7~en%JOn3bA_nSF9hN^f}rY- z%_ca_NXFnYk=k5J@N=TB=$!AM+wFoAm^%1-MOy8+O8ob!(Zv%0RsGyW=zU4yQiBr7YOn^t zzxeWN+di8|8CQDbm^^}K798~@C-NIdoAsQHOzDQ#%(N*TOl44(C3<;*UQwW|G&e?? zk=}TCTcOM~^7HF(TpbRuwt5E6R(R#aucm}M(7v_BGn2!KPz(6F+!f&+d+eI)VT+$I z_1s->(AGm2C0ym83yr~AjzN*5Qeq=<@*%^d($@?$bbkP+X^ep}RX9JGM>d^A5^8MBX5RfdYAT%ir_m!hO}er+e^7gu_yzkVXQEoEb^oT2ECUmBr-btTr%( zM%B-md80LhNzPCgIjk|<3n2U7cK{lC@#WWc1Yt8x7n7xw9636j7TQ@7ICf4b?buA5 zF{nz7s#l<*-XQk^41Z5`fUa^Vq2`tdF*VMx24SK<*bNDU=%G|269G&9q_U`3@&&4* zfYUaFz^a0&O7vG(xzG~zIP(6p^aN+p0GgOIV0KNIVs3;6K$(~D)^TEEt%u1g=-vR; zpg@(ED2qH?d4WN19oAHA3eC~ktn1F~1jjW2!8B%_W^B@6%NJL3tX^10QAdK(TJ8js z`WyP3_fZsmZjV={;PO`~>0dqZg4hl7M7xRtqae`dy#mo6l<4tgj73Z;&I` z8d__(%7)Nbfnt>ja1)Zf>2r7b_N^oS>y)r&rd{3jt zXwtddBR_a%TPOASqsKgf;N3>SF3F2*7^;z&}8+`393= P00000NkvXXu0mjfPKs+2 diff --git a/pack/assets/minecraft/textures/fish/medaka.png b/pack/assets/minecraft/textures/fish/medaka.png deleted file mode 100644 index 640ded285567662087622d4d004ebe6bab871cbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2182 zcmV;12zmF3P)ReZLH&*qqY z`Y-^y58k1tF+l;I{libm^8#x?j6uX~ndtrtDS6H~_Qa3z{WbE=48~PRn)}{XT(eI- zKu~BOe}dj@jmnO9W1>1CUqzxC##PQ}z-a|OdH>C)Jg;?fRy%zz8m|qlG_fEGs+-T% zF=#JL`_ z#+w0vq}3&=cQ7X4k_=41XDPosM0Ot491Ti9NTQ4o48{zMj%!_9DoB)&j&u+ch*Hmq zmp{tBrhx#W#1Lq=WS9E#td07y}|LBoq_{ zNC+ST!DB2)WH90p4d4T|7J&q0CD6^PFbcjfq@87oUK?u@(%LS>SX`7KViA!+*B628 z80wmcO~EzM-u!R_=I2f@dwei>*WHJB@Udq$jF=p`oY5tN0);?#2HHKr?05~aeMT<6 zY={E}H4fCH>hZmKBB^q=@VeoQ^Foi<4h$eMRe|bH16pd0O@14@$B5McZ-s1!G)R9Cf zw%9s^g0eF0Nr+iuXBDbr&|SV=H?w^-0KAm|aVTXF#6ks9L^q$Mww2 zuQGRHfyq5%OkFZTR%{g*PaUDs+)Z3iO`}j&@sByi% zVh!u1A{g21*!{si1VD9lZtyfZOBy`NfPSSm}`oyjn3`;CsLoHD`T{xWt`+VQxGupLW3e1qt=K9FGgvv zW_TY4UwnP7NZy37h7XEp!Aozf(Wn|;Ii3$S=L=sxyk!>vXztvHbunTr!RJ^PuPbyw zK$BgN>;jvBiP*jOgRmYM!%R3yt1&{;8g|4fYBrCOMJ4w8igBTzAe6n4hb z^D&K9MBdApYu9L0J*{LFBLP7{b5KtRfwh$xjxVf|7oZx5j8cshXO(L%Ujg8eXU0y7 zA9@aG_h58%oZvI!$|#k__*)KS2BJ~u4@zd&`|jS>006!JXZH`pbk_*&6T^oP&@`z!Ac-;o}h+aVK)t}bV+S*(B;W_@ue5Z`uRpAA3Ly&u?^Jj zModEJA0>=khuSItQwMGznz;bS{`hs)mR^J45trig4$bi^aB+%;FjymG7|}Btu(9Z` ze{}EWo@-W#WQB@-fglxLPHsBu^Su$J8uuBmt?=Zte;tb z@7eYTRur$NE*)D>Yzyj1kHqCn+usjNtz3z*6|(m8s6tYG7e4gx@g(Y6sENaV2K)umqdjAb?+klNlPnyuLMzmdP+lh@h#~G!aJNn*W zO~4vYs8@{{U`*iNl-#|kK2)S+HE0>|` z#-2;@=W=0v^-tfyB{iJ!h)uDz3C6FyigtpET307*qo IM6N<$f(^b diff --git a/pack/assets/minecraft/textures/fish/minokasago.png b/pack/assets/minecraft/textures/fish/minokasago.png deleted file mode 100644 index f9ffad3dc6cc40891572cbeeac06f7ceb385ee04..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3613 zcmV+&4&w2NP)UZd+w)m&bk|xT?E+;yEF34yzlS) z&ikC__dMU{^1Hl;GxQlJA&R2UGy>uT&|zHZ3;+{AhjFDd0Gy6N1VNavm3B-47|GE1 z-v9j5jv>EIBtXUtfY_-2e)XjhjSKu^_+A;AZ#+mI%Q3xLWf&;`-nNnpF1?H>iiCmt zhYpn3v1Q{B5RU%+bke8*hz&SealhI%jHfE9gS>G&_ggpec6&RfR^zkZ-&qU{p20>gpcS zuhi^eJU{%&TP&Nq2nh{EQwcmc|JWqdez%R69#}ERJ05jmQ~)@EHKcF5zXTvQ zX5C$PV_8)`*w@aHjsp;doZXz~^4T-_!Lxr)#Sgf&b#dbTnEyvFJbv0i7*!3>a_M94 z1j%=7MB81oZS#Dtu}H z26BEt@yG66GI%d;pS<@Tb{#s*TW`I?dFM{U4+4DO=Iq8IEemf;WW2Ux17E%Dre7Mr zWj&Y8m^IixogjQF0Al6-W&5K;3ZD=Tjo6OvGLai$7zXXT+bL#D{^(1;%jLJs8RUtL zACR~CzK7VqziY7n{jKXpoDl|6W30jXQ~(Tk==sO)9pd$;A6%C7U)!;fH~#fq zu7Gyd6ii)9jBi`M7T*TX_XvEOe6C0~Q)GJUwTbK(wzSdnkVay(c8bfW>C4#Bh}=$pZ@1gcI|neFPt|GJ#Au`CRNL2_H`|^x9_64aWc7l zJpx&T$WM&l{=ibMXuT^&hMDu{4>SJRm8(EfaN~mON4&oI`7s6Iluv{b&#zs^)psmo zZR_68XGaqG`0(}B%!Gqtt;jwGPW#UKq{voNCr;1#PlVr z1_6lWKe2E=h!UbGqNOrOvW{uyNGW-~JoB>My3MRdk8l62oShmBOjSmk#`^}3k;=Oc6;`s8q}3 zOar&t$MttDVq5FYti9$6%2oxjuSB6xK=6DtMaJ<%>`ECeWfJJ_Xzf0E0FEs z{b7HBx@RffeHFSam(Gq3D&;awxeN`3JP&Srn$`2?GjsXMIiy@mTz7~$B_>1 zoOuJCr4qH8MM_N5R9}y7q|il=*~=FU8Se*AZQ_rwy@8$2ZHmXF4;JiE-KNsS!d z)sC(zba!{q)zwL%uAXzIeU5_%KBV)=N91)C&vTPdZ_H(J91BMPFA`Yx(CS3~%PZ!C zB+*#NV(r<@m#@8npKZD?Sv?kt1-|%&vydk>Q|jzVB4_{m7IQa0HKIoc4Byx~n?ijN zMc42HhcNU}745jw=ZPa=*#aJZ#bf>Y-=nVF$HDy{k}G6!GA5$$aNzI}iiJX=@V;H` zv1-Zu?^qVHs^YpH)pB=|yG?10d2Q=>d)0g@RSVxt(b3h*f$kpsj-Dj^t-cCg5aINd zz_O@ssAtNQNy+qj>7rF5hH|Xu+8NWy<#U*66T%R;Rzpy9Bt;|$eS*m2$4~y_Fc6Ll zK+Je=>n+Lk?28q4e*ZbriioMoq$QDBIz?nzm?@Kz<+6A8ZX`iOQ56);KvYyhQ9{*p zGK#|LEn5;%p{GXAi@o8f*>La!(q>l2tX|K@x}9Sx_gqoRkaXZ z8&MWP5HXtSsh?Dzcq;HiYSk)6$|RM^lF4S0XADEfvRxd{C!a5H=d9V3D;8h8re)Z8 zKVP$m$r%G}+Sv%UO^@y1+b#hDcFn;SDhQ6lPd2v=D{imeznuO14q-bElBC1Ozzgy8 z9tB8(j4aD2vW6n5Ck7xMVB_+|M3pjAnkS=aDt;VBu8fh=DIM-0mCuo_%d_*{c51Fi z#!OLlJSu%9ta2GWl>*lw48mkJSQAA8&&RVW%)4?ArG@^xG=@3xOe-^#mB zwoxe7CqPsW??*jnDlQ`Bjt)H8;Ke1klWT6KT60iT8Q->%M1eS_qcFg;Ye-Q@k%8EPr;l#1udJ$uGPpkHX`aNR7J*$ zz;o=xV<{tr=Q?z{F0v3;gb3X*AWeNf87k; ze(gov&Mw@10Xg4*UoPWI3X-N#aecgM4Z#lxW9fd79I?dD7k-?(}uMN`LD6l#)+m@DAdY6Njk*EbL%(%IQVC@N^WK}vV1#U2hp zi3e8{LP1Olq9Tg)lu8IhNkj;eN`!_`ryAHE)GPS-VI9`CDr3myiHQS?X+5F{AvyVFi#O;IE&%n?{R82$H zR0L5XiXydH-96W+; z^-`%;leK`Vs&x1ECZU-#GlW5q6d}hAm~&kVt{<`C>Bo3^`*!lhG&RQ|P<28C9N)(d zl;jz^YP0u)!?^G5CGuUKT0DQm^TMNdk4Z!has(fN&aQ468ta+Td=`g)aU`h~ae-=RY94@J;)em1N|{=357tK=G16qSCX%WXubo9nN&prDA6e7U zvw1GLb?%44<~18IvH@4$)W7C3J@^=C4nAXL!=P!QY0WlzHq~U)+Cg#ZtmBpj7Hj!1G)eL;*9OOSZ#a5Tb-)Qs5+6<*gmBoboBrs81F` zH$c|=SAI3CmQ;UPPa%mSU7cOTGjg%6kp(y3K4|p7=ji^?GF>-7k!8~9Y_j3X6zh_O zRwTu;)5v-TLC`-|Um$W%{d9lSe~#L2kmR|Z%HX&TrBV+K^-W36N|HoMGm}M67)d83 z@93!5zUE$tr!-MSO=Xj%ZCu?I#Y9o!x}XxeA|C#U1s{h-4S*7_vLvu;6%Ky9mrI5+7;*tK)Up!|K_b+_lq(b%Rbohry)+KYi94~1F4M~pAnPe0}O@N8dBL86K z#iv{YMx6qNsl}SoSeHl9O;YI$XE$cp^xP9ff|BsOv2{Hw*4+)h!vhP}j95@dqS&a* zZ=J(m%({h3Zf+q|T!cVIh$Mm_Bno2VM|n8fzl1#XPb}j0Z(ko@M0d8#jasgpkzBvN zWnEEi>6*5?E|Nny-xj!%C z9brsrI?q3E*}$L7xapL~`IY=-Hd+J+Jo6tu8M6a+C)I!0kk_R=@XiX+3GbdUeaVy$EqU8j}<_dg}Vk&rj;V z=ZVOX&Ku8c=l8F=g4efi<||iRKlT=klE(aH=@^JtpI?WJj3(spu?ba&ul)I}3FrNo zekE^2&wc4af_Ut)lM*i77CueuF&8AJ#s`J6Hd*+-o zGv7Dg{QsPRfq{X6fq{X6fq{X6fq{X6!T$`Tlv;MiL=<MU zxYKJ2JR{3hxcT)%!)oH}Npq6vnbSAfEXn2X|jvGhT;f5g;c2)|)RT zb)EU!mZPgHhP~7ck|3$c@2ikM|JMa=e5vG0b887#>;Rr^%MwXhUmVs^?&8c0eBXy( zF5}#}^LXXeccMaJqa@OSPzfSMqW0aovgBmB-&Cp8T~1nx)0z;3fx?j1k@PG_5Vnn* zx>h0Ik%J5s!camX!k_2=MyXWh2ndp#4iqb)+aM_sl*=jt2tt8`8-6)H*5FPlld&#( z+&t!ENA{qzLm->YV_;}orMlIIQn|d6()g-LMq_amgtnKeKByq8IiNXi?^&%$UYwf3 zv|mCLCR$cy_(zK(&tUS5MG4SA`d^B5_pQ+b@4ffd1_2su_Fp00DzpI2NVC=0 zA;k@wu3ZK#;H$4sB`&Ck&EyXs-HSs9#~N-bsUW4StZBtU3D`Cvili22$8*ml&qk`U z(iwsXU3sC`{x81=`1#D4rQ{vCwzdwBZEUD)ybHrTce*R>!l0bvm=L9nPI;PiBWKq+K| z126Al{EP1{i!}+-?InXIKqw2I>nP82mF19JwW>qqbFQNzg?;U z6b6`_EWy7RRI-9)K`DuEzCE1~Z1*xKO9{Um=xd&0nOF}=8pt{>Y|qwpHW6;@>Oxyv zR%ILqC3hUfaE2efYt?g#7sN1H`{JuW{ZK6dxSK*yo>tgT@;Q>RDuUcI|#E$W>RU)O{0zkB#~sRAi7 zt^f(AseRcE{!D<$saXV(gpAk~3Sr6D1liBRcEAn~!%(|~w@(x*{ol=I(bvBQ`OY?| zK%!Khg#!n6#)6mgw1CBdk)*$|@lichTokbRZN^o za;X;~RVQFI_+BQ52!z?`8B9*ia4eC$L)mhz~pPjR=vS4Aa(&SgDT0UJEXDk(WYc4e*1CW z`tDoqt_&o$T`9z@UxKtM%RCGN-Uo+|ZhmT^54429Cnw&oxsi53vkhMS4G;^WuXqVC z*4#7KK&z>GgHl+wG{(4 zkJ{dqvOj5c_a4oh^ZR}0_xS#PXID7q_;D8bV{QE^0ILA30#j09Jqw%PK$i07R$brb37}Y%!g4;&eRwt;#6}z#G5)#?LW7UGUQWZxc5h zNwN-OA_m>(aLf}$@o^w6Cm5%69^j4oz{mG9GCV@LxQ8;Era7{iW@8Q2+${U|-H8y3 z#8HQGkkLKz7~Sq(_P_j8*uNY=oDu+zp5}*t{{Xh?fiBU-BGwe(a*U}ErNpTQadQog z<`|J{urT!)gWeC&#Qkpt^#3kVM~*!v7TmU3qupv(dul(4SIBjH!?l_$g%sL2_W8<2OK-`-@c!0`eoeU zFxqHh5uubqsR$t?QdHOqjIE7Vs=}B7#*|c57hQI#tj02mYMe`RWD7&>^CpVcQSZsAErBl#1g9%DHSqmprQz`t+5W#h!AOv_0_g45T&j? zLuc5k#8D!nlCqqo-#<)V8k}55Yt3~e@hG#0?&Z*d9lWsjzS9Q8n+Cue|M5S6l6-oR zV&C(@&5bpPR)?rFNs=fS^blDNX-eyotu!~D1xf5TBmG)uF@qf4>r+k5QO?eiA3BUJ z7m#s|b$znI6pM>9ST#;_%?*sKxtQ7g-{Y0Nf6p_|?>yxoyeR;@@gMu_GpN~v%rUH^JYL3l#|yzw8sZ5K(I(c80| zJYOK!nz741MC+^zsC0=?-bjatBvC5~#^Dp6bVz^tF+{0%VNi+BiUhz!v;>9^q`58& zkMCyTnMV+^#JUVgm$F#k$ovBBiCr!bt(}#{bH1J%B3@Qyknu ztbD{bh~M!ZhR?kQU6hCzloG+XIEfidzd)Jgbk4pQr!>w-fWMa%L=gz@DRE80RSd?b z1rJP9A+4l%=2@n8{uf$L6Gat5RN(r|FHAwSm63_F_q1oy*A=eG;=MBQZEkUg4UG>XkjbxclpDxat$EJ?|>2 zqCgslJo==_VN*gl7*%_M%^ap*;SfXvaSzxU~nB9kt1WG{V}9Jl5* z0QgPsz40C-LzG!eRT&2PVfuLnbB44zMv@7v)2P@XZ67Bha28ids^0zFbaRt?zS-l+ zNADoI{C8+~&c&J>Clr(hBS9+V;{vOw$&srQW35CzK;m?U!4Ru9M_zf9^T)r;hK*N%(CEP)UfTUvjIaL?Lt~es(qSSg zz!|hpj$UD(1TDcc@Bjt%6=nA@MX?wXqC+8t3m#`nhjW%-r+bdd82mR(A z^Eanlc-c5(<86!uYkioe7~Q~_lK|jva_#o-AY}_%3@GV?m}GpzZ{nmOZeL6~x(#RY zaB>z!loU{;R2W{_^N;-UJ0(WPh-5vsnnCyWaA?mLkj?XGj9yNwxrw+jO4Mu;)51v= zjFA~gX{mIdy!$M3Q}?3F0V;}-qNKuxMC-l77y`8(9kFcLBxxo)xbsWbv-QF@ozVo3 zX+MWSQBago2xb2O<4TaDC-(rAv{2roou{)cs@6K<#udb^u~5I9)d=ar$@$Wj#3hv( zV*bE=*!&4b$44-gB3bu~tiAM|WG{UU-G2!)*v;bLDSD!TQ!P|Hgp%V(nc$=iCofzd zt!Jr<=}=jssDY_W09Q&E%89dri8UqHT_d?*Q_SRK#PD!LoH#@x$p+NSQwSmtY^o5E z_pTHxRq&?Q1)x6tM~D+oWd$;7VT~qD$B1ITaS$GkvdG}Bf}~l73|@2((LMMaW0N-_ zxQ9F&CUYYUoqHASiERuHKS(zHC=@S)?S($T6?0T}UmyoQdVK{DJ}jb`B#yDpVQlHs zM7Zumog;isTI`kVeL>MoB}pQPBj0~OtPMs8tc(y!p^YTh5`p&F71f9l{?tz70b4c= zaj2KnZcXHiNV!-380s!6y;TONd9-Ff;coVkjlA6xPn6TElcU zZ>PQS{kXwFitYh)ZyHxjVXH1iXE?op4V5CpITP}WqX-R@2gq87m38G10(yPHgAZFC z+tp{dWtg0_Tyjy&wu@S9I!PAFX6Vh#vp74znl`Pq=R!;J(7q3Hk)91i_Trj$U z+y3lJ!H$pJ{65xg=yBPl3FmKJPuhy8T!XBz2%8eAiS0oKgP1b+ArYh67S(XLBEk*&r0dQKWzNIqTVwCiQbr-H{5_Qi z)nB(u{eeG(z$bLrBQqU3#!^>UU0^&gWgZ%*s`3PBftVER6a3G2KhLYn;4Q!V5eC_S ziAlo+mvq>6<$8uY5m~>%)!Y7r*AStj9`KXb|95C{g^E#8;wx4#TF9l`AWMwyl9wqm z?jWNKnP^08eC0#W&qLC|Rz6YcrMMMHC9tXr_j1;S8G#1^TW9y+_SWHa7$D$`#(IOR z8VKoU2;LKHMp^b~CF{rsFSFyJ&mTu^Uk$|H-SNkK|K7d)=fD4et(PWz@cq}EI0qa9 z;b*^1lt@gR)=GvGi*Z#S6$zYdB2+7Mh2Dd_(ym*eO9Sx`B8sT`gTVL2(aC!xYR2d4 zlMcZg5__;d{BDY(2EI7)9*47EN#y%J&Lfl(SRrkW71bP5GQ}Y1$Ibk(NRnC#7 zO**Zun5xgz;XB#=!|$B=fyk9t-;NU~lQ6>#H?{%QX`7pI83WU!W^r z9U8$ad|3+|!8<@4)#WSXJQ2LW_&ES37^wYeV*`)(-(5Iy9ZugTS6wZT#-8#vXf@BL z)mlf^dzlBm|A(i=@V5lOtAX%x?YllhKd)IDOPnDV2`bWoB`)SwD1~VhV~kI1W!RTQ zgyzPD=4LVMjpGiDWDU*cCWOnFn)xofcYo!y8h*^CxBF)3L@z);^6Ouq$ou@n6%R8p z(dUz&yz4b>FFhxDdwizf51#V3!#_$u#%}*Q<6|3uFTU=Yl_00}uf;tGcYXD*u}<*e zn?ALo3_mKT{mvI@Wo&|z6+6@V3>!?MaM04qR; xWtCL`R)7x6Dysmj03DW9RsmQ6IxL?6{|DRxA60BsKO_JE002ovPDHLkV1nx%eIft= diff --git a/pack/assets/minecraft/textures/fish/napoleonfish.png b/pack/assets/minecraft/textures/fish/napoleonfish.png deleted file mode 100644 index 7efb9987a8d002e96a3ad7c5101a546cd5a0c202..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3766 zcmV;n4oUHeP)p-tT+g_gRY_>|h5w*uf5Vu!AQmLYR*!()ma0v-o8Jf_$o;BjEXV~Qs{0gq~47D7B?IW~kK9;vZT z#3N3?iBA9GwSUUd^@?;lrl>rja>&V;qRept8jotNko^vwevIyDWT%T64p>?2(Hjo9 zaMKuU(dlRZ%fAv# zgx88F)+AaW;uws=B@wEszx|#w^^!yfgcNx1p{@vNMmTa5fA}8!9fz>@t`S_>lA#iV zuLB{9@NpMAzf8Hj%5ZfzPu)AxzwrkHy$5Ns&-cqUv?JG(xkpz5IVzvbG1;S3P^$!~ zO&jW_YY^6fln7%Qw+NBJq&d^tF_)BBW9WHDW_t9?30uA8zb`D z4p7|uO_`1&1#yD&f#s&a9Zx zNhBqvT}q|YNF}fvV`ewpLUq?sq!i#Bnn37wp+Ar7Em1G+rdVBNZqEW=K2IXfD+@Hv zzwtxw*6A2WW-Z#6RJkD76t5*!4Uq&N#q@soO3cz-9w|>jfC?~gGcT;fDlmoK54Xvy5lJNOEhjf-GkU*J!oeMrKhTEv@IL< z5Y|$Z1p!GV9o}b@p&*?Ubcc#!Ji&AVRpA&6V$yL+CvHXtZEH$APDoS~BQD*IQGxPv z-+;t`tC4Yy%q+$`JS8GHbgY=ob|Mkp|gNA zF@2fRGZv4bK(rfH76issltH7sB`ZDs*7+%>O4%McoX@EuO_f?~-;+;D%v_hsTDm<$ zl@;hnQZa?5ZrI%;dgjH{U%Cq?C1q{ES}++Dir}}&R%`D3q31p_OW=NZGeGQqGS%Qh z{M;g97*i*Upj5j~wTM~tQ=ANxg9K>Te7)Gnf<0(Dujt2bnAG{*%Z<-SUDQIv6S z5!h>UCV9r3D!|s*+CdtivPfatND_(1Zfzki=ppk}+|Bn;M~WyCZECeTCR^IYov(ex z1J2){xz0q!dG7(w`PH{F+1<(!myli z`&gn!+ic`hW_d+6KVX&@4CV*eyr#dnz(Q3ZjKX`%E5GoO(;BZAeDM9;{`p(!b_2{A zga;*{Ip~UaypLf|ki^Hk=EnI3OBd`#_Io6zrZgRTeu~|8WYdzu zC#)R_T(ajFZZ<)7Vy3r^IQZ$?5xqXDw)jX=FAoVqP!pJrO6pyPt+Zx$Kjx09V4;((p&odIxIDh$j{)FWuV^KM@3jD_{U!)XW^uhwY&K$EMFbE}XWElrfQqIs( zM8B(97b{#+9;9P(?!9xJqksDae5r}*5~(Hi_5jix!~*Hs2IlAyW>puLTJlO!jRQrm zB%cQMbPdP0a`r9vSwA+WyEvdcHYVvu)Y&n%dj?Qcks@wN@g$-XcaVda!ISnUCdcwlOA3V#p+6Y>=ZlCG+mMF^2DYhYCGbI|VAk&n>7>2&0$Xv7Dh_ZrNuSTI!TH;EJQWByV zSJ^hZl+)}1f90vpKmBh$NoUX_KX4zjt#w9e&5fm`}%3jPhjLW0bU{$2O^E8Rgc5BF!jADb;pHp5{!lf^?eER3y3^A!3O)ZDwd+ z_Js2PG)b)3oT8t96$HiX@L@JLQi77ydVp*4tPiAhj3r_tHH=HccA>GQC7oKzw4mCa zQWrVPi;ic1{~XVK(FMfw-G*XZRT8qaEn7vNkyM+MMUEJ);maxY)*80XaA``gjv_75 zN>P@+otW8nfs71xmQjg-oMnv1GpeFuGTLU6&ZsA8JEm=}Ww_!mK92eEpFrGn6WPIo6!9MPpeZ|>S3zAVVyUpr;I*YG#Ok8P`597yEhW3d zEo{3jzICj^RW-Z!FL3C_8Z8u<7~7=C`;M?!PdGX$Sc(OsttoR=#b_GQt!qXbj;4Va zxd@w;OzW7csL7S5%qy^tsBOvwNuw7a$b%r3nxc}}v_>SF5KK!xK_Gj52Ft?-jezj1 zpL+{m`=ys-@4Op#<+CvRp9=TfjmswZti(;GWb2#EMq~1E+J>KNa&l8CHsPfMb6bZP z)Q8wg1-ABVZfxOHjp)YE>En_rXaCr&Y$YallnYo0*r1Up$U^bpnHcFCn6nVf^p0w1|d1x!( zx-6N=h9HlOB(}2co)d&aMF!_@hrKH0ML62&Nmt`X$9K*yS<{8w5~l@_UFyM|l! zv=Lae=6HoA2ucwO&we5K#9#i^87sl(zxB6R|K?%z<_Mt-!ykACpMBpoCmnm5Akv)p zq!+&$75C86wI!}HU6kwx!;#w(fLO-Fwn5w*oQ{f=UL>R6mt zjHjMBQDmtliWAaJ=*?@gDfD7NnoBx^h%)!Y15G}u+FV~|4%2OBpSG7kHW^7HD~CC} zMJ+;G1KfW7C;o38pV9=qbK z1r9<}mj~NQSF+q7$c?5ZLC6{@ZCgM!xn5}BwCyMM~3J|PC<~5yGw2&B+;PjB&uKU1QjccxZ*-L-6jR2E$ z2vvnoK=w@AWT6DU6;M0WbGz{SF2wIT?ZK3@;=C21vl)3lV_bRF)yFkFp<9h##67Nf z-(R0qvpcb;f5ET6iF6_;8{MtB$1;GZ6Csxe-1xTlp0~ZH;$hz!J8${<+m2lE;#akm z9p0g4Q!f43Kb?~V&O!9UxjXb-duZuYM=pQeZ?}q)_Ku6cc=I{c+y6H=N6&>*iTK`6 z|0gQayzK5<&q>0gfyeBzwNr_hJ9L0QKltz8brK#okI9`aS3j!P-FZ%M2Rqoo4tB7E g9qeESPe1_w3)^7#-&zFkY5)KL07*qoM6N<$f@Jbb@Bjb+ diff --git a/pack/assets/minecraft/textures/fish/neontetra.png b/pack/assets/minecraft/textures/fish/neontetra.png deleted file mode 100644 index 7b8f9cce0440b480c9a5c6605a640d1cbae4e0c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2494 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 diff --git a/pack/assets/minecraft/textures/fish/nisikigoi.png b/pack/assets/minecraft/textures/fish/nisikigoi.png deleted file mode 100644 index def4e84aeb64301257f79e701c3ccbbe2bce760f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2046 zcmV z_GPW*!Ymq(yi?-4ySxAY!oEsZS6A)(y}TW63G?UAmw@Z2nPZe+{wljWTWZ_E zIfrwOuCA`y=iM;mW)f2E0ZW@VT*X>Ry!;6+KeYlAM>HS&kZ|9gk!SnCPkHva^%M$) znn?!^9JuYtTHL7ctBM|s*7Urvog~a*qayi_j??(|TO$sS7cHXyk;TLlIslkH=P|mw zyD1b3)zjm)7$L7yxGQbmFt&IEq$$eFlM7oBLJ&`$M9&w$F!B{qjLqe0zfb=2J$AkJ zElS1S+BUfz+d|*;ic1MXfH9yHX3G7PS9T%WCZXFV<4lSSLTtGV%`K!4%tU{Dyl#qQ z<}9Mwvq_tq>P-=nv;R88>)-n(n>KCY)TvWUn>NkeKqR=4qF>*r@N~vZk~woxJw14b z4q6$|IV_SMH)T4b4+1BC-8Fl;_POf4K*F?i^?j=V^+ME+uIj4+w;m z2t>tH=Wxz4?$jxEg=KhU`wfY%)*@8~@{0q+NCvpk!rTP`{oO0U30n5VLE6}aLULj27F1t9`us)2^x5cf z9SAjiS})g38uw#5CSoQ{LY_H|3qy(v9>RnnQYwT{NGY&R;mZ*1sNO9XP5Bj5B^qHc~(!Ap%E~W0X6YGQx?#*Y8r)~{|XVub%QQH z{Uo`t71cDpVz`jFOXm=+9izr%(9lkl{+r^`r8J#9L3z__KTQ#52KD8qVG%VNtP_7IByPVOA99F)6jZ9Nm3k9_+Zfk$Lp{h;7Xe} zaOR~~*}8QHFRow5-0|lamv7)qDI$Jx2b@2L%LRl@ZHR`JN&>6~`558>r1J3c<4KIA zZ{4$`jUiI|2q93)M@otILWEF*>S>F!kaW&O_ZGRlW;Hr&#yW$_HQ?z0heJq3TgR+A z;e$mN3WdS7g%}zEuK(x{>Gkeo>y{n0i&R61A5`|M?U)Gd9pDFp&*kezc{yyZ5jkT# z9uAbiS&NVwt%Ex8K*bQLFr_}+)ceW1fK&%)sW8qWwO<>%cI~>lYloUKRDAV^JNlzF z+_$Xa*1i)fYC{&yu>fq|wv#u0`HLZ^pF(PlGp4di1EuY?V3RV=qzI`I+CzweqjdB) zD@;;CpT7Y4254>pQD4Tiv`?taHAdJENrHl9-}nn>cIB}Tb+cmj5dtsbzjop1^`j6- zB~hM_b%r#KF=={j)t8q8?>b9XA<%vvCg(>S^UO1=#)^PpHG~G-nU`0JaO1D}%C?C# zw>0s>msi&YY~Hq$&wuW@N+u5ik|@IS1C-YM=aY|^I&D5lIYJ1D!y<*m-GX{82=k;# zy{XnDluH-!gC>NKC>@L_c$6GaXM(6Dz*jdg?xj6A=Qw`w_ZU2O|Lz0cc=K)c@86F} zW2BJ8afG#o%NI`b*6w{gvFu@{&t6IzN8l_<`+&o_O4wHOMQwWshcos{p#w-MuY|4; zXip=Az?zgai7-h-nkK|iKh{K8J94CL-nR3)PJzMU;LaZS8Ry1LCZ7*$6aDzLZ`07& zN)R>?gv}_gl60bS#P`4Z9n#qH^ixY%{^UBMauMMKN_!+pgrCc!JddPYf&oDez+TB2 zQYn=7QCcGeSd(H*f=OfIs6-MMiOYQhW;vvge0<~(UF)}CM|d@G&W%|IR81I~6x@k_ z{AqYN=9=-tW)R@}dE`Lo9sK+Iyz`qq1fj>urg~2N$2#bNGUk{;ZgqhhXRWqSxB+(Jl3XMsveEiuCP>07*qoM6N<$f_iT6*8l(j diff --git a/pack/assets/minecraft/textures/fish/nokogirizame.png b/pack/assets/minecraft/textures/fish/nokogirizame.png deleted file mode 100644 index 82011641ebab708fedb37e1b8d368ee1e7716e45..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1868 zcmV-S2ebHzP)Zf-N}Y}^s1ylCpLn1ajkcOrf)g$wMnfP#OlqQ|N#l!AUyLCk z5}QU;;sqZd;Q@$<7)c091R|G*l1$V@OBrA?!Z6b_w{zQT{bv1Z?=y4Ssq)VHnsfF( z-D}qR|L?zj8xau^5fKp)5fKp)5fKp)5fKp)5fKp)5fSebkax4W@TbySmXBix^0!1_ zW)S&hN}l=OvXaX`AqT+1xvl>vXxW;<^6gL2ia>BEiUOpJtoQqpQZT7P}M1J6<~H4-Sc^Qrh?HN9N^$6 z`NiG{F~ol~l+u9+av_CWP*`7REo;)g`v_p~*vfLogbBs-2&!f{btQ8~6Q=}Oo zs~Lc`IRD_!zKOAYGprPefkI^P1k8a9=L$JHPcw||J;uaaPL|OaNLvok2!RyW2#ORm z>HZp1QY?&8c{nKzE;m=2LRh(qJ_p9Vab*^m#1j;<#S=BO`-_b8@a?Z2#;$sbv3)mR z@a)Ld2k^>^|CIZBJ%=m&88&>lkbV6>tu)##i?O|j`Qcxl!06ti++28ytVA}1ZYw89 z2uu=#`uL%NGw0_X=`$q+D4he!LV0G$v*ev~P)bQu!6D^*3OR2Ol|(s4eFta1f8r}R z^V(ZjUEKtF7GxFPTI|3i1#X-943aEIeYlP^O|ZVc3ZpZmiN*u>ehamU!x!v#KCU}- z1^zyFCJ>e6*=cnOA=%WL77Ch&$1NS zDCB7>^}F8cqElET+QJx99?Z~MBTZ8@n`>BFYJxOjWLJjIefApMK6}pv1pWAXcVKyW z1*>aoXsvg!v9XDfi4pwbp=adz8~=EWKJ>900%6;7=Ktc>nQJAbdOZs+7>!-SIJdfq z2cP_lr0JKB9YoP9(Ct}tt%Ei|ZY-3^z?LvFT!T>-S`}dDLW>ObgjSEy+$aDx@Ew?~ zgHa^?Wv$(ob&bXlk~Br9+mn1uOi1y(mI&FCyC+~2u(sNSbH4E!+;ji$`)-|n<+qe2 zIVL|ahKZ>!Y!R@!_-Fj);nV*!`u;jQJG&!CKl$NZc>C=ote@L}D+n8{Hk#`#6otb` zJp(&Nr(3|JMw;WUdWJ+L=yrRsmeF$xtzJ)hP`A}V&pBjrzI3A7|VBQSM<-PVD!J@k^#c zJG32G8ye+*{`Dxe+ilpwq9`ob5emC0Y5Vbm$NBh;pTf;EM=>!uj(3*d#gSW1?0DL% zFWg6;xaRBp(5d4xF+4uFX97f-3?1Juv{wC!^$v4fm62xKTrE zeHo*dj^mR@PT=(Or^u(fkBHF*CdrX!HPHti`#*dcHd`&Z9~v5mwS|mhKY9AH$7>g# zfesP`2`V`-l_RjsWf4_+gCN3I-uxqtO&{aAmwqK{ z3v1;N-z%s(f@s@E!&xW4r6Ae$1ymryNmNC>a8SA15h}_XqfAhI27}P_S7nsRW#}vaj54Nx5x3Kq)Ax6)xHG4)#zf zNncC0bTp))70103fo(k?L;DdZ&l%r68KNok-!CvyPF3aw!-LVbd=Ghd{)zsETkj+2 z?<-qNv{i_HCEUu)MI~T8F=bXrd7qa7raHi@JmyN_a#=5BA(1o+iM|wF_0BNxvNQ-O zsX#ZhHduW9aoV&0OT2jY3Gx}Iv@VVG>ukvtNj69p?XX|}-2l}+^;sqv4^)z>w!I*Q zOy)8$YKOfeA|fIpA|fIpA|fIpA|fIpA|fIpA|l=g0PtU5k3l^g^i;+G0000F=G diff --git a/pack/assets/minecraft/textures/fish/oikawa.png b/pack/assets/minecraft/textures/fish/oikawa.png deleted file mode 100644 index c871f8539e34b69a571d91bb8cf02264d2294b81..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1824 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 diff --git a/pack/assets/minecraft/textures/fish/paiku.png b/pack/assets/minecraft/textures/fish/paiku.png deleted file mode 100644 index 583dd10f1a35b3289f909b64fc34e98ac8ab3aa0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1654 zcmV-+28sEJP)X6HP0`Y7`&TLL`V#C<#GR zh;2+>8Uihp)<{xQ5J5zQfM}s8>Whex8fq=-q(%xwT4HNJty0DpHEl?nrsgtd&UIhb zT0We~Nt(%I&P+#1aQ$FE?Y%Dl|N6dft-ZkG@pwEQkH_Qjcsw4D$K&yMJpVt4TX^nn zIdt5r2DqPm_db#!XJunGckTM#lC|852Do2*e5)_B=ZCij0tuM>#q&D{2u+NiJRN&3X6hqhG>wTiC46 z`DTZe8QN|ILlU-yM8t3vnRHGD93_TyB z1c4d~ZMQPA%rMqS2*Y4FwAPA7V+HkE1?L7s1%XBgfpcJtnVs0B}qcUP?Kc^Gcz6jeDd!^GNTkJ#!8BEAlUoWlAF>ya{6rX`1uWORrL`mU!*8v%|5sZ~ru{R+p0}r$~~BdcDfV53Q%!?C|1? zuK@73zy6CnHwXcnK6)FqTA4gA==Czr|9cvtHF;s_^et=alClyvJO{Xa`?k~1`&?>H zQ!1AL%eplmq+Bj@@zOsrv%&;W6a__YD3v3uwPa~dxm?0J$EJ^LV0^sBxi{ay7=yEx zH{NRViBEo*x6WSR^y#x0W6)X?MVcrK2tv*HM1v%WdH(r75k(=@YKishSCi)jr%t^| zyWJ&hNNiCI%qf*9vW))pG-n38f5CqoE zYrvvUawnd=9{}Stfp)ZA9iw8V+iE23CcVfVs|LG6Cw08u4B7p_6E|%0%O7pUS;&p1 z$N+1RMa~xw{qBYbqN9hmVg+CwyB_=Pf(DGdekY#1pQI8|7>Norx?165TfQ}N2S5Aa z!$T83zT*cYZO=y@zl&Ig6h;D$P&n?{e{7+)bAF-aa@;9w-t}XWYD5qU;*zG->Rmm^ zg3r|}{+DMS93}e1p8d}ufl%5}#a}xgmdgMDloEuAMoG)qcxBP;r``@0ZTvlt90SLw z;;+lH8BhcjqyVwB9>wklo>-a*??U`?8X)et^P9M21tzR6xsRoqa8q4aO#Sg|ZmD+x z@8%xiX1%QRcsw4D$K&yMJRXn7u}! A-T(jq diff --git a/pack/assets/minecraft/textures/fish/piranha.png b/pack/assets/minecraft/textures/fish/piranha.png deleted file mode 100644 index c586006696076a58af9ea257677808131a16d857..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3817 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

5m3vP^`4 zlPAxOJwQ)SPqVbtX*9|>MVoVP5145baEb;|lww)Xm?{t_imAFyoFqhXI@+;f ztv$pv1WIX?hJHU_;AO@D(0V&3Nhz=_i!{}M0y14=UwHWVQGWZG#U-wJav)w zX8(P~ZfpoR6(~hz;zAMRFNbK)3m8i){p|E%sMtb%IqqQS-#w6 zVX*-kk|d?y^H8ZG7)H$Oo+R=EgvesQR4U*PV>~aSQZ6!on~Ueicz!^dDzwhZR2arw zTJo^WEF2aWrp5x!p6_$ujtXbbZy(lgUi>2f4?cL`xS5LM1R=mMB>Jij%Y1KL{PnZ1 zXn;q*`&9sL+vCvd`IJh%*slWTD8coh22!@7M>Ra3a{^>lm-ox zjVe+K(li;lAXwIR+!u?Pd#0%-3?r0MoV&0k%FaY2_E_|G*0wlvJ^-w1YW#^4C-qhd ztX5pgkq&GtsU28qmPP1s#OEalt^jNY^VI^?U1RuWO~X*DNU~z z;Q0}K&q8aB5Msxc#8p)~juWJmsEad`#>Xn&;-?rLlDMD zAqc|wBh&FoeiOWvYv<(T@! diff --git a/pack/assets/minecraft/textures/fish/rainbowfish.png b/pack/assets/minecraft/textures/fish/rainbowfish.png deleted file mode 100644 index e6508bd6a31fb9b8d74ceeb4e45895f7d45fa774..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3090 zcmaKuX*?4S1INwPWC|IX`~HVw?tf_7%v{Ob$t>kQB3C2A+$M6ZzdPjCWd5#Hh%iU4 zg!~z!9OYQcQ8S*Nm(S;UKF^Ea@Au;S;`jEOYHfw$I}JI_#>U2HW@>EndyW1bAouUC z^SQUk#>P8mW_;BSSF}|S;s5M&^Z;xpdc<&lR&)Q;B8S>ADf=<7C3O1l6d)S@QtXzQ zsU4gg2RAitt<3Wl6PzTbW!Ga0YRsKXYqS3r^Fhm64-zX-@Z&gR{uDP#vls-{09n*;8=a+>%^Y`c0{|KKP}d?qU+loJkhrB{i^Vg zw(78AftI5vS#mKQ?WM`o^)w>%#rcusO9s`0Y4T%T2L0npY>76BN96;@Vz7}Tc$Ra8 z6)6TNkiU`dL)*}cpXUZ*N`qy(;3FL)PRh(59BqQ88u${pX`oLRwvKu7`-?2aT-P2E zQC4-Rm*)I7*L-dvMX*LN8o|+*1@LR;%d}@D% zUhBI<3O%gj=-c{Qjb%EmR>O15!Pqc$!T;8r_G3r$hf_1OVdTkSmOkCrv|Jh5$2&@eaUwU`W-G2t9Eq91FQVH@^M@3q|@D2QrkaJBe ze0aE4K(a~8+hS%TR-4ngsD$2d7vnv}c=W>Gy#h7amq^i)q~I zSg-Di5}T%JRR$+|HYfSlsd8%!a)*4rTxl#f5zGJ{ga#&5#`m%og~c7qmYwO%}3@OP=SHW&4d&j zF2L3h`}WDXZ_L3phYyC;fMFzz(Sp$Os`7a+;;jQ2IVB0VduJ)ODzd!YJ62SCFmv#2 zE&KjX)n%+gUG+MZoVb$75-C|&nxsC^N6aThY#tIuz#i;vlp}x9Q%_=!``gC)W)Bt* znr4FlJZ1uBfg7LKdr=>SPIA;1O_y+-zMR(``E#J|m{Zz#X`jQg6g5+q@I56gRr!Vd zQ4fOYRFtn!1zg4AGOUHvEfei7#bcV+x1S6Kd|e?%Q&$JO9)c+;yPx{xOIbN%LB5;8 zUrs}KdClYvQOW_6#SR zS&PPOamHb2x39a>pWi{M`_tqFc|x^sk*uG#>7uR&ioC(T`yQoSiEQO_zwyVM_{)_y z_Uy-7gT>GM&xVDchDsvSP3T}QtacDaME3;{0lsN@kJU5QFjN8-9Tz;=mD+hnnj5JX zB{BPCsu(%xB~jTuZSO>XmZE(h8p+?5t%cwfLw@$`?2dE9Wbj{3F^$cTWz{{(-|)QY zf^DQw^4WcF|8;v&DGLp?fhJL#k}a_%NB_t+)ua+k3@V$~XoMz+@X60_jPtBs(9XiJ z0-Y1qK?~L}rxHh=eS6{<`qWSysLL@%CFVM~3*Z9$B^w z2p}!VB}tYsRXCEue^jIeKM+_?X{=%O1=F=gM_R zKHq-4`2(8=xVXqS(Jjd38c82GTB<$y(ub26MvLkP+@s7#s?(k-LrB@(JUz9gCfP1g z)PZyCxz^qHpNGFnj37h?WMLj~ubU(PQqeJcCTM9@(yv8ctxj82GEX4JXPJ&S%%t|q z68@`nXBKb!Oik?rUSRqz&VXVqU?gdzyFxcqm%@_I$Rf(sS1g z*mv#4W417iG?0@<*&eHc8N-VVIou-Hg0^NU+Y&ePuRu|m&t&A5BQG7wP;l(m`I`)- zdac_xKk0vJ$}kL;!V9&&On(6&`c0YJNJuF_dh3|$tDxEiCZ%MTzMXK zdq`Ckquh!u3d+{KfH-|+NsmM*tH+U0ONRl=C1OuEAmLL8Yq2OU-YRlI65%%*+^w=J-B(un>Z1ZyX(s;wAr4OF;mesmQFGJ8p zF4i$3CR3c-=?!5eap|%pIIS=HLP3VnQgZuXdmMfz30MYS_zs*ePigb>JiPrnao?chrX@)i=o9)I*`Fy5z{}TRw^PHy}P(?Y~Qwt!zTz>+~Sf>ysCC8}x#{8T301^Lc zhgwZ26sa?V(#U#y7nhK6J&=?c+57ot>Fe%RLY+JLhVh+TrHqpli%MXL=L>ZQ1Fves zh(ibQnck^$rY0#hBp1HL@#yYIUG?Yv87wAD+6>~lg!U`$e6rkPo5Sg5bn;Oq6r%*w z9~hbC#B6{@O>*+5Y+p5qg3j<+s|uYLGfWgS{U9cMr>lszJ~1%I%D|*|>AY8SJ^C{- zI4|z_E~qiWiezCDwX-Xsm#1uU|I4UYkj{uUr`@$49`Kic`qQ#Ea0QO85*`}aN_pn! zqWUH9ke+s%A>)a%M;gP!#8up_%%yxW^n78_fO;5Sy1Q-Ym22(-_o>HRfeX|puu_<4pyV2>k!&HWOXvp$tIF1gE1E^@;VY?hi3LJ1_>#3Uv$iAhXi5|fz3|38SgXg#N zSS>s0lw*2uW^)XH-~8_Jca02jyjT5G%jZxM0s6HFC81#>@DQkDG>a`8o_R+}(2tkm zmo1vf)VdgRrZ!NqTs9rZF{DgvBozeCC=n|Y8bcMukfm^xqU6DoKe+~g?K^u}^Ti6U zy!4`ar>sHzwR`%&Ef@3cCtgMh!LTy@XEeYCzPLDor=aR8o*S^( zQ*^OBsI7}|#_E||aL!^jZ+nezeE*r_Z4K&3dW&Ou(f!sZp=v=e0BUqBDe2FZhy_gY zRg14azKwV^NFr!p3yp?YkRR-|$IV<9(fRD0Adl`VvoY&3B_PS!9yXvEI$t=gl^=Cw zSiN!v_y6i8gpdbG_)CdU07I$aaTlBF8pp;v+Mvq)@<(3(PfGvix?mWTbOT+N2q0Ur zupEzHY}wC9p+ZRuQ_@T}WZZEB_V)C$WWh8V1?(((XhKk92&$gotVT(AS`#0?`V7hy zi;bK2v0}+|E?@i0zr-38z~7y9&e(;ITzD=gowSmUj``zAIFb)g&KEDjsW|9C9mMFo zjx%~!5z-|>3aYM0JZNHSk|nJ*JkTXDgurqgKyde6x6{_z!mL@V0662*SMdCke_}>h za>kN&9@}w%kQDUW3a=;4`e$|%2pQx?iah$qm&XKJcG4+q+3<`y7OP!#`uh<=;y4c1 zuep-Ni#w^WPY?(Mj@bvO!kP~vO${S#BDL|4sc;Ak!yiDte(&D(`}qC-B1vHo*Ckh6 zaS2OLSxqDoX4b4#ta#sI0#Z;P)Txh}IJSf3xH!QOABY`Krq=<&9EB^j6>Zt%wkhp|L{4>K!GL& zBNd0OgGCC4i5(2m5D8%h4HkAzq4T8a?CD7{oG#KoT%=O5X-ovTyCVv~f2=uwBB!QW z+uCVuYX=}XG(u`P$zX3k`(NElch_z@7tEodHpYw@)89M{&S(gu3xQ|36#Mg_prVzD zO|L}@=x7RbT^qBZ%Is+@8cwmZuAUp#eunSec{i6_cMZ`9*VW^yhA& zV0!>uch#jl{^%o^nq=mzdQLo{js1H^D3&Z1wUwWS5yacOC3A`*#=bAl6D0ChowyplXnGI*e9@IcAn=Xn^(x_BPQgUSP# z3gOvQ7R;qN-$T5%mbL$K6RBj1FaP^JJod*wqMT{fUop-Bp(YP_5d`oKlM( z46?l|gKaCand+GG0F|msGMlApDRSF5)C$z&*PIAII+>)9&r>dyu&PxY+Xmo{@7&Gj zziKq)@eSMpvr!!xxSHp3Vu910|I0f>Nkf8vHDltC>Hy zouM+q8TN)`9N}PV$$((<| zc{DWC)85{G#2jEk0^T<#fl`oJzJg3TNB6E>0DSMxU-GrjpGLl}nYfo9=ZBP#;M%Bo zJ<0w)hI;m+>pDO9#?7yXu@y`B%B^b|di50+o!LoG1@5}}GQb-*|0555&fi(J36`&3 zfwgf9m(H6t;r{;Wp1RS$k^l@3_zBO$zkZBZG{%2F@G}6mzPx@y!tzuU;OJp(|*f5CHcJr7eV*lpv^HBg>|mQUlx8)@m7#lzdSah9gDGLaxW zZ;|gSg<#R5`Q-QP0N_v0ZRN@{JGt?j|2ihX)oZ>4z|A+l-;X5omy_JK4M!<-@w(h^ zT>W%1NjMrN7LQ|?2AZZJq-5RmFN`UEB;_Y`g2MBVQnIMoBPu-xrN`9T2;aMWF6X9S zA{>TW*X?1XYNHH+vXmbdQFx}wpatt+*voTUUM8K*jf>JdH$Kmx7v=t^d~epD%uTqm z-}>&8{u#my5U#5m6VekNB_oGWlI@uY-Ceu!T#wpB9j@z=&*fQj?G@a0=hykwFMjl< z%1=yyWrODtH9eMBd%0m=ha_NEwG)>?ILAeSgC0-b8shrwyGp zElFGG@Rt@gL~y0T(*?p1Se}cpEy`63@3lUzxNIqZc(RKJpM8ZzOP2$%`NbC)7#u=4 zAqK=y zSt(4%BA3mw>g-mg&xipXBafgKdM;+rL~4>^pMNgcGE_@;Bu9NvBUu@L*s?7@_E#%avYG5#E{G^~+r{HkYtQo! zLT_+DD245K9LSal2X$OsP>pI}1c=qtpoLtLl{6nc8@hX5q$k&atn{L)8I~=c#>pql zLdK@jv1BSQJ@Fu^zCF}OYuVq|O;^tdE8Bf500E9osnka-F^kZY#W>|0=Sqj}SR1|R z0=;>MAy>mR4K!WH^*l<2B86O@hkyGsGU*JOuF*d{Kx<>mgjR6mijb%Lv;P~FcU`3A z5YQxeU^^b3^e9+mj6ek4&@qC3cpOemC6;K$@jUupdlgeRxbdGpg_OQk-F^Q(GzN7R z&5qF5zn^v6`t|XVq0SWl{H$f@F=@gw!v#9Isqkmw4;o%XwyZ2&SHin@S3Wum` zsK=^SDHTfG{Li=Ix-KtndFHLv1f}Cp!FNEWYXbsl7}!+{sT3XYdY;=gMAMuplvIMM zXOb%nF?Ie~EIi@tv2kY4^)s|m}W|(~Xz=RV8g8|Hd$@F3(YXlHQi6irLWG=z!3Yp_Yn$*2}hz#pE2z%6-Cw4KfIlq zY6VSsgdGb{2&7UNois z9*?nP>0**2Nq+nABc!uMe)8k{m@;+Bo2J6!kPQR@ND&^-j;i8N!c!IneaE;Fl(MLn z2N>A*JjLuF;pj&(%pjVk`>P`a*;E=ln|M%=v^|71NHrZHjDt-ONe~U2AsNC!kP_j; z7OcN-&lnMVcD>5%j=4l*Q4G^$)vA-Jsfn|2!9s+PY}>kxO)qXD6b`+mvbX|x`iHk4 zcEh2Ft+JHZd(`+^Q{PFok|GpornaG-z9ENP-r?K}K8Ug`{}}ty77jf1eLuhqMiD5~ zs7U=%KUn^HQ#o7P+L_%km+8~mm@|7OS6+EJrBaEerlzBw1dnC`0^roEZkezj@SFQS zbQIMk2uU`z3n5G_OOne~&}EL8uzBjwF)qB&ui$jQ_$&bhs;Z+k6j7Fr2sm8y^>xQu z3LmqG*&TD~d99CdD1;D#NF;JxIztl*@R6$@KMFA(C=YN^%0_v4u>Hn}U%dEFGN+x4 zsYyca2%Z3RMc?#GMhhjM{Y!cPV%?wqp!^K}Jl3z@z*%RV`K~la)tgyKp=dMr#I?xm z0R2zjN8gl7$KAi|A3sS=P3>RZ3^}wRa->7i+u3_NS}#-a zRYp5I@0Bk^-m$2VN~OpZizMQ)cfQ0U0C^hz24cCMseK zvaA)6MpLASqFB4Et<(uofeHe~BqWdI4c~mHbGr6E_r0LhwfcAa?c}ZRz5CsJ&)L&& z|Mor@$w)>rl97yLBqJHgNJcV}k&I*{Bl-U(g7n?{`>#U?0SF0e3@j{!mHf4}Im$AF zkQ&ws2%(^qg0&Wa1#H2e1|FmU=&}%!%}BpnTf$o7u2}&q3@>Wv8m|Os?Zfi~%3_Ej zE3o8%m3H0_Pdt3Ps5fFLMemfbko+8=_(v!OLD#D_XkYY6>hRlno4LEEy6!Ftj4eA7 zn*QVm>2g^vJS?E#cA=r9fN@WA*FCw zaEsG3(uJE=5>ezK^gWbTU~aCD-R%LgtiZ(O?>ZCz@vCRC zXnYK{#D^{g)~~q|kNo&Eq9}4sIl+OiczwxHKpvHB2&cHu%DI$;Gcu=uagMVVl7F}E zzRFU%vR9S+RsKU)3knxT6hc)#3x2VCDTS5qDQG32Jk57^dl{O`PFe`(KbBwr^o!yJ z%j?JsgJkkV`|2j{J9h1!MrkaxAHW*QO#!VHUUkrWIE<_`c-^5#W6K8id;mKlD>ev>sc zTTKY*!5HI|V&#kjQ*s6yMpT|Is|YPB0H1d){Z3H?G$xPZy*~ZeR?%uj)%R2dwr{0i z286Cq(^OU!3usCTQ|Ju`DHiX4;)2pAtvnU&xh~q>0Xp3wqyorul;3d_08(Sv?<0yM zctMO#w+}Jw!Ak;o@BrTj13WbRs0PRY%~;~^Z{3L59b1Kv0%b{fWUD-%uK=0>&e*)l zbj9FCY3r($56}5@OoB^hH+{2}U(V3!vJ#IO~ zsXQqm(eCG1y1zr}!;U=xGqZE(4~7VRje4^NtrRPora6*Ygk~c_5{BpvGYDldIk5yu ztB&?eha<;R3SQtNiUYL9#xS*K2DN&VH?LFxQDnGo^%Z#Xk-NmAv6vl{muB8AYy=mb zC5Lxu-R{Xr9QqLOG*A=<oY|1$LUd{@x*=F%f75G1!zjFSG3*y)bo9WL4d$lD22tMRt-rlhLsv~?GC&o#O2rBfCFA}GOzvYwyh$G6|&6o^HMrI za9{_{?}f0m5}v0Rph@|w)~>e;vIM#h;6ZTB)#*!DFU>|+x4)LND4NlQC2TH2x zQa~84ORP$14Lt2LIEUj$+H+Q2fL^8$N>{KOb>9JCRW7RtfFlP+as`M&4?lVMcR2X< z@3rGE_;Yl-9V}Tqf$=5FAk2W3@omK6rnTb;Qd$TlIXtx%93e`%P%MaG4To%A-_uZ$ zboWaO$(|Ds^d2^>f$=j}f3iM?#vn}xIOXhBc*TLITLQ$V9=%KKH<_R)a}3gg5UOHc zir1i0s_KW@)6P5-1wwR&z)fqf#MDz?6+%TYrCs1VdLL2}R1^pTg{QagW#wDT{|pn0 zYVfp1=qvathxRouL@%Mtq1b3sP{QN)Q#j|D zh0vDZ0)8Cx8iAH*)Izil*bkGFi;<@Tc*?_D-f{^3>(O81C9ghn0sqds@IpNF=oFgG zI`fZ$unIsJ#u#KdBmq1Vqdy`-zAq6^9AytZ@<>cQJI9DzZ;rtfDe`>CMj+1`WAVVf z_u;4$k4NBp@PdTFFE<{N`WUjbk8ChNnAEvUksacs22Fsd93U#KQ4~XzLO^>yY+<-N z^0Z>ZW*y=U5@MLcNP~h%PBuh`V!X%^hCZjxcq_p{uYC>f{Ki(KX$Fs@G{^XoZFum< zk08%t+_h;n{_{t7a1Tlbp+17C^mBUwlE8O3&>aG;u^N-22fncdQ&Us;;KdhWSh~=* zWr`EecsIWOr7z;Nv(HC!tcfzqFx$?c!X_f^AkMFxfc9NvS!Rxo z7E3X&yV+-eD9})i!|X|?pN?l|hlt|@f!3@%$@t{{DBvN>a+Fyg+VgPsC2O$hhBf%` zx=%t=o2zFa0}r=+blvk5JnN#XxIA_`1LS3aKv6Xi@Ri^yvU=6u;^Nh7xI%bgf_k&T zv^fkTM80PFt3`o)&_;jIV~hxc5L0{mFg9i7@7}UrWZ3}kJZ+7A_3Mwp_{3uFP)}cV z4gTtoQ|(~-J|X6NbeM`vRR-{?IM_X%q1IT0Mq`ZY^d)O=Mrqs-!Vd%*V-tLz5(RU6 zM%Fk)t=@o8A@=T>!n;3k8PY6AI!rMb4!H~4{`*}hN`voyZS$Xuf*aSa!ACx}&e7t6 zq98;qq*;W;px;He-{z()O2&~D5YZesxi#HsNAdcD258l6puYKV1Yf-Bwh{BNjPI@mDLFPzAd};|J zxh*a7yhN|p!El&DOQ7CZ1my+z?bFZTpfAm{EiXpcW?#lEff|F(}KD(K}01rrC{J4SQ#1@!$`CiCt4O`1W0!cD{nJ z7mxhrNvu3$wO#kA&FrZ#P~1z;%(XEb^iZTJvqWoBTyfE*_}EPw&}cT9zf&tqJ-(5e zhatVWJ-G5itFU3y?TDy?5W?q<^$~%Bt@?OFj8JfOK?PLA;Yp!5iIC?8PdvE|KYRGM zfXQ&r9iPX)fA8a>K@C@H0!b2AY8Ymhrpz%lwHNJf2M53D!*=Dl7eIL-TJ;DU*IkW# z_I}Y%X^{fWWk0eVWnBryY~Fs`DtGMIji3GEG3?sY z!2=b3Jox?fqSR*7=b5wka_<5 z-h&%IeG7Y^YC2J6P6r+f8wNbz_p85A_370xm1m5qDo<|E!JpO*syxp}zc;``zj_Qm z|HY$(IQahEx8t6#uNBLe#Ar1Mr0YC$bbbH)oUa;lSuo!q0N%cH7l!E&Z+z?JcJ-P| zF)TC=dCdx(c+z?3?7m;rC#!b&;8!NN>&_d+$)}vU5DA~S^)^;c`w1X@roO%25XLym zHOIyoNnJzaW(MuL$0Lqrw`OI$o=)s5Z&3JePt_U!NXA6)caSS_9x5UAIr_Reh$BRY8M`R>d1}RA*x}hT9{lBGvsp(*IV+epq@0bVn2zUyT}OFi#H#>YQe#C z&wNWX=g$RvKf>6=QVze#bbx+;fNyTOT+FmftbE^D&zt#OaQ1tjr@*;x>=kPiQ9(s}kw|WcOcd61#eY6@i z%=WSc0#l88-9V%|*WiN^Yj}L-=&nS)Hij3yz{m8=G=B2Kjbd_QF~-NokQdLX0_|Pj z;<843y5H-g+nGg?^;k5Xu!`*X-i$-~AyGbK(vTI)BXuW27jG62n1;+e?M;Q26+=_6~`RDS+ zfAy2k2x~n?dv2Gt&j%fz_Bd6jD;x~^nCr|S%QAHOz_BM>{XZIFX2;#a?L{sOZJolh z8i!X$ZdNm8Cc;C?^N;q}aF&J))`C*N8Q_`w_zciije}#k4pnK0K?)m76~Oh;L{tdT zc}6b;4>{ZIX-v<|;jm-Y*iD;nf|Ltk-j_G zum-K=M?Kd7WpywjtCHeo?JnI!1uUo#-5qlBED;WM2iXwMPVGj!)5e<)|HvQU#uJZh z6-y>UE|0u1KIGeX(qrlHRq(+d-_z?2&>s;0@1swxwWsmI6)Orl97yLB>y)Az<&dd WNO1&^$d}jv0000&ztdx=lRogLFy`*MY08A*y1()vr~0Vl%-WSalQjg@up}N!X(WA zGWurz9N-e4#(Y^4uL&7oieG>GuBO4d@~xrR;e5M)o#0#$c((sxR=@x)e&X)qx&|sQ zFNyKo{PWm*^Bso*_2Vaw)?!veMuiNxcKwdn@$=VB+WPRCE?gX-`DfE!$=G!>ezxNz zz54XVD>de|i(gBN&bDJ+M*{WY(A6D6_*Tg z;WALd%rrJrefcQ%z4h?EbDZ&>UT-%F7*Hq_Xix5xA87mWo!U1_wAOvz&j4F6$L!K& zlB-{mb}9CI>)#6h`L;$a2fO{auAkd`KosBka@8yKb{uH{Q{F6xV)ld*(nCr2G!lPw z?{?%fM4=C5%4!e&V05Zb)vYXYV!Z diff --git a/pack/assets/minecraft/textures/fish/saba.png b/pack/assets/minecraft/textures/fish/saba.png deleted file mode 100644 index 4d941b370fb3f6294727265c8ae9c28699a41fed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3525 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 diff --git a/pack/assets/minecraft/textures/fish/sake.png b/pack/assets/minecraft/textures/fish/sake.png deleted file mode 100644 index 8d61e3c5e7182379612f66d7324b89fb531336bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3431 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 JPDHLkV1h%VdHVnW diff --git a/pack/assets/minecraft/textures/fish/same.png b/pack/assets/minecraft/textures/fish/same.png deleted file mode 100644 index eaf8651706e9bd6e50a388cf8ea46d3914fa9e8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3521 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 diff --git a/pack/assets/minecraft/textures/fish/shanhaigani.png b/pack/assets/minecraft/textures/fish/shanhaigani.png deleted file mode 100644 index 5ef52205905dd1429de3a5e183e3839cd049c838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6396 zcmVK>|fD*+8WE*?$-hSH5ywA*>b9dJ)$p6{d&;9HzbEbTMy}ZgJ z{4)|fDiye7(l#$1Lp`3LLffLClLq6IRHn%7?Zz+L(Nqmg5Sj8;g+0x z@-62~zG{;Z0s=Y!r@)v8VtI@)07ig-1yc|(uFfX*3BQy3bF2=BG2Yi+=sW&`WT^=Yv0XPpgMSzhe z;o(SJlmcZw5Tw`UhUAi0;{BKfxB+MCR|$l`8dz|SU~>-tFz`?SAVefuTvAp6(NA54 zD3YskV3Y^X@DN}*U%VI-R1^~!zyRv0gW&)`#ZE{7D!&iGXEpW=_Ycn?W(%MLd;w!3 zuYxd^>!N_O)Q!XEhGh1kIY6?OSO_cD7B4~wa3)xlNvJUjA!SkwB;nJ+AP!}Cz<;LLUTgw1 zH~@hVU!e@e8^&B9Le0 z9Chpk+OnTrlUcv67nOU9GrzZVfire&>$c43d8}{O)0h&EhukQ&evJ&`JEagqOA}f$ z3045Xz%is1P&x+HOjcu0ne^n2Ea{ZMlGl?3?H|5 zn!UZ1iMM|Hyj|&0XE2Nm#e|{e#fl?^j?y%u6g3RCTo9P`0|KCi7Uwnjf_7?NVK^*cGgx9Xw06ks3aO6o# zp=ZaVNQ#iK{gQpFtfzfBT5$gLFlX_V@Z{9DpAX0IYU-LFMpOKY9UQ^~nFiGf%&+9uB@2 z`|BE!n}7YRSw7$>s#IN6Dpar#L(lV|YTIz zJsf|h9RwB zXpQ>)iosT3Xb}h|qCjyB^dsJRcdHvun158CNbq8yYig<8pY>@j^PsC#Mn%VmlI=4ys&%T1*d-ZnYxj7~%m9DD? ztP^0;rIsMbQ)!w8sZ0V0^?>*k-hKIQ{i&BW!E@_3LOP+bY|(+di!s&-zy8YeI^)fA zc+Igv3&xcY`|Izq&LuzPQnjQrBYytjyw z%Gy<&Z5!`GH~#p6X~_5BqYwT**S0+slq!!JG+hy)lFOw`f*iG)a@ds39vXz9l^_Z< zW-SoG;QI`=zV#qk_tq9D^_E6J;4g^7YkEX2#yNED=`nJB#RRCRjz`lLt7~iIOTKZ- z9`W7SLl@IXB#I1O2VK*_&`mH+3p7IqUDp8-1CBWQ0x56P=YKcfGIAtOr5nMvi6!^s zfIj|YcgC$2YebSEGg8c)jKth~A9AlKMjzbjgIdJXufrFqw1KEJc4uUyYK zBD#Ugz1e)CKArY6sYv%hBU-k4a}; z+>IpSUb#@TS{qYY-85Lw-cnO<&M{oi17WKPF@R_UA{L@{)x-65F>gd$U3b(pZO^It z3^Z#`XGhej_=&Pxb&L6OWW{rv&24WyV6=>C_0uEf$b(+7^wjQ2M;!jzrj2jRdFZJ( zgc9L2NLB!7*o3a`KK#J%SEE~hzTCg$ zU*;4&=KHNJ^;>TJ`J*SizV^1LWf^qZtgD?Rb5G{+gy!dpMbg{j;Fg9Aa7>|Mt5{tC z+t?82KBM3`Ro>Rp%zJul!ocP_raT^vaDp{(9T$xs*U*{kDW*Q_DnuTBYCV4EwO_|4 zpL|(KoaxNdr&irEi!?RVQA|qhe^~kFaUCD6z>yf?B82B*_%3yp@E$eDjGF&N0IUhZ zO$7i1akh>vpsoj>?dc%Tt^2F~y_+7WE|@c|M6hMm*Qd+B`@`DQz;))$K8_cQW#m!~ zEKB)&oM|%AL4-{X!fDs3Ks0KAVZ^~_LUBcaa~DJioQy>w6-P84G2GjKwKnqmU*7QC z1^;%->^Y}Q_6s)G3=MOWV4jE?-tx7Z%x!P{hBUX-F(3$Nn1BfqE=Z);IDxv+i@pGW zU2A{{t%|91F_FyXs92nPK6LNuM2=g5&Yn_w&bdF#if2xlK7}O{NuEi?eNAU}Hk*&{ z?kp25OdR4suy~$>VQ4aq<_YCROqFS(p3FXBf}}@@kO5+SuJRzlmxfG6=SO{MZ2o_4 zUy(j_#?e5j)WSSvX>8TAo1_c$*B9>~v4qK5+S*j4idAla`ZiGC1;9FBWI)}h#rp>! z-}MYo-+*jSk2YcQd0zPaC+|K?Qn4uWY#Z|V9P)jJ2qus#SB>Llf2SJGn=|_aUM;(* zY`fCbQE)j>g2ZKY6LaeO;Q0(`L27Bu%Maa+KPesCQTgg-uu8RQ|z~8(|tMvmudv_bX`U)0j-Ce^A9P|?5^cVxX9_Yv-S_bTdzNy zoOZ(bdGY?t;|^g&120pT%KzW$KQ|4WxAOiQCTj$8QA;l*)5(fQwdAJF+aJ5`#$U{w zG2=L>R&D7=n3fKdaT)B0e3FdRL;xl1KH}iIp7bdMcVI-pc3k0LA@Lme93003>N{*i zYZ^5+ru=*Fds-jr+ylp*|9#;dh(WTDElkVh3(cCLySLr{%t7s2S7~DoTSWH@fZ(5_ z4xRv+L=+5y!88e&rolP)c{CpNBdMhA+pcl{W6xPbJ$&tzODkJG-WAPdiy-Z^p+a6t z1zQUJ$7D1YuqpR_AA~O<6feQTuMpqsG7@whPiBoc^Wcz)O>FAaNxR>E`|mCJz9O-! zl-RBdw&!pS3=}m9*EQ--J8IJ3N`+!mxooFP`Es;eb_in}Wy=+KZS&Sa_a4#@xc!zZ zzjoaX%O3jN*XV2WzG9cF1>W7)8^OfHCw%2dAcoEjUFVjrfkwC=iNp}r4VF$?v{a}N zVMRT0L6HeY0I^scN~JOiv$&Kp6b4^HV_TL5mZd{Bn-A&}SZ1B9hzWIdNyl+GYH!aP z6o;vALpr+~-`E^pOn>Udw~yWzXWVn=)yG_M&0YPM8fsGZvuB~4ub{qMj<|LeG3GMQ zcj5TC-}i@_|M_v*C10&@PPOeH?=h-X4}7XPPG*P^=aj0{xsb;o?vhm_E`l2FgK3)5 zOQ+OFDmDeE%S7SG!^h4YNH;dnR4U5rTKoNgAvwS<_CdCzgZn0Tq7f!Fwt*Q!1`^7w zQl(b8>^0?bxwf6V_g;GKf8O(r?_7O>lS;+8ZD*0LYcggK7Zj18pr-HnoT?fEsNx!c zrW3&n+;Kdt>xR_g!j=nBXsWMcjOx0${GC6!>ZUQH8Xv4rr}|=1v#goKCkQyD4tG5l z7`LQi1+b+9M=3$2vLltTr4LeLLvz5MkCsCzUj)~&0gKR;QluGC1cabNzkJaFae)|@ ze)C+u?cv&)qmMnD%JrIo)WnKWG0O5Q)U( zi+Z9c;Xx!43qcKwoc4B_b4}+0lT^HM?Ig$8H1$j_))`3l2j&* zl06CN%jJQA2fBel<3v!0h&Wy51A_zwXP%7SI3Wed%i;bO6DSB!@_G z8zMcfk$CG||C}?9^YZyTaeRgeL44sllnFT(t}#;81&<*O5m91;cq|5qcogn`a22`Z=5MbaIi~40+bwrdA5XMx@1RP# zI))I`ZC5J|-~Zw7{zHVqV*RCakM*WcITU7|`JL>iTOP%kjK#U+ssl)giMqTnJu03C zm^thCz0pY2|KU%6(-KS(Fj{Y~zeg6|LZQ*^tBVG{K$13Y?(Scan@D#RTrOIef8~ak!VC$zK6IjA1ng9>Kp~ z{*p0p{UwV|Wu~EXqG{k!CX^It7%|(f2oU^7m#-V-U@e(<>~7bkjR@-`8H=%pR;;V7 zxANf|W0|^mMZ_716Pd{n5(XTT>8D@kcYOL3Hgy^lj14JX^`p<+KLFWXPs%K??DF6U z_I7onTrMy2t|HwmFK?Iz_?(cVPrlqcf8o^a<3^8j_GI%deYsM)S}n3nI^~TYKk}WM zZ-4ZJ7gpbzj##8b2(q=?Pg>|F8 zARmz3y(-AqDm_yymZ7V&2Q@S_a?8|Zl@+0g**bB7J@3@XjukPgm@*yf5$%!H>&<~{ zt$+Tf8lzMuZdHd26|sOUYRF7YUR;~|ea3}GD%%|dnQI5$j@^^JiQ ziAsvPo&&B7bybfMmwHB1ogj>YMhq}5L*h<-D(ihB;Hgw9P%4$cqYj9U5+X9nMgpHW z{VICt($ji6+dJx?-0(jB?87IuSlpn(gRC_-$6F*q?+qH*pc=lG}dLB27C`4ijp2{S_&~%6xIv|Y%wpaWQ z^7OL7LYO^0NVoE!fJK|77?FydTtM7~&na=8SRN?9sU-Oypitn1j<&pILB z)tOB`ziBHfcC165X9sOJs;>b-f0I?+sCl)!4($hsx+Q1*ZD%2f!2+M{=}aFqVKft$ zf92U9Yn46^D+m#J zek#2|ksUxlEK7(V_fmCGtyWQ?P~?5Zz3}pjw~?8%{+-UAJ|*Z&qB5PPy2g-He)3YX z6gPMb?FWRtfSlDXjs{eW4m)DP`fOkMU;r3pno-`|(n=H2C};!&Lo$u5K$FgmF6t$| zxC#?NIUdmR#wkLw=|X5lktrn{VZj5cvq{zRWO1feUwZb*y<%=_ zTN{hVQR$~RTjL6NcLR7FDyb_62LCOAbXM21+cRtdFE zm7r#c0n({B0B#8iYa;OnhUYtyb3gx_0`vgNP&5ny7agXbt4Zx67Vu@JmN6BONOw@tPRiGgt$##g4_nGR{=SMZA?{(T zTfo}N(A+Ef*2<7E-_q#o<{~n@b@DoG%->PSYkl5X4-CjZ=Wmw7KFKI7HC7;G?E~MLB z0R|x~s1S^)78VlWHg-QFkq8nY$qrxRx4iC=j}w#9Tz!rIJ~(l!2$Z3)kQ=v=ddh~j zme+kR_XNfhD?AxaNiPr8HS3kr^*YikFP)NBSI>G{D-yhtw%8-Z3WIRZ)OuC>i<)Go znnH9>-%)vhyXY-e;_N7D!EG(L#1M;s#yMB}r{DX?^*k`zW@nP4%aBwjoD*c+e#LwC z4AVXNxxWa6{E)Un7sjHEskisOuxAA+6haDgIrG<~3jEHMltHbysN@j=sY^fB ziYg?XT;8Q?0=xoYO$taE)E2h2!n@vOeHibCw$q~`OVZi@GQ0lG>nNrJR)6hp5Id*u zs&A_Q)x=l-44Djw4qj>B_Md;nS9u-XvZ`P;AYL>&LoO=2Y# zlvYq`gSJn#Vx61(Cs~_E)ih|3QANZq0iup;7aA^zeQ2nPC>gS_|6+UQ*rjCs$7x;r z1e>S-RVZ@APE7!{6NOR|2O*{?Ne*3UpMB%o>6e<8%~)tj#>otw$CPE^6Q?Oh#Dg~F zbby|XsK4xwmyz3r@B5AK+#(LQ3~6Z5+ESP*_w2^L z;3=Nq;@OrMev&*zEq(RL<%YoP;&O!x;Kc(M+x25Fpi$(sUiDp0KYokIvIa)y1oA1z zNTMXe>6F&Nqn?rT|M5LcV#`8n0UHdUTq0b|iOLqbIY3&FVj1DM=(Px26FQS7gUJ@% z;e=v4C1ixzX~IMy#{mH?BJBu>c;TPjOerN7KIa;{8y^4l$j##EO95E~+PJs%N9XP- z;Jv{eZPu`xQax4H?)~P%K#7Rb!1AGs?U{R@Ph=ps4Zla$+K<%(pHD<@?U;9;M1?$j zYJ(TP;7#_tPrV(x6tTFFV7uoswo}^elN6^8kar4N%`uZJj05|5E~83b6WU*sTV#ml2E- ztWHrf<)Kf!@u#ZNyS{v<*x$A+q?Tp^jYy)TKq~18n3cAQV;RvoaGCw#fBZ5HnK;VO z<2L79b|1s7uLz@Obzx)?qm6qwyVK*y1+TZy`1BhIlLk5y*zSx46{DgVdOIUt?$I8v zQmjnqCsWFWF>17r#^N?sS@ZZoO|g*bT_^%RDEI?m&GXwlnwaI*B+?O)ftp(1JfU4P8?#=nXtI1IQUEJ z9Lfap_>`o%O*fvgHprmaCmIIC;gn7suozD;Wx{gPG8#5XNNBWs2%|BR2AT+&OR{WA zAkHu=W(ac%F%n3<%;LE}U~FTCv>99|80P^~yUw(~fiNjAfAc%p?#Gy7#^7wqaMnkf z3^@fewj8oW}OeTzSjR*|qUHMJco;)U$_(?Tdo%K252jBY~=RfPU_S}zO zM7WSMo3v5UkWM1V63KFOfW=nebmhEr9%o4{&}{CbZ!~M=CWFmomYNag9-gxCy#+ce zTP!U0u=-g9r6kwdC$x4};z}NsA7Du(tTaj<8?2#Z0#i$x7DyGbGa7TC6%nhLwQ|gv zalnyOFqviq!Hn@NAQuC2Y1uT2p&ruRJjHlup*x~D)1zSnR#M5c+nUwH^31EgO?Tr< zLi!$|DvezTSd$Zc>&M4E8STXx%Zn+Ez!HZ0Xr?oQ*%Fy-b7Nk~lO(CSo>7amPg~?oyg1HijYbtbx`e zrqdJ^8}i~w%2`go)j`i9Upg<@86yH_lhfz|Mw6V;)S$IyYu00!4;c+h%1O@k@B5+G z<%1tPpH8NTT_q4l^d3A)Xa7aEw{gGVDb0}YbKIw2x$Xj5PitccIIwUI7arMx4M1s(|Oo`)wg+#Ic#ShUveU}hH>Z`=6%heSDzyHtA zXEJpx!{pm9=jOltFn@T%MI?#ka4TcM#_UsD1Y$@S8R9Uc*;!>a9xxpC*gP9BoyH`M zgD5#53A=2iv-uBEL?)IiNZME;zYt|j)zT3C0bGi+%nZGw{8H(KuKD@sA( zjy_vCafs#GH$UhV|Kg2r5-MIHTRMVN3FFC-U%%{6e6WA_?&pvtF)eLby7U`#*S{!s zE5@pl1p65rJ^$GQCI$L;s-xPT=>(jcOJ z^y_rj?-j0X_ARyb&4{r7ea}aEbo1M6mXEO9C|OEeoz=$JgeWWtLxVO=gk2-eB#mqz z+uH*ke?oifMuBACiYAOwq*LA$b%ENd>}6fy5&6)OOvrP+SI}q^p@Ih1y1rrJuRGFR z71>J0Ty*rSdrIGS>w85Qw1|};3Kdx+q19~SO4~-7`r6--duC&c&Fuks(dW`v{JHmr z?aw`nG|5P>a!2C*Lg;bj0mtrqJ%LIo^N{a9`6LUS9*b@5g>yxQ5(QzjN}L=bpB^WO z3~92&WLk1|qfed-(ndz7vxxGe1vl)734+9zn|VH?C?;r~*L8azqYb527!wf&f-rLc7%@iKD#%ik}?$>d^Xrpx5tmW_^p{ zq(GOax%{f@?b^-Hq0xF8oh!cJJwY7%{JS{%%8z=6K6}%JlttlPGEh^bJmB3l2p~?* z^YJ^KoS@liAw=ezlkxa0vuQz+q-4zurCOBQH8p{6i}Rx3>R0~V&n#T-`21C*u_jIf zf>1D#noEB5nE&mDV}B}AlabnxB!Dc9Nt1+5yF;_-y3MLP^!cpr3VpY@JH_(hCdrGO zjk9Oj?oF8F1(#j%4tw(7e+QK|IrO4WB7XGnr&&L9hV98FS6}lH`&0oxbHkN&YaF6Y z!FW1ivAs;Q(Lt&h$$-hUPpKPR`})uR+zRcc8{aA1)F)H{fq#c+JK^Z7{@Q;1kvD+K z_{MM_Z++4A+;HqK#ez<0DoZ1cXk=AC4|yg~W+lh1foQjA6e|Z*!BKeve5$A=gui((>ACf0~eAgnRG3f=e#B zhudy{s|aleQKl$YtE+%82)$+8q$i4E;wYjlEL;7@x%{e+*)Kf&ZZ3bpN4V#X4~Q&Q zG}|3ot+tQpIF72Ktvb2tVQMvKt!9Ju48aXz{MIPn@PdUE^h!yx-pUZ`X^}eJi9{71vHC zW6WOVMm-N7uf5?_oj-KXR7Q97{_NDmHG(LsH7^QssvRPAxL_lh(uLGB28VSCy4_$*IwQ9Wk|^i@j6%>X3b($=a*K77(w zo;cFPQkpQXYrxdeLilfGzjB#CZ7V8gW*$jmy->dId!FYhIc3Jh0Cc{iwLQFt5isH2 zwHvCrV^{HUMx!PU^!2Ol`}TSlj-Rl$!{}?+)U5BZ?gWN-vAQK$Nrl^7yovMuXH)x@ zCI)RZEp4qHMgt6xF{m931Kb4D!a1f9AO&x1*%m4P@_j^2pHh()24m7%D8=t+ZTCnN zkm4yPnF~f8nPAkCHUgwrQzyl;X~leXZRlmDRxpx3eH%Qd_O_ks>XplxMuF7;o1+qR zcDCjJWX68>;nZ`Ni8|fTlIgVL)^+{AxI6!v6gStVx+fP@)`|K*CK(lgMCh zpshV}Hkpv=S77kgjoA09>V>i7Z3&pf8k0;APvzXCVHP*7ZOy!zhzZ0bdO5g0aLHe{ zx>1#1d~FQCO|Wt4=KWa7ipHiw0?eSHyMw8*wyj-mj5m~0ZtLG99z;gKg1Y+f`-^8! ztU=||2fgR6sIHw`BKLEv=W4M?!jvo*@%l}{c(lnBjs?WH`Sfj=uM+dW`($tUDrPl-n<2%Qz5l9TQkE@Q z9M=2(-GP*NY%~8PcB} zdv<$@8DS&Xr07!mT)26?>N#{cOr{voCV><;m}>UjQ=xshgEX!9itPsy_X2W6*nmNN z6wvfo)YPa=Fku@ts_+D30=XzrKUNo}qdv|82)XES@m2$*5eZlgpiZSIE{KD+IOveV zf^{a=#&o8De5pPih}ecck@zNA zt!Fqe8R+Zx14FIiK}n9pMrTh`Nyi`ZDJ6lU@9xg7P#9mNB{(VWIds@+f{Jf`Vli?Z zi3N#8&i#p`^M7h57c5MlHCtQad-k9{pWAY(nWh8BrZe}kIEFM9JS4)eEbTCl_2{Xb zsjoDsUY5Evdg!u|YYNbC!yLn~mF2YR+S&m;@r?c86j=Xv=%4z(0EvOvF|;enI2?te zKK~b4UP`hECM{HHYfM(-xY5!yn_&)z!{Kl^91e%W;cz(OD5d@Ye~=@+p4Hp400000 LNkvXXu0mjfYbK0- diff --git a/pack/assets/minecraft/textures/fish/suppon.png b/pack/assets/minecraft/textures/fish/suppon.png deleted file mode 100644 index a6ed4caad36f447462e4ca9b6c1ee4b027a51c17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2713 zcmV;K3TE|*P)sxCNj^s#=Po6}Ka@frL#B!ht z=(#_+c!YhxQG}WWkEP&`FzkYaPUl!7Ks2N!PXgs5Fn)@A`BNilss4rXjB1x+D{_jCGdHx}^qS6}fYuYdC9fK4U2I2k%bMtz+D(GxgQV4&|AZ{YeTZ}R_d zzxC;3#}GrLjG?l?_KL1wXtH#TCf~mZlDtruIn%=Yg(9NOsuVKGG?2`f4d}yTzV;ycSEyt@LEaBaYM1LX1#&f*-%ah15g*;Py zb}qtuhq4S<{_=mgf8U_pHq~FR-_~!xH>X~Dc@9NJK$#RomPZPMq1VwQXw zSz_h86}af}-18@K{CJMpQyLSK8oJOFyr4fs!Oa!pBG&JAvA$-px@P0*_Zxz!^668v z$ch50CQdgO7kTm5ZoDDhe(TerCOs4e(4@DAA6aK^{yeIxf-xm#P8>%uqA)RCV0yN| zv17#g1Zw=^#q$XQBRXRCbPFS`9C@o0BP|Wv^)R-A^9}+6ckbNX8f)0alMD@lJp}Go z#O>S57#|;Jj-M40#i+#CxWL4OLY9j`zY`Bn^o%@Ln3x2N%dq)_fwuw9MpWGj-A*TQ zh@Tk$Nu)6uX6T$nhyfx~@IExUc#@|^g#)#G zyoVJQRY`8_AorkvKngGpRTWSfkIH!{@(O79sL9p0=t2`ru+g@7j~C3(ox^JTK7u#w zzDfy9OchvIIDyt^j>m;7#ryjGF7Dmg#L7y03;Z%wK#EbU-uXU$cx6d!XMl%}0X>O9 zpmGk;dp>AhS}WvIV|BGer(-cd`38Oqn9`x$_6Pwea>=1X1ye*|T!`Ya`g>w&OaW~D zOY`yN`FT8OZy*K>nl=?Wl*^-#On6Kc;C88bsaMe6^zhbmzNa>s)+tJjw{X6TpPfB} zcN**+HtGSy3VbY~1z9a}gh?fNA=LDg2Wf7fM6vit@_|OWi}y=f*@lYIY0oHxuOnNBP1f~QwAP&gz7&*PKmN>SpgX_ z!+ZjFzFWh!tBaB0V3*F+UZqhF@SNl|v$@FL5ZHp&dT1>yot;9an~?uSd1c>vKk z({+tfmCNE%Z>9R@;E^HUPwDe7** z$db3fDb9`a5S4^ify-oRV(RhMZa`c=P-d_m-cbA~?gtcEflTI*N|S31j5(|{-xE|4 z_wKFY_~ZmyBcm9}Td1loDq8}yxag91i1^U;Q-zdj2?9qSi1%GKDJdz!qMAu!*n#`wjl__tp6EjW-zQXp{BhD@*pb zzk3Da<73cD!BQh6Gz$VxrXvE`zdkQz*)^D+ znM7w}6JLB$%HO;`B766+LW>J T3L6=k00000NkvXXu0mjfziucy diff --git a/pack/assets/minecraft/textures/fish/suzuki.png b/pack/assets/minecraft/textures/fish/suzuki.png deleted file mode 100644 index f5a52a730d471d03e1108c530cf8510480686fe0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3847 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 JPDHLkV1jPSZfXDk diff --git a/pack/assets/minecraft/textures/fish/syumokuzame.png b/pack/assets/minecraft/textures/fish/syumokuzame.png deleted file mode 100644 index 53bb986f0df88ad5afc600ea5840486c124df304..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3340 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%0Dre+5MJpFc#A z=pPYl=pQQ-1i>$A{{+(hQ6V;NT4PE<{|J>No9t$jnVq?F&yn|?dv4C0xpQYWJ2MG7 z4-7MR?z!il=Y5~|<9=X-5k?r{{~6*wbJx!H(ART64A4UQ>ecJ~Jv&>r{~p@9hHU^Q zZ%C(M*oGLo0kX*3unaNKHOfIw?!b-rOjw56&~Y2ZFb$9?{VwANW`toGpd*2EmzVg{ z34=Dm&=ip7eM9`jV~2V@w(myp`#oVV=!H0qvGo20BB!tjBaSlL1XqH3+07*e< zfk?QnpkER}uYG!GWyT(Qz-O7 z1*V#a4JSeJ`iB>f;JZINi#07!?PFmg1>G*rV18m8k4{f^9Jh&z(6-v13}Acy@F$Mr z8$bLpZVjk6qiO%Wb{nO@$HNoj@T6#Klq_ZRS`m`fx>uiF54OpFVEay-`OWXJZb{z! z>bE^61eKDT$#z;e^q33Uu0ZV&>ZubX@;g4X7e8^x6UO5#-*4R30{PMu&q~$d9??SH zQ4$mBNj@_V&Ee(W{{h!jD^(GHytvE_A}Xj%K2|PcN2v&DmB=0vVH0Z=`gV$#IdmqkdDtI>JQj0%(}*Ro$vfUpwYdp_RPwL=t?7r;-}wQ; z+zej+(dTjP`Z7M1uVGn9yiw03lTiOpL~kmIBSDB;2r#Dwu0~BKQCXXn3OOM#?CJ|R;f_e8nsAacMe!X0TfuxN~2IxA%DyF-%AK6OA#5@ z4;>>evlIOCH-CEfL`q}aD`IP;l0bSq2=Qh;$0cx^RP3dv^ELQ%HK-%Zqk_DYEO9d0 zlvD`yI&R1@6otf2uYpkbxGe$%IzpfuIP8Z!KHt1vX4%sj*M*;&XpJ$*5chHqAqluM zXU<^%bI-F12#-9HYa2XUf2$dXG00;S>*Vn%sj*FJuG{8}cSH^|UNg?axPkJt!nmrV zE`45+)SAgvM1XY>U{@Rtw6Ik<#`8#MjOh@5%Jn7@r%$JQi`{O-wj{wlj~~Pze{q(H zZ9VuT|7nsS8D#m=pZWKNOYh+5!2|r8O4Pq}0kaghs)mAYa7Cb;K;B)Gc_v)c&7u}T zVnr7C_l&Bt#K{0eeq7hsKv68sy6}+G5zj&Ml1gmiX-Er$tftBRgWY$1=})|2j6kr- z6N~}Kv(y9;sWII^PB&U6B>Aq&0=B4i_9USueB6?GOh?tkt5p#&VH)S678|l0-Dx9l zCppvj81gAMQnC#|RUodhi4knLhO4f!7|{AEMiJk6VHfv4bQxAGL1(|ipXe$S~#~fLUDJ+1ImX!+Lb)w7FhAMfY)YT z@+#$R@~pJhN3zdxFvKyfn{tnwzD(h6b7jci+_lFgZcZy+J%5frwDHB`Cld1X-6{SBEmbOUdM%qMb*(+f>s-z}08zlX_ZY0F*28RfC z;nCI-TgQm31KTDs;m}D1W?(hW}+fo__IB!7A7 zEjF^r^j#j3^a4(hlms2}oL76gne+N9X9ax_Cr39ylE=w=YqHRi#SKW>w#O+TFo4u{fil7Wm-b*Wi)D4Eh!G9kPhb(Zk@o!1HA250j`ZspTT9Rz zV^Dujm4O-_L!QFN?$`{vdEG`oACC><{hOq8lKhKS2l&w9$HPVx1!ka~lsb7G={fE4T zm%HDu$|CFK$zi-J_#hYn-JahK^285{0np*u%7e7N5k?qcgb_vpt diff --git a/pack/assets/minecraft/textures/fish/tatunootosigo.png b/pack/assets/minecraft/textures/fish/tatunootosigo.png deleted file mode 100644 index c7b4db53466d60361c3a4ee4020abaa4b619c69c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2108 zcmV-C2*dY@P)hEN{hvVk0ui2nZ;){zGY=>i z6opvhRwF7;@1Re*HvS+%Xb&tdq`neNi2eDYn-QyFo#i6uG(yJ+ParprVXhq|zx6%_ z6%h1KO&b-o5N_gd7Tt*e zBj+HZ2r*PZx{`3_6l%*gh|L?2>Lj9*XLQRwsf&=>EMVp(hhB?0+VpVNUxCP%h*bw6 z6zxi#x$-Plv4EPGrlTazd#*vWYN+F{&^&S~6Y@Pfm->N8@BizkJNVJB%RKqgESI0Q zxj)Piohh?ry~gc!(e04w$vFsPM%Rv^XKRE*MT{defKPbUHA`*QTOySp_~Kt?dEp;* zbYX;7Po3erPruIlFL7Aoj$l?>m|aO*TO6IJv*pqih;j`vGfPgIBm;8u^$%n=E2JX8 zUtb=_RD#**N#d|eY27GmMm-uGMG%0MH~8=m4)n_YZsSdCYB!ONL=;@iM!4wnmlCN6 zu+}sA_$7HZ77hGJux3cmGHtGX___Hq{T@z+%<!e&Lx!8JNC#;cuHZ9mJp2=u>|wd0;Vah zKRvpgLbD0g8lmS=RT9rJx&5A}dS%{>c=G<*_iv^k1)-6L%dS989`A{#at670=0Z(- zTex5W5^@Qlsb}w`wK_*-T65jb$L8;yTfR3-JbNc4*TRc6-CCW{$zfFM_$RAqTXW^D z&%9;*rN)xPfW8Q4e}1!aNtvU+{3@=O^spvAQz1Cr#4N^$nMpi9VBNP4WV$a{vLLva z(Fys#?foLN(^W3b=ZPymu^-_%B`izy7D?uR17McOG$E4D#f%yzW*i}hTnsZJ*%0VR zBZOq^!Cz#)E6hZIr1uXWycC;+can&c^dIm`YnFtUxBjUD6$&F~v)etI1)jD*hPV_Rx;?x{= z6tnS53uD0BnOQCrsb_@tKl*uEvvahFSS1~tSRqXZBR|yJ8LCDDRrFAm;Jmsg_Uyt4 ztBB2;QyUVgXN3)AVmgAHA&^K6Au*CYUl@Yvfgur6ph_0yU+tXF5|WD0^#NWPfEo(Qov6cL_FJ8$BaR?(TWAf6*K z(*5Bk{gt3H(G5YfGL4}X+7IyZ4#Sp(@*~_;Z)AZ~J46JMsY(m0-NLRndZL+jK2`ft z6<|IN+;vAX7EsLqEhWB=D8>d>75vp*hDU7TN|R~V;k`S5GGG7b!#B`nWtt{t5ChK2 z6&%=g8&=b%-Dxr9ceup0X`XK2UbOn2noh(GzuR1EtfI#`!8p*2k2v9 zr^FIsH$46ffmdK6)SNiuQ!f?KvmxUz?OGs0n#eRGbT0ZXzW?@*Q9m?6CF-)q)x>dj z2Sx^dPB0PSqfb1CX*j5I6Ri|xHFz5}mj(mzfOFGceNT9C`$wR(ioBoR?(bY=EUHX`d}BedYgm#gzecmx zqKDNt2eC9%B*ZXpfAF!KikG|$D}o~5;@l(tX60`5tmS$-`hz+uyZo=Qi@=6~Vp)KTz=nZhS%8bchJj*P mfQ!I}fnr&Ji@=7#0r(GH<>Y_EkSy>30000|)Q3?Vjfv(U(_ zj3UkXyL%rcFjbULC&*qtPFSr`_d{-f^d5I1M7-A_;PyWLb=KB8Xr=IsN4q_OR1yJr zo(F)n4k-mfO7bixiemCCXZwz=%p5*Ok>}XLp@oFP!9t2iEyOu)wU3d8G)n;Rq{cdj zbB=x%v!lIZLn-HFpLh?mJ)iva@8W3~QLNd!&id8fz_6Q=6HboTOIsQA&{{DMe9`rYYTSm$&vGV)NuUNt`02z%?am(Sml6 zI;I3k=zdY$qCgEZf;5H2RtA=_jpc+=G zRD6P3m5T2Z)$WWbJpbH369gdw`0S_eJy$3@fUkb(p)w4GL@0$+3g_Nk8Fat& z%fCV;@Ts>#lvZd@F+Mp)BMhk30<>00sW8SvDMb(j7~`R}#;t$5r#<3+JRl}bv-PBC z5yJ7~AHM+(wr`*2__5<`-8x01)#Ua&KE@+^zs@%w|C@8E);)axUI4mD{{$`0QJI*) zYc%M-zJCx3=Q|6y4ao;#jj$0=4JsJlL#~%FV=4$CP)bs*R?wbCYfZo3M=M317i3x4 z=tOZuo);`HuM8@J)};?Roh~=ru!|dR+{Fto{E(4WljolQ9>->m0Crh_lO@q@cq zTUq6%U-(&o0SUkc2?JvVWk~IN;Z=_9pT%eox!yH;N|9TOk!7yI+IO4=2aMi!=UqhI znAi3l;{DsN09P`aqzQ-Kp1~N8iSco2wHnQ41Emx~2#oPb(~Nqfju3)guSZejW$nk2 zq-mKLC3HF+vMk3rhZHBg6$AmRYh4_a2R{wp`qn=&KR3^jnIr7m_bNx;o*`@n=&FZv z4vWJ&i;|MU*$uXEg*~SN+`XUqeL9^U-ChL1p@VbfO-h$#PMoN!8yUM+tI}vTDDr|d z%`nE0BuVM*EW=t?W_nr1yzd)USJw!F8r7&Wz*cpd(uk0p}b)Ie3VEKfxG7P!Flps?@@O+4*@I^^jvnkK>#p4C}n_{Z~=1hg^UC zwN%5(DZP*51Ocp*dvXapg8(TdT5Co}T4=2~aAbzp4<2BCWr?cqpCLzQZAp$01VIhs zd&E(M_7qY|vMi@P(kf++!}C0>bL_Zc2gdkijTZuA4Aoj~K)~kB6Vz%|(llj$evu?e z*}wlFZ|*;ckOIHr4?-&HMrAILg3eN}OniV8;uMdI^VkT9Cm#E2jPdX*2DP3^(SQ`R z+avhK$2SJ8HJ;W;De=5A=>%awty)DXg{R9{^o>DC!S?Oj5NVEbf&=>x5(YJbpb9{i zWu$4!NUMo+jx5XQ_9BYHlBO9^6f--wK$5038V!UHq-jc?XQW9=nq_4U5~achvKIn} z8-&${0>1o_yH9D4&!_^%cmzR>Fbr5)TBhA@Vf+etp3@#184Ni=wMMJmq8^5LzQOZ6 zqFzK02COZt5Y?ly?8GS&N!YcdD;;he-G*I_kiN&n#3q)OmT^uI#W7)4CrvUAzdeHx zf;=ziCkfU;lBDH#L=j8NtMq!Waox37Q!xf-ElMjS;*>BitQ%B>4FcY=3~t&qN*D&r zEiB?!3}HPeV|tz8s_!#4(k`WoqPG$;I#nf!6Y61|*I#^XV ziLCk9D5cT}sRk8#y%=i?n$0H0coap>HP>Fv(WA$RqnN_l!Jy=vqtR%vw7A62eCP%M zZoT=VeD??6D|480C#$)Ja0EdEtu&3RHY1f9C~jeXm8q%C>(}Kd zT&YyB)~zccC(p|kdC%_MXSBh$-uzMb)h|6n=vQ#g;VG~<3TMlm!bOb3?g!uhJ^-to z4q9uJlo-z|2b+FI*bK?D0&O%S<0Bk+2*R&tgNhHt)tx@0U%8?W@qPESy?5DVmwcC)m2yW(o6q|EgTL*q|J3h&a?tcX zeE(jobEJ8O(VBjiQS%J0C=g1q{O|v9MkV;~=n*&Hatq6I9c&C~CnsJ@SzGMUS&lHq zppA#A8k(bJ@(P+Ejmb7?k(1;(Rtc(&09Ex7T0u~uecg^zj0b47S_9)Z6tQjF7IyBu zlB=(NA3Jwm$=cc)Qc6a2gSKvBt;JePyx8NrPk(14sfqjU{~S^Xa%+)7V%NhUkNfmz z=Pzm@;sCz=a?O<{2?t(&gT=$giRP9uzQGFvbk(OZ*5sO> z+jU-3SCS+YMS<`8L{Ut)+hulkp2fvw+PX=arntgkts`4a&{lBebyM8>8+Q(r05BMb zrNZR}YcHKxyPvE8aUrAdx1W55>FcI36?3AzoP=WsXIMCVoZ0<{X-te#ZG@O=h4JZ0 zw5O?$G+0_%CeL$fwHp0?LZwnJMU*Oghit78Vw94n|aisMp8$4SAM> zgRGY#bH}F1CU<@I?lVT?FMs52gpz|c`1D5TLKh$depf6xht-lAIu@ zFf~1PvJ%c~C3dkp!E+LE;PnH@^=;40vExKhgw`I5OG~s`O|;ghWb+3fc?5u&nIlY$ zjv+i*E>bKAB>+KNH*wZs3rCh_xb+r0i&9hp(o;wQ+pd`4SAXl*FYi+HbUgFyvxC`U z|Di)C>Yv(IvHW`2Pj1x$Nbq>zH-hIe6lLm zl_CK5(C7aG6$o1GCjDN5XEag@^4#Kin(@u83o`yvJ{=an_VJGoHa%r|^NHg=je3LK zd%k$C$KnDIXKQ%=@UQ-WFZ}5jXtrvMYzi?IiPVm;Uf~=6@Wcfhf61S`0`9>_9^uH5 zqiotVhVcyDZkMngp6uCo3Ndk>p?6WXTtZDPf9VGj=TkZUM~xq1h#`g;Vu&Gz7-EPah8W`iEB*_v WU=P+D*TNbA0000WJ5xdySuq}_ul(`JLhzs=bZ1|Q0hO>-ZQh= z?B4J9oagoPe4ghl25YbeYp@1uum)?e25YbeYp@3E|KSpEy!s6Y=|cz)0tSEtgai!z zU&BB{3i?FA7{g!X=f)`7!oE-M(N9t$2z*GPp)}C#rs#AM^pXVUY`E3@J`?})*?$t1 zSRx8N#FZFvxR`w0U9uhpXE(hJJo-lemOpQ z6?`du{=w*iH-{kM7X_n3N~w7>I$T&|K+}VY4-nEI41DxbjbFcV0GqeH|1HXX!S*CHUwSaRrzV-QXJ^zDy#0g8s(WuApJi&_5!-X*Ae>?7VA?>!ps+^Z-+AzT32h{vdG0mr+ za`)eTQmk8hI^H%pjxYc`X-GU4NIMZIlI-~kv(pc<3aZGFW(C^w8QwVD!f*E-!um@- z_$K3g=fS(gRoC8be)GZuVq)nq@=V!?wT^``B%cod6Bx8mr` zDlTICAU`BoQB7e77yi;&kS%Rk`6M-1aoV*k+p zmnf__{W|lxzq~`-_Q9)>COx!TEoh~k0zRbYK{{`caoL74uy$8Dbdj;*B%IbZ9hI_S z&e$X*!XQKt1*lXi939I~eW!Wy(SH<^E0%z;qgJoIDdfvEN zy%TUA8z&@LQfUP#1q4M#Ka||Yx_}pk_~)*xIEL^0Y($MR z@0877MImZ9L@9rb4DAzS1a_B4(91R_Ln>{MD}`h}L%X%WdrZIdHBoDfG8k$KYprd_ zJN#zA=94|Z3jq+w7fufc_JjfCRpZQ7hJ2Z;98%hXi{Of25!RD{=leKtXda*V^ykg5 zp8JaEEzGkAhet-?d6M&x>j(o<38Zdc@;9dsu*Qh7b-^9au038o|og2%%CZ z@rxJsTS0XK&l^IeR%alkob`l;9|SJX(GTa+^3sc;$h$=fWy(DD94Pknv89&NfHi_2 zgcu&5zz`uir;V|nmj>hL z&CD+FCiO-Q^`RjKM8b<+VzA_t-M_c29l!Sd`s-qNxXK|+WsOhP+Ig@%xwMF}4k3j- z>pI4VFl5}w^1=eF5sRq`hXeek>W7Hvr+_O%lEa@uRdRk>TWM>bG6V&Y6Y1){hiaw5 z&&_ue6i9ID>UZ~*zVXHnpfyh=%_`%25=v!={D4W4CPVrKrdBP!bMVz~idrp3mKj@N zxGDfyZpz?<#d*at`JRU`l&DTzYMy!gZgKXiDHlm4iE{?y3YNQwAcF*b7ZBt_3d^93 zDf65TQ!YPk>2PtwMhQa#xyX42IQzm6@qaGfd=rCB7)NL=C_b!K@t9-8QHU_8V7OYt zaJ`0r%9{pGJMmP^%(pNtH@CE?Jky` za)Y_{y4~2a{Wg=#JSIBb!m4d7ZV?}_CD2$P6eXs)2#}-{hq`hQXG%NSFyzlPm$4ua zC~{!*#OwNY+H}coR)jp|`#>1_3|vMl21`ndD2xyi9uz4=k#nVxzK6hzF)==Z(UCe@ z-68zZyZ;!ig&8cFvgxz_g3V}D$FTg=U8eoU!y?NBD-^{MD&t#Cb+~~`F53<*1Ke@@ zhY*cjVP;={R9LWEWQy;=Vv_>cEA~y;_mcW-j@2^aTBu$whkfAQR z=yE6>q1&0k>j!?yf`(y)qR3FIMu^6?n$>I8BdpZXO9}{+;rXBc7raO!j(qfz%=I*$ zOMy32V(FafQb2RKFlexW1m`QgxX?*4xpEQAcHQt{%pIFYXQ72cCHRkL9>96)w=o}x z<2vHFib_D_Moo{V+Z#LQvSSk>){1MHchognkC5d3=OY=qs@5?HL86&Z%W$hQW)j`%LouMKp$^S z!41v619Mot-h$J6ZuvOc^C|K?#X@HRzL%2US$PU0Vr<*C{~^M-#&tVaISOrQGXWiu zEW_Umjt1^Yh#P1Hq8OA~I?I5-gU=BZU}R_ro}6b7?%Z)5qDW$RxPp-tJIobZx1-r? z1HMAQ3|7HNfl64xx(%Cg@>#o0`_OkpQ3ywb1gAh4`S7HNG)-M!C>G10faT=$D++f~ ze*K2sSbo9;7CIf|c^6sMh0+D$&_|J`xM1UUR&vYM8_=i>qbPD@MGDPZD@JXG8R7** zZFK=CN2QEG?n-T?;^Vu|Jc`S=T;n=YLVh2kBO}n{kSJtI-RXF^ardpLHe#H(EXBTq zuX9>zWjnuGwStkMhD%{r_Jm-t&U1z8_~pivlEHZ2%MS>pO9S*92+d`sw(LrCA-+D01h2G z#!Qb;my8p~HN-K^2?(?Vf*?krtU=N|;ZV=Aggqw9PTS2*>}-K5jpitzNTFTxRAKMl z@8j}q*P)kMR@N9E#>{LJMHnKCA{RN7;|eMWxT54mhNqr<0&7;E%jMYj1%CFEXI-}m z9NG7j{lkfa$O zIx?~xBO^=EsEs13)LAIs576zk(VlN&X0C}&X8}pFz3%_P3vfl`Ge9HHa%A4^lLPt-`_P8_>Dq0b?g#W8U}P zn=yUhAVh78xqjEpIC`|h+@RZ;=jg~p<~X@Uj5O^b?RBBJvEY`CKl6?o!&tx-E)@)? zNRLPa1d=4h=_}Wu*X<$*ZBH;acZ}bxR_o|>7f=+6_om$5uyG5Xd-nTpqR{7^w-H(y z^tvf_UcDQ=BuA3%Vuq&+$S{Xa0l$4{j~H6M!>l}WJ(i!i z3WpB2p;gKPkTZUfG}*wyc#5%gz`yw6J{KP+m*JVNFd8b&OhD z15sL4;*eiUlLT3s@eIN9JrspTqc)5!o3BEWcG=s3A0Y58lk9Xedz=u6Ldtu|5lV_u zD{cI;10+WomMNwAKw*0epBj+P;XR_ZY=>EQ-o;3>9@4DC`Hrj$ZE`Ljgrw+C(hPfz z267ZulDc=__2I70+L?l_0EF&b@;o1TmLbm)7B~n3Mr|^-bnPh(Pn||E+<{7DbQUB+ zKemPymY!=^VC5gRWv@!5$g`9qjvN%20LBDvWM~J!zKrZ1Tyum(yWPPnKmG@?@`BsU zX=kiP7*@E3QC^eR6!8tN>*Yku4Mpv&__#g+{aJ!>y#ky!f9# z!KIhKqd$+}5-9~^N3YkjhWAo_SGW-zolD$7nG`t#v2_WDJHW;zfTjo_gB#~{o^BJr zl|Fp!K^Kk*()&?dhZ!n3Uq%{rq={g1LEt5e0-7c%E~gbwbIbl4{UL`nj)E5DV8VL8 zARyD4JzL}%E6!;EgLBtigr}Z-xS!V-UUUVbFl6xSbdGSC`hkbSPx=#IQmh|`#3%9` zNs?jz^lSZnmM=evD_ZRNP-HMg^7{~;VNNkTKH7iQFY~q97{&BU{~}IZ`(AVM$_=Rc zA&NZVFjqWoI&Plk?gPq{kZxdNJlo4#7O0`}0tKajS+ssR9pR~r0M?$nfze!1yGnh7 z0S{9uVT??7EO$t4j8GZP3vH)OE*fa>{nPt!=bybxjEy$n`yM|2se8;BE6+fh(@;h* zGog_hg)f1#_Wd^-fQE*~^Ds6xhCDAIR1PU3gkg*#qg=}2(_Zc=o9;i;b6lgvB~{-6mwYLL5Xqr_?mY_wv30#LR)m zpjE=RKT+V}S1(Ot)7B4}GtOGi!tunG5Lx=j3!2~-2*MDaANE`5G7Y4g0Wud*1#d!K!RPkMaMm&LXnA8`iI8GDZVW*Qftw9}k)%4#-< z=Sw%sV@yZj*}()2MdfjzSAvu#93Vq+=-ba}GVJq!)3Z&Owi9RVN+^%Q&2a##?X{Z) z(VRzRlZMMsh&k~Vap=bY5LBr(YT4NLu~3j@{GMr1D5Fn``<)@-hS$t2>l2_SV6T` zL49Zhq38IA^tp)}86LsR+%dH0=NYAb^wi%7!*fT8@v(6>jKcuapN{aP)C({+HiDl% z@g;HI);n45w@t0&yrnUf&2J4OB~;-?-%b&$yfp}U+jsYW+8L-ENfTSM22ieA*e~)f z@eR6Bnpo1n3orhT<@(;9&xvX^WUfF1kjt+8m|1i7MLcjJiagde3@v|qsDB9f|m+t(enVg(L zQKZb;M1RyMobVKyray6|I_-NAPnA4B;M%N(hn(71i(W89qTF>GGe!gM)rW>En4aE; z!-v6MBP=PXniPgHgk}zp{QGCcHP?NL=QlgAzm>}`v&c*#ilwc|#@<@j>oKae8pcOQ zI9=knVn=1=ba-a}1B+MU>bG*)DvF7XynsZH7 zaPRZ`@rh6WJ-y`F!A8rTh1BjwTmwD8kJU?A<;^3YSO6 zEr#kLrVqc4|G9qrlWAOf$to;eGGXTnQo8#9AIm0|vcYENW^nPQlkw1fpAj#=(u7hH zQCwxRW&a$&>)&?SzNFwg3%+;}i?_yNX8%KuW##TRMcO+&5xT1~!{x8poI$%a%a+}A z#h>@*giDuAa>GKEib9{-PWmDtEkj&H`6%)*GF-)rFTLDX`FoH2wTR;Y-ENM3`{wZU z4}XKN{p$m~|MSm$MXWk=3Q1DHUg6m$gZReL*;zDajv~twoG`Hr6XO%yuJ@ng6bKx? zS-_RTMuolqP#9gY9b$I++io71Gs6O38p!?}-5htHK07muBeOG1jA+~DYzNoh^j9qG z=8HF=m!w=7dc6#!)GvPd!dtvc>&eHyAOhcVeu@Z>@Ie=7)an=?9mmmT7x#Yshq(Km zubOY)_eHVc{8j9Te%|sQaR?lnpU08rVJsOLVPxmOZ{Qnjk4c;Gqw>bkcCG9r-;pxfvX5x1jPAei-ocn_a~?em(l&=R_3QDKQT} zH5kk&94U3`^*SrfjZ&|NW9k{*^V8OM_GaU?y3lh4{^UVqhIjM#J%4tu~x;B+hO zFt`7wEyjW%yvPlJ&0^oecond-M<=iRUmY}9gEd%#HCTf+Sc5fKgEd%#HCX?r7l8i; XI4nn9ez$3I00000NkvXXu0mjf2o2nA diff --git a/pack/assets/minecraft/textures/fish/ugui.png b/pack/assets/minecraft/textures/fish/ugui.png deleted file mode 100644 index d632f6ba7bda7b85d8f47f97ac8252bec85e1a23..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1635 zcmV-p2AuhcP)7la6#mZrnR&kj+aQIIfM`>q&_ENbVI_hUbtxNh=|;lBM7kg`1~f6zq>W46uuv0O zK;p_jHYU1oMJWb|Bm~L=u~3A<-Nk&$W?f4a+9^y;m7Jg$ z820SwF)t_}KroL{k@IniYYL`Q7q>1bXN{JCl7E2S8#OXb0`!997jNf3QB7PL5S*1fazKt zV`r~Hs~{}|9#stEClLarbTrMAsTUJ(2=G8PU_R2XY~2W7SKyhqvH+cTuqy9Dx(rN9 zI1V8@+c+mED41m6lEGnw{=Rj%SFJ$^h9HP$gb_o>b9GTsTJ0&~c1`4mhld;FGp^0) zIA`FUFK(UFW?$b%e0c0f9NE7cE+^!R5^iS!TuPXv(($MiT{`~Nm`ykhu0m*HP^O_) z2!jwal`5*WFq$*2>w-yvydxkbZ`eI>^mxkveRcGmrf2UT`5tNVF`qfnUr+!;J|X_r z?w1d*q>V1V zd8<^E{>(&P`%qvAb9pGnjT7LJW+7^Ih5v3%fd_;wGneppR}Xl;gkre_#^%y6jk28WP4P|^WWQB=_0B3|K@r+Nn1h>v!X0gv1c?9y60;-&MhJ~G zCjE)SH-b14zAV6V3h>+#>Y@Oj=TYZ5Fk;|Zql^%pEWkR)M;F(SDuD1ktiO95&)m9< zZ8t8MRMuaAvcC~^BSLz&8L$6MwW9TA0MI7F&+QnD{v^@QP62bz1R+lnnv;pJ$z!Tk zr)hRxYLGJ1qO}oHCgF87Nk}UQ9hxc!k2#TGIUS;B>UvxgTyRqGCMWgH+c)S=Ex`EN zUTEn+t5>gLY-|jJgM&D6 z;sgc;2GG~n7Ypz%dOEux90`yFV;rP(R3LS|241VeEfkUK?g7a>Dj}g#_u&Tt9M?r@ zRT+Pry^LLbo6!H-+mX#&&JE6tj>_B@yYcJhSLYSrz|rH44bVa&v@C)b&Yz>0tj;`d zh+>2Y!!U}x8EABL6dN{dz{JEvWFTp$0v|MU4?#LFpx&A0=5W}W}-uaQ`EFY-WCN1TfV3dy-S+J} zu=&}|sCiXPPTWR)#)Gf?mYHL6D)4KXF+og-hKTctpSG9To8Uoqi3x}FvfgT(W1hA} diff --git a/pack/assets/minecraft/textures/fish/unagi.png b/pack/assets/minecraft/textures/fish/unagi.png deleted file mode 100644 index 205092f646c0670f43ec7c1eeb10276590b3f8cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2844 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 SshrsW0000ZrG!mjj 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 TE5&D&00000NkvXXu0mjfteOnq diff --git a/pack/assets/minecraft/textures/fish/zinbeezame.png b/pack/assets/minecraft/textures/fish/zinbeezame.png deleted file mode 100644 index e90d77297e7fbe88dca470582b71149c8c4d8d5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3144 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 isicxhD(U}*0Q?8IZN)NE%l;Su0000 Date: Tue, 7 Feb 2023 23:18:16 +0900 Subject: [PATCH 17/17] Update pack.mcmeta --- pack/pack.mcmeta | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack/pack.mcmeta b/pack/pack.mcmeta index 8ea8d64b..b1892598 100644 --- a/pack/pack.mcmeta +++ b/pack/pack.mcmeta @@ -1,7 +1,7 @@ { "pack":{ "pack_format": 12, - "pack_version": "v1.19.3", + "pack_version": "v1.19.4", "description": "F-Tex %pack_version% #113 1.19.3で起こる不具合の修正" } }