added cotton

This commit is contained in:
2020-10-31 17:33:50 +01:00
parent eaed21a3ff
commit 0e52a495a0
28 changed files with 217 additions and 8 deletions

View File

@ -0,0 +1,12 @@
{
"variants": {
"age=0": { "model": "quickiefabric:block/cottonplant0" },
"age=1": { "model": "quickiefabric:block/cottonplant1" },
"age=2": { "model": "quickiefabric:block/cottonplant1" },
"age=3": { "model": "quickiefabric:block/cottonplant2" },
"age=4": { "model": "quickiefabric:block/cottonplant2" },
"age=5": { "model": "quickiefabric:block/cottonplant3" },
"age=6": { "model": "quickiefabric:block/cottonplant3" },
"age=7": { "model": "quickiefabric:block/cottonplant4" }
}
}

View File

@ -29,6 +29,8 @@
"item.quickiefabric.backpack_lightblue": "hellblauer Rucksack",
"item.quickiefabric.rotten_flesh_stripes": "geschnittenes Gammelfleisch",
"item.quickiefabric.carrotstack": "Karottenbündel",
"item.quickiefabric.cotton": "Baumwolle",
"item.quickiefabric.cottonseed": "Baumwollsaat",
"block.quickiefabric.orenethersulphor": "Nether-Schwefel",
"block.quickiefabric.oresalpeter": "Salpetererz",
"block.quickiefabric.oresandsalpeter": "Salpetergestein",
@ -48,6 +50,7 @@
"block.quickiefabric.itemhoarder": "Itemsauger",
"block.quickiefabric.monsterhoarder": "Monstersauger",
"block.quickiefabric.kelpstack": "Seegrassbündel",
"block.quickiefabric.cottonplant": "Baumwollpflanze",
"container.quickiefabric.backpack": "Rucksack",
"msg.buildingplan.start": "beginne Konstruktionsaufnahme bei %s,%s,%s",
"msg.buildingplan.end": "beende Konstruktionsaufnahme bei %s,%s,%s",

View File

@ -29,6 +29,8 @@
"item.quickiefabric.backpack_lightblue": "light blue backpack",
"item.quickiefabric.rotten_flesh_stripes": "rotten flesh stripes",
"item.quickiefabric.carrotstack": "a bundle of carrots",
"item.quickiefabric.cotton": "cotton",
"item.quickiefabric.cottonseed": "cotton seed",
"block.quickiefabric.orenethersulphor": "nether sulfur",
"block.quickiefabric.oresalpeter": "salpeter ore",
"block.quickiefabric.oresandsalpeter": "salpeter stone",
@ -48,6 +50,7 @@
"block.quickiefabric.itemhoarder": "item hoarder",
"block.quickiefabric.monsterhoarder": "monster hoarder",
"block.quickiefabric.kelpstack": "kelp bundle",
"block.quickiefabric.cottonplant": "cotton plant",
"container.quickiefabric.backpack": "backpack",
"msg.buildingplan.start": "started recording of construction at %s,%s,%s",
"msg.buildingplan.end": "finished recording of construction at %s,%s,%s",

View File

@ -0,0 +1,6 @@
{
"parent":"block/cross",
"textures":{
"cross":"quickiefabric:block/cottonplant0"
}
}

View File

@ -0,0 +1,6 @@
{
"parent":"block/cross",
"textures":{
"cross":"quickiefabric:block/cottonplant1"
}
}

View File

@ -0,0 +1,6 @@
{
"parent":"block/cross",
"textures":{
"cross":"quickiefabric:block/cottonplant2"
}
}

View File

@ -0,0 +1,6 @@
{
"parent":"block/cross",
"textures":{
"cross":"quickiefabric:block/cottonplant3"
}
}

View File

@ -0,0 +1,6 @@
{
"parent":"block/cross",
"textures":{
"cross":"quickiefabric:block/cottonplant4"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiefabric:item/cotton"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiefabric:item/cottonseed"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiefabric:item/cottonseed"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "quickiefabric:cotton"
}
],
"result": {
"item": "minecraft:string",
"count": 1
}
}