Skip to content

Commit

Permalink
Bluespace And Normality Ores (#1042)
Browse files Browse the repository at this point in the history
# Description

This PR adds new ores in the form of Bluespace and Normality ores, the
former being just as rare as artifact fragments, and the latter being
even rarer still. These ores can be mined by salvage, will generate on
asteroids or expeditions, and can be processed in an ore processor into
bluespace or normality crystals, which Epistemics can use to create
psionic related objects. Note that the two are currently
indistinguishable from the other until you actually mine them.

Yes this DOES infact make it easier to make glimmer drains and probers.
I need this as an excuse to make psionics even more dangerous.

<details><summary><h1>Media</h1></summary>
<p>


![image](https://github.com/user-attachments/assets/2c7b38a4-d700-43d6-ad47-a063839f0540)


![image](https://github.com/user-attachments/assets/5da73dff-acca-4395-855d-75a04f369ead)


![image](https://github.com/user-attachments/assets/269e231d-d702-4387-9c89-f8aec7854fb3)

</p>
</details>

# Changelog

:cl:
- add: Added Bluespace and Normality ore as very rare ore types. Salvage
can occasionally find these ores on Asteroids or on Expedition planets.
Bluespace and Normality Ore can be smelted in an Ore Processor into
Bluespace and Normality Crystals. Make sure to bring these to Epistemics
so that they can do their job.

---------

Signed-off-by: VMSolidus <evilexecutive@gmail.com>
Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com>
  • Loading branch information
VMSolidus and DEATHB4DEFEAT authored Oct 12, 2024
1 parent 6227db4 commit d6a2db2
Show file tree
Hide file tree
Showing 20 changed files with 542 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public sealed partial class GatewayGeneratorComponent : Component
"OreUranium",
"OreBananium",
"OreArtifactFragment",
"OreBluespace",
"OreNormality",
};
}

2 changes: 2 additions & 0 deletions Resources/Locale/en-US/materials/materials.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ materials-raw-plasma = raw plasma
materials-raw-uranium = raw uranium
materials-raw-bananium = raw bananium
materials-raw-salt = raw salt
materials-raw-bluespace = raw bluespace
materials-raw-normality = raw normality
# Material Reclaimer
material-reclaimer-upgrade-process-rate = process rate
2 changes: 2 additions & 0 deletions Resources/Locale/en-US/salvage/salvage-magnet.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ salvage-magnet-resources = {$resource ->
[OrePlasma] Plasma
[OreUranium] Uranium
[OreArtifactFragment] Artifact fragments
[OreBluespace] Bluespace crystals
[OreNormality] Normality crystals
*[other] {$resource}
}
Expand Down
48 changes: 48 additions & 0 deletions Resources/Prototypes/Entities/Objects/Materials/ore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,5 +343,53 @@
id: Salt1
suffix: Single
components:
- type: Stack
count: 1

- type: entity
parent: OreBase
id: BluespaceOre
name: bluespace ore
suffix: Full
components:
- type: Stack
stackType: BluespaceOre
- type: Sprite
state: bluespace
- type: Item
- type: Material
- type: PhysicalComposition
materialComposition:
Bluespace: 100

- type: entity
parent: BluespaceOre
id: BluespaceOre1
suffix: Single
components:
- type: Stack
count: 1

- type: entity
parent: OreBase
id: NormalityOre
name: normality ore
suffix: Full
components:
- type: Stack
stackType: NormalityOre
- type: Sprite
state: bluespace
- type: Item
- type: Material
- type: PhysicalComposition
materialComposition:
Normality: 100

- type: entity
parent: NormalityOre
id: NormalityOre1
suffix: Single
components:
- type: Stack
count: 1
3 changes: 2 additions & 1 deletion Resources/Prototypes/Entities/Structures/Machines/lathe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,8 @@
idleState: icon
runningState: building
staticRecipes:
- BluespaceCrystal #Nyano - Summary: Bluespace Crystals can be created here.
- BluespaceCrystal
- NormalityCrystal
- SheetSteel30
- SheetGlass30
- SheetRGlass30
Expand Down
Loading

0 comments on commit d6a2db2

Please sign in to comment.