Cigarette Recipes

This commit is contained in:
Vos
2026-02-01 21:19:48 -06:00
parent 55199f533e
commit 7b6895c8f4
8 changed files with 163 additions and 1 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:cigarette"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_tobacco": {
"conditions": {
"items": [
{
"items": "acesbs:tobacco"
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_the_recipe",
"has_tobacco"
]
],
"rewards": {
"recipes": [
"acesbs:cigarette"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cigarette": {
"conditions": {
"items": [
{
"items": "acesbs:cigarette"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:cigarette_funny"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_cigarette"
]
],
"rewards": {
"recipes": [
"acesbs:cigarette_funny"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_cigarette": {
"conditions": {
"items": [
{
"items": "acesbs:cigarette"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:cigarette_lemon"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_cigarette"
]
],
"rewards": {
"recipes": [
"acesbs:cigarette_lemon"
]
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "minecraft:paper"
},
{
"item": "acesbs:tobacco"
}
],
"result": {
"count": 1,
"id": "acesbs:cigarette"
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "acesbs:cigarette"
},
{
"item": "acesbs:infernal_ashes"
}
],
"result": {
"count": 1,
"id": "acesbs:cigarette_funny"
}
}
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "acesbs:cigarette"
},
{
"item": "acesbs:combustible_lemon"
}
],
"result": {
"count": 1,
"id": "acesbs:cigarette_lemon"
}
}