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 --- .../assets/tectech/textures/gui/background/space.png | Bin 0 -> 15406 bytes .../tectech/textures/gui/background/white_glow.png | Bin 0 -> 18002 bytes .../tectech/textures/gui/overlay_button/battery_off.png | Bin 0 -> 380 bytes .../tectech/textures/gui/overlay_button/battery_on.png | Bin 0 -> 386 bytes .../tectech/textures/gui/overlay_button/cyclic_blue.png | Bin 0 -> 723 bytes .../assets/tectech/textures/gui/overlay_button/flag.png | Bin 0 -> 228 bytes .../assets/tectech/textures/gui/picture/gorge_logo.png | Bin 0 -> 1043 bytes .../tectech/textures/gui/picture/milestone_catalyst.png | Bin 0 -> 1527 bytes .../textures/gui/picture/milestone_catalyst_glow.png | Bin 0 -> 2215 bytes .../tectech/textures/gui/picture/milestone_charge.png | Bin 0 -> 1274 bytes .../textures/gui/picture/milestone_charge_glow.png | Bin 0 -> 2379 bytes .../textures/gui/picture/milestone_composition.png | Bin 0 -> 1566 bytes .../textures/gui/picture/milestone_composition_glow.png | Bin 0 -> 3506 bytes .../textures/gui/picture/milestone_conversion.png | Bin 0 -> 1454 bytes .../textures/gui/picture/milestone_conversion_glow.png | Bin 0 -> 2544 bytes .../tectech/textures/gui/picture/overlay_blue.png | Bin 0 -> 120 bytes .../tectech/textures/gui/picture/overlay_green.png | Bin 0 -> 120 bytes .../tectech/textures/gui/picture/overlay_orange.png | Bin 0 -> 120 bytes .../tectech/textures/gui/picture/overlay_purple.png | Bin 0 -> 120 bytes .../textures/gui/progressbar/godforge_plasma.png | Bin 0 -> 356 bytes .../gui/progressbar/godforge_progressbar_background.png | Bin 0 -> 520 bytes .../gui/progressbar/godforge_progressbar_blue.png | Bin 0 -> 1502 bytes .../progressbar/godforge_progressbar_blue_inverted.png | Bin 0 -> 1500 bytes .../gui/progressbar/godforge_progressbar_purple.png | Bin 0 -> 1509 bytes .../godforge_progressbar_purple_inverted.png | Bin 0 -> 1501 bytes .../gui/progressbar/godforge_progressbar_rainbow.png | Bin 0 -> 1414 bytes .../godforge_progressbar_rainbow_inverted.png | Bin 0 -> 1411 bytes .../gui/progressbar/godforge_progressbar_red.png | Bin 0 -> 1471 bytes .../progressbar/godforge_progressbar_red_inverted.png | Bin 0 -> 1467 bytes 29 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/tectech/textures/gui/background/space.png create mode 100644 src/main/resources/assets/tectech/textures/gui/background/white_glow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/overlay_button/battery_off.png create mode 100644 src/main/resources/assets/tectech/textures/gui/overlay_button/battery_on.png create mode 100644 src/main/resources/assets/tectech/textures/gui/overlay_button/cyclic_blue.png create mode 100644 src/main/resources/assets/tectech/textures/gui/overlay_button/flag.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/gorge_logo.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst_glow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_charge.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_charge_glow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_composition.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_composition_glow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion_glow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/overlay_blue.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/overlay_green.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/overlay_orange.png create mode 100644 src/main/resources/assets/tectech/textures/gui/picture/overlay_purple.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_plasma.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_background.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue_inverted.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple_inverted.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow_inverted.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red.png create mode 100644 src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red_inverted.png (limited to 'src/main/resources/assets/tectech/textures') diff --git a/src/main/resources/assets/tectech/textures/gui/background/space.png b/src/main/resources/assets/tectech/textures/gui/background/space.png new file mode 100644 index 0000000000..4ecf8caa09 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/background/space.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/background/white_glow.png b/src/main/resources/assets/tectech/textures/gui/background/white_glow.png new file mode 100644 index 0000000000..79df16e73b Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/background/white_glow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_off.png b/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_off.png new file mode 100644 index 0000000000..ce3e3ed119 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_off.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_on.png b/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_on.png new file mode 100644 index 0000000000..75832441e8 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/overlay_button/battery_on.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/overlay_button/cyclic_blue.png b/src/main/resources/assets/tectech/textures/gui/overlay_button/cyclic_blue.png new file mode 100644 index 0000000000..07c606ec11 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/overlay_button/cyclic_blue.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/overlay_button/flag.png b/src/main/resources/assets/tectech/textures/gui/overlay_button/flag.png new file mode 100644 index 0000000000..48bcca969b Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/overlay_button/flag.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/gorge_logo.png b/src/main/resources/assets/tectech/textures/gui/picture/gorge_logo.png new file mode 100644 index 0000000000..cdc6b609af Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/gorge_logo.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst.png new file mode 100644 index 0000000000..7085898445 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst_glow.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst_glow.png new file mode 100644 index 0000000000..6787270397 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_catalyst_glow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge.png new file mode 100644 index 0000000000..5fec5cdded Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge_glow.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge_glow.png new file mode 100644 index 0000000000..148c8c9202 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_charge_glow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition.png new file mode 100644 index 0000000000..5a2f011349 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition_glow.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition_glow.png new file mode 100644 index 0000000000..a37e194cb0 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_composition_glow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion.png new file mode 100644 index 0000000000..2ecf6e0617 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion_glow.png b/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion_glow.png new file mode 100644 index 0000000000..952c00a526 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/milestone_conversion_glow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/overlay_blue.png b/src/main/resources/assets/tectech/textures/gui/picture/overlay_blue.png new file mode 100644 index 0000000000..8e2bb24af4 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/overlay_blue.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/overlay_green.png b/src/main/resources/assets/tectech/textures/gui/picture/overlay_green.png new file mode 100644 index 0000000000..e49c9d70c4 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/overlay_green.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/overlay_orange.png b/src/main/resources/assets/tectech/textures/gui/picture/overlay_orange.png new file mode 100644 index 0000000000..bbfc03392f Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/overlay_orange.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/picture/overlay_purple.png b/src/main/resources/assets/tectech/textures/gui/picture/overlay_purple.png new file mode 100644 index 0000000000..e189df603f Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/picture/overlay_purple.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_plasma.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_plasma.png new file mode 100644 index 0000000000..60e831ab7e Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_plasma.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_background.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_background.png new file mode 100644 index 0000000000..6c61bd82f3 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_background.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue.png new file mode 100644 index 0000000000..b3dcc01f22 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue_inverted.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue_inverted.png new file mode 100644 index 0000000000..7e24ef4e71 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_blue_inverted.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple.png new file mode 100644 index 0000000000..526576713f Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple_inverted.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple_inverted.png new file mode 100644 index 0000000000..cf0925e421 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_purple_inverted.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow.png new file mode 100644 index 0000000000..a09d6c94b8 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow_inverted.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow_inverted.png new file mode 100644 index 0000000000..dde5ea73c4 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_rainbow_inverted.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red.png new file mode 100644 index 0000000000..a13093b3f5 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red.png differ diff --git a/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red_inverted.png b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red_inverted.png new file mode 100644 index 0000000000..1945e452d8 Binary files /dev/null and b/src/main/resources/assets/tectech/textures/gui/progressbar/godforge_progressbar_red_inverted.png differ -- cgit