bbc9d84495
* Added new blocks and items * Added crafting recipes * Added missing textures * Changed textures to faithful 1.12 * Fixed file permissions * Changed to 1.12 naming scheme * Added missing MineCraft textures * Fixed error in blocks.lua * Fixed some filenames
497 lines
7.4 KiB
Lua
497 lines
7.4 KiB
Lua
--
|
|
-- =====================================================================================
|
|
--
|
|
-- OpenMiner
|
|
--
|
|
-- Copyright (C) 2018-2020 Unarelith, Quentin Bazin <openminer@unarelith.net>
|
|
-- Copyright (C) 2019-2020 the OpenMiner contributors (see CONTRIBUTORS.md)
|
|
--
|
|
-- This file is part of OpenMiner.
|
|
--
|
|
-- OpenMiner is free software; you can redistribute it and/or
|
|
-- modify it under the terms of the GNU Lesser General Public
|
|
-- License as published by the Free Software Foundation; either
|
|
-- version 2.1 of the License, or (at your option) any later version.
|
|
--
|
|
-- OpenMiner is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
-- Lesser General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU Lesser General Public License
|
|
-- along with OpenMiner; if not, write to the Free Software Foundation, Inc.,
|
|
-- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
--
|
|
-- =====================================================================================
|
|
--
|
|
|
|
mod:item {
|
|
id = "stick",
|
|
name = "Stick",
|
|
tiles = "stick.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "coal",
|
|
name = "Coal",
|
|
tiles = "coal.png",
|
|
|
|
groups = {
|
|
om_fuel = 1600,
|
|
},
|
|
}
|
|
|
|
mod:item {
|
|
id = "iron_ingot",
|
|
name = "Iron Ingot",
|
|
tiles = "iron_ingot.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "charcoal",
|
|
name = "Charcoal",
|
|
tiles = "charcoal.png",
|
|
|
|
groups = {
|
|
om_fuel = 1600,
|
|
},
|
|
}
|
|
|
|
mod:item {
|
|
id = "brick",
|
|
name = "Brick",
|
|
tiles = "brick.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "clay_ball",
|
|
name = "Clay",
|
|
tiles = "clay_ball.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "diamond",
|
|
name = "Diamond",
|
|
tiles = "diamond.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "gold_ingot",
|
|
name = "Gold Ingot",
|
|
tiles = "gold_ingot.png"
|
|
}
|
|
|
|
mod:item {
|
|
id = "wheat",
|
|
name = "Wheat",
|
|
tiles = "wheat.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bread",
|
|
name = "Bread",
|
|
tiles = "bread.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "netherbrick",
|
|
name = "Nether Brick",
|
|
tiles = "netherbrick.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "snowball",
|
|
name = "Snowball",
|
|
tiles = "snowball.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "slimeball",
|
|
name = "Slimeball",
|
|
tiles = "slimeball.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "apple",
|
|
name = "Apple",
|
|
tiles = "apple.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "apple_golden",
|
|
name = "Golden Apple",
|
|
tiles = "apple_golden.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "glowstone_dust",
|
|
name = "Glowstone Dust",
|
|
tiles = "glowstone_dust.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "melon",
|
|
name = "Melon Slice",
|
|
tiles = "melon.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "melon_speckled",
|
|
name = "Glistering Melon Slice",
|
|
tiles = "melon_speckled.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "magma_cream",
|
|
name = "Magma Cream",
|
|
tiles = "magma_cream.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "iron_nugget",
|
|
name = "Iron Nugget",
|
|
tiles = "iron_nugget.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "gold_nugget",
|
|
name = "Gold Nugget",
|
|
tiles = "gold_nugget.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "paper",
|
|
name = "Paper",
|
|
tiles = "paper.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "egg",
|
|
name = "Egg",
|
|
tiles = "egg.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "spider_eye",
|
|
name = "Spider Eye",
|
|
tiles = "spider_eye.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "redstone_dust",
|
|
name = "Redstone Dust",
|
|
tiles = "redstone_dust.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_pufferfish_raw",
|
|
name = "Pufferfish",
|
|
tiles = "fish_pufferfish_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "emerald",
|
|
name = "Emerald",
|
|
tiles = "emerald.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "book_normal",
|
|
name = "Book",
|
|
tiles = "book_normal.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bone",
|
|
name = "Bone",
|
|
tiles = "bone.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bone_meal",
|
|
name = "Bone Meal",
|
|
tiles = "bone_meal.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "cookie",
|
|
name = "Cookie",
|
|
tiles = "cookie.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "carrot",
|
|
name = "Carrot",
|
|
tiles = "carrot.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "sugar",
|
|
name = "Sugar",
|
|
tiles = "sugar.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "string",
|
|
name = "String",
|
|
tiles = "string.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "blaze_rod",
|
|
name = "Blaze Rod",
|
|
tiles = "blaze_rod.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "blaze_powder",
|
|
name = "Blaze Powder",
|
|
tiles = "blaze_powder.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bowl",
|
|
name = "Bowl",
|
|
tiles = "bowl.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "beetroot_seeds",
|
|
name = "Beetroot Seeds",
|
|
tiles = "beetroot_seeds.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "beetroot",
|
|
name = "Beetroot",
|
|
tiles = "beetroot.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "beetroot_soup",
|
|
name = "Beetroot Soup",
|
|
tiles = "beetroot_soup.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "arrow",
|
|
name = "Arrow",
|
|
tiles = "arrow.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rotten_flesh",
|
|
name = "Rotten Flesh",
|
|
tiles = "rotten_flesh.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "seeds_pumpkin",
|
|
name = "Pumpkin Seeds",
|
|
tiles = "seeds_pumpkin.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "seeds_melon",
|
|
name = "Melon Seeds",
|
|
tiles = "seeds_melon.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "pumpkin_pie",
|
|
name = "Pumpkin Pie",
|
|
tiles = "pumpkin_pie.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "mutton_raw",
|
|
name = "Mutton",
|
|
tiles = "mutton_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "mutton_cooked",
|
|
name = "Cooked Mutton",
|
|
tiles = "mutton_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "porkchop_raw",
|
|
name = "Porkchop",
|
|
tiles = "porkchop_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "porkchop_cooked",
|
|
name = "Cooked Porkchop",
|
|
tiles = "porkchop_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rabbit_raw",
|
|
name = "Rabbit",
|
|
tiles = "rabbit_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rabbit_cooked",
|
|
name = "Cooked Rabbit",
|
|
tiles = "rabbit_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "chicken_raw",
|
|
name = "Chicken",
|
|
tiles = "chicken_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "chicken_cooked",
|
|
name = "Cooked Chicken",
|
|
tiles = "chicken_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_clownfish_raw",
|
|
name = "Salmon",
|
|
tiles = "fish_clownfish_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_salmon_raw",
|
|
name = "Salmon",
|
|
tiles = "fish_salmon_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_salmon_cooked",
|
|
name = "Cooked Salmon",
|
|
tiles = "fish_salmon_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "beef_raw",
|
|
name = "Beef",
|
|
tiles = "beef_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "beef_cooked",
|
|
name = "Cooked Beef",
|
|
tiles = "beef_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_cod_raw",
|
|
name = "Cod",
|
|
tiles = "fish_cod_raw.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "fish_cod_cooked",
|
|
name = "Cooked Cod",
|
|
tiles = "fish_cod_cooked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bucket_empty",
|
|
name = "Bucket",
|
|
tiles = "bucket_empty.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "flint",
|
|
name = "Flint",
|
|
tiles = "flint.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "potato_poisonous",
|
|
name = "Poisonous Potato",
|
|
tiles = "potato_poisonous.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "potato_baked",
|
|
name = "Baked Potato",
|
|
tiles = "potato_baked.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "potato",
|
|
name = "Potato",
|
|
tiles = "potato.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "feather",
|
|
name = "Feather",
|
|
tiles = "feather.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "spider_eye_fermented",
|
|
name = "Fermented Spider Eye",
|
|
tiles = "spider_eye_fermented.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "golden_carrot",
|
|
name = "Golden Carrot",
|
|
tiles = "golden_carrot.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "lapis_lazuli",
|
|
name = "Lapis Lazuli",
|
|
tiles = "lapis_lazuli.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bucket_lava",
|
|
name = "Lava Bucket",
|
|
tiles = "bucket_lava.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bucket_water",
|
|
name = "Water Bucket",
|
|
tiles = "bucket_water.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "bucket_milk",
|
|
name = "Milk Bucket",
|
|
tiles = "bucket_milk.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rabbit_foot",
|
|
name = "Rabbit Foot",
|
|
tiles = "rabbit_foot.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rabbit_hide",
|
|
name = "Rabbit Hide",
|
|
tiles = "rabbit_hide.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "rabbit_stew",
|
|
name = "Rabbit Stew",
|
|
tiles = "rabbit_stew.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "mushroom_stew",
|
|
name = "Mushroom Stew",
|
|
tiles = "mushroom_stew.png",
|
|
}
|
|
|
|
mod:item {
|
|
id = "leather",
|
|
name = "Leather",
|
|
tiles = "leather.png",
|
|
}
|