-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from FaDeOkno/syndi-small-update
Небольшие подарки агентам
- Loading branch information
Showing
11 changed files
with
275 additions
and
0 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
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,15 @@ | ||
ent-ADTAmatoxinChemistryBottle = бутылочка аматоксина | ||
.desc = "Маленькая бутылочка" | ||
ent-ADTLicoxideChemistryBottle = бутылочка ликоксида | ||
.desc = "Маленькая бутылочка" | ||
ent-ADTLexorinChemistryBottle = бутылочка лексорина | ||
.desc = "Маленькая бутылочка" | ||
ent-MuteToxinChemistryBottle = бутылочка токсина немоты | ||
.desc = "Маленькая бутылочка" | ||
ent-BartenderToxinsPack = набор барных токсинов | ||
.desc = Небольшой набор эффективных токсинов, используемых многими барменами Синдиката. | ||
.suffix = { "Заполнен" } |
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
- type: entity | ||
id: ADTAmatoxinChemistryBottle | ||
name: amatoxin bottle | ||
parent: BaseChemistryBottleFilled | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
maxVol: 30 | ||
reagents: | ||
- ReagentId: Amatoxin | ||
Quantity: 30 | ||
|
||
- type: entity | ||
id: ADTLicoxideChemistryBottle | ||
name: licoxide bottle | ||
parent: BaseChemistryBottleFilled | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
maxVol: 30 | ||
reagents: | ||
- ReagentId: Licoxide | ||
Quantity: 30 | ||
|
||
- type: entity | ||
id: ADTLexorinChemistryBottle | ||
name: licoxide bottle | ||
parent: BaseChemistryBottleFilled | ||
components: | ||
- type: SolutionContainerManager | ||
solutions: | ||
drink: | ||
maxVol: 30 | ||
reagents: | ||
- ReagentId: Lexorin | ||
Quantity: 30 | ||
|
||
- type: entity | ||
id: BartenderToxinsPack | ||
suffix: Filled | ||
parent: MedkitCombat | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: MuteToxinChemistryBottle | ||
- id: ADTAmatoxinChemistryBottle | ||
- id: ADTLicoxideChemistryBottle | ||
- id: ADTLexorinChemistryBottle | ||
- id: ADTLexorinChemistryBottle |
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
12 changes: 12 additions & 0 deletions
12
Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/Syndicate.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,12 @@ | ||
- type: entity | ||
id: ADTFakeDefibrillator | ||
parent: Defibrillator | ||
components: | ||
- type: Defibrillator | ||
zapHeal: | ||
types: | ||
Asphyxiation: -1 | ||
writheDuration: 5 | ||
zapDamage: 35 | ||
zapDelay: 2 | ||
doAfterDuration: 1 |
35 changes: 35 additions & 0 deletions
35
Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Revolvers/Syndicate.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,35 @@ | ||
- type: entity | ||
parent: BaseItem | ||
id: ADTWhiteCaneShotgun | ||
name: white cane | ||
description: This isn't for you. It's for the people who can't figure out you're blind when you ask if cargo is the bar. | ||
components: | ||
- type: Sprite | ||
sprite: Objects/Weapons/Melee/white_cane.rsi | ||
state: icon | ||
- type: Item | ||
size: Normal | ||
sprite: Objects/Weapons/Melee/white_cane.rsi | ||
- type: Gun | ||
fireRate: 2 | ||
selectedMode: SemiAuto | ||
availableModes: | ||
- SemiAuto | ||
soundGunshot: | ||
path: /Audio/Weapons/Guns/Gunshots/shotgun.ogg | ||
soundEmpty: | ||
path: /Audio/Weapons/Guns/Empty/empty.ogg | ||
- type: BallisticAmmoProvider | ||
whitelist: | ||
tags: | ||
- ShellShotgun | ||
capacity: 3 | ||
proto: ShellShotgun | ||
soundInsert: | ||
path: /Audio/Weapons/Guns/MagIn/shotgun_insert.ogg | ||
- type: ContainerContainer | ||
containers: | ||
ballistic-ammo: !type:Container | ||
ents: [] | ||
- type: StaticPrice | ||
price: 4500 |
46 changes: 46 additions & 0 deletions
46
Resources/Prototypes/ADT/Entities/Objects/Weapons/Melee/Syndicate.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,46 @@ | ||
- type: entity | ||
name: stun baguette | ||
parent: BaseItem | ||
id: ADTStunbaguette | ||
description: A stun baton for incapacitating people with. Actively harming with this is considered bad tone. | ||
components: | ||
- type: Sprite | ||
sprite: Objects/Consumable/Food/Baked/bread.rsi | ||
state: baguette | ||
- type: MeleeWeapon | ||
wideAnimationRotation: -135 | ||
damage: | ||
types: | ||
Blunt: 2 | ||
bluntStaminaDamageFactor: 2.0 | ||
angle: 60 | ||
animation: WeaponArcSlash | ||
- type: StaminaDamageOnHit | ||
damage: 30 | ||
sound: /Audio/Weapons/egloves.ogg | ||
- type: StaminaDamageOnCollide | ||
damage: 30 | ||
sound: /Audio/Weapons/egloves.ogg | ||
- type: ItemCooldown | ||
- type: Item | ||
heldPrefix: off | ||
size: Normal | ||
- type: DisarmMalus | ||
malus: 0.225 | ||
- type: Appearance | ||
- type: StaticPrice | ||
price: 100 | ||
- type: Food | ||
- type: FlavorProfile | ||
flavors: | ||
- bun | ||
- shocking | ||
- type: SolutionContainerManager | ||
solutions: | ||
food: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Nutriment | ||
Quantity: 8 | ||
- ReagentId: Licoxide | ||
Quantity: 15 |