diff --git a/armor.lua b/armor.lua index c38d95b..5a5084d 100644 --- a/armor.lua +++ b/armor.lua @@ -1,7 +1,7 @@ -- get Boilerplate for Translations -local S = cannabis.S - --armor +local S = cannabis.S +local path = cannabis.path if minetest.get_modpath("cannabis") then local stats = { diff --git a/clothing.lua b/clothing.lua new file mode 100644 index 0000000..1e0dc0e --- /dev/null +++ b/clothing.lua @@ -0,0 +1,112 @@ + +local S = cannabis.S +local path = cannabis.path + + +local Color_list = { + { "hemp", "c"}, + { "u_style", "u"}, + { "red_hemp", "cr"}, + { "ice_hemp", "ci"}, + { "fabric_hemp", "t"}, + { "jamaican", "jam"} + +} +local craftitem ={ + + --{"cape"}, + {"skullcap"}, + {"glove_right"}, + {"glove_left"}, + {"gloves"}, + {"shirt"}, + {"shorts"}, + {"shortshirt"}, + {"undershirt"}, + {"hood_mask"}, + {"pants"} + } + local colors_l ={ + --{"col"}, + {"yellow"}, + {"red"}, + {"cyan"}, + {"pink"}, + {"orange"}, + {"green"}, + {"white"}, + {"green"}, + {"violet"}, + {"blue"} +} +for i in ipairs(Color_list) do + local colordesc = Color_list[i][1] + local color = Color_list[i][2] + +for i in ipairs(craftitem) do + local item = craftitem[i][1] +-- local col= craftitem[i][2] + +for i in ipairs(colors_l) do +-- local item = craftitem[i][1] + local colit= colors_l[i][1] + +minetest.register_craftitem("cannabis:canapa_"..item.."_fabric_hemp_"..colit, { + description = S(item.." fabric_hemp "..colit), + inventory_image = "clothing_inv_"..item.."_t.png^"..colit..".png", + uv_image = "clothing_uv_"..item.."_t.png^"..colit..".png", + groups = {clothing=1}, + }) + + minetest.register_craftitem("cannabis:canapa_"..item.."_"..colordesc, { + description = S(item.." "..colordesc), + inventory_image = "clothing_inv_"..item.."_"..color..".png", + uv_image = "clothing_uv_"..item.."_"..color..".png", + groups = {clothing=1}, + }) + +minetest.register_craftitem("cannabis:canapa_cape_"..colordesc, { + description = S(item.." "..colordesc), + inventory_image = "clothing_inv_cape_"..color..".png", + uv_image = "clothing_uv_cape_"..color..".png", + groups = {cape=1}, + }) + + minetest.register_craftitem("cannabis:canapa_cape_fabric_hemp_"..colit, { + description = S(item.." fabric_hemp "..colit), + inventory_image = "clothing_inv_cape_t.png^"..colit..".png", + uv_image = "clothing_uv_cape_t.png^"..colit..".png", + groups = {cape=1}, + }) + +end +end +end +--________________________________________________________ + + + + + +--______________________________TODO + +--[[ +clothing.spinning_machine:recipe_register_input( + "cannabis:canapa_fiber", + { + inputs = 1, + outputs = {"cannabis:canapa_spool"}, + production_time = 30, + consumption_step_size = 1, + }); + clothing.loom:recipe_register_input( + "", + { + inputs = {"cannabis:canapa_spool", "cannabis:canapa_spool", + "cannabis:canapa_spool", "cannabis:canapa_spool", + }, + outputs = {{"cannabis:canapa_cloth","clothing:yarn_spool_empty 4"},}, + production_time = 30, + consumption_step_size = 1, + }); +]] diff --git a/clothing_recipes.lua b/clothing_recipes.lua new file mode 100644 index 0000000..ac5e72a --- /dev/null +++ b/clothing_recipes.lua @@ -0,0 +1,212 @@ +local S = cannabis.S +local path = cannabis.path + +local craft_cloth = { + {"cape",""}, + {"skullcap",""}, + {"glove_right",""}, + {"glove_left",""}, + {"gloves",""}, + {"shirt",""}, + {"shorts",""}, + {"shortshirt",""}, + {"undershirt",""}, + {"hood_mask",""}, + {"pants",""} + +} + local colors_l ={ + --{"col"}, + {"yellow"}, + {"red"}, + {"cyan"}, + {"pink"}, + {"orange"}, + {"green"}, + {"white"}, + {"green"}, + {"violet"}, + {"blue"} +} +for i in ipairs(colors_l) do + local colors = colors_l[i][1] + +for i in ipairs(craft_cloth) do + +local clot = craft_cloth[i][1] + +minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","cannabis:flowering","" } + + } + }) +minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_red_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","cannabis:flowering_red","" } + + } + }) + minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_ice_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","cannabis:flowering_ice","" } + + } + }) + minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_jamaican", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","cannabis:canapa_glue","" } + + } + }) + minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_u_style", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","cannabis:canapa_raisin","" } + + } + }) + +--_____________________________________________________________cape + minetest.register_craft({ + output = "cannabis:canapa_cape_fabric_hemp", + recipe = { + {"cannabis:canapa_cloth","","" }, + {"cannabis:canapa_cloth","","" }, + {"cannabis:canapa_cloth","","" } + + } + }) + --_________________________________________________________skullcap + minetest.register_craft({ + output = "cannabis:canapa_skullcap_fabric_hemp", + recipe = { + {"cannabis:canapa_cloth","","" }, + {"cannabis:canapa_cloth","","" }, + {"","","" } + + } + }) + --______________________________________________________________glove_left + minetest.register_craft({ + output = "cannabis:canapa_glove_left_fabric_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_cloth","","" } + + } + }) + --_______________________________________________________________glove_right + minetest.register_craft({ + output = "cannabis:canapa_glove_right_fabric_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"","","cannabis:canapa_cloth" } + + } + }) + --______________________________________________________________gloves + minetest.register_craft({ + output = "cannabis:canapa_gloves_fabric_hemp", + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_glove_left_fabric_hemp","cannabis:canapa_glove_right_fabric_hemp","" } + + } + }) + --_________________________________________________________________shirt + minetest.register_craft({ + output = "cannabis:canapa_shirt_fabric_hemp", + recipe = { + {"cannabis:canapa_fiber","cannabis:canapa_cloth","cannabis:canapa_fiber" }, + {"","cannabis:canapa_cloth","" }, + {"","cannabis:canapa_cloth","" } + + } + }) + --___________________________________________________________________________________shortshirt + minetest.register_craft({ + output = "cannabis:canapa_shortshirt_fabric_hemp", + recipe = { + + {"cannabis:canapa_fiber","cannabis:canapa_cloth","cannabis:canapa_fiber" }, + {"","cannabis:canapa_cloth","" }, + {"","cannabis:canapa_cloth","" } + + } + }) + --________________________________________________________________________________undershirt + minetest.register_craft({ + output = "cannabis:canapa_undershirt_fabric_hemp", + recipe = { + {"cannabis:canapa_fiber","","cannabis:canapa_fiber" }, + {"","cannabis:canapa_cloth","" }, + {"","cannabis:canapa_cloth","" } + + } + }) +--________________________________________________________________________________________pants + minetest.register_craft({ + output = "cannabis:canapa_pants_fabric_hemp", + recipe = { + {"cannabis:canapa_fiber","cannabis:canapa_fiber","cannabis:canapa_fiber" }, + {"","cannabis:canapa_cloth","" }, + {"","cannabis:canapa_cloth","" } + + } + }) + --_________________________________________________________________________________hood_mask + minetest.register_craft({ + output = "cannabis:canapa_hood_mask_fabric_hemp", + recipe = { + {"cannabis:canapa_fiber","","cannabis:canapa_fiber" }, + {"","cannabis:canapa_fiber","" }, + {"","cannabis:canapa_cloth","" } + + } + }) + --________________________________________________________________________short + + minetest.register_craft({ + output = "cannabis:canapa_shorts_fabric_hemp", + recipe = { + + {"cannabis:canapa_fiber","cannabis:canapa_fiber","cannabis:canapa_fiber" }, + {"cannabis:canapa_cloth","","cannabis:canapa_cloth" }, + {"","","" } + } + }) + --_____________________________________________________________________________________________colored____________ + + + minetest.register_craft({ + output = "cannabis:canapa_"..clot.."_fabric_hemp_"..colors, + recipe = { + {"","","" }, + {"","","" }, + {"cannabis:canapa_"..clot.."_fabric_hemp","dye:"..colors,"" } + + } + }) + + + +end +end diff --git a/craftitem.lua b/craftitem.lua index 81ed656..dd90581 100644 --- a/craftitem.lua +++ b/craftitem.lua @@ -1,5 +1,5 @@ --- get Boilerplate for Translations local S = cannabis.S +local path = cannabis.path --craft item :fiber, fuel, plastic, paper,flower,oil,flour,bred,resin,seed,leaves diff --git a/depends.txt b/depends.txt index 220e7ed..6be084c 100644 --- a/depends.txt +++ b/depends.txt @@ -2,7 +2,7 @@ default tnt fire farming - +dye 3d_armor? maptools? diff --git a/i18n.py b/i18n.py index 5e87937..da1c825 100644 --- a/i18n.py +++ b/i18n.py @@ -13,6 +13,7 @@ from __future__ import print_function import os, fnmatch, re, shutil, errno from sys import argv as _argv +from sys import stderr as _stderr # Running params params = {"recursive": False, @@ -20,20 +21,28 @@ params = {"recursive": False, "mods": False, "verbose": False, "folders": [], - "no-old-file": False + "no-old-file": False, + "break-long-lines": False, + "sort": False, + "print-source": False, + "truncate-unused": False, } # Available CLI options options = {"recursive": ['--recursive', '-r'], "help": ['--help', '-h'], - "mods": ['--installed-mods'], + "mods": ['--installed-mods', '-m'], "verbose": ['--verbose', '-v'], - "no-old-file": ['--no-old-file'] + "no-old-file": ['--no-old-file', '-O'], + "break-long-lines": ['--break-long-lines', '-b'], + "sort": ['--sort', '-s'], + "print-source": ['--print-source', '-p'], + "truncate-unused": ['--truncate-unused', '-t'], } # Strings longer than this will have extra space added between # them in the translation files to make it easier to distinguish their # beginnings and endings at a glance -doublespace_threshold = 60 +doublespace_threshold = 80 def set_params_folders(tab: list): '''Initialize params["folders"] from CLI arguments.''' @@ -68,8 +77,16 @@ DESCRIPTION run on locally installed modules {', '.join(options["no-old-file"])} do not create *.old files + {', '.join(options["sort"])} + sort output strings alphabetically + {', '.join(options["break-long-lines"])} + add extra line breaks before and after long strings + {', '.join(options["print-source"])} + add comments denoting the source file {', '.join(options["verbose"])} add output information + {', '.join(options["truncate-unused"])} + delete unused strings from files ''') @@ -88,8 +105,8 @@ def main(): print("recursively ", end='') # Running if params["mods"]: - print(f"on all locally installed modules in {os.path.abspath('~/.minetest/mods/')}") - run_all_subfolders("~/.minetest/mods") + print(f"on all locally installed modules in {os.path.expanduser('~/.minetest/mods/')}") + run_all_subfolders(os.path.expanduser("~/.minetest/mods")) elif len(params["folders"]) >= 2: print("on folder list:", params["folders"]) for f in params["folders"]: @@ -112,18 +129,20 @@ def main(): #group 2 will be the string, groups 1 and 3 will be the delimiters (" or ') #See https://stackoverflow.com/questions/46967465/regex-match-text-in-either-single-or-double-quote -pattern_lua = re.compile(r'[\.=^\t,{\(\s]N?S\(\s*(["\'])((?:\\\1|(?:(?!\1)).)*)(\1)[\s,\)]', re.DOTALL) -pattern_lua_bracketed = re.compile(r'[\.=^\t,{\(\s]N?S\(\s*\[\[(.*?)\]\][\s,\)]', re.DOTALL) +pattern_lua_s = re.compile(r'[\.=^\t,{\(\s]N?S\(\s*(["\'])((?:\\\1|(?:(?!\1)).)*)(\1)[\s,\)]', re.DOTALL) +pattern_lua_fs = re.compile(r'[\.=^\t,{\(\s]N?FS\(\s*(["\'])((?:\\\1|(?:(?!\1)).)*)(\1)[\s,\)]', re.DOTALL) +pattern_lua_bracketed_s = re.compile(r'[\.=^\t,{\(\s]N?S\(\s*\[\[(.*?)\]\][\s,\)]', re.DOTALL) +pattern_lua_bracketed_fs = re.compile(r'[\.=^\t,{\(\s]N?FS\(\s*\[\[(.*?)\]\][\s,\)]', re.DOTALL) # Handles "concatenation" .. " of strings" pattern_concat = re.compile(r'["\'][\s]*\.\.[\s]*["\']', re.DOTALL) -pattern_tr = re.compile(r'(.+?[^@])=(.*)') +pattern_tr = re.compile(r'(.*?[^@])=(.*)') pattern_name = re.compile(r'^name[ ]*=[ ]*([^ \n]*)') pattern_tr_filename = re.compile(r'\.tr$') pattern_po_language_code = re.compile(r'(.*)\.po$') -#attempt to read the mod's name from the mod.conf file. Returns None on failure +#attempt to read the mod's name from the mod.conf file or folder name. Returns None on failure def get_modname(folder): try: with open(os.path.join(folder, "mod.conf"), "r", encoding='utf-8') as mod_conf: @@ -132,7 +151,15 @@ def get_modname(folder): if match: return match.group(1) except FileNotFoundError: - pass + if not os.path.isfile(os.path.join(folder, "modpack.txt")): + folder_name = os.path.basename(folder) + # Special case when run in Minetest's builtin directory + if folder_name == "builtin": + return "__builtin" + else: + return folder_name + else: + return None return None #If there are already .tr files in /locale, returns a list of their names @@ -180,7 +207,7 @@ def process_po_files(folder, modname): if code_match == None: continue language_code = code_match.group(1) - tr_name = modname + "." + language_code + ".tr" + tr_name = f'{modname}.{language_code}.tr' tr_file = os.path.join(root, tr_name) if os.path.exists(tr_file): if params["verbose"]: @@ -209,14 +236,17 @@ def mkdir_p(path): # dKeyStrings is a dictionary of localized string to source file sets # dOld is a dictionary of existing translations and comments from # the previous version of this text -def strings_to_text(dkeyStrings, dOld, mod_name): - lOut = [f"# textdomain: {mod_name}\n"] +def strings_to_text(dkeyStrings, dOld, mod_name, header_comments): + lOut = [f"# textdomain: {mod_name}"] + if header_comments is not None: + lOut.append(header_comments) dGroupedBySource = {} for key in dkeyStrings: sourceList = list(dkeyStrings[key]) - sourceList.sort() + if params["sort"]: + sourceList.sort() sourceString = "\n".join(sourceList) listForSource = dGroupedBySource.get(sourceString, []) listForSource.append(key) @@ -226,42 +256,45 @@ def strings_to_text(dkeyStrings, dOld, mod_name): lSourceKeys.sort() for source in lSourceKeys: localizedStrings = dGroupedBySource[source] - localizedStrings.sort() - lOut.append("") - lOut.append(source) - lOut.append("") + if params["sort"]: + localizedStrings.sort() + if params["print-source"]: + if lOut[-1] != "": + lOut.append("") + lOut.append(source) for localizedString in localizedStrings: val = dOld.get(localizedString, {}) translation = val.get("translation", "") comment = val.get("comment") - if len(localizedString) > doublespace_threshold and not lOut[-1] == "": + if params["break-long-lines"] and len(localizedString) > doublespace_threshold and not lOut[-1] == "": lOut.append("") - if comment != None: + if comment != None and comment != "" and not comment.startswith("# textdomain:"): lOut.append(comment) lOut.append(f"{localizedString}={translation}") - if len(localizedString) > doublespace_threshold: + if params["break-long-lines"] and len(localizedString) > doublespace_threshold: lOut.append("") unusedExist = False - for key in dOld: - if key not in dkeyStrings: - val = dOld[key] - translation = val.get("translation") - comment = val.get("comment") - # only keep an unused translation if there was translated - # text or a comment associated with it - if translation != None and (translation != "" or comment): - if not unusedExist: - unusedExist = True - lOut.append("\n\n##### not used anymore #####\n") - if len(key) > doublespace_threshold and not lOut[-1] == "": - lOut.append("") - if comment != None: - lOut.append(comment) - lOut.append(f"{key}={translation}") - if len(key) > doublespace_threshold: - lOut.append("") + if not params["truncate-unused"]: + for key in dOld: + if key not in dkeyStrings: + val = dOld[key] + translation = val.get("translation") + comment = val.get("comment") + # only keep an unused translation if there was translated + # text or a comment associated with it + if translation != None and (translation != "" or comment): + if not unusedExist: + unusedExist = True + lOut.append("\n\n##### not used anymore #####\n") + if params["break-long-lines"] and len(key) > doublespace_threshold and not lOut[-1] == "": + lOut.append("") + if comment != None: + lOut.append(comment) + lOut.append(f"{key}={translation}") + if params["break-long-lines"] and len(key) > doublespace_threshold: + lOut.append("") return "\n".join(lOut) + '\n' # Writes a template.txt file @@ -270,7 +303,7 @@ def write_template(templ_file, dkeyStrings, mod_name): # read existing template file to preserve comments existing_template = import_tr_file(templ_file) - text = strings_to_text(dkeyStrings, existing_template[0], mod_name) + text = strings_to_text(dkeyStrings, existing_template[0], mod_name, existing_template[2]) mkdir_p(os.path.dirname(templ_file)) with open(templ_file, "wt", encoding='utf-8') as template_file: template_file.write(text) @@ -286,9 +319,13 @@ def read_lua_file_strings(lua_file): text = re.sub(pattern_concat, "", text) strings = [] - for s in pattern_lua.findall(text): + for s in pattern_lua_s.findall(text): strings.append(s[1]) - for s in pattern_lua_bracketed.findall(text): + for s in pattern_lua_bracketed_s.findall(text): + strings.append(s) + for s in pattern_lua_fs.findall(text): + strings.append(s[1]) + for s in pattern_lua_bracketed_fs.findall(text): strings.append(s) for s in strings: @@ -306,9 +343,11 @@ def read_lua_file_strings(lua_file): # returns both a dictionary of translations # and the full original source text so that the new text # can be compared to it for changes. +# Returns also header comments in the third return value. def import_tr_file(tr_file): dOut = {} text = None + header_comment = None if os.path.exists(tr_file): with open(tr_file, "r", encoding='utf-8') as existing_file : # save the full text to allow for comparison @@ -321,11 +360,21 @@ def import_tr_file(tr_file): latest_comment_block = None for line in existing_file.readlines(): line = line.rstrip('\n') - if line[:3] == "###": + if line.startswith("###"): + if header_comment is None and not latest_comment_block is None: + # Save header comments + header_comment = latest_comment_block + # Strip textdomain line + tmp_h_c = "" + for l in header_comment.split('\n'): + if not l.startswith("# textdomain:"): + tmp_h_c += l + '\n' + header_comment = tmp_h_c + # Reset comment block if we hit a header latest_comment_block = None continue - if line[:1] == "#": + elif line.startswith("#"): # Save the comment we're inside if not latest_comment_block: latest_comment_block = line @@ -342,7 +391,7 @@ def import_tr_file(tr_file): outval["comment"] = latest_comment_block latest_comment_block = None dOut[match.group(1)] = outval - return (dOut, text) + return (dOut, text, header_comment) # Walks all lua files in the mod folder, collects translatable strings, # and writes it to a template.txt file @@ -381,7 +430,7 @@ def update_tr_file(dNew, mod_name, tr_file): dOld = tr_import[0] textOld = tr_import[1] - textNew = strings_to_text(dNew, dOld, mod_name) + textNew = strings_to_text(dNew, dOld, mod_name, tr_import[2]) if textOld and textOld != textNew: print(f"{tr_file} has changed.") @@ -404,23 +453,24 @@ def update_mod(folder): for tr_file in get_existing_tr_files(folder): update_tr_file(data, modname, os.path.join(folder, "locale/", tr_file)) else: - print("Unable to find modname in folder " + folder) + print(f"\033[31mUnable to find modname in folder {folder}.\033[0m", file=_stderr) + exit(1) # Determines if the folder being pointed to is a mod or a mod pack # and then runs update_mod accordingly def update_folder(folder): is_modpack = os.path.exists(os.path.join(folder, "modpack.txt")) or os.path.exists(os.path.join(folder, "modpack.conf")) if is_modpack: - subfolders = [f.path for f in os.scandir(folder) if f.is_dir()] + subfolders = [f.path for f in os.scandir(folder) if f.is_dir() and not f.name.startswith('.')] for subfolder in subfolders: - update_mod(subfolder + "/") + update_mod(subfolder) else: update_mod(folder) print("Done.") def run_all_subfolders(folder): - for modfolder in [f.path for f in os.scandir(folder) if f.is_dir()]: - update_folder(modfolder + "/") + for modfolder in [f.path for f in os.scandir(folder) if f.is_dir() and not f.name.startswith('.')]: + update_folder(modfolder) main() diff --git a/init.lua b/init.lua index 8fda3ae..0bc6ab8 100644 --- a/init.lua +++ b/init.lua @@ -23,7 +23,7 @@ dofile(path.."/tools.lua") dofile(path.."/canapa.lua") dofile(path.."/node_ingot.lua") dofile(path.."/craftitem.lua") ---dofile(path.."/armor.lua") +--dofile(path.."/clothing.lua") dofile(path.."/joint.lua") dofile(path.."/canapa_red.lua") dofile(path.."/craftred.lua") @@ -32,12 +32,18 @@ dofile(path.."/wool.lua") dofile(path.."/eye_effect.lua") dofile(path.."/canapa_ice.lua") dofile(path.."/craftice.lua") ---dofile(path.."/ethereal.lua") - - -if minetest.get_modpath("3d_armor") then dofile(path.."/armor.lua") + +if minetest.get_modpath("3D_armor") then +dofile(path.."/armor.lua") +end +if minetest.get_modpath("clothing") then +dofile(path.."/clothing.lua") +dofile(path.."/clothing_recipes.lua") end if minetest.get_modpath("unified_inventory") then dofile(path.."/bag.lua") end +if minetest.get_modpath("ropes") then +dofile(path.."/rope.lua") +end diff --git a/joint.lua b/joint.lua index db2115d..ed4aa73 100644 --- a/joint.lua +++ b/joint.lua @@ -1,5 +1,6 @@ -- get Boilerplate for Translations local S = cannabis.S +local path = cannabis.path --[[minetest.register_craftitem("cannabis:joint_fumo_acceso", { description = S("Joint of hash lit"), @@ -85,7 +86,7 @@ local p = player:get_pos() minetest.register_craftitem("cannabis:joint_fumo_acceso", { - description = "Joint of hash lit", + description = S("Joint of hash lit"), inventory_image = "joint_joint_fac.png", stack_max = 1, on_use = function(itemstack,player,pointed_thing) @@ -119,7 +120,7 @@ local p = player:get_pos() --_______________________________________________________________________FUMO ACCESO CONSUMATO_______________________________________________________ minetest.register_craftitem("cannabis:joint_fumo_acceso_m", { - description = "Joint of hash lit", + description = S("Half Joint of hash lit"), inventory_image = "joint_joint_fac_m.png", stack_max = 1, on_use = function(itemstack,player,pointed_thing) @@ -188,7 +189,7 @@ local p = player:get_pos() --_______________________________________________________________________E. VERDE CONSUMATA_______________________________________ minetest.register_craftitem("cannabis:joint_erba_acceso_m", { - description = "Joint of weed lit", + description = S("Half Joint of weed lit"), inventory_image = "joint_joint_cac_m.png", stack_max = 1, on_use = function(itemstack,player,pointed_thing) @@ -221,7 +222,7 @@ local p = player:get_pos() --_______________________________________________________________________E. ROSSA______________________________________ minetest.register_craftitem("cannabis:joint_erba_rossa_acceso", { - description = S("Joint of weed lit"), + description = S("Joint of red weed lit"), inventory_image = "joint_joint_cacr.png", stack_max = 1 , on_use =function(itemstack,player,pointed_thing) @@ -255,7 +256,7 @@ local p = player:get_pos() --_______________________________________________________________________E.ROSSA ACCESA CONSUMATA_______________________ minetest.register_craftitem("cannabis:joint_erba_rossa_acceso_m", { - description = "Joint of weed lit", + description = S("Half Joint of red weed lit"), inventory_image = "joint_joint_cacr_m.png", stack_max = 1, on_use = function(itemstack,player,pointed_thing) @@ -322,7 +323,7 @@ local p = player:get_pos() --_______________________________________________________________________E. ICE ACCESA CONSUMATA_______________________________ minetest.register_craftitem("cannabis:joint_erba_ice_acceso_m", { - description = "Joint of ice_weed lit", + description = S("Half Joint of ice_weed lit"), inventory_image = "joint_joint_caci_m.png", stack_max = 1, on_use = function(itemstack,player,pointed_thing) diff --git a/locale/cannabis.de.tr b/locale/cannabis.de.tr index 2d156bd..4cc19b1 100644 --- a/locale/cannabis.de.tr +++ b/locale/cannabis.de.tr @@ -1,135 +1,101 @@ # textdomain: cannabis - - -### armor.lua ### - - Boots= Stiefel - Chestplate= Brustpanzer Helmet= Helm - Hemp Shield= Hanfschild + Chestplate= Brustpanzer Leggings= Hose - -### bag.lua ### - -Large Bob Bag= BOB Tasche Breit -Medium Bob Bag= BOB Tasche Mittel + Boots= Stiefel + Hemp Shield= Hanfschild Small Bob Bag= BOB Tasche Klein - -### canapa.lua ### - +Medium Bob Bag= BOB Tasche Mittel +Large Bob Bag= BOB Tasche Breit Hemp=Hanf -Hemp (climbing plant)=Hanf (kletternde Pflanze) -Hemp (flowering)=Hanf (blühend) Hemp (seedling)=Hanf (Sämling) Hemp (sproutling)=Hanf (sprießend) - -### canapa_ice.lua ### - -Hemp (Ice flowering)=Gletscherhanf +Hemp (flowering)=Hanf (blühend) +Hemp (climbing plant)=Hanf (kletternde Pflanze) Hemp ice= Gletscherhanf (blühend) -Hemp ice (climbing plant)=Gletscherhanf (kletternde Pflanze) -Hemp ice (sproutling)=Gletscherhanf (sprießend) Hemp ice(seedling)=Gletscherhanf (Sämling) - -### canapa_red.lua ### - -Hemp (Red flowering)=Hanf (Rot blühend) +Hemp ice (sproutling)=Gletscherhanf (sprießend) +Hemp ice (climbing plant)=Gletscherhanf (kletternde Pflanze) +Hemp (Ice flowering)=Gletscherhanf 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) - -### craftice.lua ### - +Hemp red (sproutling)=Roter Hanf (Sämling) +Hemp red (climbing plant)=Roter Hanf (kletternde Pflanze) +Hemp (Red flowering)=Hanf (Rot blühend) Hemp ice Flower= Gletscherhanfblume - -### craftice.lua ### -### craftitem.lua ### -### craftred.lua ### - -Hemp Leaves=Hanfblätter Hemp Seed=Hanfsamen - -### craftitem.lua ### - -BioFuel=BioKraftstoff -Bread=Brot -Cloth= +Hemp Leaves=Hanfblätter Fiber=Faser -Flour=Mehl -Hemp Flower=Hanfblume -Hemp Glue=Hanfkleber -Hemp Oil=Hanföl -Hemp Resin=Hanfharz -Paper=Papier +BioFuel=BioKraftstoff Plastic=Plastik - -### craftred.lua ### - +Cloth= +Paper=Papier +Flour=Mehl +Bread=Brot +Hemp Flower=Hanfblume +Hemp Resin=Hanfharz +Hemp Oil=Hanföl +Hemp Glue=Hanfkleber Hemp red Flower=Roter Hanf Blüte - -### joint.lua ### - -Filter=Filter -Filters pack=Filterpaket -Flowering chopped=blühend gehäckselt -Hash melted=Haschisch geschmolzen -Ice flowering chopped= Joint of hash lit=Haschisch Joint angezündet Joint of hash unlit=Haschisch Joint nicht angezündet -Joint of ice_weed lit= -Joint of ice_weed unlit= -Joint of red_weed unlit= -Joint of weed lit=Joint aus Gras angezündet Joint of weed unlit=Joint aus Gras nicht angezündet -Lighter=Feuerzeug +Joint of red_weed unlit= +Joint of ice_weed unlit= +Half Joint of hash lit= +Joint of weed lit=Joint aus Gras angezündet +Half Joint of weed lit= +Joint of red weed lit= +Half Joint of red weed lit= +Joint of ice_weed lit= +Half Joint of ice_weed lit= +Flowering chopped=blühend gehäckselt Red flowering chopped= +Ice flowering chopped= +Hash melted=Haschisch geschmolzen Rolling paper=Zigarettenpapier Rolling paper with hemp leaves and flowering chopped =Zigarettenpapier mit Hanfblättern und gehäckselten Blüten +Rolling paper with hemp leaves and red flowering chopped = Rolling paper with hemp leaves and ice flowering chopped = Rolling paper with hemp leaves and melted hash= -Rolling paper with hemp leaves and red flowering chopped = - -### 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 -Ice Leaves Block= -Leaves Block=Blätterblock -Leaves Ingot=Blätterbarren +Filters pack=Filterpaket +Filter=Filter +Lighter=Feuerzeug Mixed HR Ingot=Gemischter HR Barren +Fiber Ingot=Faserbarren +Leaves Ingot=Blätterbarren +High Performance Ingot=Hochwertiger Barren +Fabric Ingot=Stoffbarren +Adminh Ingot=Adminh Barren +High Performance Block Hemp=Hochwertiger Hanfblock +Leaves Block=Blätterblock 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 +Ice Leaves Block= +Fabric Block=Stoffblock +High Performance Block=Hochwertiger Block +Fiber Block=Faserblock +Adminh Block=Adminh Block Hemp Steel Pickaxe=Hanf Eisen Spitzhacke +Hemp Bronze Pickaxe=Hanf Bronze Spitzhacke +Hemp Mese Pickaxe=Hanf Mese Spitzhacke +Hemp Diamond Pickaxe=Hanf Diamant Spitzhacke +Hemp High Pickaxe=Hanf hochwertige Spitzhacke +Hemp Adminh Pickaxe=Hanf Admin hochwertige Spitzhacke +Hemp High Shovel=Hanf hochwertige Schaufel Hemp Steel Shovel=Hanf Eisen Schaufel +Hemp Bronze Shovel=Hanf Bronze Schaufel +Hemp Mese Shovel=Hanf Mese Schaufel +Hemp Diamond Shovel=Hanf Diamant Schaufel +Hemp Steel Axe=Hanf Eisen Axt +Hemp Bronze Axe= Hanf Bronze Axt +Hemp Mese Axe=Hanf Mese Axt +Hemp Diamond Axe=Hanf Diamant Axt +Hemp High Performance Axe=Hanf Hochwertige Axt Hemp Steel Sword=Hanf Eisen Schwert +Hemp Bronze Sword=Hanf Bronze Schaufel +Hemp Mese Sword=Hanf Mese Schwert +Hemp Diamond Sword=Hanf Diamant Schwert +Hemp High Performance Sword=Hanf Hochwertiges Schwert ##### not used anymore ##### diff --git a/locale/cannabis.de.tr.old b/locale/cannabis.de.tr.old index d7824af..1e2d3ec 100644 --- a/locale/cannabis.de.tr.old +++ b/locale/cannabis.de.tr.old @@ -1,146 +1,100 @@ # textdomain: cannabis - -### armor.lua ### - - Boots= Stiefel - Chestplate= Brustpanzer Helmet= Helm - Hemp Shield= Hanfschild + Chestplate= Brustpanzer Leggings= Hose - -### bag.lua ### - -Large Bob Bag= BOB Tasche Breit -Medium Bob Bag= BOB Tasche Mittel + Boots= Stiefel + Hemp Shield= Hanfschild Small Bob Bag= BOB Tasche Klein - -### canapa.lua ### - +Medium Bob Bag= BOB Tasche Mittel +Large Bob Bag= BOB Tasche Breit Hemp=Hanf -Hemp (climbing plant)=Hanf (kletternde Pflanze) -Hemp (flowering)=Hanf (blühend) Hemp (seedling)=Hanf (Sämling) Hemp (sproutling)=Hanf (sprießend) - -### canapa_ice.lua ### - -Hemp (Ice flowering)=Gletscherhanf +Hemp (flowering)=Hanf (blühend) +Hemp (climbing plant)=Hanf (kletternde Pflanze) Hemp ice= Gletscherhanf (blühend) -Hemp ice (climbing plant)=Gletscherhanf (kletternde Pflanze) -Hemp ice (sproutling)=Gletscherhanf (sprießend) Hemp ice(seedling)=Gletscherhanf (Sämling) - -### canapa_red.lua ### - -Hemp (Red flowering)=Hanf (Rot blühend) +Hemp ice (sproutling)=Gletscherhanf (sprießend) +Hemp ice (climbing plant)=Gletscherhanf (kletternde Pflanze) +Hemp (Ice flowering)=Gletscherhanf 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) - -### craftice.lua ### - +Hemp red (sproutling)=Roter Hanf (Sämling) +Hemp red (climbing plant)=Roter Hanf (kletternde Pflanze) +Hemp (Red flowering)=Hanf (Rot blühend) Hemp ice Flower= Gletscherhanfblume - -### craftice.lua ### -### craftitem.lua ### -### craftred.lua ### - -Hemp Leaves=Hanfblätter Hemp Seed=Hanfsamen - -### craftitem.lua ### - -BioFuel=BioKraftstoff -Bread=Brot -Cloth= +Hemp Leaves=Hanfblätter Fiber=Faser -Flour=Mehl -Hemp Flower=Hanfblume -Hemp Glue=Hanfkleber -Hemp Oil=Hanföl -Hemp Resin=Hanfharz -Paper=Papier +BioFuel=BioKraftstoff Plastic=Plastik - -### craftred.lua ### - +Cloth= +Paper=Papier +Flour=Mehl +Bread=Brot +Hemp Flower=Hanfblume +Hemp Resin=Hanfharz +Hemp Oil=Hanföl +Hemp Glue=Hanfkleber Hemp red Flower=Roter Hanf Blüte - -### joint.lua ### - -Ice flowering chopped= -Joint of ice_weed lit= -Joint of ice_weed unlit= -Joint of red_weed unlit= -Red flowering chopped= -Rolling paper with hemp leaves and ice flowering chopped = -Rolling paper with hemp leaves and melted hash= -Rolling paper with hemp leaves and red flowering chopped = - -### joint.lua ### -### o_joint.lua ### - -Filter=Filter -Filters pack=Filterpaket -Flowering chopped=blühend gehäckselt -Hash melted=Haschisch geschmolzen Joint of hash lit=Haschisch Joint angezündet Joint of hash unlit=Haschisch Joint nicht angezündet -Joint of weed lit=Joint aus Gras angezündet Joint of weed unlit=Joint aus Gras nicht angezündet +Joint of red_weed unlit= +Joint of ice_weed unlit= +Joint of weed lit=Joint aus Gras angezündet +Joint of ice_weed lit= +Flowering chopped=blühend gehäckselt +Red flowering chopped= +Ice flowering chopped= +Hash melted=Haschisch geschmolzen Rolling paper=Zigarettenpapier Rolling paper with hemp leaves and flowering chopped =Zigarettenpapier mit Hanfblättern und gehäckselten Blüten -lighter= - -### 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 -Ice Leaves Block= -Leaves Block=Blätterblock -Leaves Ingot=Blätterbarren +Rolling paper with hemp leaves and red flowering chopped = +Rolling paper with hemp leaves and ice flowering chopped = +Rolling paper with hemp leaves and melted hash= +Filters pack=Filterpaket +Filter=Filter +Lighter=Feuerzeug Mixed HR Ingot=Gemischter HR Barren +Fiber Ingot=Faserbarren +Leaves Ingot=Blätterbarren +High Performance Ingot=Hochwertiger Barren +Fabric Ingot=Stoffbarren +Adminh Ingot=Adminh Barren +High Performance Block Hemp=Hochwertiger Hanfblock +Leaves Block=Blätterblock Red Leaves Block=Roter Blätterblock - -### o_joint.lua ### - -Rolling paper with hemp leaves melted hash=Zigarettenpapier mit Hanfblättern und geschmolzenem Haschisch - -### 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 +Ice Leaves Block= +Fabric Block=Stoffblock +High Performance Block=Hochwertiger Block +Fiber Block=Faserblock +Adminh Block=Adminh Block Hemp Steel Pickaxe=Hanf Eisen Spitzhacke +Hemp Bronze Pickaxe=Hanf Bronze Spitzhacke +Hemp Mese Pickaxe=Hanf Mese Spitzhacke +Hemp Diamond Pickaxe=Hanf Diamant Spitzhacke +Hemp High Pickaxe=Hanf hochwertige Spitzhacke +Hemp Adminh Pickaxe=Hanf Admin hochwertige Spitzhacke +Hemp High Shovel=Hanf hochwertige Schaufel Hemp Steel Shovel=Hanf Eisen Schaufel +Hemp Bronze Shovel=Hanf Bronze Schaufel +Hemp Mese Shovel=Hanf Mese Schaufel +Hemp Diamond Shovel=Hanf Diamant Schaufel +Hemp Steel Axe=Hanf Eisen Axt +Hemp Bronze Axe= Hanf Bronze Axt +Hemp Mese Axe=Hanf Mese Axt +Hemp Diamond Axe=Hanf Diamant Axt +Hemp High Performance Axe=Hanf Hochwertige Axt Hemp Steel Sword=Hanf Eisen Schwert +Hemp Bronze Sword=Hanf Bronze Schaufel +Hemp Mese Sword=Hanf Mese Schwert +Hemp Diamond Sword=Hanf Diamant Schwert +Hemp High Performance Sword=Hanf Hochwertiges Schwert ##### not used anymore ##### -Lighter=Feuerzeug +Rolling paper with hemp leaves melted hash=Zigarettenpapier mit Hanfblättern und geschmolzenem Haschisch Hemp Admin High Performance Sword=Hanf Admin hochwertiges Schwert diff --git a/locale/cannabis.it.tr b/locale/cannabis.it.tr index 68f4c25..fd5f5e2 100644 --- a/locale/cannabis.it.tr +++ b/locale/cannabis.it.tr @@ -1,132 +1,98 @@ # textdomain: cannabis - - -### armor.lua ### - - Boots=Stivali - Chestplate=Corazza Helmet=Elmo - Hemp Shield= Scudo di canapa + Chestplate=Corazza Leggings=Gambali - -### bag.lua ### - -Large Bob Bag= Borsa BOB larga -Medium Bob Bag= Borsa BOB media + Boots=Stivali + Hemp Shield= Scudo di canapa Small Bob Bag= Borsa BOB piccola - -### canapa.lua ### - +Medium Bob Bag= Borsa BOB media +Large Bob Bag= Borsa BOB larga Hemp=Canapa -Hemp (climbing plant)=Canapa (rampicante) -Hemp (flowering)=Canapa (infiorescena) Hemp (seedling)=Canapa (piantina) Hemp (sproutling)=Canapa (germoglio) - -### canapa_ice.lua ### - -Hemp (Ice flowering)= Inffiorescenza di canapa Glaciale +Hemp (flowering)=Canapa (infiorescena) +Hemp (climbing plant)=Canapa (rampicante) Hemp ice= Canapa Glaciale -Hemp ice (climbing plant)=Canapa Glaciale(rampicante) -Hemp ice (sproutling)=Canapa Glaciale (piantina) Hemp ice(seedling)=Canapa Glaciale (germoglio) - -### canapa_red.lua ### - -Hemp (Red flowering)=Canapa rossa (infiorescena) +Hemp ice (sproutling)=Canapa Glaciale (piantina) +Hemp ice (climbing plant)=Canapa Glaciale(rampicante) +Hemp (Ice flowering)= Inffiorescenza di canapa Glaciale Hemp red=Canapa rossa -Hemp red (climbing plant)=Canapa rossa (rampicante) -Hemp red (sproutling)=Canapa rossa (piantina) Hemp red(seedling)=Canapa rossa (germoglio) - -### craftice.lua ### - +Hemp red (sproutling)=Canapa rossa (piantina) +Hemp red (climbing plant)=Canapa rossa (rampicante) +Hemp (Red flowering)=Canapa rossa (infiorescena) Hemp ice Flower= Fiore di canapa glaciale - -### craftice.lua ### -### craftitem.lua ### -### craftred.lua ### - -Hemp Leaves= Foglie di canapa Hemp Seed= Semi di canapa - -### craftitem.lua ### - -BioFuel=BioCarburante -Bread=Pane -Cloth= Stoffa +Hemp Leaves= Foglie di canapa 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 +BioFuel=BioCarburante Plastic=Plastica - -### craftred.lua ### - +Cloth= Stoffa +Paper=Carta +Flour=Farina +Bread=Pane +Hemp Flower=Fiore di Canapa +Hemp Resin=Resina di Canapa +Hemp Oil=Olio di Canapa +Hemp Glue=Colla di Canapa Hemp red Flower=Fiore di canapa rossa - -### joint.lua ### - -Filter=Filtro -Filters pack=Pacchetto di filtri -Flowering chopped=Infiorescenza triturata -Hash melted=Fumo sciolto -Ice flowering chopped=Infiorescenza canapa_ice tritata Joint of hash lit=Sigaretta con fumo accesa Joint of hash unlit=Sigaretta con fumo spenta -Joint of ice_weed lit= Sigaretta di canapa_ice accesa -Joint of ice_weed unlit=Sigaretta di canapa spenta -Joint of red_weed unlit=Sigaretta di canapa_rossa spenta -Joint of weed lit=Sigaretta di erba acceso Joint of weed unlit=Sigaretta di erba spenta -Lighter=Accendino +Joint of red_weed unlit=Sigaretta di canapa_rossa spenta +Joint of ice_weed unlit=Sigaretta di canapa spenta +Half Joint of hash lit= +Joint of weed lit=Sigaretta di erba acceso +Half Joint of weed lit= +Joint of red weed lit= +Half Joint of red weed lit= +Joint of ice_weed lit= Sigaretta di canapa_ice accesa +Half Joint of ice_weed lit= +Flowering chopped=Infiorescenza triturata Red flowering chopped= Infiorescenza canapa_rossa tritata +Ice flowering chopped=Infiorescenza canapa_ice tritata +Hash melted=Fumo sciolto Rolling paper=Cartine Rolling paper with hemp leaves and flowering chopped =Cartina con foglie e cime di canapa +Rolling paper with hemp leaves and red flowering chopped = Cartina con infiorescenza di canapa_rossa e foglie di canapa Rolling paper with hemp leaves and ice flowering chopped =Cartina con infiorescenza di canapa_ice e foglie di canapa Rolling paper with hemp leaves and melted hash=Cartina con resina e foglie di canapa -Rolling paper with hemp leaves and red flowering chopped = Cartina con infiorescenza di canapa_rossa e foglie 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 -Ice Leaves Block=Blocco di foglie canapa_ice -Leaves Block=Blocco di foglie -Leaves Ingot=Lingotto di foglie +Filters pack=Pacchetto di filtri +Filter=Filtro +Lighter=Accendino Mixed HR Ingot=Lingotto mescola HR +Fiber Ingot=Lingotto di fibra +Leaves Ingot=Lingotto di foglie +High Performance Ingot=Lingotto alte prestazioni +Fabric Ingot=Lingotto tessuto +Adminh Ingot=Lingotto Adminh +High Performance Block Hemp=Blocco alla fibra di canapa ad alte prestazioni +Leaves Block=Blocco di foglie 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 +Ice Leaves Block=Blocco di foglie canapa_ice +Fabric Block=Blocco di Tessuto +High Performance Block=Blocco ad alte prestazioni +Fiber Block=Blocco di fibra +Adminh Block=Blocco Adminh (indistruttibile) Hemp Steel Pickaxe=Piccone di canapa ed acciaio +Hemp Bronze Pickaxe=Piccone di canapa e bronzo +Hemp Mese Pickaxe=Piccone di canapa e mese +Hemp Diamond Pickaxe=Picconedi canapa e diamante +Hemp High Pickaxe=Piccone di canapa ad alte prestazioni +Hemp Adminh Pickaxe=Piccone Adminh di canapa +Hemp High Shovel=Pala di canapa ad alte prestazioni Hemp Steel Shovel=Pala di canapa ed acciaio +Hemp Bronze Shovel=Pala di canapa e bronzo +Hemp Mese Shovel=Pala di canapa e mese +Hemp Diamond Shovel=Pala di canapa e diamante +Hemp Steel Axe=Ascia di canapa ed acciaio +Hemp Bronze Axe=Ascia di canapa e bronzo +Hemp Mese Axe=Ascia di canapa e mese +Hemp Diamond Axe=Ascia di canapa e diamante +Hemp High Performance Axe=Ascia di canapa ad alte prestazioni Hemp Steel Sword=Spada di canapa ed acciaio +Hemp Bronze Sword=Spada di canapa e bronzo +Hemp Mese Sword=Spada di canapa e mese +Hemp Diamond Sword=Spada di canapa e diamante +Hemp High Performance Sword=Spada di canapa ad alte prestazioni diff --git a/locale/cannabis.it.tr.old b/locale/cannabis.it.tr.old index 66304a8..810f4ab 100644 --- a/locale/cannabis.it.tr.old +++ b/locale/cannabis.it.tr.old @@ -1,139 +1,94 @@ # textdomain: cannabis - -### armor.lua ### - - Boots=Stivali - Chestplate=Corazza Helmet=Elmo - Hemp Shield= Scudo di canapa + Chestplate=Corazza Leggings=Gambali - -### bag.lua ### - -Large Bob Bag= Borsa BOB larga -Medium Bob Bag= Borsa BOB media + Boots=Stivali + Hemp Shield= Scudo di canapa Small Bob Bag= Borsa BOB piccola - -### canapa.lua ### - +Medium Bob Bag= Borsa BOB media +Large Bob Bag= Borsa BOB larga Hemp=Canapa -Hemp (climbing plant)=Canapa (rampicante) -Hemp (flowering)=Canapa (infiorescena) Hemp (seedling)=Canapa (piantina) Hemp (sproutling)=Canapa (germoglio) - -### canapa_ice.lua ### - -Hemp (Ice flowering)= Inffiorescenza di canapa Glaciale +Hemp (flowering)=Canapa (infiorescena) +Hemp (climbing plant)=Canapa (rampicante) Hemp ice= Canapa Glaciale -Hemp ice (climbing plant)=Canapa Glaciale(rampicante) -Hemp ice (sproutling)=Canapa Glaciale (piantina) Hemp ice(seedling)=Canapa Glaciale (germoglio) - -### canapa_red.lua ### - -Hemp (Red flowering)=Canapa rossa (infiorescena) +Hemp ice (sproutling)=Canapa Glaciale (piantina) +Hemp ice (climbing plant)=Canapa Glaciale(rampicante) +Hemp (Ice flowering)= Inffiorescenza di canapa Glaciale Hemp red=Canapa rossa -Hemp red (climbing plant)=Canapa rossa (rampicante) -Hemp red (sproutling)=Canapa rossa (piantina) Hemp red(seedling)=Canapa rossa (germoglio) - -### craftice.lua ### - +Hemp red (sproutling)=Canapa rossa (piantina) +Hemp red (climbing plant)=Canapa rossa (rampicante) +Hemp (Red flowering)=Canapa rossa (infiorescena) Hemp ice Flower= Fiore di canapa glaciale - -### craftice.lua ### -### craftitem.lua ### -### craftred.lua ### - -Hemp Leaves= Foglie di canapa Hemp Seed= Semi di canapa - -### craftitem.lua ### - -BioFuel=BioCarburante -Bread=Pane -Cloth= Stoffa +Hemp Leaves= Foglie di canapa 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 +BioFuel=BioCarburante Plastic=Plastica - -### craftred.lua ### - +Cloth= Stoffa +Paper=Carta +Flour=Farina +Bread=Pane +Hemp Flower=Fiore di Canapa +Hemp Resin=Resina di Canapa +Hemp Oil=Olio di Canapa +Hemp Glue=Colla di Canapa Hemp red Flower=Fiore di canapa rossa - -### joint.lua ### - -Ice flowering chopped=Infiorescenza canapa_ice tritata -Joint of ice_weed lit= Sigaretta di canapa_ice accesa -Joint of ice_weed unlit=Sigaretta di canapa spenta -Joint of red_weed unlit=Sigaretta di canapa_rossa spenta -Red flowering chopped= Infiorescenza canapa_rossa tritata -Rolling paper with hemp leaves and ice flowering chopped =Cartina con infiorescenza di canapa_ice e foglie di canapa -Rolling paper with hemp leaves and melted hash=Cartina con resina e foglie di canapa -Rolling paper with hemp leaves and red flowering chopped = Cartina con infiorescenza di canapa_rossa e foglie di canapa -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 +Joint of red_weed unlit=Sigaretta di canapa_rossa spenta +Joint of ice_weed unlit=Sigaretta di canapa spenta +Joint of weed lit=Sigaretta di erba acceso +Joint of ice_weed lit= Sigaretta di canapa_ice accesa +Flowering chopped=Infiorescenza triturata +Red flowering chopped= Infiorescenza canapa_rossa tritata +Ice flowering chopped=Infiorescenza canapa_ice tritata +Hash melted=Fumo sciolto Rolling paper=Cartine Rolling paper with hemp leaves and flowering chopped =Cartina con foglie e cime di canapa +Rolling paper with hemp leaves and red flowering chopped = Cartina con infiorescenza di canapa_rossa e foglie di canapa +Rolling paper with hemp leaves and ice flowering chopped =Cartina con infiorescenza di canapa_ice e foglie di canapa +Rolling paper with hemp leaves and melted hash=Cartina con resina e foglie di canapa +Filters pack=Pacchetto di filtri +Filter=Filtro Lighter=Accendino - -### 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 -Ice Leaves Block=Blocco di foglie canapa_ice -Leaves Block=Blocco di foglie -Leaves Ingot=Lingotto di foglie Mixed HR Ingot=Lingotto mescola HR +Fiber Ingot=Lingotto di fibra +Leaves Ingot=Lingotto di foglie +High Performance Ingot=Lingotto alte prestazioni +Fabric Ingot=Lingotto tessuto +Adminh Ingot=Lingotto Adminh +High Performance Block Hemp=Blocco alla fibra di canapa ad alte prestazioni +Leaves Block=Blocco di foglie 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 +Ice Leaves Block=Blocco di foglie canapa_ice +Fabric Block=Blocco di Tessuto +High Performance Block=Blocco ad alte prestazioni +Fiber Block=Blocco di fibra +Adminh Block=Blocco Adminh (indistruttibile) Hemp Steel Pickaxe=Piccone di canapa ed acciaio +Hemp Bronze Pickaxe=Piccone di canapa e bronzo +Hemp Mese Pickaxe=Piccone di canapa e mese +Hemp Diamond Pickaxe=Picconedi canapa e diamante +Hemp High Pickaxe=Piccone di canapa ad alte prestazioni +Hemp Adminh Pickaxe=Piccone Adminh di canapa +Hemp High Shovel=Pala di canapa ad alte prestazioni Hemp Steel Shovel=Pala di canapa ed acciaio +Hemp Bronze Shovel=Pala di canapa e bronzo +Hemp Mese Shovel=Pala di canapa e mese +Hemp Diamond Shovel=Pala di canapa e diamante +Hemp Steel Axe=Ascia di canapa ed acciaio +Hemp Bronze Axe=Ascia di canapa e bronzo +Hemp Mese Axe=Ascia di canapa e mese +Hemp Diamond Axe=Ascia di canapa e diamante +Hemp High Performance Axe=Ascia di canapa ad alte prestazioni Hemp Steel Sword=Spada di canapa ed acciaio - - - +Hemp Bronze Sword=Spada di canapa e bronzo +Hemp Mese Sword=Spada di canapa e mese +Hemp Diamond Sword=Spada di canapa e diamante +Hemp High Performance Sword=Spada di canapa ad alte prestazioni diff --git a/locale/template.txt b/locale/template.txt index 72eef50..8cd105b 100644 --- a/locale/template.txt +++ b/locale/template.txt @@ -1,132 +1,98 @@ # textdomain: cannabis - - -### armor.lua ### - - Boots= - Chestplate= Helmet= - Hemp Shield= + Chestplate= Leggings= - -### bag.lua ### - -Large Bob Bag= -Medium Bob Bag= + Boots= + Hemp Shield= Small Bob Bag= - -### canapa.lua ### - +Medium Bob Bag= +Large Bob Bag= Hemp= -Hemp (climbing plant)= -Hemp (flowering)= Hemp (seedling)= Hemp (sproutling)= - -### canapa_ice.lua ### - -Hemp (Ice flowering)= +Hemp (flowering)= +Hemp (climbing plant)= Hemp ice= -Hemp ice (climbing plant)= -Hemp ice (sproutling)= Hemp ice(seedling)= - -### canapa_red.lua ### - -Hemp (Red flowering)= +Hemp ice (sproutling)= +Hemp ice (climbing plant)= +Hemp (Ice flowering)= Hemp red= -Hemp red (climbing plant)= -Hemp red (sproutling)= Hemp red(seedling)= - -### craftice.lua ### - +Hemp red (sproutling)= +Hemp red (climbing plant)= +Hemp (Red flowering)= Hemp ice Flower= - -### craftice.lua ### -### craftitem.lua ### -### craftred.lua ### - -Hemp Leaves= Hemp Seed= - -### craftitem.lua ### - -BioFuel= -Bread= -Cloth= +Hemp Leaves= Fiber= -Flour= -Hemp Flower= -Hemp Glue= -Hemp Oil= -Hemp Resin= -Paper= +BioFuel= Plastic= - -### craftred.lua ### - +Cloth= +Paper= +Flour= +Bread= +Hemp Flower= +Hemp Resin= +Hemp Oil= +Hemp Glue= Hemp red Flower= - -### joint.lua ### - -Filter= -Filters pack= -Flowering chopped= -Hash melted= -Ice flowering chopped= Joint of hash lit= Joint of hash unlit= -Joint of ice_weed lit= -Joint of ice_weed unlit= -Joint of red_weed unlit= -Joint of weed lit= Joint of weed unlit= -Lighter= +Joint of red_weed unlit= +Joint of ice_weed unlit= +Half Joint of hash lit= +Joint of weed lit= +Half Joint of weed lit= +Joint of red weed lit= +Half Joint of red weed lit= +Joint of ice_weed lit= +Half Joint of ice_weed lit= +Flowering chopped= Red flowering chopped= +Ice flowering chopped= +Hash melted= Rolling paper= Rolling paper with hemp leaves and flowering chopped = +Rolling paper with hemp leaves and red flowering chopped = Rolling paper with hemp leaves and ice flowering chopped = Rolling paper with hemp leaves and melted hash= -Rolling paper with hemp leaves and red flowering chopped = - -### node_ingot.lua ### - -Adminh Block= -Adminh Ingot= -Fabric Block= -Fabric Ingot= -Fiber Block= -Fiber Ingot= -High Performance Block= -High Performance Block Hemp= -High Performance Ingot= -Ice Leaves Block= -Leaves Block= -Leaves Ingot= +Filters pack= +Filter= +Lighter= Mixed HR Ingot= +Fiber Ingot= +Leaves Ingot= +High Performance Ingot= +Fabric Ingot= +Adminh Ingot= +High Performance Block Hemp= +Leaves Block= Red Leaves Block= - -### tools.lua ### - -Hemp Adminh Pickaxe= -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 High Pickaxe= -Hemp High Shovel= -Hemp Mese Axe= -Hemp Mese Pickaxe= -Hemp Mese Shovel= -Hemp Mese Sword= -Hemp Steel Axe= +Ice Leaves Block= +Fabric Block= +High Performance Block= +Fiber Block= +Adminh Block= Hemp Steel Pickaxe= +Hemp Bronze Pickaxe= +Hemp Mese Pickaxe= +Hemp Diamond Pickaxe= +Hemp High Pickaxe= +Hemp Adminh Pickaxe= +Hemp High Shovel= Hemp Steel Shovel= +Hemp Bronze Shovel= +Hemp Mese Shovel= +Hemp Diamond Shovel= +Hemp Steel Axe= +Hemp Bronze Axe= +Hemp Mese Axe= +Hemp Diamond Axe= +Hemp High Performance Axe= Hemp Steel Sword= +Hemp Bronze Sword= +Hemp Mese Sword= +Hemp Diamond Sword= +Hemp High Performance Sword= diff --git a/mod.conf b/mod.conf index a1b8789..4dbf9d5 100644 --- a/mod.conf +++ b/mod.conf @@ -4,3 +4,4 @@ optional_default = 3d_armor,fire,ropes,unified_inventory,wool author = ulla title = Hemp mod description = Hemp with all possible utility see readme.md | La canapa e tutti i suoi usi guardare il readme.md +release = 10228 diff --git a/textures/armor/cannabis_armor_boots_fibra_preview.png b/textures/armor/cannabis_armor_boots_fibra_preview.png new file mode 100644 index 0000000..8dc072a Binary files /dev/null and b/textures/armor/cannabis_armor_boots_fibra_preview.png differ diff --git a/textures/armor/cannabis_armor_boots_foglie_preview.png b/textures/armor/cannabis_armor_boots_foglie_preview.png new file mode 100644 index 0000000..9561447 Binary files /dev/null and b/textures/armor/cannabis_armor_boots_foglie_preview.png differ diff --git a/textures/armor/cannabis_armor_boots_high_preview.png b/textures/armor/cannabis_armor_boots_high_preview.png new file mode 100644 index 0000000..e43ef74 Binary files /dev/null and b/textures/armor/cannabis_armor_boots_high_preview.png differ diff --git a/textures/armor/cannabis_armor_boots_tessuto_preview.png b/textures/armor/cannabis_armor_boots_tessuto_preview.png new file mode 100644 index 0000000..3a46b2e Binary files /dev/null and b/textures/armor/cannabis_armor_boots_tessuto_preview.png differ diff --git a/textures/armor/cannabis_armor_inv_boots_adminh.png b/textures/armor/cannabis_armor_inv_boots_adminh.png new file mode 100644 index 0000000..e1dcae5 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_boots_adminh.png differ diff --git a/textures/armor/cannabis_armor_inv_boots_fibra.png b/textures/armor/cannabis_armor_inv_boots_fibra.png new file mode 100644 index 0000000..090dded Binary files /dev/null and b/textures/armor/cannabis_armor_inv_boots_fibra.png differ diff --git a/textures/armor/cannabis_armor_inv_boots_foglie.png b/textures/armor/cannabis_armor_inv_boots_foglie.png new file mode 100644 index 0000000..b4ae6e6 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_boots_foglie.png differ diff --git a/textures/armor/cannabis_armor_inv_boots_high.png b/textures/armor/cannabis_armor_inv_boots_high.png new file mode 100644 index 0000000..05b9958 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_boots_high.png differ diff --git a/textures/armor/cannabis_armor_inv_boots_tessuto.png b/textures/armor/cannabis_armor_inv_boots_tessuto.png new file mode 100644 index 0000000..1bd1694 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_boots_tessuto.png differ diff --git a/textures/armor/cannabis_armor_inv_chestplate_adminh.png b/textures/armor/cannabis_armor_inv_chestplate_adminh.png new file mode 100644 index 0000000..70ac2a6 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_chestplate_adminh.png differ diff --git a/textures/armor/cannabis_armor_inv_chestplate_fibra.png b/textures/armor/cannabis_armor_inv_chestplate_fibra.png new file mode 100644 index 0000000..54141d8 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_chestplate_fibra.png differ diff --git a/textures/armor/cannabis_armor_inv_chestplate_foglie.png b/textures/armor/cannabis_armor_inv_chestplate_foglie.png new file mode 100644 index 0000000..d82df3f Binary files /dev/null and b/textures/armor/cannabis_armor_inv_chestplate_foglie.png differ diff --git a/textures/armor/cannabis_armor_inv_chestplate_high.png b/textures/armor/cannabis_armor_inv_chestplate_high.png new file mode 100644 index 0000000..6a3f64a Binary files /dev/null and b/textures/armor/cannabis_armor_inv_chestplate_high.png differ diff --git a/textures/armor/cannabis_armor_inv_chestplate_tessuto.png b/textures/armor/cannabis_armor_inv_chestplate_tessuto.png new file mode 100644 index 0000000..19134ca Binary files /dev/null and b/textures/armor/cannabis_armor_inv_chestplate_tessuto.png differ diff --git a/textures/armor/cannabis_armor_inv_helmet_adminh.png b/textures/armor/cannabis_armor_inv_helmet_adminh.png new file mode 100644 index 0000000..314f87e Binary files /dev/null and b/textures/armor/cannabis_armor_inv_helmet_adminh.png differ diff --git a/textures/armor/cannabis_armor_inv_helmet_fibra.png b/textures/armor/cannabis_armor_inv_helmet_fibra.png new file mode 100644 index 0000000..911c96d Binary files /dev/null and b/textures/armor/cannabis_armor_inv_helmet_fibra.png differ diff --git a/textures/armor/cannabis_armor_inv_helmet_foglie.png b/textures/armor/cannabis_armor_inv_helmet_foglie.png new file mode 100644 index 0000000..3492a91 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_helmet_foglie.png differ diff --git a/textures/armor/cannabis_armor_inv_helmet_high.png b/textures/armor/cannabis_armor_inv_helmet_high.png new file mode 100644 index 0000000..45f188a Binary files /dev/null and b/textures/armor/cannabis_armor_inv_helmet_high.png differ diff --git a/textures/armor/cannabis_armor_inv_helmet_tessuto.png b/textures/armor/cannabis_armor_inv_helmet_tessuto.png new file mode 100644 index 0000000..e6b919d Binary files /dev/null and b/textures/armor/cannabis_armor_inv_helmet_tessuto.png differ diff --git a/textures/armor/cannabis_armor_inv_leggings_adminh.png b/textures/armor/cannabis_armor_inv_leggings_adminh.png new file mode 100644 index 0000000..42ed5be Binary files /dev/null and b/textures/armor/cannabis_armor_inv_leggings_adminh.png differ diff --git a/textures/armor/cannabis_armor_inv_leggings_fibra.png b/textures/armor/cannabis_armor_inv_leggings_fibra.png new file mode 100644 index 0000000..eb18651 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_leggings_fibra.png differ diff --git a/textures/armor/cannabis_armor_inv_leggings_foglie.png b/textures/armor/cannabis_armor_inv_leggings_foglie.png new file mode 100644 index 0000000..47505fd Binary files /dev/null and b/textures/armor/cannabis_armor_inv_leggings_foglie.png differ diff --git a/textures/armor/cannabis_armor_inv_leggings_high.png b/textures/armor/cannabis_armor_inv_leggings_high.png new file mode 100644 index 0000000..5c0f592 Binary files /dev/null and b/textures/armor/cannabis_armor_inv_leggings_high.png differ diff --git a/textures/armor/cannabis_armor_inv_leggings_tessuto.png b/textures/armor/cannabis_armor_inv_leggings_tessuto.png new file mode 100644 index 0000000..390ac7b Binary files /dev/null and b/textures/armor/cannabis_armor_inv_leggings_tessuto.png differ diff --git a/textures/armor/cannabis_armor_leggings_high_preview.png b/textures/armor/cannabis_armor_leggings_high_preview.png new file mode 100644 index 0000000..efc33fe Binary files /dev/null and b/textures/armor/cannabis_armor_leggings_high_preview.png differ diff --git a/textures/armor/cannabis_armor_leggings_tessuto_preview.png b/textures/armor/cannabis_armor_leggings_tessuto_preview.png new file mode 100644 index 0000000..0d423ba Binary files /dev/null and b/textures/armor/cannabis_armor_leggings_tessuto_preview.png differ diff --git a/textures/armor/cannabis_boots_adminh.png b/textures/armor/cannabis_boots_adminh.png new file mode 100644 index 0000000..62748d4 Binary files /dev/null and b/textures/armor/cannabis_boots_adminh.png differ diff --git a/textures/armor/cannabis_boots_adminh_preview.png b/textures/armor/cannabis_boots_adminh_preview.png new file mode 100644 index 0000000..fed587e Binary files /dev/null and b/textures/armor/cannabis_boots_adminh_preview.png differ diff --git a/textures/armor/cannabis_boots_fibra.png b/textures/armor/cannabis_boots_fibra.png new file mode 100644 index 0000000..0cce3a7 Binary files /dev/null and b/textures/armor/cannabis_boots_fibra.png differ diff --git a/textures/armor/cannabis_boots_fibra_preview.png b/textures/armor/cannabis_boots_fibra_preview.png new file mode 100644 index 0000000..f60fa70 Binary files /dev/null and b/textures/armor/cannabis_boots_fibra_preview.png differ diff --git a/textures/armor/cannabis_boots_foglie.png b/textures/armor/cannabis_boots_foglie.png new file mode 100644 index 0000000..962b490 Binary files /dev/null and b/textures/armor/cannabis_boots_foglie.png differ diff --git a/textures/armor/cannabis_boots_foglie_preview.png b/textures/armor/cannabis_boots_foglie_preview.png new file mode 100644 index 0000000..9561447 Binary files /dev/null and b/textures/armor/cannabis_boots_foglie_preview.png differ diff --git a/textures/armor/cannabis_boots_high.png b/textures/armor/cannabis_boots_high.png new file mode 100644 index 0000000..6814250 Binary files /dev/null and b/textures/armor/cannabis_boots_high.png differ diff --git a/textures/armor/cannabis_boots_high_preview.png b/textures/armor/cannabis_boots_high_preview.png new file mode 100644 index 0000000..e43ef74 Binary files /dev/null and b/textures/armor/cannabis_boots_high_preview.png differ diff --git a/textures/armor/cannabis_boots_tessuto.png b/textures/armor/cannabis_boots_tessuto.png new file mode 100644 index 0000000..17b5869 Binary files /dev/null and b/textures/armor/cannabis_boots_tessuto.png differ diff --git a/textures/armor/cannabis_boots_tessuto_preview.png b/textures/armor/cannabis_boots_tessuto_preview.png new file mode 100644 index 0000000..3a46b2e Binary files /dev/null and b/textures/armor/cannabis_boots_tessuto_preview.png differ diff --git a/textures/armor/cannabis_chestplate_adminh.png b/textures/armor/cannabis_chestplate_adminh.png new file mode 100644 index 0000000..94ab92a Binary files /dev/null and b/textures/armor/cannabis_chestplate_adminh.png differ diff --git a/textures/armor/cannabis_chestplate_adminh_preview.png b/textures/armor/cannabis_chestplate_adminh_preview.png new file mode 100644 index 0000000..40a77ec Binary files /dev/null and b/textures/armor/cannabis_chestplate_adminh_preview.png differ diff --git a/textures/armor/cannabis_chestplate_fibra.png b/textures/armor/cannabis_chestplate_fibra.png new file mode 100644 index 0000000..40116ba Binary files /dev/null and b/textures/armor/cannabis_chestplate_fibra.png differ diff --git a/textures/armor/cannabis_chestplate_fibra_preview.png b/textures/armor/cannabis_chestplate_fibra_preview.png new file mode 100644 index 0000000..f4f12cb Binary files /dev/null and b/textures/armor/cannabis_chestplate_fibra_preview.png differ diff --git a/textures/armor/cannabis_chestplate_foglie.png b/textures/armor/cannabis_chestplate_foglie.png new file mode 100644 index 0000000..07d6304 Binary files /dev/null and b/textures/armor/cannabis_chestplate_foglie.png differ diff --git a/textures/armor/cannabis_chestplate_foglie_preview.png b/textures/armor/cannabis_chestplate_foglie_preview.png new file mode 100644 index 0000000..b84bf7b Binary files /dev/null and b/textures/armor/cannabis_chestplate_foglie_preview.png differ diff --git a/textures/armor/cannabis_chestplate_high.png b/textures/armor/cannabis_chestplate_high.png new file mode 100644 index 0000000..e0605b1 Binary files /dev/null and b/textures/armor/cannabis_chestplate_high.png differ diff --git a/textures/armor/cannabis_chestplate_high_preview.png b/textures/armor/cannabis_chestplate_high_preview.png new file mode 100644 index 0000000..7afc99c Binary files /dev/null and b/textures/armor/cannabis_chestplate_high_preview.png differ diff --git a/textures/armor/cannabis_chestplate_tessuto.png b/textures/armor/cannabis_chestplate_tessuto.png new file mode 100644 index 0000000..81358ae Binary files /dev/null and b/textures/armor/cannabis_chestplate_tessuto.png differ diff --git a/textures/armor/cannabis_chestplate_tessuto_preview.png b/textures/armor/cannabis_chestplate_tessuto_preview.png new file mode 100644 index 0000000..e38fbbc Binary files /dev/null and b/textures/armor/cannabis_chestplate_tessuto_preview.png differ diff --git a/textures/armor/cannabis_helmet_adminh.png b/textures/armor/cannabis_helmet_adminh.png new file mode 100644 index 0000000..13852df Binary files /dev/null and b/textures/armor/cannabis_helmet_adminh.png differ diff --git a/textures/armor/cannabis_helmet_adminh_preview.png b/textures/armor/cannabis_helmet_adminh_preview.png new file mode 100644 index 0000000..54dfcaf Binary files /dev/null and b/textures/armor/cannabis_helmet_adminh_preview.png differ diff --git a/textures/armor/cannabis_helmet_fibra.png b/textures/armor/cannabis_helmet_fibra.png new file mode 100644 index 0000000..c05b4c9 Binary files /dev/null and b/textures/armor/cannabis_helmet_fibra.png differ diff --git a/textures/armor/cannabis_helmet_fibra_preview.png b/textures/armor/cannabis_helmet_fibra_preview.png new file mode 100644 index 0000000..4cf12f2 Binary files /dev/null and b/textures/armor/cannabis_helmet_fibra_preview.png differ diff --git a/textures/armor/cannabis_helmet_foglie.png b/textures/armor/cannabis_helmet_foglie.png new file mode 100644 index 0000000..1567327 Binary files /dev/null and b/textures/armor/cannabis_helmet_foglie.png differ diff --git a/textures/armor/cannabis_helmet_foglie0.png b/textures/armor/cannabis_helmet_foglie0.png new file mode 100644 index 0000000..b6d9b7f Binary files /dev/null and b/textures/armor/cannabis_helmet_foglie0.png differ diff --git a/textures/armor/cannabis_helmet_foglie_preview.png b/textures/armor/cannabis_helmet_foglie_preview.png new file mode 100644 index 0000000..2224435 Binary files /dev/null and b/textures/armor/cannabis_helmet_foglie_preview.png differ diff --git a/textures/armor/cannabis_helmet_high.png b/textures/armor/cannabis_helmet_high.png new file mode 100644 index 0000000..a99b95a Binary files /dev/null and b/textures/armor/cannabis_helmet_high.png differ diff --git a/textures/armor/cannabis_helmet_high_preview.png b/textures/armor/cannabis_helmet_high_preview.png new file mode 100644 index 0000000..0ebbbf6 Binary files /dev/null and b/textures/armor/cannabis_helmet_high_preview.png differ diff --git a/textures/armor/cannabis_helmet_tessuto.png b/textures/armor/cannabis_helmet_tessuto.png new file mode 100644 index 0000000..10ea184 Binary files /dev/null and b/textures/armor/cannabis_helmet_tessuto.png differ diff --git a/textures/armor/cannabis_helmet_tessuto_preview.png b/textures/armor/cannabis_helmet_tessuto_preview.png new file mode 100644 index 0000000..f321512 Binary files /dev/null and b/textures/armor/cannabis_helmet_tessuto_preview.png differ diff --git a/textures/armor/cannabis_inv_helmet_fibra.png b/textures/armor/cannabis_inv_helmet_fibra.png new file mode 100644 index 0000000..afc846e Binary files /dev/null and b/textures/armor/cannabis_inv_helmet_fibra.png differ diff --git a/textures/armor/cannabis_inv_helmet_foglie.png b/textures/armor/cannabis_inv_helmet_foglie.png new file mode 100644 index 0000000..3492a91 Binary files /dev/null and b/textures/armor/cannabis_inv_helmet_foglie.png differ diff --git a/textures/armor/cannabis_inv_helmet_high.png b/textures/armor/cannabis_inv_helmet_high.png new file mode 100644 index 0000000..45f188a Binary files /dev/null and b/textures/armor/cannabis_inv_helmet_high.png differ diff --git a/textures/armor/cannabis_inv_helmet_tessuto.png b/textures/armor/cannabis_inv_helmet_tessuto.png new file mode 100644 index 0000000..e6b919d Binary files /dev/null and b/textures/armor/cannabis_inv_helmet_tessuto.png differ diff --git a/textures/armor/cannabis_leggings_adminh.png b/textures/armor/cannabis_leggings_adminh.png new file mode 100644 index 0000000..de5ec08 Binary files /dev/null and b/textures/armor/cannabis_leggings_adminh.png differ diff --git a/textures/armor/cannabis_leggings_adminh_preview.png b/textures/armor/cannabis_leggings_adminh_preview.png new file mode 100644 index 0000000..e168396 Binary files /dev/null and b/textures/armor/cannabis_leggings_adminh_preview.png differ diff --git a/textures/armor/cannabis_leggings_fibra.png b/textures/armor/cannabis_leggings_fibra.png new file mode 100644 index 0000000..d8adc8b Binary files /dev/null and b/textures/armor/cannabis_leggings_fibra.png differ diff --git a/textures/armor/cannabis_leggings_fibra_preview.png b/textures/armor/cannabis_leggings_fibra_preview.png new file mode 100644 index 0000000..cff5c6e Binary files /dev/null and b/textures/armor/cannabis_leggings_fibra_preview.png differ diff --git a/textures/armor/cannabis_leggings_foglie.png b/textures/armor/cannabis_leggings_foglie.png new file mode 100644 index 0000000..3b0e79f Binary files /dev/null and b/textures/armor/cannabis_leggings_foglie.png differ diff --git a/textures/armor/cannabis_leggings_foglie_preview.png b/textures/armor/cannabis_leggings_foglie_preview.png new file mode 100644 index 0000000..9fb437e Binary files /dev/null and b/textures/armor/cannabis_leggings_foglie_preview.png differ diff --git a/textures/armor/cannabis_leggings_high.png b/textures/armor/cannabis_leggings_high.png new file mode 100644 index 0000000..436afe6 Binary files /dev/null and b/textures/armor/cannabis_leggings_high.png differ diff --git a/textures/armor/cannabis_leggings_high_preview.png b/textures/armor/cannabis_leggings_high_preview.png new file mode 100644 index 0000000..efc33fe Binary files /dev/null and b/textures/armor/cannabis_leggings_high_preview.png differ diff --git a/textures/armor/cannabis_leggings_tessuto.png b/textures/armor/cannabis_leggings_tessuto.png new file mode 100644 index 0000000..db453cf Binary files /dev/null and b/textures/armor/cannabis_leggings_tessuto.png differ diff --git a/textures/armor/cannabis_leggings_tessuto_preview.png b/textures/armor/cannabis_leggings_tessuto_preview.png new file mode 100644 index 0000000..0d423ba Binary files /dev/null and b/textures/armor/cannabis_leggings_tessuto_preview.png differ diff --git a/textures/armor/ingot/cannabis_adminh_ingot.png b/textures/armor/ingot/cannabis_adminh_ingot.png new file mode 100644 index 0000000..a3546d8 Binary files /dev/null and b/textures/armor/ingot/cannabis_adminh_ingot.png differ diff --git a/textures/armor/ingot/cannabis_fibra_ingot.png b/textures/armor/ingot/cannabis_fibra_ingot.png new file mode 100644 index 0000000..546b67d Binary files /dev/null and b/textures/armor/ingot/cannabis_fibra_ingot.png differ diff --git a/textures/armor/ingot/cannabis_foglie_ingot.png b/textures/armor/ingot/cannabis_foglie_ingot.png new file mode 100644 index 0000000..fecc945 Binary files /dev/null and b/textures/armor/ingot/cannabis_foglie_ingot.png differ diff --git a/textures/armor/ingot/cannabis_high_performance_ingot.png b/textures/armor/ingot/cannabis_high_performance_ingot.png new file mode 100644 index 0000000..b0d63dc Binary files /dev/null and b/textures/armor/ingot/cannabis_high_performance_ingot.png differ diff --git a/textures/armor/ingot/cannabis_mixed_hr_ingot.png b/textures/armor/ingot/cannabis_mixed_hr_ingot.png new file mode 100644 index 0000000..519d4e2 Binary files /dev/null and b/textures/armor/ingot/cannabis_mixed_hr_ingot.png differ diff --git a/textures/armor/ingot/cannabis_tessuto_ingot.png b/textures/armor/ingot/cannabis_tessuto_ingot.png new file mode 100644 index 0000000..a142039 Binary files /dev/null and b/textures/armor/ingot/cannabis_tessuto_ingot.png differ diff --git a/textures/block/cannabis_adminh_block.png b/textures/block/cannabis_adminh_block.png new file mode 100644 index 0000000..1ed55de Binary files /dev/null and b/textures/block/cannabis_adminh_block.png differ diff --git a/textures/block/cannabis_fibra_block.png b/textures/block/cannabis_fibra_block.png new file mode 100644 index 0000000..34aed28 Binary files /dev/null and b/textures/block/cannabis_fibra_block.png differ diff --git a/textures/block/cannabis_foglie_block.png b/textures/block/cannabis_foglie_block.png new file mode 100644 index 0000000..8c616a7 Binary files /dev/null and b/textures/block/cannabis_foglie_block.png differ diff --git a/textures/block/cannabis_foglie_ice_block.png b/textures/block/cannabis_foglie_ice_block.png new file mode 100644 index 0000000..c05c960 Binary files /dev/null and b/textures/block/cannabis_foglie_ice_block.png differ diff --git a/textures/block/cannabis_foglie_red_block.png b/textures/block/cannabis_foglie_red_block.png new file mode 100644 index 0000000..75f3111 Binary files /dev/null and b/textures/block/cannabis_foglie_red_block.png differ diff --git a/textures/block/cannabis_high_performance_block.png b/textures/block/cannabis_high_performance_block.png new file mode 100644 index 0000000..80e188b Binary files /dev/null and b/textures/block/cannabis_high_performance_block.png differ diff --git a/textures/block/cannabis_tessuto_block.png b/textures/block/cannabis_tessuto_block.png new file mode 100644 index 0000000..9a92762 Binary files /dev/null and b/textures/block/cannabis_tessuto_block.png differ diff --git a/textures/block/cannabis_tessuto_block0.png b/textures/block/cannabis_tessuto_block0.png new file mode 100644 index 0000000..8604e7c Binary files /dev/null and b/textures/block/cannabis_tessuto_block0.png differ diff --git a/textures/block/hp_block_canapa.png b/textures/block/hp_block_canapa.png new file mode 100644 index 0000000..e90e3d7 Binary files /dev/null and b/textures/block/hp_block_canapa.png differ diff --git a/textures/clothing/blue.png b/textures/clothing/blue.png new file mode 100644 index 0000000..9797c7a Binary files /dev/null and b/textures/clothing/blue.png differ diff --git a/textures/clothing/clothing_inv_cape_c.png b/textures/clothing/clothing_inv_cape_c.png new file mode 100644 index 0000000..69a15ae Binary files /dev/null and b/textures/clothing/clothing_inv_cape_c.png differ diff --git a/textures/clothing/clothing_inv_cape_ci.png b/textures/clothing/clothing_inv_cape_ci.png new file mode 100644 index 0000000..d00dea2 Binary files /dev/null and b/textures/clothing/clothing_inv_cape_ci.png differ diff --git a/textures/clothing/clothing_inv_cape_cr.png b/textures/clothing/clothing_inv_cape_cr.png new file mode 100644 index 0000000..89909f1 Binary files /dev/null and b/textures/clothing/clothing_inv_cape_cr.png differ diff --git a/textures/clothing/clothing_inv_cape_jam.png b/textures/clothing/clothing_inv_cape_jam.png new file mode 100644 index 0000000..35d5351 Binary files /dev/null and b/textures/clothing/clothing_inv_cape_jam.png differ diff --git a/textures/clothing/clothing_inv_cape_t.png b/textures/clothing/clothing_inv_cape_t.png new file mode 100644 index 0000000..6ba7499 Binary files /dev/null and b/textures/clothing/clothing_inv_cape_t.png differ diff --git a/textures/clothing/clothing_inv_cape_u.png b/textures/clothing/clothing_inv_cape_u.png new file mode 100644 index 0000000..b63e7cb Binary files /dev/null and b/textures/clothing/clothing_inv_cape_u.png differ diff --git a/textures/clothing/clothing_inv_glove_left_c.png b/textures/clothing/clothing_inv_glove_left_c.png new file mode 100644 index 0000000..4a95da6 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_c.png differ diff --git a/textures/clothing/clothing_inv_glove_left_ci.png b/textures/clothing/clothing_inv_glove_left_ci.png new file mode 100644 index 0000000..534e989 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_ci.png differ diff --git a/textures/clothing/clothing_inv_glove_left_cr.png b/textures/clothing/clothing_inv_glove_left_cr.png new file mode 100644 index 0000000..c1f2932 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_cr.png differ diff --git a/textures/clothing/clothing_inv_glove_left_jam.png b/textures/clothing/clothing_inv_glove_left_jam.png new file mode 100644 index 0000000..b913d9c Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_jam.png differ diff --git a/textures/clothing/clothing_inv_glove_left_t.png b/textures/clothing/clothing_inv_glove_left_t.png new file mode 100644 index 0000000..d67e2da Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_t.png differ diff --git a/textures/clothing/clothing_inv_glove_left_u.png b/textures/clothing/clothing_inv_glove_left_u.png new file mode 100644 index 0000000..f30d734 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_left_u.png differ diff --git a/textures/clothing/clothing_inv_glove_right_c.png b/textures/clothing/clothing_inv_glove_right_c.png new file mode 100644 index 0000000..ce8b0d8 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_c.png differ diff --git a/textures/clothing/clothing_inv_glove_right_ci.png b/textures/clothing/clothing_inv_glove_right_ci.png new file mode 100644 index 0000000..cde3bb3 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_ci.png differ diff --git a/textures/clothing/clothing_inv_glove_right_cr.png b/textures/clothing/clothing_inv_glove_right_cr.png new file mode 100644 index 0000000..0fffdf8 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_cr.png differ diff --git a/textures/clothing/clothing_inv_glove_right_jam.png b/textures/clothing/clothing_inv_glove_right_jam.png new file mode 100644 index 0000000..b43fddc Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_jam.png differ diff --git a/textures/clothing/clothing_inv_glove_right_t.png b/textures/clothing/clothing_inv_glove_right_t.png new file mode 100644 index 0000000..d47e9c5 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_t.png differ diff --git a/textures/clothing/clothing_inv_glove_right_u.png b/textures/clothing/clothing_inv_glove_right_u.png new file mode 100644 index 0000000..1331e85 Binary files /dev/null and b/textures/clothing/clothing_inv_glove_right_u.png differ diff --git a/textures/clothing/clothing_inv_gloves_c.png b/textures/clothing/clothing_inv_gloves_c.png new file mode 100644 index 0000000..56ef8ed Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_c.png differ diff --git a/textures/clothing/clothing_inv_gloves_ci.png b/textures/clothing/clothing_inv_gloves_ci.png new file mode 100644 index 0000000..8d7876a Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_ci.png differ diff --git a/textures/clothing/clothing_inv_gloves_cr.png b/textures/clothing/clothing_inv_gloves_cr.png new file mode 100644 index 0000000..f0f6eab Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_cr.png differ diff --git a/textures/clothing/clothing_inv_gloves_jam.png b/textures/clothing/clothing_inv_gloves_jam.png new file mode 100644 index 0000000..7657334 Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_jam.png differ diff --git a/textures/clothing/clothing_inv_gloves_t.png b/textures/clothing/clothing_inv_gloves_t.png new file mode 100644 index 0000000..dda679c Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_t.png differ diff --git a/textures/clothing/clothing_inv_gloves_u.png b/textures/clothing/clothing_inv_gloves_u.png new file mode 100644 index 0000000..402b600 Binary files /dev/null and b/textures/clothing/clothing_inv_gloves_u.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_c.png b/textures/clothing/clothing_inv_hood_mask_c.png new file mode 100644 index 0000000..0336a28 Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_c.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_ci.png b/textures/clothing/clothing_inv_hood_mask_ci.png new file mode 100644 index 0000000..6bfd4a3 Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_ci.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_cr.png b/textures/clothing/clothing_inv_hood_mask_cr.png new file mode 100644 index 0000000..caac6ca Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_cr.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_jam.png b/textures/clothing/clothing_inv_hood_mask_jam.png new file mode 100644 index 0000000..9e29a88 Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_jam.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_t.png b/textures/clothing/clothing_inv_hood_mask_t.png new file mode 100644 index 0000000..898ca6d Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_t.png differ diff --git a/textures/clothing/clothing_inv_hood_mask_u.png b/textures/clothing/clothing_inv_hood_mask_u.png new file mode 100644 index 0000000..488b538 Binary files /dev/null and b/textures/clothing/clothing_inv_hood_mask_u.png differ diff --git a/textures/clothing/clothing_inv_pants_c.png b/textures/clothing/clothing_inv_pants_c.png new file mode 100644 index 0000000..b2046b9 Binary files /dev/null and b/textures/clothing/clothing_inv_pants_c.png differ diff --git a/textures/clothing/clothing_inv_pants_ci.png b/textures/clothing/clothing_inv_pants_ci.png new file mode 100644 index 0000000..3ff5aa9 Binary files /dev/null and b/textures/clothing/clothing_inv_pants_ci.png differ diff --git a/textures/clothing/clothing_inv_pants_cr.png b/textures/clothing/clothing_inv_pants_cr.png new file mode 100644 index 0000000..b68e563 Binary files /dev/null and b/textures/clothing/clothing_inv_pants_cr.png differ diff --git a/textures/clothing/clothing_inv_pants_jam.png b/textures/clothing/clothing_inv_pants_jam.png new file mode 100644 index 0000000..2490b39 Binary files /dev/null and b/textures/clothing/clothing_inv_pants_jam.png differ diff --git a/textures/clothing/clothing_inv_pants_t.png b/textures/clothing/clothing_inv_pants_t.png new file mode 100644 index 0000000..04853cc Binary files /dev/null and b/textures/clothing/clothing_inv_pants_t.png differ diff --git a/textures/clothing/clothing_inv_pants_u.png b/textures/clothing/clothing_inv_pants_u.png new file mode 100644 index 0000000..76f5f52 Binary files /dev/null and b/textures/clothing/clothing_inv_pants_u.png differ diff --git a/textures/clothing/clothing_inv_shirt_c.png b/textures/clothing/clothing_inv_shirt_c.png new file mode 100644 index 0000000..7246a03 Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_c.png differ diff --git a/textures/clothing/clothing_inv_shirt_ci.png b/textures/clothing/clothing_inv_shirt_ci.png new file mode 100644 index 0000000..7ac0e1e Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_ci.png differ diff --git a/textures/clothing/clothing_inv_shirt_cr.png b/textures/clothing/clothing_inv_shirt_cr.png new file mode 100644 index 0000000..0c82805 Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_cr.png differ diff --git a/textures/clothing/clothing_inv_shirt_jam.png b/textures/clothing/clothing_inv_shirt_jam.png new file mode 100644 index 0000000..cde54f3 Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_jam.png differ diff --git a/textures/clothing/clothing_inv_shirt_t.png b/textures/clothing/clothing_inv_shirt_t.png new file mode 100644 index 0000000..078fc82 Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_t.png differ diff --git a/textures/clothing/clothing_inv_shirt_u.png b/textures/clothing/clothing_inv_shirt_u.png new file mode 100644 index 0000000..2192581 Binary files /dev/null and b/textures/clothing/clothing_inv_shirt_u.png differ diff --git a/textures/clothing/clothing_inv_shorts_c.png b/textures/clothing/clothing_inv_shorts_c.png new file mode 100644 index 0000000..71fddd9 Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_c.png differ diff --git a/textures/clothing/clothing_inv_shorts_ci.png b/textures/clothing/clothing_inv_shorts_ci.png new file mode 100644 index 0000000..4d1f4c0 Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_ci.png differ diff --git a/textures/clothing/clothing_inv_shorts_cr.png b/textures/clothing/clothing_inv_shorts_cr.png new file mode 100644 index 0000000..7a9cb5b Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_cr.png differ diff --git a/textures/clothing/clothing_inv_shorts_jam.png b/textures/clothing/clothing_inv_shorts_jam.png new file mode 100644 index 0000000..f10033d Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_jam.png differ diff --git a/textures/clothing/clothing_inv_shorts_t.png b/textures/clothing/clothing_inv_shorts_t.png new file mode 100644 index 0000000..4299c09 Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_t.png differ diff --git a/textures/clothing/clothing_inv_shorts_u.png b/textures/clothing/clothing_inv_shorts_u.png new file mode 100644 index 0000000..2b6984b Binary files /dev/null and b/textures/clothing/clothing_inv_shorts_u.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_c.png b/textures/clothing/clothing_inv_shortshirt_c.png new file mode 100644 index 0000000..d2f9041 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_c.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_ci.png b/textures/clothing/clothing_inv_shortshirt_ci.png new file mode 100644 index 0000000..5982653 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_ci.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_cr.png b/textures/clothing/clothing_inv_shortshirt_cr.png new file mode 100644 index 0000000..3e3b433 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_cr.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_jam.png b/textures/clothing/clothing_inv_shortshirt_jam.png new file mode 100644 index 0000000..cfb2455 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_jam.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_t.png b/textures/clothing/clothing_inv_shortshirt_t.png new file mode 100644 index 0000000..0899074 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_t.png differ diff --git a/textures/clothing/clothing_inv_shortshirt_u.png b/textures/clothing/clothing_inv_shortshirt_u.png new file mode 100644 index 0000000..754b6a4 Binary files /dev/null and b/textures/clothing/clothing_inv_shortshirt_u.png differ diff --git a/textures/clothing/clothing_inv_skullcap_c.png b/textures/clothing/clothing_inv_skullcap_c.png new file mode 100644 index 0000000..cd71aad Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_c.png differ diff --git a/textures/clothing/clothing_inv_skullcap_ci.png b/textures/clothing/clothing_inv_skullcap_ci.png new file mode 100644 index 0000000..8ac8d5c Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_ci.png differ diff --git a/textures/clothing/clothing_inv_skullcap_cr.png b/textures/clothing/clothing_inv_skullcap_cr.png new file mode 100644 index 0000000..ad761ac Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_cr.png differ diff --git a/textures/clothing/clothing_inv_skullcap_jam.png b/textures/clothing/clothing_inv_skullcap_jam.png new file mode 100644 index 0000000..9a6d04e Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_jam.png differ diff --git a/textures/clothing/clothing_inv_skullcap_t.png b/textures/clothing/clothing_inv_skullcap_t.png new file mode 100644 index 0000000..4f29156 Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_t.png differ diff --git a/textures/clothing/clothing_inv_skullcap_u.png b/textures/clothing/clothing_inv_skullcap_u.png new file mode 100644 index 0000000..3978ef0 Binary files /dev/null and b/textures/clothing/clothing_inv_skullcap_u.png differ diff --git a/textures/clothing/clothing_inv_undershirt_c.png b/textures/clothing/clothing_inv_undershirt_c.png new file mode 100644 index 0000000..9f9bfc5 Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_c.png differ diff --git a/textures/clothing/clothing_inv_undershirt_ci.png b/textures/clothing/clothing_inv_undershirt_ci.png new file mode 100644 index 0000000..18f957c Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_ci.png differ diff --git a/textures/clothing/clothing_inv_undershirt_cr.png b/textures/clothing/clothing_inv_undershirt_cr.png new file mode 100644 index 0000000..8babb85 Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_cr.png differ diff --git a/textures/clothing/clothing_inv_undershirt_jam.png b/textures/clothing/clothing_inv_undershirt_jam.png new file mode 100644 index 0000000..b4f3dbc Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_jam.png differ diff --git a/textures/clothing/clothing_inv_undershirt_t.png b/textures/clothing/clothing_inv_undershirt_t.png new file mode 100644 index 0000000..0061ad5 Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_t.png differ diff --git a/textures/clothing/clothing_inv_undershirt_u.png b/textures/clothing/clothing_inv_undershirt_u.png new file mode 100644 index 0000000..d70c474 Binary files /dev/null and b/textures/clothing/clothing_inv_undershirt_u.png differ diff --git a/textures/clothing/clothing_uv_cape_c.png b/textures/clothing/clothing_uv_cape_c.png new file mode 100644 index 0000000..33cbbc2 Binary files /dev/null and b/textures/clothing/clothing_uv_cape_c.png differ diff --git a/textures/clothing/clothing_uv_cape_ci.png b/textures/clothing/clothing_uv_cape_ci.png new file mode 100644 index 0000000..27cef30 Binary files /dev/null and b/textures/clothing/clothing_uv_cape_ci.png differ diff --git a/textures/clothing/clothing_uv_cape_cr.png b/textures/clothing/clothing_uv_cape_cr.png new file mode 100644 index 0000000..9126c35 Binary files /dev/null and b/textures/clothing/clothing_uv_cape_cr.png differ diff --git a/textures/clothing/clothing_uv_cape_jam.png b/textures/clothing/clothing_uv_cape_jam.png new file mode 100644 index 0000000..4db26e4 Binary files /dev/null and b/textures/clothing/clothing_uv_cape_jam.png differ diff --git a/textures/clothing/clothing_uv_cape_t.png b/textures/clothing/clothing_uv_cape_t.png new file mode 100644 index 0000000..932e3ae Binary files /dev/null and b/textures/clothing/clothing_uv_cape_t.png differ diff --git a/textures/clothing/clothing_uv_cape_u.png b/textures/clothing/clothing_uv_cape_u.png new file mode 100644 index 0000000..087dcdc Binary files /dev/null and b/textures/clothing/clothing_uv_cape_u.png differ diff --git a/textures/clothing/clothing_uv_glove_left_c.png b/textures/clothing/clothing_uv_glove_left_c.png new file mode 100644 index 0000000..110f772 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_c.png differ diff --git a/textures/clothing/clothing_uv_glove_left_ci.png b/textures/clothing/clothing_uv_glove_left_ci.png new file mode 100644 index 0000000..60833a0 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_ci.png differ diff --git a/textures/clothing/clothing_uv_glove_left_cr.png b/textures/clothing/clothing_uv_glove_left_cr.png new file mode 100644 index 0000000..4a59e34 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_cr.png differ diff --git a/textures/clothing/clothing_uv_glove_left_jam.png b/textures/clothing/clothing_uv_glove_left_jam.png new file mode 100644 index 0000000..2247830 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_jam.png differ diff --git a/textures/clothing/clothing_uv_glove_left_t.png b/textures/clothing/clothing_uv_glove_left_t.png new file mode 100644 index 0000000..e56475e Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_t.png differ diff --git a/textures/clothing/clothing_uv_glove_left_u.png b/textures/clothing/clothing_uv_glove_left_u.png new file mode 100644 index 0000000..0c3098e Binary files /dev/null and b/textures/clothing/clothing_uv_glove_left_u.png differ diff --git a/textures/clothing/clothing_uv_glove_right_c.png b/textures/clothing/clothing_uv_glove_right_c.png new file mode 100644 index 0000000..a0e6c9c Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_c.png differ diff --git a/textures/clothing/clothing_uv_glove_right_ci.png b/textures/clothing/clothing_uv_glove_right_ci.png new file mode 100644 index 0000000..c9b3a04 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_ci.png differ diff --git a/textures/clothing/clothing_uv_glove_right_cr.png b/textures/clothing/clothing_uv_glove_right_cr.png new file mode 100644 index 0000000..6d1519b Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_cr.png differ diff --git a/textures/clothing/clothing_uv_glove_right_jam.png b/textures/clothing/clothing_uv_glove_right_jam.png new file mode 100644 index 0000000..900dcd1 Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_jam.png differ diff --git a/textures/clothing/clothing_uv_glove_right_t.png b/textures/clothing/clothing_uv_glove_right_t.png new file mode 100644 index 0000000..635d59a Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_t.png differ diff --git a/textures/clothing/clothing_uv_glove_right_u.png b/textures/clothing/clothing_uv_glove_right_u.png new file mode 100644 index 0000000..6df52fb Binary files /dev/null and b/textures/clothing/clothing_uv_glove_right_u.png differ diff --git a/textures/clothing/clothing_uv_gloves_c.png b/textures/clothing/clothing_uv_gloves_c.png new file mode 100644 index 0000000..c7f65bd Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_c.png differ diff --git a/textures/clothing/clothing_uv_gloves_ci.png b/textures/clothing/clothing_uv_gloves_ci.png new file mode 100644 index 0000000..59c9d40 Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_ci.png differ diff --git a/textures/clothing/clothing_uv_gloves_cr.png b/textures/clothing/clothing_uv_gloves_cr.png new file mode 100644 index 0000000..186d35e Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_cr.png differ diff --git a/textures/clothing/clothing_uv_gloves_jam.png b/textures/clothing/clothing_uv_gloves_jam.png new file mode 100644 index 0000000..4f8a20e Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_jam.png differ diff --git a/textures/clothing/clothing_uv_gloves_t.png b/textures/clothing/clothing_uv_gloves_t.png new file mode 100644 index 0000000..66aebab Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_t.png differ diff --git a/textures/clothing/clothing_uv_gloves_u.png b/textures/clothing/clothing_uv_gloves_u.png new file mode 100644 index 0000000..d77e50a Binary files /dev/null and b/textures/clothing/clothing_uv_gloves_u.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_c.png b/textures/clothing/clothing_uv_hood_mask_c.png new file mode 100644 index 0000000..9ee01f2 Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_c.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_ci.png b/textures/clothing/clothing_uv_hood_mask_ci.png new file mode 100644 index 0000000..7726aa9 Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_ci.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_cr.png b/textures/clothing/clothing_uv_hood_mask_cr.png new file mode 100644 index 0000000..4a70267 Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_cr.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_jam.png b/textures/clothing/clothing_uv_hood_mask_jam.png new file mode 100644 index 0000000..70db8cc Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_jam.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_t.png b/textures/clothing/clothing_uv_hood_mask_t.png new file mode 100644 index 0000000..c7353d9 Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_t.png differ diff --git a/textures/clothing/clothing_uv_hood_mask_u.png b/textures/clothing/clothing_uv_hood_mask_u.png new file mode 100644 index 0000000..80814a6 Binary files /dev/null and b/textures/clothing/clothing_uv_hood_mask_u.png differ diff --git a/textures/clothing/clothing_uv_pants_c.png b/textures/clothing/clothing_uv_pants_c.png new file mode 100644 index 0000000..5109768 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_c.png differ diff --git a/textures/clothing/clothing_uv_pants_ci.png b/textures/clothing/clothing_uv_pants_ci.png new file mode 100644 index 0000000..cd9e416 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_ci.png differ diff --git a/textures/clothing/clothing_uv_pants_cr.png b/textures/clothing/clothing_uv_pants_cr.png new file mode 100644 index 0000000..d8be100 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_cr.png differ diff --git a/textures/clothing/clothing_uv_pants_jam.png b/textures/clothing/clothing_uv_pants_jam.png new file mode 100644 index 0000000..f8a31f9 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_jam.png differ diff --git a/textures/clothing/clothing_uv_pants_t.png b/textures/clothing/clothing_uv_pants_t.png new file mode 100644 index 0000000..73876a7 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_t.png differ diff --git a/textures/clothing/clothing_uv_pants_u.png b/textures/clothing/clothing_uv_pants_u.png new file mode 100644 index 0000000..1e75cf9 Binary files /dev/null and b/textures/clothing/clothing_uv_pants_u.png differ diff --git a/textures/clothing/clothing_uv_shirt_c.png b/textures/clothing/clothing_uv_shirt_c.png new file mode 100644 index 0000000..b3e8839 Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_c.png differ diff --git a/textures/clothing/clothing_uv_shirt_ci.png b/textures/clothing/clothing_uv_shirt_ci.png new file mode 100644 index 0000000..bff47b3 Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_ci.png differ diff --git a/textures/clothing/clothing_uv_shirt_cr.png b/textures/clothing/clothing_uv_shirt_cr.png new file mode 100644 index 0000000..558371e Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_cr.png differ diff --git a/textures/clothing/clothing_uv_shirt_jam.png b/textures/clothing/clothing_uv_shirt_jam.png new file mode 100644 index 0000000..8240bcd Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_jam.png differ diff --git a/textures/clothing/clothing_uv_shirt_t.png b/textures/clothing/clothing_uv_shirt_t.png new file mode 100644 index 0000000..19c027f Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_t.png differ diff --git a/textures/clothing/clothing_uv_shirt_u.png b/textures/clothing/clothing_uv_shirt_u.png new file mode 100644 index 0000000..16e9682 Binary files /dev/null and b/textures/clothing/clothing_uv_shirt_u.png differ diff --git a/textures/clothing/clothing_uv_shorts_c.png b/textures/clothing/clothing_uv_shorts_c.png new file mode 100644 index 0000000..9694488 Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_c.png differ diff --git a/textures/clothing/clothing_uv_shorts_ci.png b/textures/clothing/clothing_uv_shorts_ci.png new file mode 100644 index 0000000..bd4ac4c Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_ci.png differ diff --git a/textures/clothing/clothing_uv_shorts_cr.png b/textures/clothing/clothing_uv_shorts_cr.png new file mode 100644 index 0000000..fd30e29 Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_cr.png differ diff --git a/textures/clothing/clothing_uv_shorts_jam.png b/textures/clothing/clothing_uv_shorts_jam.png new file mode 100644 index 0000000..d551631 Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_jam.png differ diff --git a/textures/clothing/clothing_uv_shorts_t.png b/textures/clothing/clothing_uv_shorts_t.png new file mode 100644 index 0000000..9c36bb5 Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_t.png differ diff --git a/textures/clothing/clothing_uv_shorts_u.png b/textures/clothing/clothing_uv_shorts_u.png new file mode 100644 index 0000000..0739ec7 Binary files /dev/null and b/textures/clothing/clothing_uv_shorts_u.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_c.png b/textures/clothing/clothing_uv_shortshirt_c.png new file mode 100644 index 0000000..aabbad5 Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_c.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_ci.png b/textures/clothing/clothing_uv_shortshirt_ci.png new file mode 100644 index 0000000..36fcfb8 Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_ci.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_cr.png b/textures/clothing/clothing_uv_shortshirt_cr.png new file mode 100644 index 0000000..1ee84d9 Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_cr.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_jam.png b/textures/clothing/clothing_uv_shortshirt_jam.png new file mode 100644 index 0000000..ab68e3e Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_jam.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_t.png b/textures/clothing/clothing_uv_shortshirt_t.png new file mode 100644 index 0000000..c39f6a6 Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_t.png differ diff --git a/textures/clothing/clothing_uv_shortshirt_u.png b/textures/clothing/clothing_uv_shortshirt_u.png new file mode 100644 index 0000000..e0582a7 Binary files /dev/null and b/textures/clothing/clothing_uv_shortshirt_u.png differ diff --git a/textures/clothing/clothing_uv_skullcap_c.png b/textures/clothing/clothing_uv_skullcap_c.png new file mode 100644 index 0000000..d9c0ca6 Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_c.png differ diff --git a/textures/clothing/clothing_uv_skullcap_ci.png b/textures/clothing/clothing_uv_skullcap_ci.png new file mode 100644 index 0000000..d6a32ff Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_ci.png differ diff --git a/textures/clothing/clothing_uv_skullcap_cr.png b/textures/clothing/clothing_uv_skullcap_cr.png new file mode 100644 index 0000000..190c25e Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_cr.png differ diff --git a/textures/clothing/clothing_uv_skullcap_jam.png b/textures/clothing/clothing_uv_skullcap_jam.png new file mode 100644 index 0000000..aa1e28c Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_jam.png differ diff --git a/textures/clothing/clothing_uv_skullcap_t.png b/textures/clothing/clothing_uv_skullcap_t.png new file mode 100644 index 0000000..65f9a05 Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_t.png differ diff --git a/textures/clothing/clothing_uv_skullcap_u.png b/textures/clothing/clothing_uv_skullcap_u.png new file mode 100644 index 0000000..6eac2f8 Binary files /dev/null and b/textures/clothing/clothing_uv_skullcap_u.png differ diff --git a/textures/clothing/clothing_uv_undershirt_c.png b/textures/clothing/clothing_uv_undershirt_c.png new file mode 100644 index 0000000..04091bb Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_c.png differ diff --git a/textures/clothing/clothing_uv_undershirt_ci.png b/textures/clothing/clothing_uv_undershirt_ci.png new file mode 100644 index 0000000..3b6e1a1 Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_ci.png differ diff --git a/textures/clothing/clothing_uv_undershirt_cr.png b/textures/clothing/clothing_uv_undershirt_cr.png new file mode 100644 index 0000000..181f3e4 Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_cr.png differ diff --git a/textures/clothing/clothing_uv_undershirt_jam.png b/textures/clothing/clothing_uv_undershirt_jam.png new file mode 100644 index 0000000..e96c0d7 Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_jam.png differ diff --git a/textures/clothing/clothing_uv_undershirt_t.png b/textures/clothing/clothing_uv_undershirt_t.png new file mode 100644 index 0000000..c8a503b Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_t.png differ diff --git a/textures/clothing/clothing_uv_undershirt_u.png b/textures/clothing/clothing_uv_undershirt_u.png new file mode 100644 index 0000000..d689ee1 Binary files /dev/null and b/textures/clothing/clothing_uv_undershirt_u.png differ diff --git a/textures/clothing/cyan.png b/textures/clothing/cyan.png new file mode 100644 index 0000000..e6b3f54 Binary files /dev/null and b/textures/clothing/cyan.png differ diff --git a/textures/clothing/green.png b/textures/clothing/green.png new file mode 100644 index 0000000..fc429a1 Binary files /dev/null and b/textures/clothing/green.png differ diff --git a/textures/clothing/grey.png b/textures/clothing/grey.png new file mode 100644 index 0000000..0ae7bf3 Binary files /dev/null and b/textures/clothing/grey.png differ diff --git a/textures/clothing/list.txt b/textures/clothing/list.txt new file mode 100644 index 0000000..5d600a4 --- /dev/null +++ b/textures/clothing/list.txt @@ -0,0 +1,11 @@ +-shorts +-shortshirt +-skullcap +-undershirt +-cape +hood_mask +pants +-shirt +-glove_left +-glove_right +-gloves \ No newline at end of file diff --git a/textures/clothing/orange.png b/textures/clothing/orange.png new file mode 100644 index 0000000..ab3cfb1 Binary files /dev/null and b/textures/clothing/orange.png differ diff --git a/textures/clothing/pink.png b/textures/clothing/pink.png new file mode 100644 index 0000000..393247b Binary files /dev/null and b/textures/clothing/pink.png differ diff --git a/textures/clothing/red.png b/textures/clothing/red.png new file mode 100644 index 0000000..fcfa4a1 Binary files /dev/null and b/textures/clothing/red.png differ diff --git a/textures/clothing/violet.png b/textures/clothing/violet.png new file mode 100644 index 0000000..cf560f2 Binary files /dev/null and b/textures/clothing/violet.png differ diff --git a/textures/clothing/white.png b/textures/clothing/white.png new file mode 100644 index 0000000..eb2c693 Binary files /dev/null and b/textures/clothing/white.png differ diff --git a/textures/clothing/yellow.png b/textures/clothing/yellow.png new file mode 100644 index 0000000..853f62c Binary files /dev/null and b/textures/clothing/yellow.png differ diff --git a/textures/craftitem/cannabis_canapa_bread.png b/textures/craftitem/cannabis_canapa_bread.png new file mode 100644 index 0000000..ed45a0a Binary files /dev/null and b/textures/craftitem/cannabis_canapa_bread.png differ diff --git a/textures/craftitem/cannabis_canapa_fiber.png b/textures/craftitem/cannabis_canapa_fiber.png new file mode 100644 index 0000000..e35e077 Binary files /dev/null and b/textures/craftitem/cannabis_canapa_fiber.png differ diff --git a/textures/craftitem/cannabis_canapa_flour.png b/textures/craftitem/cannabis_canapa_flour.png new file mode 100644 index 0000000..a5d3519 Binary files /dev/null and b/textures/craftitem/cannabis_canapa_flour.png differ diff --git a/textures/craftitem/cannabis_canapa_glue.png b/textures/craftitem/cannabis_canapa_glue.png new file mode 100644 index 0000000..cd31bc7 Binary files /dev/null and b/textures/craftitem/cannabis_canapa_glue.png differ diff --git a/textures/craftitem/cannabis_canapa_oil.png b/textures/craftitem/cannabis_canapa_oil.png new file mode 100644 index 0000000..d450f42 Binary files /dev/null and b/textures/craftitem/cannabis_canapa_oil.png differ diff --git a/textures/craftitem/cannabis_canapa_raisin.png b/textures/craftitem/cannabis_canapa_raisin.png new file mode 100644 index 0000000..8c62ffd Binary files /dev/null and b/textures/craftitem/cannabis_canapa_raisin.png differ diff --git a/textures/craftitem/cannabis_canapa_red_bread.png b/textures/craftitem/cannabis_canapa_red_bread.png new file mode 100644 index 0000000..f44ae1c Binary files /dev/null and b/textures/craftitem/cannabis_canapa_red_bread.png differ diff --git a/textures/craftitem/cannabis_canapa_red_flour.png b/textures/craftitem/cannabis_canapa_red_flour.png new file mode 100644 index 0000000..86b8b21 Binary files /dev/null and b/textures/craftitem/cannabis_canapa_red_flour.png differ diff --git a/textures/craftitem/cannabis_cloth.png b/textures/craftitem/cannabis_cloth.png new file mode 100644 index 0000000..4670c16 Binary files /dev/null and b/textures/craftitem/cannabis_cloth.png differ diff --git a/textures/craftitem/cannabis_fuel.png b/textures/craftitem/cannabis_fuel.png new file mode 100644 index 0000000..9d8cc4d Binary files /dev/null and b/textures/craftitem/cannabis_fuel.png differ diff --git a/textures/craftitem/cannabis_paper.png b/textures/craftitem/cannabis_paper.png new file mode 100644 index 0000000..f18b193 Binary files /dev/null and b/textures/craftitem/cannabis_paper.png differ diff --git a/textures/craftitem/cannabis_plastic.png b/textures/craftitem/cannabis_plastic.png new file mode 100644 index 0000000..ed18bdb Binary files /dev/null and b/textures/craftitem/cannabis_plastic.png differ diff --git a/textures/joint/cannabis_effect_eye_f.png b/textures/joint/cannabis_effect_eye_f.png new file mode 100644 index 0000000..2a0227e Binary files /dev/null and b/textures/joint/cannabis_effect_eye_f.png differ diff --git a/textures/joint/cannabis_effect_eye_i.png b/textures/joint/cannabis_effect_eye_i.png new file mode 100644 index 0000000..1fac723 Binary files /dev/null and b/textures/joint/cannabis_effect_eye_i.png differ diff --git a/textures/joint/cannabis_effect_eye_r.png b/textures/joint/cannabis_effect_eye_r.png new file mode 100644 index 0000000..84ca4ed Binary files /dev/null and b/textures/joint/cannabis_effect_eye_r.png differ diff --git a/textures/joint/cannabis_effect_eye_v.png b/textures/joint/cannabis_effect_eye_v.png new file mode 100644 index 0000000..a7edff8 Binary files /dev/null and b/textures/joint/cannabis_effect_eye_v.png differ diff --git a/textures/joint/j_smoke.png b/textures/joint/j_smoke.png new file mode 100644 index 0000000..63d4727 Binary files /dev/null and b/textures/joint/j_smoke.png differ diff --git a/textures/joint/j_smoke_f.png b/textures/joint/j_smoke_f.png new file mode 100644 index 0000000..456809b Binary files /dev/null and b/textures/joint/j_smoke_f.png differ diff --git a/textures/joint/j_smoke_i.png b/textures/joint/j_smoke_i.png new file mode 100644 index 0000000..00c8b21 Binary files /dev/null and b/textures/joint/j_smoke_i.png differ diff --git a/textures/joint/j_smoke_r.png b/textures/joint/j_smoke_r.png new file mode 100644 index 0000000..63d4727 Binary files /dev/null and b/textures/joint/j_smoke_r.png differ diff --git a/textures/joint/j_smoke_v.png b/textures/joint/j_smoke_v.png new file mode 100644 index 0000000..176fbac Binary files /dev/null and b/textures/joint/j_smoke_v.png differ diff --git a/textures/joint/joint_accendino.png b/textures/joint/joint_accendino.png new file mode 100644 index 0000000..26d9c5a Binary files /dev/null and b/textures/joint/joint_accendino.png differ diff --git a/textures/joint/joint_cartina.png b/textures/joint/joint_cartina.png new file mode 100644 index 0000000..77185d4 Binary files /dev/null and b/textures/joint/joint_cartina.png differ diff --git a/textures/joint/joint_cartina_cima.png b/textures/joint/joint_cartina_cima.png new file mode 100644 index 0000000..60c4bc5 Binary files /dev/null and b/textures/joint/joint_cartina_cima.png differ diff --git a/textures/joint/joint_cartina_cimai.png b/textures/joint/joint_cartina_cimai.png new file mode 100644 index 0000000..4244c33 Binary files /dev/null and b/textures/joint/joint_cartina_cimai.png differ diff --git a/textures/joint/joint_cartina_cimar.png b/textures/joint/joint_cartina_cimar.png new file mode 100644 index 0000000..eaf241b Binary files /dev/null and b/textures/joint/joint_cartina_cimar.png differ diff --git a/textures/joint/joint_cartina_fumo.png b/textures/joint/joint_cartina_fumo.png new file mode 100644 index 0000000..f6637e6 Binary files /dev/null and b/textures/joint/joint_cartina_fumo.png differ diff --git a/textures/joint/joint_cima_s.png b/textures/joint/joint_cima_s.png new file mode 100644 index 0000000..3e74024 Binary files /dev/null and b/textures/joint/joint_cima_s.png differ diff --git a/textures/joint/joint_cima_si.png b/textures/joint/joint_cima_si.png new file mode 100644 index 0000000..aba2c15 Binary files /dev/null and b/textures/joint/joint_cima_si.png differ diff --git a/textures/joint/joint_cima_sr.png b/textures/joint/joint_cima_sr.png new file mode 100644 index 0000000..e03e8f0 Binary files /dev/null and b/textures/joint/joint_cima_sr.png differ diff --git a/textures/joint/joint_filter.png b/textures/joint/joint_filter.png new file mode 100644 index 0000000..82d7ac1 Binary files /dev/null and b/textures/joint/joint_filter.png differ diff --git a/textures/joint/joint_filter_p.png b/textures/joint/joint_filter_p.png new file mode 100644 index 0000000..caa14ef Binary files /dev/null and b/textures/joint/joint_filter_p.png differ diff --git a/textures/joint/joint_fumo_s.png b/textures/joint/joint_fumo_s.png new file mode 100644 index 0000000..319e297 Binary files /dev/null and b/textures/joint/joint_fumo_s.png differ diff --git a/textures/joint/joint_joint_cac.png b/textures/joint/joint_joint_cac.png new file mode 100644 index 0000000..f64fe77 Binary files /dev/null and b/textures/joint/joint_joint_cac.png differ diff --git a/textures/joint/joint_joint_cac_m.png b/textures/joint/joint_joint_cac_m.png new file mode 100644 index 0000000..bd491c3 Binary files /dev/null and b/textures/joint/joint_joint_cac_m.png differ diff --git a/textures/joint/joint_joint_caci.png b/textures/joint/joint_joint_caci.png new file mode 100644 index 0000000..237ea1c Binary files /dev/null and b/textures/joint/joint_joint_caci.png differ diff --git a/textures/joint/joint_joint_caci_m.png b/textures/joint/joint_joint_caci_m.png new file mode 100644 index 0000000..01884fb Binary files /dev/null and b/textures/joint/joint_joint_caci_m.png differ diff --git a/textures/joint/joint_joint_cacr.png b/textures/joint/joint_joint_cacr.png new file mode 100644 index 0000000..46967af Binary files /dev/null and b/textures/joint/joint_joint_cacr.png differ diff --git a/textures/joint/joint_joint_cacr_m.png b/textures/joint/joint_joint_cacr_m.png new file mode 100644 index 0000000..d6a53b3 Binary files /dev/null and b/textures/joint/joint_joint_cacr_m.png differ diff --git a/textures/joint/joint_joint_csp.png b/textures/joint/joint_joint_csp.png new file mode 100644 index 0000000..b5eb479 Binary files /dev/null and b/textures/joint/joint_joint_csp.png differ diff --git a/textures/joint/joint_joint_cspi.png b/textures/joint/joint_joint_cspi.png new file mode 100644 index 0000000..e623b6e Binary files /dev/null and b/textures/joint/joint_joint_cspi.png differ diff --git a/textures/joint/joint_joint_cspr.png b/textures/joint/joint_joint_cspr.png new file mode 100644 index 0000000..9878303 Binary files /dev/null and b/textures/joint/joint_joint_cspr.png differ diff --git a/textures/joint/joint_joint_fac.png b/textures/joint/joint_joint_fac.png new file mode 100644 index 0000000..558c3a8 Binary files /dev/null and b/textures/joint/joint_joint_fac.png differ diff --git a/textures/joint/joint_joint_fac_m.png b/textures/joint/joint_joint_fac_m.png new file mode 100644 index 0000000..7c81390 Binary files /dev/null and b/textures/joint/joint_joint_fac_m.png differ diff --git a/textures/joint/joint_joint_fsp.png b/textures/joint/joint_joint_fsp.png new file mode 100644 index 0000000..506df02 Binary files /dev/null and b/textures/joint/joint_joint_fsp.png differ diff --git a/textures/plant/1hemp_seedling.png b/textures/plant/1hemp_seedling.png new file mode 100644 index 0000000..5f8a230 Binary files /dev/null and b/textures/plant/1hemp_seedling.png differ diff --git a/textures/plant/1hemp_seedling_ice.png b/textures/plant/1hemp_seedling_ice.png new file mode 100644 index 0000000..606b709 Binary files /dev/null and b/textures/plant/1hemp_seedling_ice.png differ diff --git a/textures/plant/1hemp_seedling_red.png b/textures/plant/1hemp_seedling_red.png new file mode 100644 index 0000000..8ba2c54 Binary files /dev/null and b/textures/plant/1hemp_seedling_red.png differ diff --git a/textures/plant/cannabis_canapa.png b/textures/plant/cannabis_canapa.png new file mode 100644 index 0000000..32641e0 Binary files /dev/null and b/textures/plant/cannabis_canapa.png differ diff --git a/textures/plant/cannabis_canapa_flower.png b/textures/plant/cannabis_canapa_flower.png new file mode 100644 index 0000000..bdf8125 Binary files /dev/null and b/textures/plant/cannabis_canapa_flower.png differ diff --git a/textures/plant/cannabis_canapa_ice.png b/textures/plant/cannabis_canapa_ice.png new file mode 100644 index 0000000..7acf257 Binary files /dev/null and b/textures/plant/cannabis_canapa_ice.png differ diff --git a/textures/plant/cannabis_canapa_ice_flower.png b/textures/plant/cannabis_canapa_ice_flower.png new file mode 100644 index 0000000..a4da2ad Binary files /dev/null and b/textures/plant/cannabis_canapa_ice_flower.png differ diff --git a/textures/plant/cannabis_canapa_ice_leaves.png b/textures/plant/cannabis_canapa_ice_leaves.png new file mode 100644 index 0000000..507fab4 Binary files /dev/null and b/textures/plant/cannabis_canapa_ice_leaves.png differ diff --git a/textures/plant/cannabis_canapa_ice_seed.png b/textures/plant/cannabis_canapa_ice_seed.png new file mode 100644 index 0000000..ec52ffe Binary files /dev/null and b/textures/plant/cannabis_canapa_ice_seed.png differ diff --git a/textures/plant/cannabis_canapa_leaves.png b/textures/plant/cannabis_canapa_leaves.png new file mode 100644 index 0000000..d363602 Binary files /dev/null and b/textures/plant/cannabis_canapa_leaves.png differ diff --git a/textures/plant/cannabis_canapa_red.png b/textures/plant/cannabis_canapa_red.png new file mode 100644 index 0000000..d2d0994 Binary files /dev/null and b/textures/plant/cannabis_canapa_red.png differ diff --git a/textures/plant/cannabis_canapa_red_flower.png b/textures/plant/cannabis_canapa_red_flower.png new file mode 100644 index 0000000..5b3f9f3 Binary files /dev/null and b/textures/plant/cannabis_canapa_red_flower.png differ diff --git a/textures/plant/cannabis_canapa_red_leaves.png b/textures/plant/cannabis_canapa_red_leaves.png new file mode 100644 index 0000000..3487370 Binary files /dev/null and b/textures/plant/cannabis_canapa_red_leaves.png differ diff --git a/textures/plant/cannabis_canapa_red_seed.png b/textures/plant/cannabis_canapa_red_seed.png new file mode 100644 index 0000000..e82ebca Binary files /dev/null and b/textures/plant/cannabis_canapa_red_seed.png differ diff --git a/textures/plant/cannabis_canapa_seed.png b/textures/plant/cannabis_canapa_seed.png new file mode 100644 index 0000000..bfe93e5 Binary files /dev/null and b/textures/plant/cannabis_canapa_seed.png differ diff --git a/textures/plant/hemp_climbing.png b/textures/plant/hemp_climbing.png new file mode 100644 index 0000000..8c616a7 Binary files /dev/null and b/textures/plant/hemp_climbing.png differ diff --git a/textures/plant/hemp_climbing_ice.png b/textures/plant/hemp_climbing_ice.png new file mode 100644 index 0000000..c05c960 Binary files /dev/null and b/textures/plant/hemp_climbing_ice.png differ diff --git a/textures/plant/hemp_climbing_red.png b/textures/plant/hemp_climbing_red.png new file mode 100644 index 0000000..b7e1d1f Binary files /dev/null and b/textures/plant/hemp_climbing_red.png differ diff --git a/textures/plant/hemp_sproutling.png b/textures/plant/hemp_sproutling.png new file mode 100644 index 0000000..f6bea9b Binary files /dev/null and b/textures/plant/hemp_sproutling.png differ diff --git a/textures/plant/hemp_sproutling_ice.png b/textures/plant/hemp_sproutling_ice.png new file mode 100644 index 0000000..13b6de4 Binary files /dev/null and b/textures/plant/hemp_sproutling_ice.png differ diff --git a/textures/plant/hemp_sproutling_red.png b/textures/plant/hemp_sproutling_red.png new file mode 100644 index 0000000..26b6f57 Binary files /dev/null and b/textures/plant/hemp_sproutling_red.png differ diff --git a/textures/shield/adminh.png b/textures/shield/adminh.png new file mode 100644 index 0000000..b75f0f8 Binary files /dev/null and b/textures/shield/adminh.png differ diff --git a/textures/shield/cannabis_armor_inv_shield_adminh.png b/textures/shield/cannabis_armor_inv_shield_adminh.png new file mode 100644 index 0000000..52f8ec4 Binary files /dev/null and b/textures/shield/cannabis_armor_inv_shield_adminh.png differ diff --git a/textures/shield/cannabis_armor_inv_shield_fibra.png b/textures/shield/cannabis_armor_inv_shield_fibra.png new file mode 100644 index 0000000..1522ba8 Binary files /dev/null and b/textures/shield/cannabis_armor_inv_shield_fibra.png differ diff --git a/textures/shield/cannabis_armor_inv_shield_foglie.png b/textures/shield/cannabis_armor_inv_shield_foglie.png new file mode 100644 index 0000000..185a600 Binary files /dev/null and b/textures/shield/cannabis_armor_inv_shield_foglie.png differ diff --git a/textures/shield/cannabis_armor_inv_shield_high.png b/textures/shield/cannabis_armor_inv_shield_high.png new file mode 100644 index 0000000..dfc41c3 Binary files /dev/null and b/textures/shield/cannabis_armor_inv_shield_high.png differ diff --git a/textures/shield/cannabis_armor_inv_shield_tessuto.png b/textures/shield/cannabis_armor_inv_shield_tessuto.png new file mode 100644 index 0000000..1d15cda Binary files /dev/null and b/textures/shield/cannabis_armor_inv_shield_tessuto.png differ diff --git a/textures/shield/cannabis_shield_adminh.png b/textures/shield/cannabis_shield_adminh.png new file mode 100644 index 0000000..058d443 Binary files /dev/null and b/textures/shield/cannabis_shield_adminh.png differ diff --git a/textures/shield/cannabis_shield_adminh_preview.png b/textures/shield/cannabis_shield_adminh_preview.png new file mode 100644 index 0000000..de8d91a Binary files /dev/null and b/textures/shield/cannabis_shield_adminh_preview.png differ diff --git a/textures/shield/cannabis_shield_fibra.png b/textures/shield/cannabis_shield_fibra.png new file mode 100644 index 0000000..8f06e46 Binary files /dev/null and b/textures/shield/cannabis_shield_fibra.png differ diff --git a/textures/shield/cannabis_shield_fibra_preview.png b/textures/shield/cannabis_shield_fibra_preview.png new file mode 100644 index 0000000..9de7b82 Binary files /dev/null and b/textures/shield/cannabis_shield_fibra_preview.png differ diff --git a/textures/shield/cannabis_shield_foglie.png b/textures/shield/cannabis_shield_foglie.png new file mode 100644 index 0000000..9a29eee Binary files /dev/null and b/textures/shield/cannabis_shield_foglie.png differ diff --git a/textures/shield/cannabis_shield_foglie_preview.png b/textures/shield/cannabis_shield_foglie_preview.png new file mode 100644 index 0000000..194e3bc Binary files /dev/null and b/textures/shield/cannabis_shield_foglie_preview.png differ diff --git a/textures/shield/cannabis_shield_high.png b/textures/shield/cannabis_shield_high.png new file mode 100644 index 0000000..07bb939 Binary files /dev/null and b/textures/shield/cannabis_shield_high.png differ diff --git a/textures/shield/cannabis_shield_high_preview.png b/textures/shield/cannabis_shield_high_preview.png new file mode 100644 index 0000000..0451aef Binary files /dev/null and b/textures/shield/cannabis_shield_high_preview.png differ diff --git a/textures/shield/cannabis_shield_tessuto.png b/textures/shield/cannabis_shield_tessuto.png new file mode 100644 index 0000000..bc2e6aa Binary files /dev/null and b/textures/shield/cannabis_shield_tessuto.png differ diff --git a/textures/shield/cannabis_shield_tessuto_preview.png b/textures/shield/cannabis_shield_tessuto_preview.png new file mode 100644 index 0000000..81767a4 Binary files /dev/null and b/textures/shield/cannabis_shield_tessuto_preview.png differ diff --git a/textures/tools/cannabis_tool_adminhaxe.png b/textures/tools/cannabis_tool_adminhaxe.png new file mode 100644 index 0000000..9e2d29b Binary files /dev/null and b/textures/tools/cannabis_tool_adminhaxe.png differ diff --git a/textures/tools/cannabis_tool_adminhpick.png b/textures/tools/cannabis_tool_adminhpick.png new file mode 100644 index 0000000..2276a36 Binary files /dev/null and b/textures/tools/cannabis_tool_adminhpick.png differ diff --git a/textures/tools/cannabis_tool_adminhshovel.png b/textures/tools/cannabis_tool_adminhshovel.png new file mode 100644 index 0000000..6b86b07 Binary files /dev/null and b/textures/tools/cannabis_tool_adminhshovel.png differ diff --git a/textures/tools/cannabis_tool_adminhsword.png b/textures/tools/cannabis_tool_adminhsword.png new file mode 100644 index 0000000..d80393d Binary files /dev/null and b/textures/tools/cannabis_tool_adminhsword.png differ diff --git a/textures/tools/cannabis_tool_bronzeaxe.png b/textures/tools/cannabis_tool_bronzeaxe.png new file mode 100644 index 0000000..4044433 Binary files /dev/null and b/textures/tools/cannabis_tool_bronzeaxe.png differ diff --git a/textures/tools/cannabis_tool_bronzepick.png b/textures/tools/cannabis_tool_bronzepick.png new file mode 100644 index 0000000..a2b36db Binary files /dev/null and b/textures/tools/cannabis_tool_bronzepick.png differ diff --git a/textures/tools/cannabis_tool_bronzeshovel.png b/textures/tools/cannabis_tool_bronzeshovel.png new file mode 100644 index 0000000..bb42151 Binary files /dev/null and b/textures/tools/cannabis_tool_bronzeshovel.png differ diff --git a/textures/tools/cannabis_tool_bronzesword.png b/textures/tools/cannabis_tool_bronzesword.png new file mode 100644 index 0000000..3f4e837 Binary files /dev/null and b/textures/tools/cannabis_tool_bronzesword.png differ diff --git a/textures/tools/cannabis_tool_diamondaxe.png b/textures/tools/cannabis_tool_diamondaxe.png new file mode 100644 index 0000000..6a1e365 Binary files /dev/null and b/textures/tools/cannabis_tool_diamondaxe.png differ diff --git a/textures/tools/cannabis_tool_diamondpick.png b/textures/tools/cannabis_tool_diamondpick.png new file mode 100644 index 0000000..f896911 Binary files /dev/null and b/textures/tools/cannabis_tool_diamondpick.png differ diff --git a/textures/tools/cannabis_tool_diamondshovel.png b/textures/tools/cannabis_tool_diamondshovel.png new file mode 100644 index 0000000..4c78755 Binary files /dev/null and b/textures/tools/cannabis_tool_diamondshovel.png differ diff --git a/textures/tools/cannabis_tool_diamondsword.png b/textures/tools/cannabis_tool_diamondsword.png new file mode 100644 index 0000000..40f909a Binary files /dev/null and b/textures/tools/cannabis_tool_diamondsword.png differ diff --git a/textures/tools/cannabis_tool_highaxe.png b/textures/tools/cannabis_tool_highaxe.png new file mode 100644 index 0000000..ec7e4e3 Binary files /dev/null and b/textures/tools/cannabis_tool_highaxe.png differ diff --git a/textures/tools/cannabis_tool_highpick.png b/textures/tools/cannabis_tool_highpick.png new file mode 100644 index 0000000..1a8868e Binary files /dev/null and b/textures/tools/cannabis_tool_highpick.png differ diff --git a/textures/tools/cannabis_tool_highshovel.png b/textures/tools/cannabis_tool_highshovel.png new file mode 100644 index 0000000..fcecd2b Binary files /dev/null and b/textures/tools/cannabis_tool_highshovel.png differ diff --git a/textures/tools/cannabis_tool_highsword.png b/textures/tools/cannabis_tool_highsword.png new file mode 100644 index 0000000..95647b7 Binary files /dev/null and b/textures/tools/cannabis_tool_highsword.png differ diff --git a/textures/tools/cannabis_tool_meseaxe.png b/textures/tools/cannabis_tool_meseaxe.png new file mode 100644 index 0000000..3260bb0 Binary files /dev/null and b/textures/tools/cannabis_tool_meseaxe.png differ diff --git a/textures/tools/cannabis_tool_mesepick.png b/textures/tools/cannabis_tool_mesepick.png new file mode 100644 index 0000000..5e29921 Binary files /dev/null and b/textures/tools/cannabis_tool_mesepick.png differ diff --git a/textures/tools/cannabis_tool_meseshovel.png b/textures/tools/cannabis_tool_meseshovel.png new file mode 100644 index 0000000..265c922 Binary files /dev/null and b/textures/tools/cannabis_tool_meseshovel.png differ diff --git a/textures/tools/cannabis_tool_mesesword.png b/textures/tools/cannabis_tool_mesesword.png new file mode 100644 index 0000000..87155c7 Binary files /dev/null and b/textures/tools/cannabis_tool_mesesword.png differ diff --git a/textures/tools/cannabis_tool_steelaxe.png b/textures/tools/cannabis_tool_steelaxe.png new file mode 100644 index 0000000..0e44f0b Binary files /dev/null and b/textures/tools/cannabis_tool_steelaxe.png differ diff --git a/textures/tools/cannabis_tool_steelpick.png b/textures/tools/cannabis_tool_steelpick.png new file mode 100644 index 0000000..82bbcc3 Binary files /dev/null and b/textures/tools/cannabis_tool_steelpick.png differ diff --git a/textures/tools/cannabis_tool_steelshovel.png b/textures/tools/cannabis_tool_steelshovel.png new file mode 100644 index 0000000..7346200 Binary files /dev/null and b/textures/tools/cannabis_tool_steelshovel.png differ diff --git a/textures/tools/cannabis_tool_steelsword.png b/textures/tools/cannabis_tool_steelsword.png new file mode 100644 index 0000000..249c774 Binary files /dev/null and b/textures/tools/cannabis_tool_steelsword.png differ diff --git a/textures/unifyed_inventory/bags_bob_large.png b/textures/unifyed_inventory/bags_bob_large.png new file mode 100644 index 0000000..63ebbd8 Binary files /dev/null and b/textures/unifyed_inventory/bags_bob_large.png differ diff --git a/textures/unifyed_inventory/bags_bob_medium.png b/textures/unifyed_inventory/bags_bob_medium.png new file mode 100644 index 0000000..6df4d5f Binary files /dev/null and b/textures/unifyed_inventory/bags_bob_medium.png differ diff --git a/textures/unifyed_inventory/bags_bob_small.png b/textures/unifyed_inventory/bags_bob_small.png new file mode 100644 index 0000000..79119f4 Binary files /dev/null and b/textures/unifyed_inventory/bags_bob_small.png differ