Newer
Older
Radon / products.lua
@Allymonies Allymonies on 24 Dec 2022 1 KB Currency & Category selection
return {
    {
        modid = "minecraft:lapis_block",
        name = "Lapis Block",
        address = "lapis",
        category = "ore",
        price = 9.0,
        priceOverrides = {
            {
                currency = "tenebra",
                price = 18.0
            }
        },
    },
    {
        modid = "minecraft:diamond",
        name = "Diamond",
        address = "dia",
        category = "ore",
        price = 5.0,
        priceOverrides = {
            {
                currency = "tenebra",
                price = 35.0
            }
        },
    },
    {
        modid = "minecraft:gold_ingot",
        name = "Gold Ingot",
        address = "gold",
        category = "ore",
        price = 5.0,
        priceOverrides = {
            {
                currency = "tenebra",
                price = 35.0
            }
        },
    },
    {
        modid = "minecraft:diamond_pickaxe",
        name = "Diamond Pickaxe eff5",
        address = "dpick",
        category = "tool",
        price = 50.0,
        predicates = {
            enchantments = {
                {
                    fullName = "Efficiency V"
                }
            }
        }
    },
    {
        modid = "scgoodies:lesbian_elytra",
        name = "Lesbian Elytra",
        address = "lely",
        price = 5000.0
    }
}