diff --git a/README.md b/README.md index dd023d0..7b78212 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,12 @@ report them on the [issue tracker][issues] as they arise. ## Features ### ME EMC Module -Retrieves all transmutation/EMC knowledge from the player who placed down the module to provide ME -networks with information on stored EMC and transmutable items. +Retrieves all transmutation/EMC knowledge from the player who placed down the module to provide ME networks with +information on stored EMC and transmutable items. Can be placed anywhere at all on the network to function. + +![EMC module in-world](img/module1.png) + +![EMC module crafting recipe](img/module2.png) Multiple modules may be placed down on one network by any number of different players / knowledge providers, but only one module per knowledge provider will contribute to the stored EMC figure and available "craftable" known items. @@ -31,8 +35,12 @@ the EMC stored on a network based on subsequent powers of an arbitrarily large n *Work in progress, coming soon...* ## License -All code is licensed under [LGPLv3][lgpl-v3], in adherence to the same license used by Applied Energistics 2 and with some code borrowed from AE2 itself. -All assets are licensed under [CC BY-NC-SA 3.0][by-nc-sa-3.0], in adherence to the same license used by AE2 and with most deriving from AE2's own assets. +All code is licensed under [LGPLv3][lgpl-v3], in adherence to the same license used by Applied Energistics 2 and with +some code borrowed from AE2 itself. + +All assets are licensed under [CC BY-NC-SA 3.0][by-nc-sa-3.0], in adherence to the same license used by AE2 and with +most deriving from AE2's and ProjectE's own assets. Some assets have been provided externally as courtesy of +[Sea_Kerman](https://modrinth.com/user/Sea_Kerman). [badge_curseforge]: https://img.shields.io/badge/dynamic/json?color=e04e14&label=CurseForge&style=for-the-badge&query=downloads.total&url=https%3A%2F%2Fapi.cfwidget.com%2F1009940&logo=curseforge diff --git a/img/module1.png b/img/module1.png new file mode 100644 index 0000000..3c774db Binary files /dev/null and b/img/module1.png differ diff --git a/img/module2.png b/img/module2.png new file mode 100644 index 0000000..15e0c22 Binary files /dev/null and b/img/module2.png differ diff --git a/src/main/java/gripe/_90/appliede/AppliedE.java b/src/main/java/gripe/_90/appliede/AppliedE.java index e487cf8..daba3ca 100644 --- a/src/main/java/gripe/_90/appliede/AppliedE.java +++ b/src/main/java/gripe/_90/appliede/AppliedE.java @@ -45,15 +45,6 @@ public static ResourceLocation id(String path) { public static final RegistryObject TRANSMUTATION_PATTERN = ITEMS.register("transmutation_pattern", TransmutationPatternItem::new); - /* - public static final RegistryObject CABLE_EMC_INTERFACE = ITEMS.register( - "cable_emc_interface", - () -> Util.make(() -> { - PartModels.registerModels(PartModelsHelper.createModels(EMCInterfacePart.class)); - return new PartItem<>(new Item.Properties(), EMCInterfacePart.class, EMCInterfacePart::new); - })); - */ - public static final BigInteger TIER_LIMIT = BigInteger.valueOf((long) Math.pow(2, 42)); public AppliedE() { diff --git a/src/main/resources/assets/appliede/textures/part/emc_module.png b/src/main/resources/assets/appliede/textures/part/emc_module.png index c6017ec..07d7383 100644 Binary files a/src/main/resources/assets/appliede/textures/part/emc_module.png and b/src/main/resources/assets/appliede/textures/part/emc_module.png differ