Skip to content

Instantly share code, notes, and snippets.

@Ridanisaurus
Last active December 7, 2020 15:58
Show Gist options
  • Save Ridanisaurus/3f5237a329327595a7b54a462dcf749b to your computer and use it in GitHub Desktop.
Save Ridanisaurus/3f5237a329327595a7b54a462dcf749b to your computer and use it in GitHub Desktop.
Tiny Torch Blockstate:
{
"variants": {
"": {
"model": "minecraft:block/torch"
}
}
}
-------------------------------------------------------------------------------------
Tiny Torch (Wall) Blockstate:
{
"variants": {
"facing=east": {
"model": "minecraft:block/wall_torch"
},
"facing=north": {
"model": "minecraft:block/wall_torch",
"y": 270
},
"facing=south": {
"model": "minecraft:block/wall_torch",
"y": 90
},
"facing=west": {
"model": "minecraft:block/wall_torch",
"y": 180
}
}
}
-------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
Tiny Torch Model:
{
"parent": "minecraft:block/template_torch",
"textures": {
"torch": "minecraft:block/torch"
}
}
-------------------------------------------------------------------------------------
Tiny Torch (Wall) Model:
{
"parent": "minecraft:block/template_torch_wall",
"textures": {
"torch": "minecraft:block/torch"
}
}
-------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
Crop Blockstate:
{
"variants": {
"age=0": {
"model": "minecraft:block/carrots_stage0"
},
"age=1": {
"model": "minecraft:block/carrots_stage0"
},
"age=2": {
"model": "minecraft:block/carrots_stage1"
},
"age=3": {
"model": "minecraft:block/carrots_stage1"
},
"age=4": {
"model": "minecraft:block/carrots_stage2"
},
"age=5": {
"model": "minecraft:block/carrots_stage2"
},
"age=6": {
"model": "minecraft:block/carrots_stage2"
},
"age=7": {
"model": "minecraft:block/carrots_stage3"
}
}
}
-------------------------------------------------------------------------------------
Crop Model:
STAGE 00
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "minecraft:block/carrots_stage0"
}
}
STAGE 01
{
"parent": "minecraft:block/crop",
"textures": {
"crop": "minecraft:block/carrots_stage1"
}
}
... etc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment