forked from new-frontiers-14/frontier-station-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dungeon enemies rebalance: Aberrant Flesh (new-frontiers-14#1985)
* update * tweaked newborns * fix * nefr maw again * da boss * Update Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/aberrant_flesh.xml Co-authored-by: Whatstone <[email protected]> * Minor flesh abomination grammar pass * NF prefix for "SalvageMobRestrictions" * Flesh Horror game rule rewrite * Cut down on monster description lengths * wet fx * horror nerf * Update ghost-role-component.ftl * Update mob_hostile_expeditions_aberrant_flesh.yml * BibleComponentComponent->BibleComponent * Frontier changelog: fix food recipe guidebook CL * icon for bone spike * validate-rsis: try using python 3.10 --------- Co-authored-by: Whatstone <[email protected]> Co-authored-by: Whatstone <[email protected]>
- Loading branch information
1 parent
ba7e7f1
commit cc071da
Showing
18 changed files
with
510 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,10 @@ jobs: | |
run: git submodule update --init | ||
- name: Pull engine updates | ||
uses: space-wizards/[email protected] | ||
- name: Set up Python 3.10 # Frontier | ||
uses: actions/setup-python@v3 # Frontier | ||
with: # Frontier | ||
python-version: "3.10" # Frontier | ||
- name: Install Python dependencies | ||
run: | | ||
pip3 install --ignore-installed --user pillow jsonschema | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
tags: | ||
- Book | ||
components: | ||
- BibleComponent | ||
- Bible | ||
- Paper | ||
bottle: | ||
whitelist: | ||
|
99 changes: 99 additions & 0 deletions
99
...rces/Prototypes/_NF/Entities/Markers/Spawners/Conditional/mobs_hostile_aberrant_flesh.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
- type: entity | ||
id: SpawnMobFleshJaredExpeditions | ||
name: aberrant flesh jared spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh.rsi | ||
state: jared | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobFleshJaredExpeditions | ||
- MobFleshJaredOldExpeditions | ||
|
||
- type: entity | ||
id: SpawnMobFleshGolemExpeditions | ||
name: aberrant flesh golem spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh.rsi | ||
state: golem | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobFleshGolemExpeditions | ||
- MobFleshGolemAltExpeditions | ||
- MobFleshGolemOldExpeditions | ||
|
||
- type: entity | ||
id: SpawnMobFleshAssimilatedMiner | ||
name: aberrant flesh miner spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh_assimilated_miner.rsi | ||
state: base | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobFleshAssimilatedMiner | ||
|
||
- type: entity | ||
id: SpawnMobFleshClampExpeditions | ||
name: aberrant flesh clamp spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh.rsi | ||
state: clamp | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobFleshClampExpeditions | ||
- MobFleshClampOldExpeditions | ||
|
||
- type: entity | ||
id: SpawnMobFleshLoverExpeditions | ||
name: aberrant flesh lover spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh.rsi | ||
state: lover | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobFleshLoverExpeditions | ||
|
||
- type: entity | ||
id: SpawnMobHorrorExpeditions | ||
name: aberrant flesh horror spawner | ||
parent: MarkerBasePlaceFree | ||
suffix: AI, Hostile | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: red | ||
- state: ai | ||
- sprite: _NF/Mobs/Aliens/flesh.rsi | ||
state: horror | ||
- type: ConditionalSpawner | ||
prototypes: | ||
- MobHorrorExpeditions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.