Update crop
Closed this issue · 9 comments
IncredibleHolg commented
missing:
- potatoes
- carrots
- beetrot
- wheat
IncredibleHolg commented
Keep the default blockstates and models, only changing the texture names.
- block/potatoes_stage1
- block/potatoes_stage2
- block/potatoes_stage3
current names
- potatoes_stage_1.png
- potatoes_stage_2.png
- potatoes_stage_3.png
IncredibleHolg commented
Fix potatoes in 4ee9b2f
IncredibleHolg commented
Texture rename for carrots:
- carrots_stage_0.png -> carrots_stage0.png (0-3)
- beetroots_stage_0.png -> beetroots_stage0.png (0-3)
- wheat_stage_0.png -> wheat_stage0.png ( 0-7)
fix 7906273
IncredibleHolg commented
still missing:
- reed -> sugarcane
- melons
- pumpkin
- cocoa_stageX
IncredibleHolg commented
Sugarcane:
{
"parent": "block/tinted_cross",
"textures": {
"cross": "block/sugar_cane"
}
}
./assets/minecraft/textures/block/sugar_cane.png
./assets/minecraft/textures/item/sugar_cane.png
./assets/minecraft/textures/block/reeds.png
./assets/minecraft/textures/item/reeds.png
commit: bf2501f
IncredibleHolg commented
melon:
- unattached: rename melon_stem_disconnected.png to block/stem_growth0
Model for attached stem: - blockstates/attached_melon_stem.json, facing n/s/e/w
- model: models/block/attached_melon_stem.json
{
"parent": "block/stem_fruit",
"textures": {
"stem": "block/melon_stem",
"upperstem": "block/attached_melon_stem"
}
}
renamed: melon_stem_connected.png -> attached_melon_stem.png
renamed: melon_stem_disconnected.png -> melon_stem.png
cimmit: b5f53ae
IncredibleHolg commented
Pumkin:
renamed: pumpkin_stem_connected.png -> attached_pumpkin_stem.png
renamed: pumpkin_stem_disconnected.png -> pumpkin_stem.png
commit: ad6af54
IncredibleHolg commented
Seeds:
- ./assets/minecraft/textures/item/seeds_melon.png
- ./assets/minecraft/textures/item/seeds_pumpkin.png
- ./assets/minecraft/textures/item/seeds_wheat.png
to
./assets/minecraft/textures/item/wheat_seeds.png
./assets/minecraft/textures/item/pumpkin_seeds.png
./assets/minecraft/textures/item/melon_seeds.png
fixing commit: e291b02
IncredibleHolg commented
merged in master with e291b02