From e32c6e09e9b56827b8f5196f720cbed223d6fad4 Mon Sep 17 00:00:00 2001 From: GDCloud <93287602+GDCloudstrike@users.noreply.github.com> Date: Wed, 22 May 2024 22:42:24 +0200 Subject: Forge of the Gods continued (#282) * whole lotta plasmas * adjust plasma recipe times * fix up plasma nei page * change module names + very minor cleanup * refactor a bunch + add OC heat, energy discount, effective fuel factor and misc module functionality * rework internal battery * add graviton shard cost to upgrades * add module count restriction * display module connection status in gui * add processing voltage calculations * add special overclock functionality * make nbt data sticky * add exotic module bonuses & fix stacksize issue * add module refresh and new logo * add gorge logo and fix processing voltage * redo recipemap swapping * redo exotic module nei page * add required upgrade check for modules * swap object types * undo star import * save milestone relevant stats * add functionality and basic gui to milestones * undo star import * add new magmatter mechanic * fix exotic module bonuses * blacklist furnace mode from recipe milestone * make milestones grant graviton shards * exotic module nei improvements * new main and module structure * slight structure adjustment * new module screen textures + fix furnace mode toggle sound * add rings to structure * small split upgrade check adjustment * lore dump v1 (thx deleno) * add tooltip delay * base upgrade 101 off of new variable * technical text dump + some upgrade gui adjustments * minor structure adjustment * structure adjustment followup + place button higher in upgrade window * remove unused code * rework milestone window & add inverted milestone + corresponding math * minor structure adjustment * add individual milestone windows + milestone symbol in upgrade BGs * fix long overflow in power tally * more milestone ui work * fix input hatch npe * more milestone work * yet another structure adjustment * add logic for structure milestone * add logic for structure milestone inversion * small followup fixes * upgrade window text changes * new debug button * lower max scroll distance to match the star * add startup cost * some startup cost fixes * primitive item insertion window --- .../textures/blocks/iconsets/GODFORGE_CONTROLLER.png | Bin 0 -> 597 bytes .../blocks/iconsets/GODFORGE_CONTROLLER.png.mcmeta | 5 +++++ .../textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png | Bin 0 -> 5153 bytes .../blocks/iconsets/GODFORGE_MODULE_ACTIVE.png.mcmeta | 1 + .../gregtech/textures/blocks/iconsets/SCREEN_OFF.png | Bin 0 -> 1041 bytes 5 files changed, 6 insertions(+) create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png.mcmeta create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png.mcmeta create mode 100644 src/main/resources/assets/gregtech/textures/blocks/iconsets/SCREEN_OFF.png (limited to 'src/main/resources/assets/gregtech') diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png new file mode 100644 index 0000000000..3266b1aec6 Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png differ diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png.mcmeta new file mode 100644 index 0000000000..7ab8340b0c --- /dev/null +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_CONTROLLER.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation":{ + "frametime":16 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png new file mode 100644 index 0000000000..1158858086 Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png differ diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png.mcmeta b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png.mcmeta new file mode 100644 index 0000000000..0dab81071f --- /dev/null +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/GODFORGE_MODULE_ACTIVE.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 3}} \ No newline at end of file diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/SCREEN_OFF.png b/src/main/resources/assets/gregtech/textures/blocks/iconsets/SCREEN_OFF.png new file mode 100644 index 0000000000..af85482d1a Binary files /dev/null and b/src/main/resources/assets/gregtech/textures/blocks/iconsets/SCREEN_OFF.png differ -- cgit