2015-08-29 14:33:25 +02:00
/ *
2016-05-16 22:52:27 +02:00
* This file ( " InitItems.java " ) is part of the Actually Additions mod for Minecraft .
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http : //ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https : //github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015 - 2017 Ellpeck
2015-08-29 14:33:25 +02:00
* /
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items ;
2015-01-05 22:14:01 +01:00
2021-11-24 17:57:31 +01:00
import com.google.common.collect.ImmutableSet ;
2016-05-15 12:00:42 +02:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI ;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions ;
2022-01-08 19:54:43 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.AABlockItem ;
import de.ellpeck.actuallyadditions.mod.blocks.ActuallyBlocks ;
2021-11-21 17:31:57 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase ;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.lens.ItemLens ;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.item.Item ;
import net.minecraft.world.item.ItemStack ;
import net.minecraft.world.item.Tiers ;
import net.minecraft.world.item.crafting.RecipeType ;
2021-11-21 21:45:33 +01:00
import net.minecraftforge.eventbus.api.IEventBus ;
2021-02-27 21:24:26 +01:00
import net.minecraftforge.registries.DeferredRegister ;
import net.minecraftforge.registries.ForgeRegistries ;
2024-03-02 21:23:08 +01:00
import net.minecraftforge.registries.RegistryObject ;
import org.jetbrains.annotations.Nullable ;
2015-01-29 20:23:19 +01:00
2023-01-15 17:56:02 +01:00
import javax.annotation.Nonnull ;
2021-11-24 17:57:31 +01:00
import java.util.Set ;
2021-11-27 01:21:01 +01:00
import java.util.function.Supplier ;
2021-11-24 17:57:31 +01:00
2021-03-01 21:23:52 +01:00
public final class ActuallyItems {
2021-02-27 21:24:26 +01:00
public static final DeferredRegister < Item > ITEMS = DeferredRegister . create ( ForgeRegistries . ITEMS , ActuallyAdditions . MODID ) ;
2015-01-29 20:23:19 +01:00
2021-03-01 21:23:52 +01:00
// MISC ITEMS
2022-01-07 00:16:37 +01:00
public static final RegistryObject < Item > CANOLA = ITEMS . register ( " canola " , ItemBase : : new ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > COFFEE_CUP = ITEMS . register ( " coffee_cup " , ItemBase : : new ) ;
public static final RegistryObject < Item > PAPER_CONE = ITEMS . register ( " paper_cone " , ItemBase : : new ) ;
public static final RegistryObject < Item > DOUGH = ITEMS . register ( " dough " , ItemBase : : new ) ;
public static final RegistryObject < Item > RING = ITEMS . register ( " ring " , ItemBase : : new ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > BASIC_COIL = ITEMS . register ( " basic_coil " , ItemBase : : new ) ;
public static final RegistryObject < Item > ADVANCED_COIL = ITEMS . register ( " advanced_coil " , ItemBase : : new ) ;
2022-01-09 00:10:34 +01:00
public static final RegistryObject < Item > RICE = ITEMS . register ( " rice " , ItemBase : : new ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > RICE_DOUGH = ITEMS . register ( " rice_dough " , ItemBase : : new ) ;
2021-10-17 21:46:26 +02:00
public static final RegistryObject < Item > TINY_COAL = ITEMS . register ( " tiny_coal " , ( ) - > new ItemBase ( ) {
@Override
2024-03-02 21:23:08 +01:00
public int getBurnTime ( ItemStack itemStack , @Nullable RecipeType < ? > recipeType ) {
2021-10-17 21:46:26 +02:00
return 200 ;
}
} ) ;
public static final RegistryObject < Item > TINY_CHARCOAL = ITEMS . register ( " tiny_charcoal " , ( ) - > new ItemBase ( ) {
@Override
2024-03-02 21:23:08 +01:00
public int getBurnTime ( ItemStack itemStack , @Nullable RecipeType < ? > recipeType ) {
2021-10-17 21:46:26 +02:00
return 200 ;
}
} ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > RICE_SLIMEBALL = ITEMS . register ( " rice_slimeball " , ItemBase : : new ) ;
public static final RegistryObject < Item > EMPTY_CUP = ITEMS . register ( " empty_cup " , ItemBase : : new ) ;
public static final RegistryObject < Item > BATS_WING = ITEMS . register ( " bats_wing " , ItemBase : : new ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > DRILL_CORE = ITEMS . register ( " drill_core " , ItemBase : : new ) ;
public static final RegistryObject < Item > LENS = ITEMS . register ( " lens " , ItemBase : : new ) ;
2023-01-15 17:56:02 +01:00
public static final RegistryObject < Item > ENDER_STAR = ITEMS . register ( " ender_star " , ( ) - > new ItemBase ( ) {
@Override
public boolean isFoil ( @Nonnull ItemStack pStack ) {
return true ;
}
} ) ;
2022-01-09 18:58:55 +01:00
public static final RegistryObject < Item > CRYSTALLIZED_CANOLA_SEED = ITEMS . register ( " crystallized_canola_seed " , ( ) - > new CanolaSeed ( false ) ) ;
public static final RegistryObject < Item > EMPOWERED_CANOLA_SEED = ITEMS . register ( " empowered_canola_seed " , ( ) - > new CanolaSeed ( true ) ) ;
2016-08-02 16:32:13 +02:00
2021-02-27 21:24:26 +01:00
// SHARDS
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > RESTONIA_CRYSTAL_SHARD = ITEMS . register ( " restonia_crystal_shard " , ItemBase : : new ) ;
public static final RegistryObject < Item > PALIS_CRYSTAL_SHARD = ITEMS . register ( " palis_crystal_shard " , ItemBase : : new ) ;
public static final RegistryObject < Item > DIAMATINE_CRYSTAL_SHARD = ITEMS . register ( " diamatine_crystal_shard " , ItemBase : : new ) ;
public static final RegistryObject < Item > VOID_CRYSTAL_SHARD = ITEMS . register ( " void_crystal_shard " , ItemBase : : new ) ;
public static final RegistryObject < Item > EMERADIC_CRYSTAL_SHARD = ITEMS . register ( " emeradic_crystal_shard " , ItemBase : : new ) ;
public static final RegistryObject < Item > ENORI_CRYSTAL_SHARD = ITEMS . register ( " enori_crystal_shard " , ItemBase : : new ) ;
2015-01-05 22:14:01 +01:00
2021-02-27 21:24:26 +01:00
// CRYSTALS
2021-02-27 22:44:00 +01:00
public static final RegistryObject < Item > RESTONIA_CRYSTAL = ITEMS . register ( " restonia_crystal " , ItemCrystal : : new ) ;
public static final RegistryObject < Item > PALIS_CRYSTAL = ITEMS . register ( " palis_crystal " , ItemCrystal : : new ) ;
public static final RegistryObject < Item > DIAMATINE_CRYSTAL = ITEMS . register ( " diamatine_crystal " , ItemCrystal : : new ) ;
public static final RegistryObject < Item > VOID_CRYSTAL = ITEMS . register ( " void_crystal " , ItemCrystal : : new ) ;
public static final RegistryObject < Item > EMERADIC_CRYSTAL = ITEMS . register ( " emeradic_crystal " , ItemCrystal : : new ) ;
public static final RegistryObject < Item > ENORI_CRYSTAL = ITEMS . register ( " enori_crystal " , ItemCrystal : : new ) ;
2015-12-31 15:05:27 +01:00
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > EMPOWERED_RESTONIA_CRYSTAL = ITEMS . register ( " empowered_restonia_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
public static final RegistryObject < Item > EMPOWERED_PALIS_CRYSTAL = ITEMS . register ( " empowered_palis_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
public static final RegistryObject < Item > EMPOWERED_DIAMATINE_CRYSTAL = ITEMS . register ( " empowered_diamatine_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
public static final RegistryObject < Item > EMPOWERED_VOID_CRYSTAL = ITEMS . register ( " empowered_void_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
public static final RegistryObject < Item > EMPOWERED_EMERADIC_CRYSTAL = ITEMS . register ( " empowered_emeradic_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
public static final RegistryObject < Item > EMPOWERED_ENORI_CRYSTAL = ITEMS . register ( " empowered_enori_crystal " , ( ) - > new ItemCrystal ( true ) ) ;
2016-01-01 23:54:36 +01:00
2021-02-27 21:24:26 +01:00
// BLACK QUARTZ
2021-02-27 22:44:00 +01:00
public static final RegistryObject < Item > BLACK_QUARTZ = ITEMS . register ( " black_quartz " , ItemBase : : new ) ;
2021-03-01 21:23:52 +01:00
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > ENGINEERS_GOGGLES_ADVANCED = ITEMS . register ( " engineers_goggles_advanced " , ( ) - > new ItemEngineerGoggles ( true ) ) ;
public static final RegistryObject < Item > ENGINEERS_GOGGLES = ITEMS . register ( " engineers_goggles " , ( ) - > new ItemEngineerGoggles ( false ) ) ;
2023-01-19 16:27:56 +01:00
public static final RegistryObject < Item > LASER_UPGRADE_RANGE = ITEMS . register ( " laser_upgrade_range " , ItemLaserRelayUpgrade : : new ) ;
public static final RegistryObject < Item > LASER_UPGRADE_INVISIBILITY = ITEMS . register ( " laser_upgrade_invisibility " , ItemLaserRelayUpgrade : : new ) ;
2021-12-30 18:30:01 +01:00
public static final Supplier < Item > HANDHELD_FILLER = ITEMS . register ( " handheld_filler " , ItemFillingWand : : new ) ;
2023-12-20 22:02:25 +01:00
public static final RegistryObject < Item > TRAVELERS_SACK = ITEMS . register ( " travelers_sack " , ( ) - > new Sack ( false ) ) ;
public static final RegistryObject < Item > VOID_SACK = ITEMS . register ( " void_sack " , ( ) - > new Sack ( true ) ) ;
public static final RegistryObject < Item > WORM = ITEMS . register ( " worm " , Worm : : new ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > PLAYER_PROBE = ITEMS . register ( " player_probe " , ItemPlayerProbe : : new ) ;
public static final RegistryObject < Item > FILTER = ITEMS . register ( " filter " , ItemFilter : : new ) ;
public static final RegistryObject < Item > WATER_BOWL = ITEMS . register ( " water_bowl " , ItemWaterBowl : : new ) ;
2021-08-22 17:09:06 +02:00
public static final RegistryObject < Item > CRATE_KEEPER = ITEMS . register ( " crate_keeper " , ( ) - > new ItemGeneric ( defaultProps ( ) . stacksTo ( 1 ) ) ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > LENS_OF_COLOR = ITEMS . register ( " lens_of_color " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensColor ) ) ;
public static final RegistryObject < Item > LENS_OF_DETONATION = ITEMS . register ( " lens_of_detonation " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensDetonation ) ) ;
public static final RegistryObject < Item > LENS_OF_CERTAIN_DEATH = ITEMS . register ( " lens_of_certain_death " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensDeath ) ) ;
public static final RegistryObject < Item > LENS_OF_THE_KILLER = ITEMS . register ( " lens_of_the_killer " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensEvenMoarDeath ) ) ;
public static final RegistryObject < Item > LENS_OF_DISENCHANTING = ITEMS . register ( " lens_of_disenchanting " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensDisenchanting ) ) ;
public static final RegistryObject < Item > LENS_OF_THE_MINER = ITEMS . register ( " lens_of_the_miner " , ( ) - > new ItemLens ( ActuallyAdditionsAPI . lensMining ) ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > LASER_WRENCH = ITEMS . register ( " laser_wrench " , ItemLaserWrench : : new ) ;
// public static final RegistryObject<Item> itemChestToCrateUpgrade = ITEMS.register("", new ItemChestToCrateUpgrade("chest_to_crate_upgrade", TileEntityChest.class, InitBlocks.blockGiantChest.getDefaultState()));
// public static final RegistryObject<Item> itemSmallToMediumCrateUpgrade = ITEMS.register("", new ItemChestToCrateUpgrade("small_to_medium_crate_upgrade", TileEntityGiantChest.class, InitBlocks.blockGiantChestMedium.getDefaultState()));
// public static final RegistryObject<Item> itemMediumToLargeCrateUpgrade = ITEMS.register("", new ItemChestToCrateUpgrade("medium_to_large_crate_upgrade", TileEntityGiantChestMedium.class, InitBlocks.blockGiantChestLarge.getDefaultState()));
public static final RegistryObject < Item > ITEM_BOOKLET = ITEMS . register ( " booklet " , ItemBooklet : : new ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > RING_OF_GROWTH = ITEMS . register ( " ring_of_growth " , ItemGrowthRing : : new ) ;
public static final RegistryObject < Item > RING_OF_MAGNETIZING = ITEMS . register ( " ring_of_magnetizing " , ItemMagnetRing : : new ) ;
2022-06-13 00:13:33 +02:00
public static final RegistryObject < Item > TELEPORT_STAFF = ITEMS . register ( " teleport_staff " , ItemTeleportStaff : : new ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > WINGS_OF_THE_BATS = ITEMS . register ( " wings_of_the_bats " , ItemWingsOfTheBats : : new ) ;
2021-11-25 21:27:45 +01:00
public static final RegistryObject < Item > DRILL_MAIN = ITEMS . register ( " drill_light_blue " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_BLACK = ITEMS . register ( " drill_black " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_BLUE = ITEMS . register ( " drill_blue " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_BROWN = ITEMS . register ( " drill_brown " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_CYAN = ITEMS . register ( " drill_cyan " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_GRAY = ITEMS . register ( " drill_gray " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_GREEN = ITEMS . register ( " drill_green " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_LIGHT_GRAY = ITEMS . register ( " drill_light_gray " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_LIME = ITEMS . register ( " drill_lime " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_MAGENTA = ITEMS . register ( " drill_magenta " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_ORANGE = ITEMS . register ( " drill_orange " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_PINK = ITEMS . register ( " drill_pink " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_PURPLE = ITEMS . register ( " drill_purple " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_RED = ITEMS . register ( " drill_red " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_WHITE = ITEMS . register ( " drill_white " , DrillItem : : new ) ;
public static final RegistryObject < Item > DRILL_YELLOW = ITEMS . register ( " drill_yellow " , DrillItem : : new ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > SINGLE_BATTERY = ITEMS . register ( " single_battery " , ( ) - > new ItemBattery ( 200000 , 1000 ) ) ;
public static final RegistryObject < Item > DOUBLE_BATTERY = ITEMS . register ( " double_battery " , ( ) - > new ItemBattery ( 350000 , 5000 ) ) ;
public static final RegistryObject < Item > TRIPLE_BATTERY = ITEMS . register ( " triple_battery " , ( ) - > new ItemBattery ( 600000 , 10000 ) ) ;
public static final RegistryObject < Item > QUADRUPLE_BATTERY = ITEMS . register ( " quadruple_battery " , ( ) - > new ItemBattery ( 1000000 , 30000 ) ) ;
public static final RegistryObject < Item > QUINTUPLE_BATTERY = ITEMS . register ( " quintuple_battery " , ( ) - > new ItemBattery ( 2000000 , 100000 ) ) ;
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > DRILL_UPGRADE_SPEED = ITEMS . register ( " drill_upgrade_speed " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . SPEED ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_SPEED_II = ITEMS . register ( " drill_upgrade_speed_ii " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . SPEED_II ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_SPEED_III = ITEMS . register ( " drill_upgrade_speed_iii " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . SPEED_III ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_SILK_TOUCH = ITEMS . register ( " drill_upgrade_silk_touch " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . SILK_TOUCH ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_FORTUNE = ITEMS . register ( " drill_upgrade_fortune " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . FORTUNE ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_FORTUNE_II = ITEMS . register ( " drill_upgrade_fortune_ii " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . FORTUNE_II ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_THREE_BY_THREE = ITEMS . register ( " drill_upgrade_three_by_three " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . THREE_BY_THREE ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_FIVE_BY_FIVE = ITEMS . register ( " drill_upgrade_five_by_five " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . FIVE_BY_FIVE ) ) ;
public static final RegistryObject < Item > DRILL_UPGRADE_BLOCK_PLACING = ITEMS . register ( " drill_upgrade_block_placing " , ( ) - > new ItemDrillUpgrade ( ItemDrillUpgrade . UpgradeType . PLACER ) ) ;
public static final RegistryObject < Item > PHANTOM_CONNECTOR = ITEMS . register ( " phantom_connector " , ItemPhantomConnector : : new ) ;
2021-11-25 21:27:45 +01:00
//public static final RegistryObject<Item> FOOD = ITEMS.register("food", ItemBase::new); //just... food? //TODO
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > CRAFTER_ON_A_STICK = ITEMS . register ( " crafter_on_a_stick " , ItemCrafterOnAStick : : new ) ;
2021-11-25 21:27:45 +01:00
//public static final RegistryObject<Item> DUST = ITEMS.register("dust", ItemDust::new); //TODO flatten
2021-05-02 18:10:21 +02:00
public static final RegistryObject < Item > SOLIDIFIED_EXPERIENCE = ITEMS . register ( " solidified_experience " , ItemSolidifiedExperience : : new ) ;
public static final RegistryObject < Item > LEAF_BLOWER = ITEMS . register ( " leaf_blower " , ( ) - > new ItemLeafBlower ( false ) ) ;
2021-11-24 17:57:31 +01:00
public static final RegistryObject < Item > ADVANCED_LEAF_BLOWER = ITEMS . register ( " advanced_leaf_blower " , ( ) - > new ItemLeafBlower ( true ) ) ;
2021-03-01 21:23:52 +01:00
2023-01-15 17:56:02 +01:00
public static final RegistryObject < Item > COFFEE_BEANS = ITEMS . register ( " coffee_beans " , ( ) - > new AABlockItem . AASeedItem ( ActuallyBlocks . COFFEE . get ( ) , ActuallyItems . defaultProps ( ) ) ) ;
2021-03-01 21:23:52 +01:00
2022-01-08 19:54:43 +01:00
public static final RegistryObject < Item > RICE_SEEDS = ITEMS . register ( " rice_seeds " , ( ) - > new AABlockItem . AASeedItem ( ActuallyBlocks . RICE . get ( ) , ActuallyItems . defaultProps ( ) ) ) ; //() -> new ItemSeed("seedRice", ActuallyBlocks.RICE.get(), FOOD.get(), TheFoods.RICE.ordinal()));
public static final RegistryObject < Item > CANOLA_SEEDS = ITEMS . register ( " canola_seeds " , ( ) - > new AABlockItem . AASeedItem ( ActuallyBlocks . CANOLA . get ( ) , ActuallyItems . defaultProps ( ) ) ) ; //() -> new ItemFoodSeed("seedCanola", ActuallyBlocks.CANOLA, itemMisc, 0, 1, 0.01F, 10).setPotionEffect(new PotionEffect(MobEffects.NAUSEA, 1000, 0), 0.2F));
public static final RegistryObject < Item > FLAX_SEEDS = ITEMS . register ( " flax_seeds " , ( ) - > new AABlockItem . AASeedItem ( ActuallyBlocks . FLAX . get ( ) , ActuallyItems . defaultProps ( ) ) ) ; //() -> new ItemSeed("seedFlax", ActuallyBlocks.FLAX, Items.STRING, 0));
2016-01-01 23:54:36 +01:00
2021-02-27 21:24:26 +01:00
// TOOLS & ARMOR
2024-03-02 21:23:08 +01:00
public static final RegistryObject < Item > WOODEN_AIOT = ITEMS . register ( " wooden_aiot " , ( ) - > new AllInOneTool ( Tiers . WOOD ) ) ;
public static final RegistryObject < Item > STONE_AIOT = ITEMS . register ( " stone_aiot " , ( ) - > new AllInOneTool ( Tiers . STONE ) ) ;
public static final RegistryObject < Item > IRON_AIOT = ITEMS . register ( " iron_aiot " , ( ) - > new AllInOneTool ( Tiers . IRON ) ) ;
public static final RegistryObject < Item > GOLD_AIOT = ITEMS . register ( " gold_aiot " , ( ) - > new AllInOneTool ( Tiers . GOLD ) ) ;
public static final RegistryObject < Item > DIAMOND_AIOT = ITEMS . register ( " diamond_aiot " , ( ) - > new AllInOneTool ( Tiers . DIAMOND ) ) ;
public static final RegistryObject < Item > NETHERITE_AIOT = ITEMS . register ( " netherite_aiot " , ( ) - > new AllInOneTool ( Tiers . NETHERITE ) ) ;
2021-05-02 18:10:21 +02:00
2021-12-30 18:30:01 +01:00
public static final Set < Supplier < Item > > SIMPLE_ITEMS = ImmutableSet . of (
2021-11-24 17:57:31 +01:00
// Crystals
BLACK_QUARTZ , RESTONIA_CRYSTAL , PALIS_CRYSTAL , DIAMATINE_CRYSTAL ,
VOID_CRYSTAL , EMERADIC_CRYSTAL , ENORI_CRYSTAL , EMPOWERED_RESTONIA_CRYSTAL ,
EMPOWERED_PALIS_CRYSTAL , EMPOWERED_DIAMATINE_CRYSTAL , EMPOWERED_VOID_CRYSTAL , EMPOWERED_EMERADIC_CRYSTAL ,
EMPOWERED_ENORI_CRYSTAL ,
// All in one tools
2022-04-11 23:10:47 +02:00
WOODEN_AIOT , STONE_AIOT , IRON_AIOT , GOLD_AIOT , DIAMOND_AIOT , NETHERITE_AIOT ,
2021-11-24 17:57:31 +01:00
// The rest?
RESTONIA_CRYSTAL_SHARD , PALIS_CRYSTAL_SHARD , DIAMATINE_CRYSTAL_SHARD , VOID_CRYSTAL_SHARD , EMERADIC_CRYSTAL_SHARD ,
ENORI_CRYSTAL_SHARD , ENGINEERS_GOGGLES , ENGINEERS_GOGGLES_ADVANCED , LASER_UPGRADE_RANGE , LASER_UPGRADE_INVISIBILITY ,
2023-01-16 22:47:31 +01:00
HANDHELD_FILLER , TRAVELERS_SACK , VOID_SACK , PLAYER_PROBE , FILTER , WATER_BOWL , PAPER_CONE , DOUGH ,
2022-01-07 00:16:37 +01:00
RING , BASIC_COIL , ADVANCED_COIL , RICE_DOUGH , TINY_COAL , TINY_CHARCOAL , RICE_SLIMEBALL , CANOLA , EMPTY_CUP ,
2021-11-24 17:57:31 +01:00
BATS_WING , DRILL_CORE , LENS , ENDER_STAR , CRYSTALLIZED_CANOLA_SEED , EMPOWERED_CANOLA_SEED , LENS_OF_COLOR ,
2021-11-25 21:27:45 +01:00
LENS_OF_DETONATION , LENS_OF_CERTAIN_DEATH , LENS_OF_THE_KILLER , LENS_OF_DISENCHANTING , LENS_OF_THE_MINER ,
2021-11-24 17:57:31 +01:00
LASER_WRENCH , TELEPORT_STAFF , WINGS_OF_THE_BATS , SINGLE_BATTERY , DOUBLE_BATTERY , TRIPLE_BATTERY , QUADRUPLE_BATTERY , QUINTUPLE_BATTERY ,
2021-11-25 21:27:45 +01:00
DRILL_BLACK , DRILL_BLUE , DRILL_BROWN , DRILL_CYAN , DRILL_GRAY , DRILL_GREEN , DRILL_MAIN , DRILL_LIGHT_GRAY ,
DRILL_LIME , DRILL_MAGENTA , DRILL_ORANGE , DRILL_PINK , DRILL_PURPLE , DRILL_RED , DRILL_WHITE , DRILL_YELLOW ,
DRILL_UPGRADE_SPEED , DRILL_UPGRADE_SPEED_II , DRILL_UPGRADE_SPEED_III , DRILL_UPGRADE_SILK_TOUCH ,
DRILL_UPGRADE_FORTUNE , DRILL_UPGRADE_FORTUNE_II , DRILL_UPGRADE_THREE_BY_THREE , DRILL_UPGRADE_FIVE_BY_FIVE , DRILL_UPGRADE_BLOCK_PLACING ,
2022-05-18 22:39:49 +02:00
COFFEE_CUP , PHANTOM_CONNECTOR , RICE ,
2022-06-18 17:53:23 +02:00
CRAFTER_ON_A_STICK ,
2021-11-24 17:57:31 +01:00
/ * CRUSHED_IRON , CRUSHED_GOLD , CRUSHED_DIAMOND , CRUSHED_EMERALD , CRUSHED_LAPIS ,
CRUSHED_QUARTZ , CRUSHED_COAL , CRUSHED_BLACK_QUARTZ , * /
SOLIDIFIED_EXPERIENCE , LEAF_BLOWER , ADVANCED_LEAF_BLOWER ,
RING_OF_GROWTH , RING_OF_MAGNETIZING ,
2023-01-15 17:56:02 +01:00
COFFEE_BEANS , RICE_SEEDS , CANOLA_SEEDS , FLAX_SEEDS
2021-11-24 17:57:31 +01:00
) ;
2021-02-27 21:24:26 +01:00
2021-11-27 01:21:01 +01:00
private static Supplier < Item > basicItem ( ) {
return ( ) - > new Item ( defaultProps ( ) ) ;
}
2021-02-27 21:24:26 +01:00
public static Item . Properties defaultProps ( ) {
2024-03-03 01:20:53 +01:00
return new Item . Properties ( ) ;
2015-01-05 22:14:01 +01:00
}
2021-05-04 18:47:45 +02:00
public static Item . Properties defaultNonStacking ( ) {
2021-08-22 17:09:06 +02:00
return defaultProps ( ) . stacksTo ( 1 ) ;
2021-05-04 18:47:45 +02:00
}
2021-11-21 21:45:33 +01:00
public static void init ( IEventBus evt ) {
ITEMS . register ( evt ) ;
}
2015-01-05 22:14:01 +01:00
}