updated
grow flower on top of plant hemp
@ -1,5 +1,9 @@
|
||||
-- get Boilerplate for Translations
|
||||
local S = cannabis.S
|
||||
local path = cannabis.path
|
||||
|
||||
minetest.register_node("cannabis:canapa", {
|
||||
description = "Canapa",
|
||||
description = S("Hemp"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"cannabis_canapa.png"},
|
||||
inventory_image = "cannabis_canapa.png",
|
||||
@ -18,7 +22,7 @@ minetest.register_node("cannabis:canapa", {
|
||||
items = {
|
||||
{items = {"cannabis:canapa"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_leaves"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_seed"}, rarity = 1 },
|
||||
-- {items = {"cannabis:canapa_seed"}, rarity = 1 },
|
||||
}
|
||||
},
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
@ -30,7 +34,13 @@ minetest.register_node("cannabis:canapa", {
|
||||
function minetest.grow_canapa(pos, node)
|
||||
pos.y = pos.y - 1
|
||||
local name = minetest.get_node(pos).name
|
||||
if name ~= "default:dirt_with_grass" and name ~= "default:dirt" then
|
||||
if name ~= "default:dirt_with_grass"
|
||||
and name ~= "default:dirt"
|
||||
and name ~= "default:dirt_with_rainforest_litter"
|
||||
and name ~= "default:dry_dirt"
|
||||
and name ~= "default:dirt_with_snow"
|
||||
and name ~= "default:dirt_with_coniferous_litter"
|
||||
then
|
||||
return
|
||||
end
|
||||
if not minetest.find_node_near(pos, 1, {"group:water"}) then
|
||||
@ -43,19 +53,30 @@ function minetest.grow_canapa(pos, node)
|
||||
pos.y = pos.y + 1
|
||||
node = minetest.get_node(pos)
|
||||
end
|
||||
if height==6 then
|
||||
minetest.set_node(pos, {name = "cannabis:flowering"})
|
||||
--minetest.swap_node(pos, {name = "grow:liva2" })
|
||||
else
|
||||
if height == 6 or node.name ~= "air" then
|
||||
return
|
||||
end
|
||||
minetest.set_node(pos, {name = "cannabis:canapa"})
|
||||
return true
|
||||
end
|
||||
end
|
||||
--mapgen
|
||||
minetest.register_abm({
|
||||
label = "Grow canapa",
|
||||
nodenames = {"cannabis:canapa"},
|
||||
neighbors ={"default:dirt_with_grass"},
|
||||
interval = 14,
|
||||
chance = 71,
|
||||
neighbors ={"default:dirt_with_grass",
|
||||
"default:dirt",
|
||||
"default:dirt_with_rainforest_litter",
|
||||
"default:dry_dirt",
|
||||
"default:dirt_with_snow",
|
||||
"default:dirt_with_coniferous_litter"
|
||||
},
|
||||
interval = 2,
|
||||
chance = 1,
|
||||
action = function(...)
|
||||
minetest.grow_canapa(...)
|
||||
end
|
||||
@ -84,7 +105,8 @@ minetest.register_biome({
|
||||
|
||||
minetest.register_decoration({
|
||||
deco_type = "simple",
|
||||
place_on = {"default:dirt_with_grass"},
|
||||
place_on = {"default:dirt_with_grass",
|
||||
"default_dirt"},
|
||||
sidelen = 16,
|
||||
noise_params = {
|
||||
offset = -0.3,
|
||||
@ -94,12 +116,16 @@ minetest.register_biome({
|
||||
octaves = 3,
|
||||
persist = 1.5
|
||||
},
|
||||
biomes = {"canapa_swamp"},
|
||||
fill_ratio = 0.03,
|
||||
biomes = {"canapa_swamp",
|
||||
"tundra_beach",
|
||||
"savanna_shore",
|
||||
"delicious_forest_shore"},
|
||||
y_min = 1,
|
||||
y_max = 5,
|
||||
decoration = "cannabis:canapa",
|
||||
height = 5,
|
||||
height_max = 5,
|
||||
height_max = 0,
|
||||
spawn_by = "default:water_source",
|
||||
num_spawn_by = 1,
|
||||
})
|
||||
@ -120,14 +146,14 @@ minetest.register_biome({
|
||||
biomes = {"canapa_swamp"},
|
||||
y_min = 0,
|
||||
y_max = 0,
|
||||
schematic = "canapa.mts",--minetest.get_modpath("cannabis").."/schematics/canapa.mts",
|
||||
schematic = path .. "/schematics/canapa.mts",--minetest.get_modpath("cannabis").."/schematics/canapa.mts",
|
||||
})
|
||||
|
||||
-- This file supplies hemp for the plantlife modpack
|
||||
-- Last revision: 2016-01-14
|
||||
|
||||
minetest.register_node('cannabis:seedling', {
|
||||
description = ("hemp (seedling)"),
|
||||
description = S("Hemp (seedling)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { '1hemp_seedling.png' },
|
||||
@ -142,7 +168,7 @@ minetest.register_node('cannabis:seedling', {
|
||||
})
|
||||
|
||||
minetest.register_node('cannabis:sproutling', {
|
||||
description = ("hemp (sproutling)"),
|
||||
description = S("Hemp (sproutling)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { 'hemp_sproutling.png' },
|
||||
@ -155,9 +181,29 @@ minetest.register_node('cannabis:sproutling', {
|
||||
sounds = "cannabis_canapa_s3",
|
||||
buildable_to = true,
|
||||
})
|
||||
|
||||
minetest.register_node('cannabis:flowering', {
|
||||
description = S("Hemp (flowering)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { 'cannabis_canapa_flower.png' },
|
||||
inventory_image = 'cannabis_canapa_flower.png',
|
||||
wield_image = 'cannabis_canapa_flower.png',
|
||||
sunlight_propagates = true,
|
||||
paramtype = 'light',
|
||||
walkable = false,
|
||||
groups = { snappy = 3, poisonivy=1, flora_block=1 },
|
||||
sounds = "cannabis_canapa_s3",
|
||||
buildable_to = true,
|
||||
drop = {
|
||||
max_items = 3,
|
||||
items = {
|
||||
{items = {"cannabis:canapa_flower"}, rarity = 1 },
|
||||
-- {items = {"cannabis:canapa_leaves"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_seed"}, rarity = 1 },
|
||||
}}
|
||||
})
|
||||
minetest.register_node('cannabis:climbing', {
|
||||
description = ("hemp (climbing plant)"),
|
||||
description = S("Hemp (climbing plant)"),
|
||||
drawtype = 'signlike',
|
||||
tiles = { 'hemp_climbing.png' },
|
||||
inventory_image = 'hemp_climbing.png',
|
||||
|
@ -1,5 +1,9 @@
|
||||
-- get Boilerplate for Translations
|
||||
local S = cannabis.S
|
||||
local path = cannabis.path
|
||||
|
||||
minetest.register_node("cannabis:canapa_red", {
|
||||
description = "Canapa",
|
||||
description = S("Hemp red"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"cannabis_canapa_red.png"},
|
||||
inventory_image = "cannabis_canapa_red.png",
|
||||
@ -18,19 +22,25 @@ minetest.register_node("cannabis:canapa_red", {
|
||||
items = {
|
||||
{items = {"cannabis:canapa_red"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_red_leaves"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_red_seed"}, rarity = 1 },
|
||||
--{items = {"cannabis:canapa_red_seed"}, rarity = 1 },
|
||||
}
|
||||
},
|
||||
after_dig_node = function(pos, node, metadata, digger)
|
||||
default.dig_up(pos, node, digger)
|
||||
end,
|
||||
})
|
||||
--____________________________________
|
||||
|
||||
--___________________________________
|
||||
--function
|
||||
|
||||
|
||||
function minetest.grow_canapa_red(pos, node)
|
||||
pos.y = pos.y - 1
|
||||
local name = minetest.get_node(pos).name
|
||||
if name ~= "default:desert_sand" and name ~= "default:sand" then
|
||||
if name ~= "default:sand" and name ~= "default:desert_sand"
|
||||
and name ~= "default:silver_sand"
|
||||
and name ~= "default:dry_dirt_with_dry_grass" then
|
||||
return
|
||||
end
|
||||
if not minetest.find_node_near(pos, 5, {"group:water"}) then
|
||||
@ -43,19 +53,26 @@ function minetest.grow_canapa_red(pos, node)
|
||||
pos.y = pos.y + 1
|
||||
node = minetest.get_node(pos)
|
||||
end
|
||||
if height == 5 or node.name ~= "air" then
|
||||
if height==6 then
|
||||
minetest.set_node(pos, {name = "cannabis:flowering_red"})
|
||||
else
|
||||
if height == 6 or node.name ~= "air" then
|
||||
return
|
||||
end
|
||||
minetest.set_node(pos, {name = "cannabis:canapa_red"})
|
||||
return true
|
||||
end
|
||||
end
|
||||
--mapgen
|
||||
minetest.register_abm({
|
||||
label = "Grow canapa red",
|
||||
nodenames = {"cannabis:canapa_red"},
|
||||
neighbors ={"default:desert_sand","default:sand"},
|
||||
interval = 5,
|
||||
chance = 40,
|
||||
neighbors ={"default:sand",
|
||||
"default:desert_sand",
|
||||
"default:silver_sand",
|
||||
"default:dry_dirt_with_dry_grass"},
|
||||
interval = 2,
|
||||
chance = 10,
|
||||
action = function(...)
|
||||
minetest.grow_canapa_red(...)
|
||||
end
|
||||
@ -120,12 +137,12 @@ minetest.register_biome({
|
||||
biomes = {"canapa_swampr"},
|
||||
y_min = 0,
|
||||
y_max = 31000,
|
||||
schematic = "canapa.mts",
|
||||
schematic = path .. "/schematics/canapa.mts",
|
||||
})
|
||||
|
||||
|
||||
minetest.register_node('cannabis:seedling_r', {
|
||||
description = ("hemp red(seedling)"),
|
||||
description = S("Hemp red(seedling)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { '1hemp_seedling_red.png' },
|
||||
@ -140,7 +157,7 @@ minetest.register_node('cannabis:seedling_r', {
|
||||
})
|
||||
|
||||
minetest.register_node('cannabis:sproutling_r', {
|
||||
description = ("hemp red (sproutling)"),
|
||||
description = S("Hemp red (sproutling)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { 'hemp_sproutling_red.png' },
|
||||
@ -155,7 +172,7 @@ minetest.register_node('cannabis:sproutling_r', {
|
||||
})
|
||||
|
||||
minetest.register_node('cannabis:climbing_r', {
|
||||
description = ("hemp red (climbing plant)"),
|
||||
description = S("Hemp red (climbing plant)"),
|
||||
drawtype = 'signlike',
|
||||
tiles = { 'hemp_climbing_red.png' },
|
||||
inventory_image = 'hemp_climbing_red.png',
|
||||
@ -172,3 +189,23 @@ minetest.register_node('cannabis:climbing_r', {
|
||||
},
|
||||
buildable_to = true,
|
||||
})
|
||||
minetest.register_node('cannabis:flowering_red', {
|
||||
description = S("Hemp (Red flowering)"),
|
||||
drawtype = 'plantlike',
|
||||
waving = 1,
|
||||
tiles = { 'cannabis_canapa_red_flower.png' },
|
||||
inventory_image = 'cannabis_canapa_red_flower.png',
|
||||
wield_image = 'cannabis_canapa_red_flower.png',
|
||||
sunlight_propagates = true,
|
||||
paramtype = 'light',
|
||||
walkable = false,
|
||||
groups = { snappy = 3, poisonivy=1, flora_block=1 },
|
||||
sounds = "cannabis_canapa_s3",
|
||||
buildable_to = true,
|
||||
drop = {
|
||||
max_items = 3,
|
||||
items = {
|
||||
{items = {"cannabis:canapa_flower"}, rarity = 1 },
|
||||
{items = {"cannabis:canapa_red_seed"}, rarity = 1 },
|
||||
}}
|
||||
})
|
||||
|
@ -1,67 +1,69 @@
|
||||
-- get Boilerplate for Translations
|
||||
local S = cannabis.S
|
||||
|
||||
--craft item :fiber, fuel, plastic, paper,flower,oil,flour,bred,raisin,seed,leaves
|
||||
--craft item :fiber, fuel, plastic, paper,flower,oil,flour,bred,resin,seed,leaves
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_fiber", {
|
||||
description = "Fiber",
|
||||
description = S("Fiber"),
|
||||
inventory_image = "cannabis_canapa_fiber.png",
|
||||
})
|
||||
minetest.register_craftitem("cannabis:canapa_fuel", {
|
||||
description = "Fuel",
|
||||
description = S("BioFuel"),
|
||||
inventory_image = "cannabis_fuel.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_plastic", {
|
||||
description = "Plastic",
|
||||
description = S("Plastic"),
|
||||
inventory_image = "cannabis_plastic.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_paper", {
|
||||
description = "Paper",
|
||||
description = S("Paper"),
|
||||
inventory_image = "cannabis_paper.png",
|
||||
})
|
||||
minetest.register_craftitem("cannabis:canapa_flour", {
|
||||
description = "Flour",
|
||||
description = S("Flour"),
|
||||
inventory_image = "cannabis_canapa_flour.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_bread", {
|
||||
description = "Bread",
|
||||
description = S("Bread"),
|
||||
inventory_image = "cannabis_canapa_bread.png",
|
||||
on_use = minetest.item_eat(10),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_seed", {
|
||||
description = "Hemp_Seed",
|
||||
description = S("Hemp Seed"),
|
||||
inventory_image = "cannabis_canapa_seed.png",
|
||||
on_use = minetest.item_eat(10),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_leaves", {
|
||||
description = "Hemp_Leaves",
|
||||
description = S("Hemp Leaves"),
|
||||
inventory_image = "cannabis_canapa_leaves.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_flower", {
|
||||
description = "Hemp_Flower",
|
||||
description = S("Hemp Flower"),
|
||||
inventory_image = "cannabis_canapa_flower.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_raisin", {
|
||||
description = "Hemp_Raisin",
|
||||
description = S("Hemp Resin"),
|
||||
inventory_image = "cannabis_canapa_raisin.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_oil", {
|
||||
description = "Hemp_Oil",
|
||||
description = S("Hemp Oil"),
|
||||
inventory_image = "cannabis_canapa_oil.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_glue", {
|
||||
description = "Hemp_Glue",
|
||||
description = S("Hemp Glue"),
|
||||
inventory_image = "cannabis_canapa_glue.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
})
|
||||
@ -131,14 +133,7 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "cannabis:canapa_flower 5 ",
|
||||
recipe = {
|
||||
{"","",""},
|
||||
{"","",""},
|
||||
{"cannabis:canapa_leaves","cannabis:canapa_leaves",""},
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -1,18 +1,20 @@
|
||||
-- get Boilerplate for Translations
|
||||
local S = cannabis.S
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_red_seed", {
|
||||
description = "Hemp_Seed",
|
||||
description = S("Hemp Seed"),
|
||||
inventory_image = "cannabis_canapa_red_seed.png",
|
||||
on_use = minetest.item_eat(10),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_red_leaves", {
|
||||
description = "Hemp_Leaves",
|
||||
description = S("Hemp Leaves"),
|
||||
inventory_image = "cannabis_canapa_red_leaves.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("cannabis:canapa_red_flower", {
|
||||
description = "Hemp_red_Flower",
|
||||
description = S("Hemp red Flower"),
|
||||
inventory_image = "cannabis_canapa_red_flower.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
})
|
||||
@ -81,15 +83,6 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "cannabis:canapa_red_flower 5 ",
|
||||
recipe = {
|
||||
{"","",""},
|
||||
{"","",""},
|
||||
{"cannabis:canapa_red_leaves","cannabis:canapa_red_leaves",""},
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
output = "cannabis:canapa_red_seed 10 ",
|
||||
|
@ -8,41 +8,80 @@
|
||||
Helmet= Helm
|
||||
Hemp Shield= Hanfschild
|
||||
Leggings= Hose
|
||||
Fiber Block=Faserblock
|
||||
Fiber Ingot=Faserbarren
|
||||
High Performance Block=Hochwertiger Block
|
||||
High Performance Block Canapa=Hochwertiger Block Cannabis
|
||||
High Performance Ingot=Hochwertiger Barren
|
||||
Mixed HR Ingot=Gemischter HR Barren
|
||||
Sheet Block=Folienblock
|
||||
Sheet Ingot=Folienbarren
|
||||
Textil Block=Stoffblock
|
||||
Textil Ingot=Stoffbarren
|
||||
|
||||
### canapa.lua ###
|
||||
|
||||
Hemp=Hanf
|
||||
Hemp (climbing plant)=Hanf (kletternde Pflanze)
|
||||
Hemp (flowering)=
|
||||
Hemp (seedling)=Hanf (Sämling)
|
||||
Hemp (sproutling)=Hanf (Sprießend)
|
||||
|
||||
### init.lua ###
|
||||
### canapa_rossa.lua ###
|
||||
|
||||
Hemp (Red flowering)=
|
||||
Hemp red=Roter Hanf
|
||||
Hemp red (climbing plant)=Roter Hanf (kletternde Pflanze)
|
||||
Hemp red (sproutling)=Roter Hanf (Sämling)
|
||||
Hemp red(seedling)=Roter Hanf (Sprießend)
|
||||
|
||||
### craftitem.lua ###
|
||||
|
||||
BioFuel=
|
||||
Bread=Brot
|
||||
Fiber=Faser
|
||||
Flour=Mehl
|
||||
Fuel=Kraftstoff
|
||||
Hemp (climbing plant)=Hanf (kletternde Pflanze)
|
||||
Hemp (seedling)=Hanf (Sämling)
|
||||
Hemp (sproutling)=Hanf (Sprießend)
|
||||
Hemp Flower=Hanfblume
|
||||
Hemp Glue=Hanfkleber
|
||||
Hemp Leaves=Hanfblätter
|
||||
Hemp Oil=Hanföl
|
||||
Hemp Raisin=Hanfrosine
|
||||
Hemp Seed=Hanfsamen
|
||||
Hemp Resin=
|
||||
Paper=Papier
|
||||
Plastic=Plastik
|
||||
|
||||
### craftitem.lua ###
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp Leaves=Hanfblätter
|
||||
Hemp Seed=Hanfsamen
|
||||
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp red Flower=Roter Hanf Blüte
|
||||
|
||||
### joint.lua ###
|
||||
|
||||
Filter=
|
||||
Filters pack=
|
||||
Flowering chopped=
|
||||
Hash melted=
|
||||
Joint of hash lit=
|
||||
Joint of hash unlit=
|
||||
Joint of weed lit=
|
||||
Joint of weed unlit=
|
||||
Lighter=
|
||||
Rolling paper=
|
||||
Rolling paper with hemp leaves and flowering chopped =
|
||||
Rolling paper with hemp leaves melted hash=
|
||||
|
||||
### node_ingot.lua ###
|
||||
|
||||
Adminh Block=Adminh Block
|
||||
Adminh Ingot=Adminh Barren
|
||||
Fabric Block=Stoffblock
|
||||
Fabric Ingot=Stoffbarren
|
||||
Fiber Block=Faserblock
|
||||
Fiber Ingot=Faserbarren
|
||||
High Performance Block=Hochwertiger Block
|
||||
High Performance Block Hemp=Hochwertiger Hanfblock
|
||||
High Performance Ingot=Hochwertiger Barren
|
||||
Leaves Block=Blätterblock
|
||||
Leaves Ingot=Blätterbarren
|
||||
Mixed HR Ingot=Gemischter HR Barren
|
||||
Red Leaves Block=Roter Blätterblock
|
||||
|
||||
### tools.lua ###
|
||||
|
||||
Hemp Adminh Pickaxe=Hanf Admin hochwertige Spitzhacke
|
||||
Hemp Bronze Axe= Hanf Bronze Axt
|
||||
Hemp Bronze Pickaxe=Hanf Bronze Spitzhacke
|
||||
Hemp Bronze Shovel=Hanf Bronze Schaufel
|
||||
@ -53,13 +92,20 @@ Hemp Diamond Shovel=Hanf Diamant Schaufel
|
||||
Hemp Diamond Sword=Hanf Diamant Schwert
|
||||
Hemp High Performance Axe=Hanf Hochwertige Axt
|
||||
Hemp High Performance Sword=Hanf Hochwertiges Schwert
|
||||
Hemp High Pickaxe=Hanf hochwertige Spitzhacke
|
||||
Hemp High Shovel=Hanf hochwertige Schaufel
|
||||
Hemp Mese Axe=Hanf Mese Axt
|
||||
Hemp Mese Pickaxe=Hanf Mese Spitzhacke
|
||||
Hemp Mese Shovel=Hanf Mese Schaufel
|
||||
Hemp Mese Sword=Hanf Mese Schwert
|
||||
Hemp Pickaxe=Hanf Spitzhacke
|
||||
Hemp Shovel=Hanf Schaufel
|
||||
Hemp Steel Axe=Hanf Eisen Axt
|
||||
Hemp Steel Pickaxe=Hanf Eisen Spitzhacke
|
||||
Hemp Steel Shovel=Hanf Eisen Schaufel
|
||||
Hemp Steel Sword=Hanf Eisen Schwert
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Fuel=Kraftstoff
|
||||
Hemp Raisin=Hanfrosine
|
||||
Hemp Admin High Performance Sword=Hanf Admin hochwertiges Schwert
|
||||
|
109
cannabis/locale/cannabis.de.tr.old
Normal file
@ -0,0 +1,109 @@
|
||||
# textdomain: cannabis
|
||||
|
||||
|
||||
### armor.lua ###
|
||||
|
||||
Boots= Stiefel
|
||||
Chestplate= Brustpanzer
|
||||
Helmet= Helm
|
||||
Hemp Shield= Hanfschild
|
||||
Leggings= Hose
|
||||
|
||||
### canapa.lua ###
|
||||
|
||||
Hemp=Hanf
|
||||
Hemp (climbing plant)=Hanf (kletternde Pflanze)
|
||||
Hemp (seedling)=Hanf (Sämling)
|
||||
Hemp (sproutling)=Hanf (Sprießend)
|
||||
|
||||
### canapa_rossa.lua ###
|
||||
|
||||
Hemp red=Roter Hanf
|
||||
Hemp red (climbing plant)=Roter Hanf (kletternde Pflanze)
|
||||
Hemp red (sproutling)=Roter Hanf (Sämling)
|
||||
Hemp red(seedling)=Roter Hanf (Sprießend)
|
||||
|
||||
### craftitem.lua ###
|
||||
|
||||
BioFuel=
|
||||
Bread=Brot
|
||||
Fiber=Faser
|
||||
Flour=Mehl
|
||||
Hemp Flower=Hanfblume
|
||||
Hemp Glue=Hanfkleber
|
||||
Hemp Oil=Hanföl
|
||||
Hemp Resin=
|
||||
Paper=Papier
|
||||
Plastic=Plastik
|
||||
|
||||
### craftitem.lua ###
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp Leaves=Hanfblätter
|
||||
Hemp Seed=Hanfsamen
|
||||
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp red Flower=Roter Hanf Blüte
|
||||
|
||||
### joint.lua ###
|
||||
|
||||
Filter=
|
||||
Filters pack=
|
||||
Flowering chopped=
|
||||
Hash melted=
|
||||
Joint of hash lit=
|
||||
Joint of hash unlit=
|
||||
Joint of weed lit=
|
||||
Joint of weed unlit=
|
||||
Lighter=
|
||||
Rolling paper=
|
||||
Rolling paper with hemp leaves and flowering chopped =
|
||||
Rolling paper with hemp leaves melted hash=
|
||||
|
||||
### node_ingot.lua ###
|
||||
|
||||
Adminh Block=Adminh Block
|
||||
Adminh Ingot=Adminh Barren
|
||||
Fabric Block=Stoffblock
|
||||
Fabric Ingot=Stoffbarren
|
||||
Fiber Block=Faserblock
|
||||
Fiber Ingot=Faserbarren
|
||||
High Performance Block=Hochwertiger Block
|
||||
High Performance Block Hemp=Hochwertiger Hanfblock
|
||||
High Performance Ingot=Hochwertiger Barren
|
||||
Leaves Block=Blätterblock
|
||||
Leaves Ingot=Blätterbarren
|
||||
Mixed HR Ingot=Gemischter HR Barren
|
||||
Red Leaves Block=Roter Blätterblock
|
||||
|
||||
### tools.lua ###
|
||||
|
||||
Hemp Adminh Pickaxe=Hanf Admin hochwertige Spitzhacke
|
||||
Hemp Bronze Axe= Hanf Bronze Axt
|
||||
Hemp Bronze Pickaxe=Hanf Bronze Spitzhacke
|
||||
Hemp Bronze Shovel=Hanf Bronze Schaufel
|
||||
Hemp Bronze Sword=Hanf Bronze Schaufel
|
||||
Hemp Diamond Axe=Hanf Diamant Axt
|
||||
Hemp Diamond Pickaxe=Hanf Diamant Spitzhacke
|
||||
Hemp Diamond Shovel=Hanf Diamant Schaufel
|
||||
Hemp Diamond Sword=Hanf Diamant Schwert
|
||||
Hemp High Performance Axe=Hanf Hochwertige Axt
|
||||
Hemp High Performance Sword=Hanf Hochwertiges Schwert
|
||||
Hemp High Pickaxe=Hanf hochwertige Spitzhacke
|
||||
Hemp High Shovel=Hanf hochwertige Schaufel
|
||||
Hemp Mese Axe=Hanf Mese Axt
|
||||
Hemp Mese Pickaxe=Hanf Mese Spitzhacke
|
||||
Hemp Mese Shovel=Hanf Mese Schaufel
|
||||
Hemp Mese Sword=Hanf Mese Schwert
|
||||
Hemp Steel Axe=Hanf Eisen Axt
|
||||
Hemp Steel Pickaxe=Hanf Eisen Spitzhacke
|
||||
Hemp Steel Shovel=Hanf Eisen Schaufel
|
||||
Hemp Steel Sword=Hanf Eisen Schwert
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Fuel=Kraftstoff
|
||||
Hemp Raisin=Hanfrosine
|
||||
Hemp Admin High Performance Sword=Hanf Admin hochwertiges Schwert
|
104
cannabis/locale/cannabis.it.tr
Normal file
@ -0,0 +1,104 @@
|
||||
# textdomain: cannabis
|
||||
|
||||
|
||||
### armor.lua ###
|
||||
|
||||
Boots=Stivali
|
||||
Chestplate=Corazza
|
||||
Helmet=Elmo
|
||||
Hemp Shield= Scudo di canapa
|
||||
Leggings=Gambali
|
||||
|
||||
### canapa.lua ###
|
||||
|
||||
Hemp=Canapa
|
||||
Hemp (climbing plant)=Canapa (rampicante)
|
||||
Hemp (flowering)=Canapa (infiorescena)
|
||||
Hemp (seedling)=Canapa (piantina)
|
||||
Hemp (sproutling)=Canapa (germoglio)
|
||||
|
||||
### canapa_rossa.lua ###
|
||||
|
||||
Hemp (Red flowering)=Canapa rossa (infiorescena)
|
||||
Hemp red=Canapa rossa
|
||||
Hemp red (climbing plant)=Canapa rossa (rampicante)
|
||||
Hemp red (sproutling)=Canapa rossa (piantina)
|
||||
Hemp red(seedling)=Canapa rossa (germoglio)
|
||||
|
||||
### craftitem.lua ###
|
||||
|
||||
BioFuel=BioCarburante
|
||||
Bread=Pane
|
||||
Fiber=Fibra
|
||||
Flour=Farina
|
||||
Hemp Flower=Fiore di Canapa
|
||||
Hemp Glue=Colla di Canapa
|
||||
Hemp Oil=Olio di Canapa
|
||||
Hemp Resin=Resina di Canapa
|
||||
Paper=Carta
|
||||
Plastic=Plastica
|
||||
|
||||
### craftitem.lua ###
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp Leaves= Foglie di canapa
|
||||
Hemp Seed= Semi di canapa
|
||||
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp red Flower=Fiore di canapa rossa
|
||||
|
||||
### joint.lua ###
|
||||
|
||||
Filter=Filtro
|
||||
Filters pack=Pacchetto di filtri
|
||||
Flowering chopped=Infiorescenza triturata
|
||||
Hash melted=Fumo sciolto
|
||||
Joint of hash lit=Sigaretta con fumo accesa
|
||||
Joint of hash unlit=Sigaretta con fumo spenta
|
||||
Joint of weed lit=Sigaretta di erba acceso
|
||||
Joint of weed unlit=Sigaretta di erba spenta
|
||||
Lighter=Accendino
|
||||
Rolling paper=Cartine
|
||||
Rolling paper with hemp leaves and flowering chopped =Cartina con foglie e cime di canapa
|
||||
Rolling paper with hemp leaves melted hash=Cartina con foglie e resina sciolta di canapa
|
||||
|
||||
### node_ingot.lua ###
|
||||
|
||||
Adminh Block=Blocco Adminh (indistruttibile)
|
||||
Adminh Ingot=Lingotto Adminh
|
||||
Fabric Block=Blocco di Tessuto
|
||||
Fabric Ingot=Lingotto tessuto
|
||||
Fiber Block=Blocco di fibra
|
||||
Fiber Ingot=Lingotto di fibra
|
||||
High Performance Block=Blocco ad alte prestazioni
|
||||
High Performance Block Hemp=Blocco alla fibra di canapa ad alte prestazioni
|
||||
High Performance Ingot=Lingotto alte prestazioni
|
||||
Leaves Block=Blocco di foglie
|
||||
Leaves Ingot=Lingotto di foglie
|
||||
Mixed HR Ingot=Lingotto mescola HR
|
||||
Red Leaves Block=Blocco di foglie rosse
|
||||
|
||||
### tools.lua ###
|
||||
|
||||
Hemp Adminh Pickaxe=Piccone Adminh di canapa
|
||||
Hemp Bronze Axe=Ascia di canapa e bronzo
|
||||
Hemp Bronze Pickaxe=Piccone di canapa e bronzo
|
||||
Hemp Bronze Shovel=Pala di canapa e bronzo
|
||||
Hemp Bronze Sword=Spada di canapa e bronzo
|
||||
Hemp Diamond Axe=Ascia di canapa e diamante
|
||||
Hemp Diamond Pickaxe=Picconedi canapa e diamante
|
||||
Hemp Diamond Shovel=Pala di canapa e diamante
|
||||
Hemp Diamond Sword=Spada di canapa e diamante
|
||||
Hemp High Performance Axe=Ascia di canapa ad alte prestazioni
|
||||
Hemp High Performance Sword=Spada di canapa ad alte prestazioni
|
||||
Hemp High Pickaxe=Piccone di canapa ad alte prestazioni
|
||||
Hemp High Shovel=Pala di canapa ad alte prestazioni
|
||||
Hemp Mese Axe=Ascia di canapa e mese
|
||||
Hemp Mese Pickaxe=Piccone di canapa e mese
|
||||
Hemp Mese Shovel=Pala di canapa e mese
|
||||
Hemp Mese Sword=Spada di canapa e mese
|
||||
Hemp Steel Axe=Ascia di canapa ed acciaio
|
||||
Hemp Steel Pickaxe=Piccone di canapa ed acciaio
|
||||
Hemp Steel Shovel=Pala di canapa ed acciaio
|
||||
Hemp Steel Sword=Spada di canapa ed acciaio
|
102
cannabis/locale/cannabis.it.tr.old
Normal file
@ -0,0 +1,102 @@
|
||||
# textdomain: cannabis
|
||||
|
||||
|
||||
### armor.lua ###
|
||||
|
||||
Boots=Stivali
|
||||
Chestplate=Corazza
|
||||
Helmet=Elmo
|
||||
Hemp Shield= Scudo di canapa
|
||||
Leggings=Gambali
|
||||
|
||||
### canapa.lua ###
|
||||
|
||||
Hemp=Canapa
|
||||
Hemp (climbing plant)=Canapa (rampicante)
|
||||
Hemp (seedling)=Canapa (piantina)
|
||||
Hemp (sproutling)=Canapa (germoglio)
|
||||
|
||||
### canapa_rossa.lua ###
|
||||
|
||||
Hemp red=Canapa rossa
|
||||
Hemp red (climbing plant)=Canapa rossa (rampicante)
|
||||
Hemp red (sproutling)=Canapa rossa (piantina)
|
||||
Hemp red(seedling)=Canapa rossa (germoglio)
|
||||
|
||||
### craftitem.lua ###
|
||||
|
||||
BioFuel=BioCarburante
|
||||
Bread=Pane
|
||||
Fiber=Fibra
|
||||
Flour=Farina
|
||||
Hemp Flower=Fiore di Canapa
|
||||
Hemp Glue=Colla di Canapa
|
||||
Hemp Oil=Olio di Canapa
|
||||
Hemp Resin=Resina di Canapa
|
||||
Paper=Carta
|
||||
Plastic=Plastica
|
||||
|
||||
### craftitem.lua ###
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp Leaves= Foglie di canapa
|
||||
Hemp Seed= Semi di canapa
|
||||
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp red Flower=Fiore di canapa rossa
|
||||
|
||||
### joint.lua ###
|
||||
|
||||
Filter=Filtro
|
||||
Filters pack=Pacchetto di filtri
|
||||
Flowering chopped=Infiorescenza triturata
|
||||
Hash melted=Fumo sciolto
|
||||
Joint of hash lit=Sigaretta con fumo accesa
|
||||
Joint of hash unlit=Sigaretta con fumo spenta
|
||||
Joint of weed lit=Sigaretta di erba acceso
|
||||
Joint of weed unlit=Sigaretta di erba spenta
|
||||
Lighter=Accendino
|
||||
Rolling paper=Cartine
|
||||
Rolling paper with hemp leaves and flowering chopped =Cartina con foglie e cime di canapa
|
||||
Rolling paper with hemp leaves melted hash=Cartina con foglie e resina sciolta di canapa
|
||||
|
||||
### node_ingot.lua ###
|
||||
|
||||
Adminh Block=Blocco Adminh (indistruttibile)
|
||||
Adminh Ingot=Lingotto Adminh
|
||||
Fabric Block=Blocco di Tessuto
|
||||
Fabric Ingot=Lingotto tessuto
|
||||
Fiber Block=Blocco di fibra
|
||||
Fiber Ingot=Lingotto di fibra
|
||||
High Performance Block=Blocco ad alte prestazioni
|
||||
High Performance Block Hemp=Blocco alla fibra di canapa ad alte prestazioni
|
||||
High Performance Ingot=Lingotto alte prestazioni
|
||||
Leaves Block=Blocco di foglie
|
||||
Leaves Ingot=Lingotto di foglie
|
||||
Mixed HR Ingot=Lingotto mescola HR
|
||||
Red Leaves Block=Blocco di foglie rosse
|
||||
|
||||
### tools.lua ###
|
||||
|
||||
Hemp Adminh Pickaxe=Piccone Adminh di canapa
|
||||
Hemp Bronze Axe=Ascia di canapa e bronzo
|
||||
Hemp Bronze Pickaxe=Piccone di canapa e bronzo
|
||||
Hemp Bronze Shovel=Pala di canapa e bronzo
|
||||
Hemp Bronze Sword=Spada di canapa e bronzo
|
||||
Hemp Diamond Axe=Ascia di canapa e diamante
|
||||
Hemp Diamond Pickaxe=Picconedi canapa e diamante
|
||||
Hemp Diamond Shovel=Pala di canapa e diamante
|
||||
Hemp Diamond Sword=Spada di canapa e diamante
|
||||
Hemp High Performance Axe=Ascia di canapa ad alte prestazioni
|
||||
Hemp High Performance Sword=Spada di canapa ad alte prestazioni
|
||||
Hemp High Pickaxe=Piccone di canapa ad alte prestazioni
|
||||
Hemp High Shovel=Pala di canapa ad alte prestazioni
|
||||
Hemp Mese Axe=Ascia di canapa e mese
|
||||
Hemp Mese Pickaxe=Piccone di canapa e mese
|
||||
Hemp Mese Shovel=Pala di canapa e mese
|
||||
Hemp Mese Sword=Spada di canapa e mese
|
||||
Hemp Steel Axe=Ascia di canapa ed acciaio
|
||||
Hemp Steel Pickaxe=Piccone di canapa ed acciaio
|
||||
Hemp Steel Shovel=Pala di canapa ed acciaio
|
||||
Hemp Steel Sword=Spada di canapa ed acciaio
|
@ -3,63 +3,102 @@
|
||||
|
||||
### armor.lua ###
|
||||
|
||||
Boots=
|
||||
Chestplate=
|
||||
Helmet=
|
||||
Hemp Shield=
|
||||
Leggings=
|
||||
Fiber Block=
|
||||
Fiber Ingot=
|
||||
High Performance Block=
|
||||
High Performance Block Canapa=
|
||||
High Performance Ingot=
|
||||
Mixed HR Ingot=
|
||||
Sheet Block=
|
||||
Sheet Ingot=
|
||||
Textil Block=
|
||||
Textil Ingot=
|
||||
Boots=Stivali
|
||||
Chestplate=Corazza
|
||||
Helmet=Elmo
|
||||
Hemp Shield= Scudo di canapa
|
||||
Leggings=Gambali
|
||||
|
||||
### canapa.lua ###
|
||||
|
||||
Hemp=
|
||||
Hemp=Canapa
|
||||
Hemp (climbing plant)=Canapa (rampicante)
|
||||
Hemp (flowering)=
|
||||
Hemp (seedling)=Canapa (piantina)
|
||||
Hemp (sproutling)=Canapa (germoglio)
|
||||
|
||||
### init.lua ###
|
||||
### canapa_rossa.lua ###
|
||||
|
||||
Bread=
|
||||
Fiber=
|
||||
Flour=
|
||||
Fuel=
|
||||
Hemp (climbing plant)=
|
||||
Hemp (seedling)=
|
||||
Hemp (sproutling)=
|
||||
Hemp Flower=
|
||||
Hemp Glue=
|
||||
Hemp Leaves=
|
||||
Hemp Oil=
|
||||
Hemp Raisin=
|
||||
Hemp Seed=
|
||||
Paper=
|
||||
Plastic=
|
||||
Hemp (Red flowering)=
|
||||
Hemp red=Canapa rossa
|
||||
Hemp red (climbing plant)=Canapa rossa (rampicante)
|
||||
Hemp red (sproutling)=Canapa rossa (piantina)
|
||||
Hemp red(seedling)=Canapa rossa (germoglio)
|
||||
|
||||
### craftitem.lua ###
|
||||
|
||||
BioFuel=BioCarburante
|
||||
Bread=Pane
|
||||
Fiber=Fibra
|
||||
Flour=Farina
|
||||
Hemp Flower=Fiore di Canapa
|
||||
Hemp Glue=Colla di Canapa
|
||||
Hemp Oil=Olio di Canapa
|
||||
Hemp Resin=Resina di Canapa
|
||||
Paper=Carta
|
||||
Plastic=Plastica
|
||||
|
||||
### craftitem.lua ###
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp Leaves= Foglie di canapa
|
||||
Hemp Seed= Semi di canapa
|
||||
|
||||
### craftred.lua ###
|
||||
|
||||
Hemp red Flower=Fiore di canapa rossa
|
||||
|
||||
### joint.lua ###
|
||||
|
||||
Filter=Filtro
|
||||
Filters pack=Pacchetto di filtri
|
||||
Flowering chopped=Infiorescenza triturata
|
||||
Hash melted=Fumo sciolto
|
||||
Joint of hash lit=Sigaretta con fumo accesa
|
||||
Joint of hash unlit=Sigaretta con fumo spenta
|
||||
Joint of weed lit=Sigaretta di erba acceso
|
||||
Joint of weed unlit=Sigaretta di erba spenta
|
||||
Lighter=Accendino
|
||||
Rolling paper=Cartine
|
||||
Rolling paper with hemp leaves and flowering chopped =Cartina con foglie e cime di canapa
|
||||
Rolling paper with hemp leaves melted hash=Cartina con foglie e resina sciolta di canapa
|
||||
|
||||
### node_ingot.lua ###
|
||||
|
||||
Adminh Block=Blocco Adminh (indistruttibile)
|
||||
Adminh Ingot=Lingotto Adminh
|
||||
Fabric Block=Blocco di Tessuto
|
||||
Fabric Ingot=Lingotto tessuto
|
||||
Fiber Block=Blocco di fibra
|
||||
Fiber Ingot=Lingotto di fibra
|
||||
High Performance Block=Blocco ad alte prestazioni
|
||||
High Performance Block Hemp=Blocco alla fibra di canapa ad alte prestazioni
|
||||
High Performance Ingot=Lingotto alte prestazioni
|
||||
Leaves Block=Blocco di foglie
|
||||
Leaves Ingot=Lingotto di foglie
|
||||
Mixed HR Ingot=Lingotto mescola HR
|
||||
Red Leaves Block=Blocco di foglie rosse
|
||||
|
||||
### tools.lua ###
|
||||
|
||||
Hemp Bronze Axe=
|
||||
Hemp Bronze Pickaxe=
|
||||
Hemp Bronze Shovel=
|
||||
Hemp Bronze Sword=
|
||||
Hemp Diamond Axe=
|
||||
Hemp Diamond Pickaxe=
|
||||
Hemp Diamond Shovel=
|
||||
Hemp Diamond Sword=
|
||||
Hemp High Performance Axe=
|
||||
Hemp High Performance Sword=
|
||||
Hemp Mese Axe=
|
||||
Hemp Mese Pickaxe=
|
||||
Hemp Mese Shovel=
|
||||
Hemp Mese Sword=
|
||||
Hemp Pickaxe=
|
||||
Hemp Shovel=
|
||||
Hemp Steel Axe=
|
||||
Hemp Steel Pickaxe=
|
||||
Hemp Steel Shovel=
|
||||
Hemp Steel Sword=
|
||||
Hemp Adminh Pickaxe=Piccone Adminh di canapa
|
||||
Hemp Bronze Axe=Ascia di canapa e bronzo
|
||||
Hemp Bronze Pickaxe=Piccone di canapa e bronzo
|
||||
Hemp Bronze Shovel=Pala di canapa e bronzo
|
||||
Hemp Bronze Sword=Spada di canapa e bronzo
|
||||
Hemp Diamond Axe=Ascia di canapa e diamante
|
||||
Hemp Diamond Pickaxe=Picconedi canapa e diamante
|
||||
Hemp Diamond Shovel=Pala di canapa e diamante
|
||||
Hemp Diamond Sword=Spada di canapa e diamante
|
||||
Hemp High Performance Axe=Ascia di canapa ad alte prestazioni
|
||||
Hemp High Performance Sword=Spada di canapa ad alte prestazioni
|
||||
Hemp High Pickaxe=Piccone di canapa ad alte prestazioni
|
||||
Hemp High Shovel=Pala di canapa ad alte prestazioni
|
||||
Hemp Mese Axe=Ascia di canapa e mese
|
||||
Hemp Mese Pickaxe=Piccone di canapa e mese
|
||||
Hemp Mese Shovel=Pala di canapa e mese
|
||||
Hemp Mese Sword=Spada di canapa e mese
|
||||
Hemp Steel Axe=Ascia di canapa ed acciaio
|
||||
Hemp Steel Pickaxe=Piccone di canapa ed acciaio
|
||||
Hemp Steel Shovel=Pala di canapa ed acciaio
|
||||
Hemp Steel Sword=Spada di canapa ed acciaio
|
||||
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 11 KiB |