forked from VoxeLibre/VoxeLibre
Correct the names of pumpins and carved pumpkins. Slightly update their descriptions.
This commit is contained in:
parent
40e072ab89
commit
1d561786c4
|
@ -93,9 +93,9 @@ local stem_def = {
|
|||
|
||||
-- Template for pumpkin
|
||||
local pumpkin_base_def = {
|
||||
description = S("Faceless Pumpkin"),
|
||||
_doc_items_longdesc = S("A faceless pumpkin is a decorative block. It can be carved with shears to obtain pumpkin seeds."),
|
||||
_doc_items_usagehelp = S("To carve a face into the pumpkin, use the shears on the side you want to carve."),
|
||||
description = S("Pumpkin"),
|
||||
_doc_items_longdesc = S("A pumpkin is a decorative block. It can be carved with shears to obtain a carved pumpkin and pumpkin seeds."),
|
||||
_doc_items_usagehelp = S("To carve a pumpkin, use the shears on the side you want the face to appear."),
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png"},
|
||||
|
@ -110,8 +110,8 @@ local pumpkin_base_def = {
|
|||
}
|
||||
|
||||
local pumpkin_face_base_def = table.copy(pumpkin_base_def)
|
||||
pumpkin_face_base_def.description = S("Pumpkin")
|
||||
pumpkin_face_base_def._doc_items_longdesc = S("A pumpkin can be worn as a helmet. Pumpkins grow from pumpkin stems, which in turn grow from pumpkin seeds.")
|
||||
pumpkin_face_base_def.description = S("Carved Pumpkin")
|
||||
pumpkin_face_base_def._doc_items_longdesc = S("A carved pumpkin is a decorative block that can be used to summon snow and iron golems. It can also be worn as a helmet. It is made from shearing a pumpkin.")
|
||||
pumpkin_face_base_def._doc_items_usagehelp = nil
|
||||
pumpkin_face_base_def.tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face.png"}
|
||||
pumpkin_face_base_def.groups.armor=1
|
||||
|
|
Loading…
Reference in New Issue