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

Add Anti Anomaly Zone #56

Merged
Changes from all 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
33 changes: 33 additions & 0 deletions Resources/Prototypes/DeltaV/Entities/Markers/anti_anomaly_zone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
- type: entity
name: anti anomaly zone
description: Anomalies will not be able to appear within a 10 block radius of this point.
id: AntiAnomalyZone
suffix: "range 10"
parent: MarkerBase
components:
- type: Sprite
sprite: Structures/Specific/Anomalies/ice_anom.rsi
layers:
- state: anom
- sprite: Markers/cross.rsi
state: pink
- type: AntiAnomalyZone
zoneRadius: 10

- type: entity
parent: AntiAnomalyZone
id: AntiAnomalyZone20
suffix: "range 20"
description: Anomalies will not be able to appear within a 20 block radius of this point.
components:
- type: AntiAnomalyZone
zoneRadius: 20

- type: entity
parent: AntiAnomalyZone
id: AntiAnomalyZone50
suffix: "range 50"
description: Anomalies will not be able to appear within a 50 block radius of this point.
components:
- type: AntiAnomalyZone
zoneRadius: 50
Loading