sapdon 2.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/doc/BlockAPI.md +145 -0
- package/doc/api.md +1 -1
- package/doc/hello_sapdon/a9aad643f5609da73404d1f7f35fd5d0.png +0 -0
- package/doc/hello_sapdon/sapdon/344/275/277/347/224/250/346/225/231/347/250/213.md +159 -0
- package/examples/guidebook/build.config +33 -0
- package/examples/guidebook/dev/guidebook_BP/items/sapdon_test_guidebook.json +19 -0
- package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20 → guidebook/dev/guidebook_BP}/manifest.json +63 -59
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/cropComponent.js +50 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/custom_components/registry.js +20 -0
- package/examples/guidebook/dev/guidebook_BP/scripts/index.js +3 -0
- package/examples/guidebook/dev/guidebook_RP/blocks.json +3 -0
- package/examples/guidebook/dev/guidebook_RP/manifest.json +44 -0
- package/examples/guidebook/dev/guidebook_RP/models/blocks/crop.geo.json +48 -0
- package/examples/{masterball/dev/masterball_RP/masterball_RP_1_20_20.zip → guidebook/dev/guidebook_RP/pack_icon.png} +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/flipbook_textures.json +1 -0
- package/examples/guidebook/dev/guidebook_RP/textures/item_texture.json +9 -0
- package/examples/guidebook/dev/guidebook_RP/textures/items/masterball.png +0 -0
- package/examples/guidebook/dev/guidebook_RP/textures/terrain_texture.json +14 -0
- package/examples/guidebook/dev/guidebook_RP/ui/_ui_defs.json +6 -0
- package/examples/guidebook/dev/guidebook_RP/ui/guidebook.json +581 -0
- package/examples/guidebook/dev/guidebook_RP/ui/server_form.json +91 -0
- package/examples/guidebook/main.mjs +66 -0
- package/examples/guidebook/mod.info +7 -0
- package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20.zip → guidebook/pack_icon.png} +0 -0
- package/examples/guidebook/res/models/blocks/crop.geo.json +48 -0
- package/examples/guidebook/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/guidebook/res/textures/blocks/test_log_top.png +0 -0
- package/examples/guidebook/res/textures/items/masterball.png +0 -0
- package/examples/guidebook/scripts/custom_components/cropComponent.js +50 -0
- package/examples/guidebook/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/guidebook/scripts/custom_components/registry.js +20 -0
- package/examples/guidebook/scripts/index.js +3 -0
- package/examples/hello_sapdon/build.config +29 -0
- package/examples/hello_sapdon/main.mjs +3 -0
- package/examples/hello_sapdon/mod.info +7 -0
- package/examples/hello_sapdon/pack_icon.png +0 -0
- package/examples/hello_sapdon/res/models/blocks/crop.geo.json +48 -0
- package/examples/hello_sapdon/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/hello_sapdon/res/textures/blocks/test_log_top.png +0 -0
- package/examples/hello_sapdon/res/textures/items/masterball.png +0 -0
- package/examples/hello_sapdon/scripts/custom_components/cropComponent.js +50 -0
- package/examples/hello_sapdon/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/hello_sapdon/scripts/custom_components/registry.js +25 -0
- package/examples/hello_sapdon/scripts/index.js +0 -0
- package/examples/masterball/build.config +1 -0
- package/examples/masterball/dev/masterball_1_20_30.mcaddon +0 -0
- package/examples/masterball/dev/masterball_BP/entities/sapdon_projectile_masterball.json +56 -55
- package/examples/masterball/dev/masterball_BP/manifest.json +59 -59
- package/examples/masterball/dev/masterball_BP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_BP/recipes/masterball.json +25 -0
- package/examples/masterball/dev/masterball_BP_1_20_30.mcpack +0 -0
- package/examples/masterball/dev/masterball_RP/attachables/sapdon_caught_masterball.json +19 -0
- package/examples/masterball/dev/masterball_RP/manifest.json +43 -43
- package/examples/masterball/dev/masterball_RP/pack_icon.png +0 -0
- package/examples/masterball/dev/masterball_RP/textures/flipbook_textures.json +1 -0
- package/examples/masterball/dev/masterball_RP/ui/_ui_defs.json +3 -0
- package/examples/masterball/dev/masterball_RP_1_20_30.mcpack +0 -0
- package/examples/masterball/main.mjs +18 -1
- package/examples/masterball/pack_icon.png +0 -0
- package/examples/mob_chest/build.config +29 -0
- package/examples/mob_chest/dev/mob_chest_BP/blocks/mob_chest_chest.json +56 -0
- package/examples/mob_chest/dev/mob_chest_BP/entities/mob_chest_chest_entity.json +79 -0
- package/examples/mob_chest/dev/mob_chest_BP/manifest.json +64 -0
- package/examples/mob_chest/dev/mob_chest_BP/pack_icon.png +0 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/block/block_with_entity.js +46 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/block/cropComponent.js +50 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/custom_components/registry.js +25 -0
- package/examples/mob_chest/dev/mob_chest_BP/scripts/index.js +4 -0
- package/examples/mob_chest/dev/mob_chest_RP/animation_controllers/mob_chest.animation_controllers.json +30 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/animation_item.animation.json +34 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/large_item.animation.json +27 -0
- package/examples/mob_chest/dev/mob_chest_RP/animations/mob_chest.animation.json +64 -0
- package/examples/mob_chest/dev/mob_chest_RP/blocks.json +13 -0
- package/examples/mob_chest/dev/mob_chest_RP/entity/mob_chest_chest_entity.json +32 -0
- package/examples/mob_chest/dev/mob_chest_RP/manifest.json +44 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/crop.geo.json +48 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/cube.geo.json +35 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/blocks/empty.geo.json +35 -0
- package/examples/mob_chest/dev/mob_chest_RP/models/entity/mob_chest.geo.json +98 -0
- package/examples/mob_chest/dev/mob_chest_RP/pack_icon.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/double_normal.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/none.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/entity/normal.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/test_log_oak.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/blocks/test_log_top.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/flipbook_textures.json +1 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/item_texture.json +9 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/items/masterball.png +0 -0
- package/examples/mob_chest/dev/mob_chest_RP/textures/terrain_texture.json +23 -0
- package/examples/mob_chest/dev/mob_chest_RP/ui/_ui_defs.json +3 -0
- package/examples/mob_chest/main.mjs +31 -0
- package/examples/mob_chest/mod.info +7 -0
- package/examples/mob_chest/pack_icon.png +0 -0
- package/examples/mob_chest/res/animation_controllers/mob_chest.animation_controllers.json +30 -0
- package/examples/mob_chest/res/animations/animation_item.animation.json +34 -0
- package/examples/mob_chest/res/animations/large_item.animation.json +27 -0
- package/examples/mob_chest/res/animations/mob_chest.animation.json +64 -0
- package/examples/mob_chest/res/models/blocks/crop.geo.json +48 -0
- package/examples/mob_chest/res/models/blocks/cube.geo.json +35 -0
- package/examples/mob_chest/res/models/blocks/empty.geo.json +35 -0
- package/examples/mob_chest/res/models/entity/mob_chest.geo.json +98 -0
- package/examples/mob_chest/res/textures/blocks/entity/double_normal.png +0 -0
- package/examples/mob_chest/res/textures/blocks/entity/none.png +0 -0
- package/examples/mob_chest/res/textures/blocks/entity/normal.png +0 -0
- package/examples/mob_chest/res/textures/blocks/test_log_oak.png +0 -0
- package/examples/mob_chest/res/textures/blocks/test_log_top.png +0 -0
- package/examples/mob_chest/res/textures/items/masterball.png +0 -0
- package/examples/mob_chest/resource/cube.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.geo.bbmodel +1 -0
- package/examples/mob_chest/resource/flipbook_item.geo.json +3124 -0
- package/examples/mob_chest/resource/mob_chest.bbmodel +1 -0
- package/examples/mob_chest/scripts/custom_components/block/block_with_entity.js +46 -0
- package/examples/mob_chest/scripts/custom_components/block/cropComponent.js +50 -0
- package/examples/mob_chest/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/mob_chest/scripts/custom_components/registry.js +25 -0
- package/examples/mob_chest/scripts/index.js +4 -0
- package/examples/test/build.config +29 -0
- package/examples/test/dev/test_BP/blocks/sapdon_ore_cinnabar.json +15 -15
- package/examples/test/dev/test_BP/blocks/sapdon_test_block.json +15 -15
- package/examples/test/dev/test_BP/blocks/sapdon_test_crop.json +191 -191
- package/examples/test/dev/test_BP/blocks/sapdon_wire.json +102 -102
- package/examples/test/dev/test_BP/entities/sapdon_test_projectile.json +56 -55
- package/examples/test/dev/test_BP/feature_rules/ore_cinnabar_orefeatre_rule.json +52 -52
- package/examples/test/dev/test_BP/feature_rules/overworld_underground_titanite_ore_feature.json +52 -52
- package/examples/test/dev/test_BP/features/ore_cinnabar_ore_feature.json +16 -16
- package/examples/test/dev/test_BP/features/titanite_ore_feature.json +22 -22
- package/examples/test/dev/test_BP/items/sapdon_chest.json +22 -22
- package/examples/test/dev/test_BP/items/sapdon_test_book.json +19 -0
- package/examples/test/dev/test_BP/items/sapdon_test_food.json +25 -25
- package/examples/test/dev/test_BP/items/sapdon_test_item.json +30 -30
- package/examples/test/dev/test_BP/manifest.json +63 -59
- package/examples/test/dev/test_BP/recipes/sapdon_test_furnace.json +12 -12
- package/examples/test/dev/test_BP/scripts/custom_components/cropComponent.js +1 -10
- package/examples/test/dev/test_BP/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/test/dev/test_BP/scripts/custom_components/registry.js +20 -0
- package/examples/test/dev/test_BP/scripts/index.js +4 -3
- package/examples/test/dev/test_RP/attachables/sapdon_chest.json +24 -24
- package/examples/test/dev/test_RP/blocks.json +42 -42
- package/examples/test/dev/test_RP/entity/sapdon_test_projectile.json +27 -27
- package/examples/test/dev/test_RP/manifest.json +43 -43
- package/examples/test/dev/test_RP/models/blocks/arcane_workbench.geo.json +105 -105
- package/examples/test/dev/test_RP/models/blocks/jar_normal.geo.json +46 -46
- package/examples/test/dev/test_RP/models/blocks/jar_normal_0.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_1.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_2.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/jar_normal_3.geo.json +58 -58
- package/examples/test/dev/test_RP/models/blocks/wire.geo.json +153 -153
- package/examples/test/dev/test_RP/textures/item_texture.json +788 -788
- package/examples/test/dev/test_RP/textures/items/seals/seal_breaker.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_butcher.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_empty_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_fill_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_guard_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_harvest.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_lumber.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_pickup_advanced.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_provider.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/seals/seal_use.png.mcmeta +5 -5
- package/examples/test/dev/test_RP/textures/items/wand/cap_thaumium.png.mcmeta +11 -11
- package/examples/test/dev/test_RP/textures/items/wand/cap_void.png.mcmeta +11 -11
- package/examples/test/dev/test_RP/textures/items/wand/focus_pech.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_portablehole.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_primal.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_shard.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/focus_warding.png.mcmeta +2 -2
- package/examples/test/dev/test_RP/textures/items/wand/rod_primal_mat.png.mcmeta +44 -44
- package/examples/test/dev/test_RP/textures/terrain_texture.json +136 -136
- package/examples/test/dev/test_RP/ui/_ui_defs.json +6 -0
- package/examples/test/dev/test_RP/ui/guidebook.json +446 -0
- package/examples/test/dev/test_RP/ui/server_form.json +91 -0
- package/examples/test/main.mjs +46 -1
- package/examples/test/res/models/blocks/arcane_workbench.geo.json +105 -105
- package/examples/test/res/models/blocks/jar_normal.geo.json +46 -46
- package/examples/test/res/models/blocks/jar_normal_0.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_1.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_2.geo.json +58 -58
- package/examples/test/res/models/blocks/jar_normal_3.geo.json +58 -58
- package/examples/test/res/models/blocks/wire.geo.json +153 -153
- package/examples/test/res/textures/items/seals/seal_breaker.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_butcher.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_empty.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_empty_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_fill.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_fill_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_guard.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_guard_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_harvest.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_lumber.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_pickup.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_pickup_advanced.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_provider.png.mcmeta +5 -5
- package/examples/test/res/textures/items/seals/seal_use.png.mcmeta +5 -5
- package/examples/test/res/textures/items/wand/cap_thaumium.png.mcmeta +11 -11
- package/examples/test/res/textures/items/wand/cap_void.png.mcmeta +11 -11
- package/examples/test/res/textures/items/wand/focus_pech.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_portablehole.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_primal.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_shard.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/focus_warding.png.mcmeta +2 -2
- package/examples/test/res/textures/items/wand/rod_primal_mat.png.mcmeta +44 -44
- package/examples/test/scripts/custom_components/cropComponent.js +1 -10
- package/examples/test/scripts/custom_components/items/gui_book.js +37 -0
- package/examples/test/scripts/custom_components/registry.js +20 -0
- package/examples/test/scripts/index.js +4 -3
- package/log.md +8 -0
- package/package.json +4 -1
- package/src/cli/build.js +210 -210
- package/src/cli/load.js +116 -112
- package/src/cli/tools/textureSet.js +114 -114
- package/src/cli/utils.js +82 -82
- package/src/core/addon/controllers/animation_controller.js +80 -0
- package/src/core/addon/entity/entity.js +52 -51
- package/src/core/block/GeometryBlock.js +8 -0
- package/src/core/block/OreBlock.js +1 -0
- package/src/core/block/TileBlock.js +117 -0
- package/src/core/block/block.js +106 -106
- package/src/core/block/blockComponent.js +557 -557
- package/src/core/block/cropBlock.js +1 -1
- package/src/core/entity/BasicEntity.js +195 -166
- package/src/core/entity/bundles/BasicBundle.js +51 -0
- package/src/core/factory/BlockFactory.js +166 -158
- package/src/core/factory/EntityFactory.js +82 -82
- package/src/core/factory/ItemFactory.js +120 -95
- package/src/core/factory/RecipeFactory.js +46 -46
- package/src/core/index.js +2 -1
- package/src/core/item/Item.js +96 -96
- package/src/core/item/ItemComponents.js +251 -235
- package/src/core/item/armor.js +117 -89
- package/src/core/item/attachable.js +33 -33
- package/src/core/item/food.js +61 -61
- package/src/core/registry.js +16 -16
- package/src/core/ui/Properties/{Grid.js → GridProp.js} +2 -2
- package/src/core/ui/Properties/Sound.js +72 -0
- package/src/core/ui/elements/Button.js +111 -0
- package/src/core/ui/elements/CollectionPanel.js +61 -0
- package/src/core/ui/elements/Grid.js +24 -0
- package/src/core/ui/elements/Image.js +4 -0
- package/src/core/ui/elements/Label.js +10 -2
- package/src/core/ui/elements/Panel.js +7 -0
- package/src/core/ui/elements/ScrollingPanel.js +68 -0
- package/src/core/ui/elements/StackPanel.js +40 -0
- package/src/core/ui/elements/UIElement.js +43 -2
- package/src/core/ui/registry/UISystemRegistry.js +35 -0
- package/src/core/ui/systems/UISystem.js +9 -5
- package/src/core/ui/systems/guidebook.js +299 -0
- package/src/core/ui/systems/server_form.js +94 -83
- package/src/templates/test_sapdon/build.config +28 -28
- package/src/templates/test_sapdon/res/animations/animation_item.animation.json +34 -0
- package/src/templates/test_sapdon/res/animations/large_item.animation.json +27 -0
- package/src/templates/test_sapdon/res/models/entity/animation/animation_item.geo.json +26 -0
- package/src/templates/test_sapdon/res/models/entity/animation/large_item.geo.json +28 -0
- package/src/templates/test_sapdon/res/textures/blocks/none.png +0 -0
- package/src/templates/test_sapdon/scripts/custom_components/cropComponent.js +50 -0
- package/src/templates/test_sapdon/scripts/custom_components/items/gui_book.js +37 -0
- package/src/templates/test_sapdon/scripts/custom_components/registry.js +25 -0
- package/examples/masterball/dev/masterball[1.20.20+].mcaddon.zip +0 -0
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/entities/sapdon_projectile_masterball.json +0 -56
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_caught_masterball.json +0 -32
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/items/sapdon_uncaught_masterball.json +0 -31
- package/examples/masterball/dev/masterball_BP/masterball_BP_1_20_20/scripts/index.js +0 -159
- package/examples/test/dev/test_BP/biomes/test_biome.json +0 -48
- package/examples/test/dev/test_BP/blocks/sapdon_block.json +0 -111
- package/examples/test/dev/test_BP/entities/sapdon_body.json +0 -118
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl1.json +0 -55
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_ctrl2.json +0 -61
- package/examples/test/dev/test_BP/entities/sapdon_test_entity_header.json +0 -408
- package/examples/test/dev/test_RP/entity/sapdon_body.json +0 -44
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl1.json +0 -38
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_ctrl2.json +0 -38
- package/examples/test/dev/test_RP/entity/sapdon_test_entity_header.json +0 -44
- package/src/cli/build.config +0 -4
- package/src/core/ui/registry/ServerUISystem.js +0 -19
- /package/examples/{masterball/dev/masterball_BP/masterball_BP_1_20_20 → guidebook/dev/guidebook_BP}/pack_icon.png +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,0 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 0,1,2,1,2,1 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 0,1,2,1,2,1 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 0,1,2,1,2,1 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 0,1,2,1,2,1 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 0,1,2,1,2,1,2,1 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 0,1,2,1,2,1,2,1 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 0,1,2,1,2,1,2,1 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 0,1,2,1,2,1,2,1 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,2,1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [ 1,0,1,2,1,2 ]
|
|
5
|
+
}
|
|
6
6
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 3,
|
|
4
|
-
"frames": [
|
|
5
|
-
0,
|
|
6
|
-
1,
|
|
7
|
-
2,
|
|
8
|
-
1
|
|
9
|
-
]
|
|
10
|
-
}
|
|
11
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 3,
|
|
4
|
+
"frames": [
|
|
5
|
+
0,
|
|
6
|
+
1,
|
|
7
|
+
2,
|
|
8
|
+
1
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 3,
|
|
4
|
-
"frames": [
|
|
5
|
-
0,
|
|
6
|
-
1,
|
|
7
|
-
2,
|
|
8
|
-
1
|
|
9
|
-
]
|
|
10
|
-
}
|
|
11
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 3,
|
|
4
|
+
"frames": [
|
|
5
|
+
0,
|
|
6
|
+
1,
|
|
7
|
+
2,
|
|
8
|
+
1
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {}
|
|
1
|
+
{
|
|
2
|
+
"animation": {}
|
|
3
3
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {}
|
|
1
|
+
{
|
|
2
|
+
"animation": {}
|
|
3
3
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {"frames": [ 0,1,1,2,3,4,5,6,6,7,8,9,10,11,11,12,13,14,15,16,16,17,18,19,20,21,21,22,23,24,25,26,26,27,28,29 ]}
|
|
1
|
+
{
|
|
2
|
+
"animation": {"frames": [ 0,1,1,2,3,4,5,6,6,7,8,9,10,11,11,12,13,14,15,16,16,17,18,19,20,21,21,22,23,24,25,26,26,27,28,29 ]}
|
|
3
3
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {}
|
|
1
|
+
{
|
|
2
|
+
"animation": {}
|
|
3
3
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": { }
|
|
1
|
+
{
|
|
2
|
+
"animation": { }
|
|
3
3
|
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
"animation": {
|
|
3
|
-
"frametime": 2,
|
|
4
|
-
"frames": [
|
|
5
|
-
0,
|
|
6
|
-
1,
|
|
7
|
-
2,
|
|
8
|
-
3,
|
|
9
|
-
4,
|
|
10
|
-
5,
|
|
11
|
-
6,
|
|
12
|
-
7,
|
|
13
|
-
8,
|
|
14
|
-
9,
|
|
15
|
-
10,
|
|
16
|
-
11,
|
|
17
|
-
12,
|
|
18
|
-
13,
|
|
19
|
-
14,
|
|
20
|
-
15,
|
|
21
|
-
16,
|
|
22
|
-
17,
|
|
23
|
-
18,
|
|
24
|
-
19,
|
|
25
|
-
18,
|
|
26
|
-
17,
|
|
27
|
-
16,
|
|
28
|
-
15,
|
|
29
|
-
14,
|
|
30
|
-
13,
|
|
31
|
-
12,
|
|
32
|
-
11,
|
|
33
|
-
10,
|
|
34
|
-
9,
|
|
35
|
-
8,
|
|
36
|
-
7,
|
|
37
|
-
6,
|
|
38
|
-
5,
|
|
39
|
-
4,
|
|
40
|
-
3,
|
|
41
|
-
2,
|
|
42
|
-
1
|
|
43
|
-
]
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"animation": {
|
|
3
|
+
"frametime": 2,
|
|
4
|
+
"frames": [
|
|
5
|
+
0,
|
|
6
|
+
1,
|
|
7
|
+
2,
|
|
8
|
+
3,
|
|
9
|
+
4,
|
|
10
|
+
5,
|
|
11
|
+
6,
|
|
12
|
+
7,
|
|
13
|
+
8,
|
|
14
|
+
9,
|
|
15
|
+
10,
|
|
16
|
+
11,
|
|
17
|
+
12,
|
|
18
|
+
13,
|
|
19
|
+
14,
|
|
20
|
+
15,
|
|
21
|
+
16,
|
|
22
|
+
17,
|
|
23
|
+
18,
|
|
24
|
+
19,
|
|
25
|
+
18,
|
|
26
|
+
17,
|
|
27
|
+
16,
|
|
28
|
+
15,
|
|
29
|
+
14,
|
|
30
|
+
13,
|
|
31
|
+
12,
|
|
32
|
+
11,
|
|
33
|
+
10,
|
|
34
|
+
9,
|
|
35
|
+
8,
|
|
36
|
+
7,
|
|
37
|
+
6,
|
|
38
|
+
5,
|
|
39
|
+
4,
|
|
40
|
+
3,
|
|
41
|
+
2,
|
|
42
|
+
1
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
45
|
}
|
|
@@ -1,137 +1,137 @@
|
|
|
1
|
-
{
|
|
2
|
-
"texture_name": "atlas.terrain",
|
|
3
|
-
"resource_pack_name": "test",
|
|
4
|
-
"padding": 8,
|
|
5
|
-
"num_mip_levels": 4,
|
|
6
|
-
"texture_data": {
|
|
7
|
-
"animatedglow": {
|
|
8
|
-
"textures": "textures/blocks/animatedglow"
|
|
9
|
-
},
|
|
10
|
-
"arcane_workbench_side": {
|
|
11
|
-
"textures": "textures/blocks/arcane_workbench_side"
|
|
12
|
-
},
|
|
13
|
-
"arcane_workbench_top": {
|
|
14
|
-
"textures": "textures/blocks/arcane_workbench_top"
|
|
15
|
-
},
|
|
16
|
-
"base_wood_grain": {
|
|
17
|
-
"textures": "textures/blocks/base_wood_grain"
|
|
18
|
-
},
|
|
19
|
-
"castleBlock_darkBrickBloody_0": {
|
|
20
|
-
"textures": "textures/blocks/castleBlock_darkBrickBloody_0"
|
|
21
|
-
},
|
|
22
|
-
"castleBlock_darkSlab_0": {
|
|
23
|
-
"textures": "textures/blocks/castleBlock_darkSlab_0"
|
|
24
|
-
},
|
|
25
|
-
"castleBlock_purpleBrick_0": {
|
|
26
|
-
"textures": "textures/blocks/castleBlock_purpleBrick_0"
|
|
27
|
-
},
|
|
28
|
-
"castleBlock_purpleSlab_0": {
|
|
29
|
-
"textures": "textures/blocks/castleBlock_purpleSlab_0"
|
|
30
|
-
},
|
|
31
|
-
"churchAltar": {
|
|
32
|
-
"textures": "textures/blocks/churchAltar"
|
|
33
|
-
},
|
|
34
|
-
"compass_block_down": {
|
|
35
|
-
"textures": "textures/blocks/compass_block_down"
|
|
36
|
-
},
|
|
37
|
-
"compass_block_east": {
|
|
38
|
-
"textures": "textures/blocks/compass_block_east"
|
|
39
|
-
},
|
|
40
|
-
"compass_block_north": {
|
|
41
|
-
"textures": "textures/blocks/compass_block_north"
|
|
42
|
-
},
|
|
43
|
-
"compass_block_south": {
|
|
44
|
-
"textures": "textures/blocks/compass_block_south"
|
|
45
|
-
},
|
|
46
|
-
"compass_block_up": {
|
|
47
|
-
"textures": "textures/blocks/compass_block_up"
|
|
48
|
-
},
|
|
49
|
-
"compass_block_west": {
|
|
50
|
-
"textures": "textures/blocks/compass_block_west"
|
|
51
|
-
},
|
|
52
|
-
"cursedEarth_0": {
|
|
53
|
-
"textures": "textures/blocks/cursedEarth_0"
|
|
54
|
-
},
|
|
55
|
-
"custom_chestplate": {
|
|
56
|
-
"textures": "textures/blocks/custom_chestplate"
|
|
57
|
-
},
|
|
58
|
-
"garlicTorchStrong_0": {
|
|
59
|
-
"textures": "textures/blocks/garlicTorchStrong_0"
|
|
60
|
-
},
|
|
61
|
-
"garlicTorchWeak_0": {
|
|
62
|
-
"textures": "textures/blocks/garlicTorchWeak_0"
|
|
63
|
-
},
|
|
64
|
-
"garlic_stage_0": {
|
|
65
|
-
"textures": "textures/blocks/garlic_stage_0"
|
|
66
|
-
},
|
|
67
|
-
"garlic_stage_1": {
|
|
68
|
-
"textures": "textures/blocks/garlic_stage_1"
|
|
69
|
-
},
|
|
70
|
-
"garlic_stage_2": {
|
|
71
|
-
"textures": "textures/blocks/garlic_stage_2"
|
|
72
|
-
},
|
|
73
|
-
"garlic_stage_3": {
|
|
74
|
-
"textures": "textures/blocks/garlic_stage_3"
|
|
75
|
-
},
|
|
76
|
-
"jar_bottom": {
|
|
77
|
-
"textures": "textures/blocks/jar_bottom"
|
|
78
|
-
},
|
|
79
|
-
"jar_brine": {
|
|
80
|
-
"textures": "textures/blocks/jar_brine"
|
|
81
|
-
},
|
|
82
|
-
"jar_side": {
|
|
83
|
-
"textures": "textures/blocks/jar_side"
|
|
84
|
-
},
|
|
85
|
-
"jar_side_void": {
|
|
86
|
-
"textures": "textures/blocks/jar_side_void"
|
|
87
|
-
},
|
|
88
|
-
"jar_top": {
|
|
89
|
-
"textures": "textures/blocks/jar_top"
|
|
90
|
-
},
|
|
91
|
-
"jar_top_void": {
|
|
92
|
-
"textures": "textures/blocks/jar_top_void"
|
|
93
|
-
},
|
|
94
|
-
"ore_cinnabar": {
|
|
95
|
-
"textures": "textures/blocks/ore_cinnabar"
|
|
96
|
-
},
|
|
97
|
-
"test_block": {
|
|
98
|
-
"textures": "textures/blocks/test_block"
|
|
99
|
-
},
|
|
100
|
-
"test_log_oak": {
|
|
101
|
-
"textures": "textures/blocks/test_log_oak"
|
|
102
|
-
},
|
|
103
|
-
"test_log_top": {
|
|
104
|
-
"textures": "textures/blocks/test_log_top"
|
|
105
|
-
},
|
|
106
|
-
"vampireOrchid_0": {
|
|
107
|
-
"textures": "textures/blocks/vampireOrchid_0"
|
|
108
|
-
},
|
|
109
|
-
"wheat_stage_0": {
|
|
110
|
-
"textures": "textures/blocks/wheat_stage_0"
|
|
111
|
-
},
|
|
112
|
-
"wheat_stage_1": {
|
|
113
|
-
"textures": "textures/blocks/wheat_stage_1"
|
|
114
|
-
},
|
|
115
|
-
"wheat_stage_2": {
|
|
116
|
-
"textures": "textures/blocks/wheat_stage_2"
|
|
117
|
-
},
|
|
118
|
-
"wheat_stage_3": {
|
|
119
|
-
"textures": "textures/blocks/wheat_stage_3"
|
|
120
|
-
},
|
|
121
|
-
"wheat_stage_4": {
|
|
122
|
-
"textures": "textures/blocks/wheat_stage_4"
|
|
123
|
-
},
|
|
124
|
-
"wheat_stage_5": {
|
|
125
|
-
"textures": "textures/blocks/wheat_stage_5"
|
|
126
|
-
},
|
|
127
|
-
"wheat_stage_6": {
|
|
128
|
-
"textures": "textures/blocks/wheat_stage_6"
|
|
129
|
-
},
|
|
130
|
-
"wheat_stage_7": {
|
|
131
|
-
"textures": "textures/blocks/wheat_stage_7"
|
|
132
|
-
},
|
|
133
|
-
"wire": {
|
|
134
|
-
"textures": "textures/blocks/wire"
|
|
135
|
-
}
|
|
136
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"texture_name": "atlas.terrain",
|
|
3
|
+
"resource_pack_name": "test",
|
|
4
|
+
"padding": 8,
|
|
5
|
+
"num_mip_levels": 4,
|
|
6
|
+
"texture_data": {
|
|
7
|
+
"animatedglow": {
|
|
8
|
+
"textures": "textures/blocks/animatedglow"
|
|
9
|
+
},
|
|
10
|
+
"arcane_workbench_side": {
|
|
11
|
+
"textures": "textures/blocks/arcane_workbench_side"
|
|
12
|
+
},
|
|
13
|
+
"arcane_workbench_top": {
|
|
14
|
+
"textures": "textures/blocks/arcane_workbench_top"
|
|
15
|
+
},
|
|
16
|
+
"base_wood_grain": {
|
|
17
|
+
"textures": "textures/blocks/base_wood_grain"
|
|
18
|
+
},
|
|
19
|
+
"castleBlock_darkBrickBloody_0": {
|
|
20
|
+
"textures": "textures/blocks/castleBlock_darkBrickBloody_0"
|
|
21
|
+
},
|
|
22
|
+
"castleBlock_darkSlab_0": {
|
|
23
|
+
"textures": "textures/blocks/castleBlock_darkSlab_0"
|
|
24
|
+
},
|
|
25
|
+
"castleBlock_purpleBrick_0": {
|
|
26
|
+
"textures": "textures/blocks/castleBlock_purpleBrick_0"
|
|
27
|
+
},
|
|
28
|
+
"castleBlock_purpleSlab_0": {
|
|
29
|
+
"textures": "textures/blocks/castleBlock_purpleSlab_0"
|
|
30
|
+
},
|
|
31
|
+
"churchAltar": {
|
|
32
|
+
"textures": "textures/blocks/churchAltar"
|
|
33
|
+
},
|
|
34
|
+
"compass_block_down": {
|
|
35
|
+
"textures": "textures/blocks/compass_block_down"
|
|
36
|
+
},
|
|
37
|
+
"compass_block_east": {
|
|
38
|
+
"textures": "textures/blocks/compass_block_east"
|
|
39
|
+
},
|
|
40
|
+
"compass_block_north": {
|
|
41
|
+
"textures": "textures/blocks/compass_block_north"
|
|
42
|
+
},
|
|
43
|
+
"compass_block_south": {
|
|
44
|
+
"textures": "textures/blocks/compass_block_south"
|
|
45
|
+
},
|
|
46
|
+
"compass_block_up": {
|
|
47
|
+
"textures": "textures/blocks/compass_block_up"
|
|
48
|
+
},
|
|
49
|
+
"compass_block_west": {
|
|
50
|
+
"textures": "textures/blocks/compass_block_west"
|
|
51
|
+
},
|
|
52
|
+
"cursedEarth_0": {
|
|
53
|
+
"textures": "textures/blocks/cursedEarth_0"
|
|
54
|
+
},
|
|
55
|
+
"custom_chestplate": {
|
|
56
|
+
"textures": "textures/blocks/custom_chestplate"
|
|
57
|
+
},
|
|
58
|
+
"garlicTorchStrong_0": {
|
|
59
|
+
"textures": "textures/blocks/garlicTorchStrong_0"
|
|
60
|
+
},
|
|
61
|
+
"garlicTorchWeak_0": {
|
|
62
|
+
"textures": "textures/blocks/garlicTorchWeak_0"
|
|
63
|
+
},
|
|
64
|
+
"garlic_stage_0": {
|
|
65
|
+
"textures": "textures/blocks/garlic_stage_0"
|
|
66
|
+
},
|
|
67
|
+
"garlic_stage_1": {
|
|
68
|
+
"textures": "textures/blocks/garlic_stage_1"
|
|
69
|
+
},
|
|
70
|
+
"garlic_stage_2": {
|
|
71
|
+
"textures": "textures/blocks/garlic_stage_2"
|
|
72
|
+
},
|
|
73
|
+
"garlic_stage_3": {
|
|
74
|
+
"textures": "textures/blocks/garlic_stage_3"
|
|
75
|
+
},
|
|
76
|
+
"jar_bottom": {
|
|
77
|
+
"textures": "textures/blocks/jar_bottom"
|
|
78
|
+
},
|
|
79
|
+
"jar_brine": {
|
|
80
|
+
"textures": "textures/blocks/jar_brine"
|
|
81
|
+
},
|
|
82
|
+
"jar_side": {
|
|
83
|
+
"textures": "textures/blocks/jar_side"
|
|
84
|
+
},
|
|
85
|
+
"jar_side_void": {
|
|
86
|
+
"textures": "textures/blocks/jar_side_void"
|
|
87
|
+
},
|
|
88
|
+
"jar_top": {
|
|
89
|
+
"textures": "textures/blocks/jar_top"
|
|
90
|
+
},
|
|
91
|
+
"jar_top_void": {
|
|
92
|
+
"textures": "textures/blocks/jar_top_void"
|
|
93
|
+
},
|
|
94
|
+
"ore_cinnabar": {
|
|
95
|
+
"textures": "textures/blocks/ore_cinnabar"
|
|
96
|
+
},
|
|
97
|
+
"test_block": {
|
|
98
|
+
"textures": "textures/blocks/test_block"
|
|
99
|
+
},
|
|
100
|
+
"test_log_oak": {
|
|
101
|
+
"textures": "textures/blocks/test_log_oak"
|
|
102
|
+
},
|
|
103
|
+
"test_log_top": {
|
|
104
|
+
"textures": "textures/blocks/test_log_top"
|
|
105
|
+
},
|
|
106
|
+
"vampireOrchid_0": {
|
|
107
|
+
"textures": "textures/blocks/vampireOrchid_0"
|
|
108
|
+
},
|
|
109
|
+
"wheat_stage_0": {
|
|
110
|
+
"textures": "textures/blocks/wheat_stage_0"
|
|
111
|
+
},
|
|
112
|
+
"wheat_stage_1": {
|
|
113
|
+
"textures": "textures/blocks/wheat_stage_1"
|
|
114
|
+
},
|
|
115
|
+
"wheat_stage_2": {
|
|
116
|
+
"textures": "textures/blocks/wheat_stage_2"
|
|
117
|
+
},
|
|
118
|
+
"wheat_stage_3": {
|
|
119
|
+
"textures": "textures/blocks/wheat_stage_3"
|
|
120
|
+
},
|
|
121
|
+
"wheat_stage_4": {
|
|
122
|
+
"textures": "textures/blocks/wheat_stage_4"
|
|
123
|
+
},
|
|
124
|
+
"wheat_stage_5": {
|
|
125
|
+
"textures": "textures/blocks/wheat_stage_5"
|
|
126
|
+
},
|
|
127
|
+
"wheat_stage_6": {
|
|
128
|
+
"textures": "textures/blocks/wheat_stage_6"
|
|
129
|
+
},
|
|
130
|
+
"wheat_stage_7": {
|
|
131
|
+
"textures": "textures/blocks/wheat_stage_7"
|
|
132
|
+
},
|
|
133
|
+
"wire": {
|
|
134
|
+
"textures": "textures/blocks/wire"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
137
|
}
|