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

Fix NPCs not having any clothing #316

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions Resources/Prototypes/_FTL/Entities/Mobs/NPCs/enemy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
suffix: secoff, hostile
components:
- type: Loadout
prototypes: [SecurityOfficerGear]
prototypes: [NPCMercenary]

- type: entity
name: hostile defender
Expand All @@ -33,7 +33,7 @@
suffix: deckhand, hostile
components:
- type: Loadout
prototypes: [PassengerGear]
prototypes: [NPCDeckhand]

- type: entity
name: hostile defender
Expand All @@ -51,4 +51,4 @@
suffix: captain, hostile
components:
- type: Loadout
prototypes: [CaptainGear]
prototypes: [NPCCaptain]
65 changes: 65 additions & 0 deletions Resources/Prototypes/_FTL/Loadouts/NPCs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
- type: loadout
id: NPCCaptain
equipment: NPCCaptain

- type: startingGear
id: NPCCaptain
equipment:
jumpsuit: ClothingShirtTShirtCommand
lowerClothing: ClothingPantsRippedJeans
shoes: ClothingShoesBootsJack
back: ClothingBackpackSatchel
outerClothing: ClothingOuterCoatTrenchDark
eyes: ClothingEyesGlassesSunglasses

- type: loadout
id: NPCMercenary
equipment: NPCMercenary

- type: startingGear
id: NPCMercenary
equipment:
jumpsuit: ClothingShirtTShirtBlack
lowerClothing: ClothingPantsRippedJeans
shoes: ClothingShoesBootsJack
back: ClothingBackpackSatchelSecurity
outerClothing: ClothingOuterArmorBasic
eyes: ClothingEyesGlassesSunglasses
belt: ClothingBeltMercWebbing

- type: loadout
id: NPCEngineer
equipment: NPCEngineer

- type: startingGear
id: NPCEngineer
equipment:
jumpsuit: ClothingShirtEngineeringHazard
lowerClothing: ClothingPantsEngineeringHazard
shoes: ClothingShoesBootsWork
back: ClothingBackpackDuffelEngineering
outerClothing: ClothingOuterVestHazard
head: ClothingHeadHatHardhatYellow
eyes: ClothingEyesGlassesMeson
belt: ClothingBeltUtilityEngineering

- type: loadout
id: NPCDoctor
equipment: NPCDoctor
- type: startingGear
id: NPCDoctor
equipment:
jumpsuit: ClothingShirtScrubsBlue
lowerClothing: ClothingPantsScrubsBlue
shoes: ClothingShoesColorBlack
head: ClothingHeadHatSurgcapBlue

- type: loadout
id: NPCDeckhand
equipment: NPCDeckhand

- type: startingGear
id: NPCDeckhand
equipment:
jumpsuit: ClothingShirtTShirtRipped
lowerClothing: ClothingPantsRippedJeans
Loading