fixes, changes and more
|
|
@ -88,7 +88,7 @@ dependencies {
|
||||||
implementation fg.deobf("curse.maven:markdownmanual-502485:3738124")
|
implementation fg.deobf("curse.maven:markdownmanual-502485:3738124")
|
||||||
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:9.7.0.180")
|
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}:9.7.0.180")
|
||||||
|
|
||||||
implementation fg.deobf("curse.maven:libre-computers-1163239:6137004")
|
// implementation fg.deobf("curse.maven:libre-computers-1163239:6137004")
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
package com.therealm18studios.lc;
|
|
||||||
|
|
||||||
import com.therealm18studios.lc.common.item.Items;
|
|
||||||
import com.therealm18studios.lc.manual.Manuals;
|
|
||||||
import li.cil.oc2.common.ConfigManager;
|
|
||||||
import net.minecraftforge.api.distmarker.Dist;
|
|
||||||
import net.minecraftforge.fml.DistExecutor;
|
|
||||||
import net.minecraftforge.fml.common.Mod;
|
|
||||||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
|
||||||
|
|
||||||
@Mod("librecomponents")
|
|
||||||
public final class LibreComponents {
|
|
||||||
|
|
||||||
public static String MOD_ID = "librecomponents";
|
|
||||||
|
|
||||||
public LibreComponents() {
|
|
||||||
|
|
||||||
ConfigManager.initialize();
|
|
||||||
|
|
||||||
Items.initialize();
|
|
||||||
DistExecutor.unsafeRunWhenOn(Dist.CLIENT, () -> Manuals::initialize);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
22
src/main/java/com/therealm18studios/oc2rc/OC2RC.java
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
package com.therealm18studios.oc2rc;
|
||||||
|
|
||||||
|
import com.therealm18studios.oc2rc.common.item.Items;
|
||||||
|
import com.therealm18studios.oc2rc.manual.Manuals;
|
||||||
|
import li.cil.oc2r.common.ConfigManager;
|
||||||
|
import net.minecraftforge.api.distmarker.Dist;
|
||||||
|
import net.minecraftforge.fml.DistExecutor;
|
||||||
|
import net.minecraftforge.fml.common.Mod;
|
||||||
|
|
||||||
|
@Mod("oc2rc")
|
||||||
|
public final class OC2RC {
|
||||||
|
|
||||||
|
public static String MOD_ID = "oc2rc";
|
||||||
|
|
||||||
|
public OC2RC() {
|
||||||
|
|
||||||
|
ConfigManager.initialize();
|
||||||
|
|
||||||
|
Items.initialize();
|
||||||
|
DistExecutor.unsafeRunWhenOn(Dist.CLIENT, () -> Manuals::initialize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
package com.therealm18studios.lc.common.item;
|
package com.therealm18studios.oc2rc.common.item;
|
||||||
|
|
||||||
import com.therealm18studios.lc.LibreComponents;
|
import com.therealm18studios.oc2rc.OC2RC;
|
||||||
import li.cil.oc2.common.item.MemoryItem;
|
import li.cil.oc2r.common.item.MemoryItem;
|
||||||
import li.cil.oc2.common.item.HardDriveItem;
|
import li.cil.oc2r.common.item.HardDriveItem;
|
||||||
//import li.cil.oc2.common.item.CPUItem;
|
//import li.cil.oc2r.common.item.CPUItem;
|
||||||
import li.cil.oc2.common.item.FloppyItem;
|
import li.cil.oc2r.common.item.FloppyItem;
|
||||||
import net.minecraft.world.item.DyeColor;
|
import net.minecraft.world.item.DyeColor;
|
||||||
import net.minecraft.world.item.Item;
|
import net.minecraft.world.item.Item;
|
||||||
import net.minecraft.world.level.block.Block;
|
import net.minecraft.world.level.block.Block;
|
||||||
|
|
@ -17,7 +17,7 @@ import java.util.function.Function;
|
||||||
import java.util.function.Supplier;
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
public final class Items {
|
public final class Items {
|
||||||
private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, LibreComponents.MOD_ID);
|
private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, OC2RC.MOD_ID);
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package com.therealm18studios.lc.manual;
|
package com.therealm18studios.oc2rc.manual;
|
||||||
|
|
||||||
import com.therealm18studios.lc.LibreComponents;
|
import com.therealm18studios.oc2rc.OC2RC;
|
||||||
import com.therealm18studios.lc.common.item.Items;
|
import com.therealm18studios.oc2rc.common.item.Items;
|
||||||
import li.cil.manual.api.ManualModel;
|
import li.cil.manual.api.ManualModel;
|
||||||
import li.cil.manual.api.Tab;
|
import li.cil.manual.api.Tab;
|
||||||
import li.cil.manual.api.prefab.tab.ItemStackTab;
|
import li.cil.manual.api.prefab.tab.ItemStackTab;
|
||||||
|
|
@ -23,9 +23,9 @@ public final class Manuals {
|
||||||
public static void initialize() {
|
public static void initialize() {
|
||||||
TABS.register(FMLJavaModLoadingContext.get().getModEventBus());
|
TABS.register(FMLJavaModLoadingContext.get().getModEventBus());
|
||||||
|
|
||||||
TABS.register("librecomponents", () -> new ItemStackTab(
|
TABS.register("oc2rc", () -> new ItemStackTab(
|
||||||
ManualModel.LANGUAGE_KEY + "/librecomponents/index.md",
|
ManualModel.LANGUAGE_KEY + "/oc2rc/index.md",
|
||||||
new TranslatableComponent("manual." + LibreComponents.MOD_ID + ".items"),
|
new TranslatableComponent("manual." + OC2RC.MOD_ID + ".items"),
|
||||||
new ItemStack(Items.HARD_DRIVE_EXTRA_LARGE.get())));
|
new ItemStack(Items.HARD_DRIVE_EXTRA_LARGE.get())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -4,28 +4,28 @@ issueTrackerURL = "https://github.com/Libre-Computers/LibreComponents/issues"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[[mods]]
|
[[mods]]
|
||||||
modId = "librecomponents"
|
modId = "oc2rc"
|
||||||
version = "${file.jarVersion}"
|
version = "${file.jarVersion}"
|
||||||
displayName = "Libre Components"
|
displayName = "OC2R Components"
|
||||||
authors = "The Realm 18 Studios"
|
authors = "The Realm 18 Studios"
|
||||||
description = '''
|
description = '''
|
||||||
Libre Drives all the extra components you need.
|
OC2RC Devices for all the extra components you need.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
[[dependencies.librecomponents]]
|
[[dependencies.oc2rc]]
|
||||||
modId = "forge"
|
modId = "forge"
|
||||||
mandatory = true
|
mandatory = true
|
||||||
versionRange = "[40.0.40,)"
|
versionRange = "[40.0.40,)"
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
side = "BOTH"
|
side = "BOTH"
|
||||||
[[dependencies.librecomponents]]
|
[[dependencies.oc2rc]]
|
||||||
modId = "minecraft"
|
modId = "minecraft"
|
||||||
mandatory = true
|
mandatory = true
|
||||||
versionRange = "1.18.2"
|
versionRange = "1.18.2"
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
side = "BOTH"
|
side = "BOTH"
|
||||||
[[dependencies.librecomponents]]
|
[[dependencies.oc2rc]]
|
||||||
modId = "oc2"
|
modId = "oc2r"
|
||||||
mandatory = false
|
mandatory = false
|
||||||
versionRange = "[1.1.0,)"
|
versionRange = "[1.1.0,)"
|
||||||
side = "BOTH"
|
side = "BOTH"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
"item_group.librecomponents.common": "Libre Components",
|
|
||||||
|
|
||||||
"manual.librecomponents.items": "Libre Components",
|
|
||||||
|
|
||||||
"item.librecomponents.cpu_tier_1": "CPU Tier 5",
|
|
||||||
"item.librecomponents.cpu_tier_1.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_2": "CPU Tier 6",
|
|
||||||
"item.librecomponents.cpu_tier_2.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_3": "CPU Tier 7",
|
|
||||||
"item.librecomponents.cpu_tier_3.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_4": "CPU Tier 8",
|
|
||||||
"item.librecomponents.cpu_tier_4.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.floppy": "Floppy Disk",
|
|
||||||
"item.librecomponents.floppy.desc": "Portable storage used to transfer data between Computers.",
|
|
||||||
"item.librecomponents.floppy_modern": "Modern Floppy Disk",
|
|
||||||
"item.librecomponents.floppy_modern.desc": "Newer version of portable storage used to transfer data between Computers."
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
"item_group.librecomponents.common": "Libre Components",
|
|
||||||
|
|
||||||
"item.librecomponents.cpu_tier_1": "CPU уровень 5",
|
|
||||||
"item.librecomponents.cpu_tier_1.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_2": "CPU уровень 6",
|
|
||||||
"item.librecomponents.cpu_tier_2.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_3": "CPU уровень 7",
|
|
||||||
"item.librecomponents.cpu_tier_3.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_4": "CPU уровень 8",
|
|
||||||
"item.librecomponents.cpu_tier_4.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.floppy": "Дискета",
|
|
||||||
"item.librecomponents.floppy.desc": "Съемный накопитель для переноса данных между компьютерами.",
|
|
||||||
"item.librecomponents.floppy_modern": "Современная дискета",
|
|
||||||
"item.librecomponents.floppy_modern.desc": "Новая версия портативного хранилища, используемого для передачи данных между компьютерами.",
|
|
||||||
"item.librecomponents.hard_drive": "Жесткий диск",
|
|
||||||
"item.librecomponents.hard_drive.desc": "Накопитель для операционных систем и данных.",
|
|
||||||
"item.librecomponents.memory": "Память",
|
|
||||||
"item.librecomponents.memory.desc": "Оперативное Запоминающее Устройство (ОЗУ). Используется в компьютерах и роботах."
|
|
||||||
}
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
"item_group.librecomponents.common": "Libre Components",
|
|
||||||
|
|
||||||
"item.librecomponents.cpu_tier_1": "CPU Tier 5",
|
|
||||||
"item.librecomponents.cpu_tier_1.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_2": "CPU Tier 6",
|
|
||||||
"item.librecomponents.cpu_tier_2.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_3": "CPU Tier 7",
|
|
||||||
"item.librecomponents.cpu_tier_3.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.cpu_tier_4": "CPU Tier 8",
|
|
||||||
"item.librecomponents.cpu_tier_4.desc": "Processes computer instructions.",
|
|
||||||
"item.librecomponents.floppy": "软盘",
|
|
||||||
"item.librecomponents.floppy.desc": "Portable storage used to transfer data between Computers.",
|
|
||||||
"item.librecomponents.floppy_modern": "现代软盘",
|
|
||||||
"item.librecomponents.floppy_modern.desc": "用于在计算机之间传输数据的较新版本的便携式存储。",
|
|
||||||
"item.librecomponents.hard_drive": "硬盘",
|
|
||||||
"item.librecomponents.hard_drive.desc": "Mass storage for operating systems and data.",
|
|
||||||
"item.librecomponents.memory": "内存条",
|
|
||||||
"item.librecomponents.memory.desc": "Random Access Memory (RAM) used in Computers and Robots."
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/floppy_base",
|
|
||||||
"layer1": "librecomponents:item/floppy_normal"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/floppy_base",
|
|
||||||
"layer1": "librecomponents:item/floppy_modern"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/hard_drive_base",
|
|
||||||
"layer1": "librecomponents:item/hard_drive_extra_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/hard_drive_base",
|
|
||||||
"layer1": "librecomponents:item/hard_drive_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/hard_drive_base",
|
|
||||||
"layer1": "librecomponents:item/hard_drive_medium"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/hard_drive_base",
|
|
||||||
"layer1": "librecomponents:item/hard_drive_small"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/memory_extra_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/memory_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/memory_medium"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:item/generated",
|
|
||||||
"textures": {
|
|
||||||
"layer0": "librecomponents:item/memory_small"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
18
src/main/resources/assets/oc2rc/lang/en_us.json
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"item_group.oc2rc.common": "Libre Components",
|
||||||
|
|
||||||
|
"manual.oc2rc.items": "Libre Components",
|
||||||
|
|
||||||
|
"item.oc2rc.cpu_tier_1": "CPU Tier 5",
|
||||||
|
"item.oc2rc.cpu_tier_1.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_2": "CPU Tier 6",
|
||||||
|
"item.oc2rc.cpu_tier_2.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_3": "CPU Tier 7",
|
||||||
|
"item.oc2rc.cpu_tier_3.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_4": "CPU Tier 8",
|
||||||
|
"item.oc2rc.cpu_tier_4.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.floppy": "Floppy Disk",
|
||||||
|
"item.oc2rc.floppy.desc": "Portable storage used to transfer data between Computers.",
|
||||||
|
"item.oc2rc.floppy_modern": "Modern Floppy Disk",
|
||||||
|
"item.oc2rc.floppy_modern.desc": "Newer version of portable storage used to transfer data between Computers."
|
||||||
|
}
|
||||||
20
src/main/resources/assets/oc2rc/lang/ru_ru.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"item_group.oc2rc.common": "Libre Components",
|
||||||
|
|
||||||
|
"item.oc2rc.cpu_tier_1": "CPU уровень 5",
|
||||||
|
"item.oc2rc.cpu_tier_1.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_2": "CPU уровень 6",
|
||||||
|
"item.oc2rc.cpu_tier_2.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_3": "CPU уровень 7",
|
||||||
|
"item.oc2rc.cpu_tier_3.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_4": "CPU уровень 8",
|
||||||
|
"item.oc2rc.cpu_tier_4.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.floppy": "Дискета",
|
||||||
|
"item.oc2rc.floppy.desc": "Съемный накопитель для переноса данных между компьютерами.",
|
||||||
|
"item.oc2rc.floppy_modern": "Современная дискета",
|
||||||
|
"item.oc2rc.floppy_modern.desc": "Новая версия портативного хранилища, используемого для передачи данных между компьютерами.",
|
||||||
|
"item.oc2rc.hard_drive": "Жесткий диск",
|
||||||
|
"item.oc2rc.hard_drive.desc": "Накопитель для операционных систем и данных.",
|
||||||
|
"item.oc2rc.memory": "Память",
|
||||||
|
"item.oc2rc.memory.desc": "Оперативное Запоминающее Устройство (ОЗУ). Используется в компьютерах и роботах."
|
||||||
|
}
|
||||||
20
src/main/resources/assets/oc2rc/lang/zh_cn.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"item_group.oc2rc.common": "Libre Components",
|
||||||
|
|
||||||
|
"item.oc2rc.cpu_tier_1": "CPU Tier 5",
|
||||||
|
"item.oc2rc.cpu_tier_1.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_2": "CPU Tier 6",
|
||||||
|
"item.oc2rc.cpu_tier_2.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_3": "CPU Tier 7",
|
||||||
|
"item.oc2rc.cpu_tier_3.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.cpu_tier_4": "CPU Tier 8",
|
||||||
|
"item.oc2rc.cpu_tier_4.desc": "Processes computer instructions.",
|
||||||
|
"item.oc2rc.floppy": "软盘",
|
||||||
|
"item.oc2rc.floppy.desc": "Portable storage used to transfer data between Computers.",
|
||||||
|
"item.oc2rc.floppy_modern": "现代软盘",
|
||||||
|
"item.oc2rc.floppy_modern.desc": "用于在计算机之间传输数据的较新版本的便携式存储。",
|
||||||
|
"item.oc2rc.hard_drive": "硬盘",
|
||||||
|
"item.oc2rc.hard_drive.desc": "Mass storage for operating systems and data.",
|
||||||
|
"item.oc2rc.memory": "内存条",
|
||||||
|
"item.oc2rc.memory.desc": "Random Access Memory (RAM) used in Computers and Robots."
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:item/generated",
|
"parent": "minecraft:item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "librecomponents:item/cpu_tier_1"
|
"layer0": "oc2rc:item/cpu_tier_1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:item/generated",
|
"parent": "minecraft:item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "librecomponents:item/cpu_tier_2"
|
"layer0": "oc2rc:item/cpu_tier_2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:item/generated",
|
"parent": "minecraft:item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "librecomponents:item/cpu_tier_3"
|
"layer0": "oc2rc:item/cpu_tier_3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:item/generated",
|
"parent": "minecraft:item/generated",
|
||||||
"textures": {
|
"textures": {
|
||||||
"layer0": "librecomponents:item/cpu_tier_4"
|
"layer0": "oc2rc:item/cpu_tier_4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
7
src/main/resources/assets/oc2rc/models/item/floppy.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/floppy_base",
|
||||||
|
"layer1": "oc2rc:item/floppy_normal"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/floppy_base",
|
||||||
|
"layer1": "oc2rc:item/floppy_modern"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/hard_drive_base",
|
||||||
|
"layer1": "oc2rc:item/hard_drive_extra_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/hard_drive_base",
|
||||||
|
"layer1": "oc2rc:item/hard_drive_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/hard_drive_base",
|
||||||
|
"layer1": "oc2rc:item/hard_drive_medium"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/hard_drive_base",
|
||||||
|
"layer1": "oc2rc:item/hard_drive_small"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/memory_extra_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/memory_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/memory_medium"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "oc2rc:item/memory_small"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 325 B After Width: | Height: | Size: 325 B |
|
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
|
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
|
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 973 B After Width: | Height: | Size: 973 B |
|
Before Width: | Height: | Size: 973 B After Width: | Height: | Size: 973 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 974 B |
|
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 974 B |
|
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 974 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 974 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:recipes/root",
|
|
||||||
"rewards": {
|
|
||||||
"recipes": [
|
|
||||||
"librecomponents:hard_drive_extra_large"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"criteria": {
|
|
||||||
"has_computer": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:computer"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_robot": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:robot"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_the_recipe": {
|
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
|
||||||
"conditions": {
|
|
||||||
"recipe": "librecomponents:hard_drive_extra_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"has_computer",
|
|
||||||
"has_robot",
|
|
||||||
"has_the_recipe"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:recipes/root",
|
|
||||||
"rewards": {
|
|
||||||
"recipes": [
|
|
||||||
"librecomponents:hard_drive_medium"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"criteria": {
|
|
||||||
"has_computer": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:computer"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_robot": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:robot"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_the_recipe": {
|
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
|
||||||
"conditions": {
|
|
||||||
"recipe": "librecomponents:hard_drive_medium"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"has_computer",
|
|
||||||
"has_robot",
|
|
||||||
"has_the_recipe"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:recipes/root",
|
|
||||||
"rewards": {
|
|
||||||
"recipes": [
|
|
||||||
"librecomponents:memory_extra_large"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"criteria": {
|
|
||||||
"has_computer": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:computer"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_robot": {
|
|
||||||
"trigger": "minecraft:inventory_changed",
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"oc2:robot"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"has_the_recipe": {
|
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
|
||||||
"conditions": {
|
|
||||||
"recipe": "librecomponents:memory_extra_large"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"has_computer",
|
|
||||||
"has_robot",
|
|
||||||
"has_the_recipe"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:floppy"
|
"oc2rc:floppy"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:disk_drive"
|
"oc2r:disk_drive"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:floppy"
|
"recipe": "oc2rc:floppy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:floppy_modern"
|
"oc2rc:floppy_modern"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:disk_drive"
|
"oc2r:disk_drive"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:floppy_modern"
|
"recipe": "oc2rc:floppy_modern"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"oc2rc:hard_drive_extra_large"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_computer": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:computer"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_robot": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:robot"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "oc2rc:hard_drive_extra_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_computer",
|
||||||
|
"has_robot",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:hard_drive_large"
|
"oc2rc:hard_drive_large"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:computer"
|
"oc2r:computer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:robot"
|
"oc2r:robot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:hard_drive_large"
|
"recipe": "oc2rc:hard_drive_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"oc2rc:hard_drive_medium"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_computer": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:computer"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_robot": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:robot"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "oc2rc:hard_drive_medium"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_computer",
|
||||||
|
"has_robot",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:hard_drive_small"
|
"oc2rc:hard_drive_small"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:computer"
|
"oc2r:computer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:robot"
|
"oc2r:robot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:hard_drive_small"
|
"recipe": "oc2rc:hard_drive_small"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"oc2rc:memory_extra_large"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"criteria": {
|
||||||
|
"has_computer": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:computer"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_robot": {
|
||||||
|
"trigger": "minecraft:inventory_changed",
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"oc2r:robot"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "oc2rc:memory_extra_large"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_computer",
|
||||||
|
"has_robot",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:memory_large"
|
"oc2rc:memory_large"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:computer"
|
"oc2r:computer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:robot"
|
"oc2r:robot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:memory_large"
|
"recipe": "oc2rc:memory_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:memory_medium"
|
"oc2rc:memory_medium"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:computer"
|
"oc2r:computer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:robot"
|
"oc2r:robot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:memory_medium"
|
"recipe": "oc2rc:memory_medium"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"rewards": {
|
"rewards": {
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"librecomponents:memory_small"
|
"oc2rc:memory_small"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"criteria": {
|
"criteria": {
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:computer"
|
"oc2r:computer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"oc2:robot"
|
"oc2r:robot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"has_the_recipe": {
|
"has_the_recipe": {
|
||||||
"trigger": "minecraft:recipe_unlocked",
|
"trigger": "minecraft:recipe_unlocked",
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"recipe": "librecomponents:memory_small"
|
"recipe": "oc2rc:memory_small"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -6,19 +6,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"I": {
|
"I": {
|
||||||
"item": "oc2:floppy"
|
"item": "oc2r:floppy"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"Q": {
|
"Q": {
|
||||||
"tag": "forge:gems/quartz"
|
"tag": "forge:gems/quartz"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:floppy"
|
"item": "oc2rc:floppy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,19 +7,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"I": {
|
"I": {
|
||||||
"item": "librecomponents:floppy"
|
"item": "oc2rc:floppy"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"Q": {
|
"Q": {
|
||||||
"tag": "forge:gems/quartz"
|
"tag": "forge:gems/quartz"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:floppy_modern"
|
"item": "oc2rc:floppy_modern"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,19 +7,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"D": {
|
"D": {
|
||||||
"item": "librecomponents:hard_drive_large"
|
"item": "oc2rc:hard_drive_large"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
},
|
},
|
||||||
"E": {
|
"E": {
|
||||||
"tag": "forge:gems/emerald"
|
"tag": "forge:gems/emerald"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:hard_drive_extra_large"
|
"item": "oc2rc:hard_drive_extra_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,19 +6,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"D": {
|
"D": {
|
||||||
"item": "librecomponents:hard_drive_medium"
|
"item": "oc2rc:hard_drive_medium"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
},
|
},
|
||||||
"E": {
|
"E": {
|
||||||
"tag": "forge:gems/emerald"
|
"tag": "forge:gems/emerald"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:hard_drive_large"
|
"item": "oc2rc:hard_drive_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,19 +6,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"G": {
|
"G": {
|
||||||
"item": "librecomponents:hard_drive_small"
|
"item": "oc2rc:hard_drive_small"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
},
|
},
|
||||||
"E": {
|
"E": {
|
||||||
"tag": "forge:gems/emerald"
|
"tag": "forge:gems/emerald"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:hard_drive_medium"
|
"item": "oc2rc:hard_drive_medium"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,19 +7,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"I": {
|
"I": {
|
||||||
"item": "oc2:hard_drive_large"
|
"item": "oc2r:hard_drive_large"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
},
|
},
|
||||||
"E": {
|
"E": {
|
||||||
"tag": "forge:gems/emerald"
|
"tag": "forge:gems/emerald"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:hard_drive_small"
|
"item": "oc2rc:hard_drive_small"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,19 +7,19 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"D": {
|
"D": {
|
||||||
"item": "librecomponents:memory_large"
|
"item": "oc2rc:memory_large"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
},
|
},
|
||||||
"E": {
|
"E": {
|
||||||
"tag": "forge:gems/emerald"
|
"tag": "forge:gems/emerald"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:memory_extra_large"
|
"item": "oc2rc:memory_extra_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,16 +6,16 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"D": {
|
"D": {
|
||||||
"item": "librecomponents:memory_medium"
|
"item": "oc2rc:memory_medium"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:memory_large"
|
"item": "oc2rc:memory_large"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,16 +6,16 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"G": {
|
"G": {
|
||||||
"item": "librecomponents:memory_small"
|
"item": "oc2rc:memory_small"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:memory_medium"
|
"item": "oc2rc:memory_medium"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -7,16 +7,16 @@
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"I": {
|
"I": {
|
||||||
"item": "oc2:memory_large"
|
"item": "oc2r:memory_large"
|
||||||
},
|
},
|
||||||
"T": {
|
"T": {
|
||||||
"item": "oc2:transistor"
|
"item": "oc2r:transistor"
|
||||||
},
|
},
|
||||||
"B": {
|
"B": {
|
||||||
"item": "oc2:circuit_board"
|
"item": "oc2r:circuit_board"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
"item": "librecomponents:memory_small"
|
"item": "oc2rc:memory_small"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||