Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make radioactive material radioactive #34436

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,9 @@
Quantity: 4
- ReagentId: Uranium
Quantity: 16
- type: RadiationSource
intensity: 0.1
slope: 300
Copy link
Contributor

@Aeshus Aeshus Jan 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (blocking): Slarti has suggested that we go back to slope 3, as they don't think that it would be too big of a problem with the radiation collectors. Sorry for making you revert that!


- type: entity
name: slice of spicy rock pizza
Expand Down Expand Up @@ -616,6 +619,9 @@
Quantity: 0.5
- ReagentId: Uranium
Quantity: 2
- type: RadiationSource
intensity: 0.1
slope: 300

# Tastes like crust, tomato, cheese, radiation.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,14 @@
- ReagentId: Radium
Quantity: 2
canReact: false
- type: RadiationSource
intensity: 0.1
slope: 300
- type: PointLight
radius: 1.2
energy: 0.8
castShadows: false
color: "#9be792"

- type: entity
parent: SheetUranium
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/Entities/Objects/Materials/ore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@
canReact: false
- type: Item
heldPrefix: uranium
- type: RadiationSource
intensity: 0.1
slope: 300

- type: entity
parent: UraniumOre
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,9 @@
maxRange: 5
spawns:
- MobSpawnCrabUranium
- type: RadiationSource
intensity: 0.2
slope: 0.1

- type: entity
id: AnomalyRockQuartz
Expand Down
27 changes: 27 additions & 0 deletions Resources/Prototypes/Entities/Structures/Walls/asteroid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@
state: rock_asteroid_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1

- type: entity
id: AsteroidRockUraniumCrab
Expand All @@ -284,6 +287,9 @@
- type: OreVein
oreChance: 1.0
currentOre: OreUraniumCrab
- type: RadiationSource
intensity: 2.4
slope: 0.1

- type: entity
id: AsteroidRockBananium
Expand Down Expand Up @@ -564,6 +570,9 @@
state: ironrock_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1

- type: entity
id: IronRockBananium
Expand Down Expand Up @@ -937,6 +946,9 @@
state: rock_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1


- type: entity
Expand Down Expand Up @@ -1234,6 +1246,9 @@
state: rock_wall_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1


- type: entity
Expand Down Expand Up @@ -1510,6 +1525,9 @@
state: rock_snow_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1


- type: entity
Expand Down Expand Up @@ -1786,6 +1804,9 @@
state: rock_sand_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1

- type: entity
id: WallRockSandBananium
Expand Down Expand Up @@ -2061,6 +2082,9 @@
state: rock_chromite_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1


- type: entity
Expand Down Expand Up @@ -2337,6 +2361,9 @@
state: rock_andesite_west
- state: rock_uranium
map: [ "enum.MiningScannerVisualLayers.Overlay" ]
- type: RadiationSource
intensity: 2.3
slope: 0.1


- type: entity
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/Entities/Structures/Walls/meteor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@
- map: [ "enum.EdgeLayer.West" ]
state: rock_asteroid_west
- state: rock_uranium
- type: RadiationSource
intensity: 2.3
slope: 0.1

- type: entity
id: MeteorRockBananium
Expand Down
Loading