added canola oil for the drills

This commit is contained in:
Jottyfan
2024-01-14 23:30:43 +01:00
parent 8dd50f73aa
commit efca60e5da
31 changed files with 250 additions and 24 deletions

View File

@ -0,0 +1,12 @@
{
"variants": {
"age=0": { "model": "quickiefabric:block/canolaplant0" },
"age=1": { "model": "quickiefabric:block/canolaplant1" },
"age=2": { "model": "quickiefabric:block/canolaplant1" },
"age=3": { "model": "quickiefabric:block/canolaplant2" },
"age=4": { "model": "quickiefabric:block/canolaplant2" },
"age=5": { "model": "quickiefabric:block/canolaplant2" },
"age=6": { "model": "quickiefabric:block/canolaplant3" },
"age=7": { "model": "quickiefabric:block/canolaplant4" }
}
}

View File

@ -40,6 +40,9 @@
"item.quickiefabric.carrotstack": "Karottenbündel",
"item.quickiefabric.cotton": "Baumwolle",
"item.quickiefabric.cottonseed": "Baumwollsaat",
"item.quickiefabric.canola": "Raps",
"item.quickiefabric.canolaseed": "Rapssaat",
"item.quickiefabric.canolabottle": "Rapsöl",
"item.quickiefabric.stub": "Stummel",
"item.quickiefabric.oxidizedcopperpowder": "oxidiertes Kupferpulver",
"item.quickiefabric.speedingot": "Fluchtpulverbarren",
@ -101,6 +104,6 @@
"msg.backpack.transfer.filled": "Der Rucksack wurde befüllt.",
"msg.backpack.transfer.cleared": "Der Rucksackinhalt wurde soweit möglich geleert.",
"msg.backpack.transfer.cancel": "Entweder der Rucksack oder die Kiste sind nicht komplett leer.",
"msg.drill.fuelinfo": "Der Bohrer hat noch eine Ladung für den Abbau von %s Blöcken. Er kann mit Redstone, Flucht- oder Eilpulver aufgeladen werden.",
"msg.drill.fuelinfo": "Der Bohrer hat noch eine Ladung für den Abbau von %s Blöcken. Er kann mit Rapsöl aufgeladen werden.",
"error.unleveling.inventory.full": "Es ist kein Platz mehr frei, um die Aufwertungen abzulegen."
}

View File

@ -40,6 +40,9 @@
"item.quickiefabric.carrotstack": "a bundle of carrots",
"item.quickiefabric.cotton": "cotton",
"item.quickiefabric.cottonseed": "cotton seed",
"item.quickiefabric.canola": "canola",
"item.quickiefabric.canolaseed": "canola seed",
"item.quickiefabric.canolabottle": "canola oil",
"item.quickiefabric.stub": "stub",
"item.quickiefabric.oxidizedcopperpowder": "oxidized copper powder",
"item.quickiefabric.speedingot": "Speedpowderingot",
@ -101,6 +104,6 @@
"msg.backpack.transfer.filled": "Filled the backpack.",
"msg.backpack.transfer.cleared": "Cleared the backpack as much as possible.",
"msg.backpack.transfer.cancel": "Eigther backpack or chest are not completely empty.",
"msg.drill.fuelinfo": "The drill still has a charge for mining %s blocks. It can be charged with redstone, speed or hurry powder.",
"msg.drill.fuelinfo": "The drill still has a charge for mining %s blocks. It can be charged with canola oil.",
"error.unleveling.inventory.full": "There is no free stack in your inventory for the level ups."
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 603 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 764 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 853 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"item": "quickiefabric:canola"
}
],
"result": {
"item": "quickiefabric:canolabottle",
"count": 1
}
}