mirror of
https://codeberg.org/tenplus1/mobs_animal.git
synced 2024-12-22 17:00:26 +01:00
code tidy ' to "
This commit is contained in:
parent
e8709a1d11
commit
901225565c
24
cow.lua
24
cow.lua
@ -154,7 +154,7 @@ minetest.register_craftitem(":mobs:bucket_milk", {
|
|||||||
description = S("Bucket of Milk"),
|
description = S("Bucket of Milk"),
|
||||||
inventory_image = "mobs_bucket_milk.png",
|
inventory_image = "mobs_bucket_milk.png",
|
||||||
stack_max = 1,
|
stack_max = 1,
|
||||||
on_use = minetest.item_eat(8, 'bucket:bucket_empty'),
|
on_use = minetest.item_eat(8, "bucket:bucket_empty"),
|
||||||
groups = {food_milk = 1, flammable = 3},
|
groups = {food_milk = 1, flammable = 3},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -162,7 +162,7 @@ minetest.register_craftitem(":mobs:bucket_milk", {
|
|||||||
minetest.register_craftitem(":mobs:glass_milk", {
|
minetest.register_craftitem(":mobs:glass_milk", {
|
||||||
description = S("Glass of Milk"),
|
description = S("Glass of Milk"),
|
||||||
inventory_image = "mobs_glass_milk.png",
|
inventory_image = "mobs_glass_milk.png",
|
||||||
on_use = minetest.item_eat(2, 'vessels:drinking_glass'),
|
on_use = minetest.item_eat(2, "vessels:drinking_glass"),
|
||||||
groups = {food_milk_glass = 1, flammable = 3, vessel = 1},
|
groups = {food_milk_glass = 1, flammable = 3, vessel = 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -170,9 +170,9 @@ minetest.register_craft({
|
|||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "mobs:glass_milk 4",
|
output = "mobs:glass_milk 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
'vessels:drinking_glass', 'vessels:drinking_glass',
|
"vessels:drinking_glass", "vessels:drinking_glass",
|
||||||
'vessels:drinking_glass', 'vessels:drinking_glass',
|
"vessels:drinking_glass", "vessels:drinking_glass",
|
||||||
'mobs:bucket_milk'
|
"mobs:bucket_milk"
|
||||||
},
|
},
|
||||||
replacements = { {"mobs:bucket_milk", "bucket:bucket_empty"} }
|
replacements = { {"mobs:bucket_milk", "bucket:bucket_empty"} }
|
||||||
})
|
})
|
||||||
@ -181,9 +181,9 @@ minetest.register_craft({
|
|||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "mobs:bucket_milk",
|
output = "mobs:bucket_milk",
|
||||||
recipe = {
|
recipe = {
|
||||||
'mobs:glass_milk', 'mobs:glass_milk',
|
"mobs:glass_milk", "mobs:glass_milk",
|
||||||
'mobs:glass_milk', 'mobs:glass_milk',
|
"mobs:glass_milk", "mobs:glass_milk",
|
||||||
'bucket:bucket_empty'
|
"bucket:bucket_empty"
|
||||||
},
|
},
|
||||||
replacements = { {"mobs:glass_milk", "vessels:drinking_glass 4"} }
|
replacements = { {"mobs:glass_milk", "vessels:drinking_glass 4"} }
|
||||||
})
|
})
|
||||||
@ -241,15 +241,15 @@ minetest.register_node(":mobs:cheeseblock", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mobs:cheeseblock",
|
output = "mobs:cheeseblock",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
||||||
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
||||||
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
{"mobs:cheese", "mobs:cheese", "mobs:cheese"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mobs:cheese 9",
|
output = "mobs:cheese 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'mobs:cheeseblock'},
|
{"mobs:cheeseblock"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user