Deprecate some items, remove gem requested things

This commit is contained in:
Zontreck 2024-02-15 17:03:46 -07:00
parent 6b9b909644
commit 70a68dd25d
69 changed files with 147 additions and 822 deletions

View file

@ -48,7 +48,7 @@ mod_name=Thresholds
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPLv3
# The mod version. See https://semver.org/
mod_version=1.4.021424.1833
mod_version=1.4.021524.1703
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -34,7 +34,7 @@ gamma:0.5
renderDistance:12
simulationDistance:12
entityDistanceScaling:1.0
guiScale:0
guiScale:2
particles:0
maxFps:120
graphicsMode:1
@ -53,7 +53,7 @@ chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
advancedItemTooltips:true
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
@ -68,7 +68,7 @@ useNativeTransport:true
mainHand:"right"
attackIndicator:1
narrator:0
tutorialStep:movement
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
@ -130,7 +130,7 @@ key_key.mekanism.key_boost:key.keyboard.left.control
key_key.mekanism.key_hud:key.keyboard.h
key_key.otemod.open_vault:key.keyboard.v
soundCategory_master:1.0
soundCategory_music:1.0
soundCategory_music:0.0
soundCategory_record:1.0
soundCategory_weather:1.0
soundCategory_block:1.0

View file

@ -26,6 +26,7 @@ import dev.zontreck.otemod.implementation.PlayerFirstJoinTag;
import dev.zontreck.otemod.implementation.compressor.CompressionChamberScreen;
import dev.zontreck.otemod.implementation.vault.*;
import dev.zontreck.otemod.integrations.KeyBindings;
import dev.zontreck.otemod.items.DeprecatedModItems;
import dev.zontreck.otemod.recipe.ModRecipes;
import net.minecraft.client.gui.screens.MenuScreens;
import net.minecraft.client.renderer.entity.EntityRenderers;
@ -134,6 +135,7 @@ public class OTEMod
ModBlocks.register(bus);
CreativeModeTabs.REGISTER.register(bus);
ModItems.register(bus);
DeprecatedModItems.register(bus);
ModEntities.register(bus);
ModEnchantments.register(bus);
ModEntityTypes.register(bus);

View file

@ -21,14 +21,7 @@ public class DeathMessages {
messages.add("!Dark_Red![1]!Dark_Red! experienced their [0] death, while running away in fear from [2]");
messages.add("!Dark_Red![1] was eaten alive by [2]");
messages.add("!Dark_Red!For their [0] death, [1]!Dark_Red! got a little bit too careless!");
messages.add("!Dark_Red!Not all whimpering messes are good, as [1]!Dark_Red! is evidence of.");
messages.add("!Dark_Red![0]!? Seriously?! Come on! [1]!Dark_Red! you can do better than this!");
messages.add("!Dark_Red!What is that... the [0]th time? For fucks sake, I'm not even surprised anymore.");
messages_falling.add("!Dark_Red![1]!Dark_Red!... oh my dear sweet [1]!Dark_Red!, oh you sweet summer child with ribbons in your hair... you cannot in fact, fly, (yet)");
messages_falling.add("!Dark_Red![1]!Dark_Red! clearly had the delusion they could fly.... their [0] death says otherwise.");
messages_falling.add("!Dark_Red![1]!Dark_Red! tried flying, but forgot their wings");
}
public static String getRandomDeathMessage(Profile playerWhoDied, DamageSource source)

View file

@ -0,0 +1,46 @@
package dev.zontreck.otemod.items;
import dev.zontreck.libzontreck.util.ChatHelpers;
import net.minecraft.network.chat.Component;
import net.minecraft.world.food.FoodProperties;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.TooltipFlag;
import net.minecraft.world.level.Level;
import java.util.List;
public class DeprecatedItem extends Item
{
public DeprecatedItem()
{
super(new Properties().fireResistant());
}
@Override
public boolean isEdible() {
return true;
}
@Override
public boolean isFoil(ItemStack p_41453_) {
return true;
}
/**
* This is to give a use to an otherwise useless item. The piglins will exchange the item and it gets removed in that way.
* @param stack
* @return
*/
@Override
public boolean isPiglinCurrency(ItemStack stack) {
return true;
}
@Override
public void appendHoverText(ItemStack p_41421_, Level p_41422_, List<Component> p_41423_, TooltipFlag p_41424_) {
p_41423_.add(ChatHelpers.macro("!Dark_Red!This item is deprecated"));
p_41423_.add(ChatHelpers.macro("!Dark_Green!It would appear this item smells faintly of gold. Maybe piglins will accept it?"));
p_41423_.add(ChatHelpers.macro("!Dark_Red!This item is scheduled for removal in a future version. You should use it before it is too late."));
}
}

View file

@ -0,0 +1,26 @@
package dev.zontreck.otemod.items;
import dev.zontreck.otemod.OTEMod;
import dev.zontreck.otemod.implementation.CreativeModeTabs;
import net.minecraft.world.item.Item;
import net.minecraftforge.eventbus.api.IEventBus;
import net.minecraftforge.registries.DeferredRegister;
import net.minecraftforge.registries.ForgeRegistries;
import net.minecraftforge.registries.RegistryObject;
public class DeprecatedModItems
{
public static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, OTEMod.MOD_ID);
public static final RegistryObject<Item> ILUSIUM_ORE = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_ore", () -> new DeprecatedItem()));
public static final RegistryObject<Item> ILUSIUM_ROD = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_rod", () -> new DeprecatedItem()));
public static final RegistryObject<Item> ILUSIUM_INGOT = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_ingot", () -> new DeprecatedItem()));
public static final RegistryObject<Item> AURORA_COMPOUND = CreativeModeTabs.addToOTEModTab(ITEMS.register("aurora_compound", () -> new DeprecatedItem()));
public static void register(IEventBus bus){
ITEMS.register(bus);
}
}

View file

@ -18,7 +18,6 @@ public class ModItems {
public static final RegistryObject<Item> IHAN_CRYSTAL = CreativeModeTabs.addToOTEModTab(ITEMS.register("ihan_crystal", () -> new Item(new Item.Properties())));
public static final RegistryObject<Item> AURORA_COMPOUND = CreativeModeTabs.addToOTEModTab(ITEMS.register("aurora_compound", () -> new Item(new Item.Properties())));
public static final RegistryObject<Item> ETERNIUM_RAW_ORE = CreativeModeTabs.addToOTEModTab(ITEMS.register("eternium_ore", () -> new Item(new Item.Properties())));
@ -58,15 +57,11 @@ public class ModItems {
public static final RegistryObject<Item> POSS_BALL = CreativeModeTabs.addToOTEModTab(ITEMS.register("poss_ball", () -> new PossBallItem(new Item.Properties())));
public static final RegistryObject<Item> ILUSIUM_ORE = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_ore", () -> new Item(new Item.Properties().fireResistant())));
public static final RegistryObject<Item> ILUSIUM_ROD = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_rod", () -> new Item(new Item.Properties().fireResistant())));
//public static final RegistryObject<Item> ILUSIUM_DUST = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_dust", () -> new Item(new Item.Properties().fireResistant())));
public static final RegistryObject<Item> ILUSIUM_INGOT = CreativeModeTabs.addToOTEModTab(ITEMS.register("ilusium_ingot", () -> new Item(new Item.Properties().fireResistant())));
public static final RegistryObject<Item> EMPTY_SPAWN_EGG = CreativeModeTabs.addToOTEModTab(ITEMS.register("empty_spawn_egg", () -> new Item(new Item.Properties())));
public static final RegistryObject<Item> GENERIC_DEPRECATED_ITEM = CreativeModeTabs.addToOTEModTab(ITEMS.register("deprecated", ()->new DeprecatedItem()));
//public static final RegistryObject<Item> POSSUM_SPAWN_EGG = ITEMS.register("possum_spawn_egg", () -> new ForgeSpawnEggItem(ModEntityTypes.POSSUM, 0x938686, 0xc68787, new Item.Properties())));

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "otemod:block/aurora_block"
}
}
}

View file

@ -1,124 +0,0 @@
{
"variants": {
"facing=east,half=lower,hinge=left,open=false": {
"model": "otemod:block/aurora_door_bottom"
},
"facing=east,half=lower,hinge=left,open=true": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 90
},
"facing=east,half=lower,hinge=right,open=false": {
"model": "otemod:block/aurora_door_bottom_hinge"
},
"facing=east,half=lower,hinge=right,open=true": {
"model": "otemod:block/aurora_door_bottom",
"y": 270
},
"facing=east,half=upper,hinge=left,open=false": {
"model": "otemod:block/aurora_door_top"
},
"facing=east,half=upper,hinge=left,open=true": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 90
},
"facing=east,half=upper,hinge=right,open=false": {
"model": "otemod:block/aurora_door_top_hinge"
},
"facing=east,half=upper,hinge=right,open=true": {
"model": "otemod:block/aurora_door_top",
"y": 270
},
"facing=north,half=lower,hinge=left,open=false": {
"model": "otemod:block/aurora_door_bottom",
"y": 270
},
"facing=north,half=lower,hinge=left,open=true": {
"model": "otemod:block/aurora_door_bottom_hinge"
},
"facing=north,half=lower,hinge=right,open=false": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 270
},
"facing=north,half=lower,hinge=right,open=true": {
"model": "otemod:block/aurora_door_bottom",
"y": 180
},
"facing=north,half=upper,hinge=left,open=false": {
"model": "otemod:block/aurora_door_top",
"y": 270
},
"facing=north,half=upper,hinge=left,open=true": {
"model": "otemod:block/aurora_door_top_hinge"
},
"facing=north,half=upper,hinge=right,open=false": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 270
},
"facing=north,half=upper,hinge=right,open=true": {
"model": "otemod:block/aurora_door_top",
"y": 180
},
"facing=south,half=lower,hinge=left,open=false": {
"model": "otemod:block/aurora_door_bottom",
"y": 90
},
"facing=south,half=lower,hinge=left,open=true": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 180
},
"facing=south,half=lower,hinge=right,open=false": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 90
},
"facing=south,half=lower,hinge=right,open=true": {
"model": "otemod:block/aurora_door_bottom"
},
"facing=south,half=upper,hinge=left,open=false": {
"model": "otemod:block/aurora_door_top",
"y": 90
},
"facing=south,half=upper,hinge=left,open=true": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 180
},
"facing=south,half=upper,hinge=right,open=false": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 90
},
"facing=south,half=upper,hinge=right,open=true": {
"model": "otemod:block/aurora_door_top"
},
"facing=west,half=lower,hinge=left,open=false": {
"model": "otemod:block/aurora_door_bottom",
"y": 180
},
"facing=west,half=lower,hinge=left,open=true": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 270
},
"facing=west,half=lower,hinge=right,open=false": {
"model": "otemod:block/aurora_door_bottom_hinge",
"y": 180
},
"facing=west,half=lower,hinge=right,open=true": {
"model": "otemod:block/aurora_door_bottom",
"y": 90
},
"facing=west,half=upper,hinge=left,open=false": {
"model": "otemod:block/aurora_door_top",
"y": 180
},
"facing=west,half=upper,hinge=left,open=true": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 270
},
"facing=west,half=upper,hinge=right,open=false": {
"model": "otemod:block/aurora_door_top_hinge",
"y": 180
},
"facing=west,half=upper,hinge=right,open=true": {
"model": "otemod:block/aurora_door_top",
"y": 90
}
}
}

View file

@ -36,19 +36,17 @@
"item.otemod.poss_ball": "Physics Operated Storage System (POSS)",
"item.otemod.ilusium_ingot": "Ilusium Ingot",
"item.otemod.ilusium_rod": "Ilusium Rod",
"item.otemod.ilusium_dust": "Ilusium Dust",
"item.otemod.ilusium_ore": "Raw Ilusium Ore",
"item.otemod.empty_spawn_egg": "Empty Spawn Egg",
"item.otemod.compressed_obsidian_sheet": "Sheet of Compressed Obsidian",
"item.otemod.layered_compressed_obsidian_sheet": "Layered Sheet of Compressed Obsidian",
"item.otemod.encased_singularity": "Encased Singualrity",
"item.otemod.encased_singularity.desc": "A singularity encased in stone, ready to be further compressed into bedrock",
"item.otemod.deprecated": "Deprecated Item",
"block.otemod.eternium_ore_block": "Eternium Ore",
"block.otemod.deepslate_eternium_ore_block": "Deepslate Eternium Ore",
"block.otemod.aurora_block": "Aurora Block",
"block.otemod.aurora_door": "Aurora Door",
"block.otemod.clear_glass_block": "Clear Glass Block",
"block.otemod.item_scrubber": "Item Scrubber",
"block.otemod.magical_scrubber": "Magical Scrubber",

View file

@ -1,322 +0,0 @@
{
"credit": "Made with Blockbench",
"render_type": "minecraft:translucent",
"texture_size": [64, 64],
"textures": {
"0": "otemod:block/aurora/body",
"1": "otemod:block/aurora/inside",
"particle": "otemod:block/aurora/body"
},
"elements": [
{
"from": [9, 15, 0],
"to": [16, 16, 16],
"faces": {
"north": {"uv": [12.5, 6, 14.25, 6.25], "texture": "#0"},
"east": {"uv": [11, 3, 15, 3.25], "texture": "#0"},
"south": {"uv": [12.75, 12.25, 14.5, 12.5], "texture": "#0"},
"west": {"uv": [11, 3.25, 15, 3.5], "texture": "#0"},
"up": {"uv": [1.75, 4, 0, 0], "texture": "#0"},
"down": {"uv": [3.5, 0, 1.75, 4], "texture": "#0"}
}
},
{
"from": [0, 0, 0],
"to": [7, 1, 16],
"faces": {
"north": {"uv": [12.75, 12.5, 14.5, 12.75], "texture": "#0"},
"east": {"uv": [11, 3.5, 15, 3.75], "texture": "#0"},
"south": {"uv": [12.75, 12.75, 14.5, 13], "texture": "#0"},
"west": {"uv": [11, 3.75, 15, 4], "texture": "#0"},
"up": {"uv": [5.25, 4, 3.5, 0], "texture": "#0"},
"down": {"uv": [1.75, 4, 0, 8], "texture": "#0"}
}
},
{
"from": [7, 0, 0],
"to": [9, 1, 7],
"faces": {
"north": {"uv": [5.75, 8, 6.25, 8.25], "texture": "#0"},
"east": {"uv": [0.5, 13, 2.25, 13.25], "texture": "#0"},
"south": {"uv": [6.25, 8, 6.75, 8.25], "texture": "#0"},
"west": {"uv": [6, 13, 7.75, 13.25], "texture": "#0"},
"up": {"uv": [5, 13.75, 4.5, 12], "texture": "#0"},
"down": {"uv": [12.5, 4.5, 12, 6.25], "texture": "#0"}
}
},
{
"from": [7, 0, 9],
"to": [9, 1, 16],
"faces": {
"north": {"uv": [5.75, 8.25, 6.25, 8.5], "texture": "#0"},
"east": {"uv": [7.75, 13, 9.5, 13.25], "texture": "#0"},
"south": {"uv": [6.25, 8.25, 6.75, 8.5], "texture": "#0"},
"west": {"uv": [9.5, 13, 11.25, 13.25], "texture": "#0"},
"up": {"uv": [5.5, 13.75, 5, 12], "texture": "#0"},
"down": {"uv": [6, 12, 5.5, 13.75], "texture": "#0"}
}
},
{
"from": [9, 0, 0],
"to": [16, 1, 16],
"faces": {
"north": {"uv": [12.75, 13, 14.5, 13.25], "texture": "#0"},
"east": {"uv": [11, 4, 15, 4.25], "texture": "#0"},
"south": {"uv": [0.5, 13.25, 2.25, 13.5], "texture": "#0"},
"west": {"uv": [11, 4.25, 15, 4.5], "texture": "#0"},
"up": {"uv": [3.5, 8, 1.75, 4], "texture": "#0"},
"down": {"uv": [5.25, 4, 3.5, 8], "texture": "#0"}
}
},
{
"from": [0, 1, 0],
"to": [1, 7, 16],
"faces": {
"north": {"uv": [10.25, 13.25, 10.5, 14.75], "texture": "#0"},
"east": {"uv": [7, 0, 11, 1.5], "texture": "#0"},
"south": {"uv": [10.5, 13.25, 10.75, 14.75], "texture": "#0"},
"west": {"uv": [7, 1.5, 11, 3], "texture": "#0"},
"up": {"uv": [11.25, 8.5, 11, 4.5], "texture": "#0"},
"down": {"uv": [11.5, 4.5, 11.25, 8.5], "texture": "#0"}
}
},
{
"from": [0, 7, 13],
"to": [1, 9, 16],
"faces": {
"north": {"uv": [6.75, 8, 7, 8.5], "texture": "#0"},
"east": {"uv": [4, 8, 5.75, 8.5], "texture": "#0"},
"south": {"uv": [5.75, 8.5, 6, 9], "texture": "#0"},
"west": {"uv": [4, 8.5, 5.75, 9], "texture": "#0"},
"up": {"uv": [2.5, 14.75, 2.25, 13], "texture": "#0"},
"down": {"uv": [2.75, 13, 2.5, 14.75], "texture": "#0"}
}
},
{
"from": [0, 9, 0],
"to": [1, 15, 16],
"faces": {
"north": {"uv": [10.75, 13.25, 11, 14.75], "texture": "#0"},
"east": {"uv": [7, 3, 11, 4.5], "texture": "#0"},
"south": {"uv": [11, 13.25, 11.25, 14.75], "texture": "#0"},
"west": {"uv": [7, 4.5, 11, 6], "texture": "#0"},
"up": {"uv": [11.75, 8.5, 11.5, 4.5], "texture": "#0"},
"down": {"uv": [12, 4.5, 11.75, 8.5], "texture": "#0"}
}
},
{
"from": [0, 7, 0],
"to": [1, 9, 7],
"faces": {
"north": {"uv": [6, 8.5, 6.25, 9], "texture": "#0"},
"east": {"uv": [11.5, 9, 13.25, 9.5], "texture": "#0"},
"south": {"uv": [6.25, 8.5, 6.5, 9], "texture": "#0"},
"west": {"uv": [11.5, 9.5, 13.25, 10], "texture": "#0"},
"up": {"uv": [3, 14.75, 2.75, 13], "texture": "#0"},
"down": {"uv": [3.25, 13, 3, 14.75], "texture": "#0"}
}
},
{
"from": [15, 12, 0],
"to": [16, 15, 16],
"faces": {
"north": {"uv": [12.75, 13.25, 13, 14.75], "texture": "#0"},
"east": {"uv": [7, 6, 11, 7.5], "texture": "#0"},
"south": {"uv": [13, 13.25, 13.25, 14.75], "texture": "#0"},
"west": {"uv": [7, 7.5, 11, 9], "texture": "#0"},
"up": {"uv": [3.75, 16, 3.5, 12], "texture": "#0"},
"down": {"uv": [4, 12, 3.75, 16], "texture": "#0"}
}
},
{
"from": [15, 7, 12],
"to": [16, 12, 16],
"faces": {
"north": {"uv": [6.5, 8.5, 6.75, 9], "texture": "#0"},
"east": {"uv": [11.5, 10, 13.25, 10.5], "texture": "#0"},
"south": {"uv": [6.75, 8.5, 7, 9], "texture": "#0"},
"west": {"uv": [6, 12, 7.75, 12.5], "texture": "#0"},
"up": {"uv": [3.5, 14.75, 3.25, 13], "texture": "#0"},
"down": {"uv": [6.25, 13.25, 6, 15], "texture": "#0"}
}
},
{
"from": [15, 7, 0],
"to": [16, 12, 7],
"faces": {
"north": {"uv": [3.5, 9.5, 3.75, 10], "texture": "#0"},
"east": {"uv": [12, 6.25, 13.75, 6.75], "texture": "#0"},
"south": {"uv": [3.75, 9.5, 4, 10], "texture": "#0"},
"west": {"uv": [12, 6.75, 13.75, 7.25], "texture": "#0"},
"up": {"uv": [6.5, 15, 6.25, 13.25], "texture": "#0"},
"down": {"uv": [6.75, 13.25, 6.5, 15], "texture": "#0"}
}
},
{
"from": [15, 1, 0],
"to": [16, 7, 16],
"faces": {
"north": {"uv": [13.25, 13.25, 13.5, 14.75], "texture": "#0"},
"east": {"uv": [0, 8, 4, 9.5], "texture": "#0"},
"south": {"uv": [0.5, 13.5, 0.75, 15], "texture": "#0"},
"west": {"uv": [4, 9, 8, 10.5], "texture": "#0"},
"up": {"uv": [4.25, 16, 4, 12], "texture": "#0"},
"down": {"uv": [4.5, 12, 4.25, 16], "texture": "#0"}
}
},
{
"from": [1, 9, 0],
"to": [15, 15, 1],
"faces": {
"north": {"uv": [8, 9, 11.5, 10.5], "texture": "#0"},
"east": {"uv": [0.75, 13.5, 1, 15], "texture": "#0"},
"south": {"uv": [0, 9.5, 3.5, 11], "texture": "#0"},
"west": {"uv": [1, 13.5, 1.25, 15], "texture": "#0"},
"up": {"uv": [15.5, 7.5, 12, 7.25], "texture": "#0"},
"down": {"uv": [15.5, 7.5, 12, 7.75], "texture": "#0"}
}
},
{
"from": [9, 7, 0],
"to": [15, 9, 1],
"faces": {
"north": {"uv": [0.5, 12.5, 2, 13], "texture": "#0"},
"east": {"uv": [3.5, 10, 3.75, 10.5], "texture": "#0"},
"south": {"uv": [2, 12.5, 3.5, 13], "texture": "#0"},
"west": {"uv": [3.75, 10, 4, 10.5], "texture": "#0"},
"up": {"uv": [14.75, 10.25, 13.25, 10], "texture": "#0"},
"down": {"uv": [14.75, 10.25, 13.25, 10.5], "texture": "#0"}
}
},
{
"from": [1, 3, 0],
"to": [7, 9, 1],
"faces": {
"north": {"uv": [12.5, 4.5, 14, 5], "texture": "#0"},
"east": {"uv": [10.5, 12.5, 10.75, 13], "texture": "#0"},
"south": {"uv": [12.5, 5, 14, 5.5], "texture": "#0"},
"west": {"uv": [10.75, 12.5, 11, 13], "texture": "#0"},
"up": {"uv": [8.25, 13.75, 6.75, 13.5], "texture": "#0"},
"down": {"uv": [9.75, 13.5, 8.25, 13.75], "texture": "#0"}
}
},
{
"from": [1, 1, 0],
"to": [15, 3, 1],
"faces": {
"north": {"uv": [3.5, 10.5, 7, 12], "texture": "#0"},
"east": {"uv": [1.25, 13.5, 1.5, 15], "texture": "#0"},
"south": {"uv": [7, 10.5, 10.5, 12], "texture": "#0"},
"west": {"uv": [1.5, 13.5, 1.75, 15], "texture": "#0"},
"up": {"uv": [11.25, 12.25, 7.75, 12], "texture": "#0"},
"down": {"uv": [15.5, 7.75, 12, 8], "texture": "#0"}
}
},
{
"from": [1, 1, 15],
"to": [15, 5, 16],
"faces": {
"north": {"uv": [10.5, 10.5, 14, 12], "texture": "#0"},
"east": {"uv": [1.75, 13.5, 2, 15], "texture": "#0"},
"south": {"uv": [0, 11, 3.5, 12.5], "texture": "#0"},
"west": {"uv": [2, 13.5, 2.25, 15], "texture": "#0"},
"up": {"uv": [15.5, 8.25, 12, 8], "texture": "#0"},
"down": {"uv": [15.5, 8.25, 12, 8.5], "texture": "#0"}
}
},
{
"from": [1, 5, 15],
"to": [5, 11, 16],
"faces": {
"north": {"uv": [12.5, 5.5, 14, 6], "texture": "#0"},
"east": {"uv": [11, 12.5, 11.25, 13], "texture": "#0"},
"south": {"uv": [6, 12.5, 7.5, 13], "texture": "#0"},
"west": {"uv": [13.75, 6.5, 14, 7], "texture": "#0"},
"up": {"uv": [15, 13.5, 13.5, 13.25], "texture": "#0"},
"down": {"uv": [15, 13.5, 13.5, 13.75], "texture": "#0"}
}
},
{
"from": [11, 5, 15],
"to": [15, 11, 16],
"faces": {
"north": {"uv": [7.5, 12.5, 9, 13], "texture": "#0"},
"east": {"uv": [6.75, 13.75, 7, 14.25], "texture": "#0"},
"south": {"uv": [9, 12.5, 10.5, 13], "texture": "#0"},
"west": {"uv": [7, 13.75, 7.25, 14.25], "texture": "#0"},
"up": {"uv": [6, 14, 4.5, 13.75], "texture": "#0"},
"down": {"uv": [15.25, 6.25, 13.75, 6.5], "texture": "#0"}
}
},
{
"from": [1, 11, 15],
"to": [15, 15, 16],
"faces": {
"north": {"uv": [11, 0, 14.5, 1.5], "texture": "#0"},
"east": {"uv": [9.75, 13.5, 10, 15], "texture": "#0"},
"south": {"uv": [11, 1.5, 14.5, 3], "texture": "#0"},
"west": {"uv": [10, 13.5, 10.25, 15], "texture": "#0"},
"up": {"uv": [14.75, 12.25, 11.25, 12], "texture": "#0"},
"down": {"uv": [11.25, 12.25, 7.75, 12.5], "texture": "#0"}
}
},
{
"from": [7, 15, 9],
"to": [9, 16, 16],
"faces": {
"north": {"uv": [13.75, 7, 14.25, 7.25], "texture": "#0"},
"east": {"uv": [6.75, 13.25, 8.5, 13.5], "texture": "#0"},
"south": {"uv": [7.25, 13.75, 7.75, 14], "texture": "#0"},
"west": {"uv": [8.5, 13.25, 10.25, 13.5], "texture": "#0"},
"up": {"uv": [11.75, 14, 11.25, 12.25], "texture": "#0"},
"down": {"uv": [12.25, 12.25, 11.75, 14], "texture": "#0"}
}
},
{
"from": [7, 15, 0],
"to": [9, 16, 7],
"faces": {
"north": {"uv": [7.75, 13.75, 8.25, 14], "texture": "#0"},
"east": {"uv": [13.25, 9, 15, 9.25], "texture": "#0"},
"south": {"uv": [8.25, 13.75, 8.75, 14], "texture": "#0"},
"west": {"uv": [13.25, 9.25, 15, 9.5], "texture": "#0"},
"up": {"uv": [12.75, 14, 12.25, 12.25], "texture": "#0"},
"down": {"uv": [0.5, 12.5, 0, 14.25], "texture": "#0"}
}
},
{
"from": [0, 15, 0],
"to": [7, 16, 16],
"faces": {
"north": {"uv": [13.25, 9.5, 15, 9.75], "texture": "#0"},
"east": {"uv": [11, 8.5, 15, 8.75], "texture": "#0"},
"south": {"uv": [13.25, 9.75, 15, 10], "texture": "#0"},
"west": {"uv": [11, 8.75, 15, 9], "texture": "#0"},
"up": {"uv": [7, 4, 5.25, 0], "texture": "#0"},
"down": {"uv": [7, 4, 5.25, 8], "texture": "#0"}
}
},
{
"name": "inner",
"from": [1, 1, 1],
"to": [15, 15, 15],
"faces": {
"north": {"uv": [0, 0, 16, 16], "texture": "#1"},
"east": {"uv": [0, 0, 16, 16], "texture": "#1"},
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"},
"west": {"uv": [0, 0, 16, 16], "texture": "#1"},
"up": {"uv": [16, 16, 0, 0], "texture": "#1"},
"down": {"uv": [16, 0, 0, 16], "texture": "#1"}
}
}
],
"groups": [
{
"name": "Outer Panels",
"origin": [0, 0, 0],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]
},
24
]
}

View file

@ -1,8 +0,0 @@
{
"parent": "minecraft:block/door_bottom",
"render_type": "minecraft:translucent",
"textures": {
"top": "minecraft:block/aurora_door_top",
"bottom": "minecraft:block/aurora_door_bottom"
}
}

View file

@ -1,8 +0,0 @@
{
"parent": "minecraft:block/door_bottom_rh",
"render_type": "minecraft:translucent",
"textures": {
"top": "minecraft:block/aurora_door_top",
"bottom": "minecraft:block/aurora_door_bottom"
}
}

View file

@ -1,8 +0,0 @@
{
"parent": "minecraft:block/door_top",
"render_type": "minecraft:translucent",
"textures": {
"top": "minecraft:block/aurora_door_top",
"bottom": "minecraft:block/aurora_door_bottom"
}
}

View file

@ -1,8 +0,0 @@
{
"parent": "minecraft:block/door_top_rh",
"render_type": "minecraft:translucent",
"textures": {
"top": "minecraft:block/aurora_door_top",
"bottom": "minecraft:block/aurora_door_bottom"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/deepslate_ilusium_ore_block"
"all": "otemod:block/deprecated"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/ilusium_block"
"all": "otemod:block/deprecated"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "otemod:block/ilusium_ore_block"
"all": "otemod:block/deprecated"
}
}

View file

@ -1,15 +0,0 @@
{
"textures": {
"particle": "block/ilusium_portal",
"portal": "block/ilusium_portal"
},
"elements": [
{ "from": [ 6, 0, 0 ],
"to": [ 10, 16, 16 ],
"faces": {
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" },
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }
}
}
]
}

View file

@ -1,15 +0,0 @@
{
"textures": {
"particle": "block/ilusium_portal",
"portal": "block/ilusium_portal"
},
"elements": [
{ "from": [ 0, 0, 6 ],
"to": [ 16, 16, 10 ],
"faces": {
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#portal" }
}
}
]
}

View file

@ -1,3 +0,0 @@
{
"parent": "otemod:block/aurora_block"
}

View file

@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/aurora_compound"
"layer0": "otemod:item/deprecated"
}
}

View file

@ -1,6 +0,0 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "otemod:item/aurora_door"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/ilusium_dust"
"layer0": "otemod:item/deprecated"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/ilusium_ingot"
"layer0": "otemod:item/deprecated"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/ilusium_ore"
"layer0": "otemod:item/deprecated"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "otemod:item/ilusium_rod"
"layer0": "otemod:item/deprecated"
}
}

View file

@ -2,7 +2,6 @@
"values": [
"#forge:ores/cobalt",
"#forge:ores/eternium",
"#forge:ores/vaultsteel",
"#forge:ores/ilusium"
"#forge:ores/vaultsteel"
]
}

View file

@ -1,6 +0,0 @@
{
"values": [
"otemod:ilusium_ore_block",
"otemod:deepslate_ilusium_ore_block"
]
}

View file

@ -1,6 +1,5 @@
{
"values": [
"#forge:storage_blocks/eternium",
"#forge:storage_blocks/ilusium"
"#forge:storage_blocks/eternium"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:ilusium_block"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"#forge:uncrafting_tables/uncrafter"
]
}

View file

@ -1,7 +1,6 @@
{
"values": [
"#forge:ingots/eternium",
"#forge:ingots/vaultsteel",
"#forge:ingots/ilusium"
"#forge:ingots/vaultsteel"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:ilusium_ingot"
]
}

View file

@ -1,7 +1,6 @@
{
"values": [
"#forge:ores/eternium",
"#forge:ores/vaultsteel",
"#forge:ores/ilusium"
"#forge:ores/vaultsteel"
]
}

View file

@ -1,7 +0,0 @@
{
"values": [
"otemod:ilusium_ore",
"otemod:ilusium_ore_block",
"otemod:deepslate_ilusium_ore_block"
]
}

View file

@ -1,7 +1,6 @@
{
"values": [
"#forge:raw_materials/eternium",
"#forge:raw_materials/ilusium",
"#forge:raw_materials/vaultsteel"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:ilusium_ore"
]
}

View file

@ -1,6 +1,5 @@
{
"values": [
"#forge:rods/eternium",
"#forge:rods/ilusium"
"#forge:rods/eternium"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:ilusium_rod"
]
}

View file

@ -1,6 +1,5 @@
{
"values": [
"#forge:storage_blocks/eternium",
"#forge:storage_blocks/ilusium"
"#forge:storage_blocks/eternium"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:ilusium_block"
]
}

View file

@ -1,5 +0,0 @@
{
"values":[
"#forge:unusual/experience_blocks"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:aurora_block"
]
}

View file

@ -0,0 +1,8 @@
{
"values": [
"otemod:ilusium_ore",
"otemod:ilusium_ingot",
"otemod:ilusium_rod",
"otemod:aurora_compound"
]
}

View file

@ -7,7 +7,7 @@
"has_raids": true,
"has_skylight": false,
"has_ceiling": false,
"coordinate_scale": 1,
"coordinate_scale": 16,
"ambient_light": 1,
"fixed_time": 1,
"logical_height": 384,
@ -15,6 +15,12 @@
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": 0,
"monster_spawn_light_level": {
"type": "minecraft:uniform",
"value": {
"min_inclusive": 0,
"max_inclusive": 0
}
},
"monster_spawn_block_light_limit": 0
}

View file

@ -1,6 +0,0 @@
{
"type": "forge:add_features",
"features": ["otemod:ilusium_oregen_overworld"],
"biomes": "#is_overworld",
"step": "underground_ores"
}

View file

@ -1,20 +0,0 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "otemod:aurora_block"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -1,20 +0,0 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "otemod:aurora_door"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"CCC",
"CCC",
"CCC"
],
"key": {
"C": {
"item": "otemod:aurora_compound"
}
},
"result": {
"item": "otemod:aurora_block",
"count": 1
}
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"CC",
"CC",
"CC"
],
"key": {
"C": {
"item": "otemod:aurora_block"
}
},
"result": {
"item": "otemod:aurora_door",
"count": 2
}
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"CCC",
"CCC",
"CCC"
],
"key": {
"C": {
"item": "otemod:ilusium_ingot"
}
},
"result": {
"item": "otemod:ilusium_block",
"count": 1
}
}

View file

@ -1,12 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"tag": "forge:storage_blocks/ilusium"
}
],
"result": {
"item": "otemod:ilusium_ingot",
"count": 9
}
}

View file

@ -1,11 +1,12 @@
{
"type": "minecraft:smelting",
"ingredient": [
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"tag": "forge:ores/ilusium"
"tag": "otemod:deprecated"
}
],
"result": "otemod:ilusium_ingot",
"experience": 3,
"cookingtime": 600
}
"result": {
"item": "otemod:deprecated",
"count": 1
}
}

View file

@ -1,17 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" C",
" C ",
"C "
],
"key": {
"C": {
"item": "otemod:ilusium_ingot"
}
},
"result": {
"item": "otemod:ilusium_rod",
"count": 1
}
}

View file

@ -0,0 +1,7 @@
{
"values": [
"otemod:ilusium_ore_block",
"otemod:deepslate_ilusium_ore_block",
"otemod:ilusium_block"
]
}

View file

@ -0,0 +1,8 @@
{
"values": [
"#otemod:blocks/thresholds/red",
"#otemod:blocks/thresholds/cyan",
"#otemod:blocks/thresholds/lime",
"#otemod:blocks/thresholds/pool"
]
}

View file

@ -0,0 +1,5 @@
{
"values": [
"#otemod:blocks/uncrafting_tables/uncrafter"
]
}

View file

@ -0,0 +1,7 @@
{
"values": [
"otemod:ilusium_ore_block",
"otemod:deepslate_ilusium_ore_block",
"otemod:ilusium_block"
]
}

View file

@ -1,8 +0,0 @@
{
"values": [
"#otemod:thresholds/red",
"#otemod:thresholds/cyan",
"#otemod:thresholds/lime",
"#otemod:thresholds/pool"
]
}

View file

@ -1,5 +0,0 @@
{
"values": [
"otemod:vault_steel_ingot"
]
}

View file

@ -1,27 +0,0 @@
{
"type": "minecraft:ore",
"config": {
"size": 4,
"discard_chance_on_air_exposure": 0.25,
"targets": [
{
"target": {
"predicate_type": "minecraft:tag_match",
"tag": "minecraft:stone_ore_replaceables"
},
"state": {
"Name": "otemod:ilusium_ore_block"
}
},
{
"target": {
"predicate_type": "minecraft:tag_match",
"tag": "minecraft:deepslate_ore_replaceables"
},
"state": {
"Name": "otemod:deepslate_ilusium_ore_block"
}
}
]
}
}

View file

@ -1,27 +0,0 @@
{
"feature": "otemod:ilusium_oregen_overworld",
"placement": [
{
"type": "minecraft:count",
"count": 4
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:height_range",
"height": {
"type": "minecraft:trapezoid",
"min_inclusive": {
"absolute": -64
},
"max_inclusive": {
"absolute": 32
}
}
},
{
"type": "minecraft:biome"
}
]
}