-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
2,717 additions
and
531 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
40 changes: 40 additions & 0 deletions
40
Content.Server/ADT/SizeAttribute/SizeAttributeWhitelistComponent.cs
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,40 @@ | ||
using Robust.Shared.Physics.Collision.Shapes; | ||
|
||
namespace Content.Server.SizeAttribute | ||
{ | ||
[RegisterComponent] | ||
public sealed partial class SizeAttributeWhitelistComponent : Component | ||
{ | ||
// Short | ||
[DataField("short")] | ||
public bool Short = false; | ||
|
||
[DataField("shortscale")] | ||
public float ShortScale = 0f; | ||
|
||
[DataField("shortDensity")] | ||
public float ShortDensity = 0f; | ||
|
||
[DataField("shortPseudoItem")] | ||
public bool ShortPseudoItem = false; | ||
|
||
[DataField("shortCosmeticOnly")] | ||
public bool ShortCosmeticOnly = true; | ||
|
||
// Tall | ||
[DataField("tall")] | ||
public bool Tall = false; | ||
|
||
[DataField("tallscale")] | ||
public float TallScale = 0f; | ||
|
||
[DataField("tallDensity")] | ||
public float TallDensity = 0f; | ||
|
||
[DataField("tallPseudoItem")] | ||
public bool TallPseudoItem = false; | ||
|
||
[DataField("tallCosmeticOnly")] | ||
public bool TallCosmeticOnly = true; | ||
} | ||
} |
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
Content.Server/ADT/Speech/Component/RoarAccentComponent.cs
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,10 @@ | ||
namespace Content.Server.Speech.Components; | ||
|
||
/// <summary> | ||
/// Roar! | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class RoarAccentComponent : Component | ||
{ | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
Content.Server/ADT/Speech/EntitySystems/RoarAccentSystem.cs
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,36 @@ | ||
using System.Text.RegularExpressions; | ||
using Content.Server.Speech.Components; | ||
using Robust.Shared.Random; | ||
|
||
namespace Content.Server.Speech.EntitySystems; | ||
|
||
public sealed class RoarAccentSystem : EntitySystem | ||
{ | ||
[Dependency] private readonly IRobustRandom _random = default!; | ||
|
||
public override void Initialize() | ||
{ | ||
base.Initialize(); | ||
SubscribeLocalEvent<RoarAccentComponent, AccentGetEvent>(OnAccent); | ||
} | ||
|
||
private void OnAccent(EntityUid uid, RoarAccentComponent component, AccentGetEvent args) | ||
{ | ||
var message = args.Message; | ||
|
||
// roarrr | ||
message = Regex.Replace(message, "r+", "rrr"); | ||
// roarRR | ||
message = Regex.Replace(message, "R+", "RRR"); | ||
|
||
// ADT-Localization-Start | ||
// р => ррр | ||
message = Regex.Replace( | ||
message, | ||
"р+", | ||
_random.Pick(new List<string>() { "рр", "ррр" }) | ||
); | ||
// ADT-Localization-End | ||
args.Message = message; | ||
} | ||
} |
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,29 @@ | ||
- files: ["dog_bark1.ogg", "dog_bark2.ogg", "dog_bark3.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/abhisheky948/sounds/625497/" | ||
source: "https://freesound.org/people/abhisheky948/sounds/625497/" | ||
|
||
files: ["dog_bark2.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/michael_grinnell/sounds/464400/" | ||
source: "https://freesound.org/people/michael_grinnell/sounds/464400/" | ||
|
||
files: ["dog_bark3.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" | ||
source: "https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" | ||
|
||
- files: ["dog_growl1.ogg", "dog_growl2.ogg", "dog_growl3.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/Glitchedtones/sounds/372533/ - cut out three clips of dog growling, cleaned up, converted to ogg" | ||
source: "https://freesound.org/people/Glitchedtones/sounds/372533/" | ||
|
||
- files: ["dog_snarl1.ogg", "dog_snarl2.ogg", "dog_snarl3.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/strongbot/sounds/341090/ - cut out three clips of dog snarling, cleaned up, converted to ogg" | ||
source: "https://freesound.org/people/strongbot/sounds/341090/" | ||
|
||
files: ["dog_whine.ogg"] | ||
license: "CC0-1.0" | ||
copyright: "Original sound by https://freesound.org/people/Sruddi1/sounds/34878/ - cleaned up, converted to ogg" | ||
source: "https://freesound.org/people/Sruddi1/sounds/34878/" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,10 @@ | ||
dog_bark1.ogg licensed under CC0 1.0 taken from abhisheky948 at https://freesound.org/people/abhisheky948/sounds/625497/ | ||
dog_bark2.ogg licensed under CC0 1.0 taken from michael_grinnell at https://freesound.org/people/michael_grinnell/sounds/464400/ | ||
dog_bark3.ogg licensed under CC0 1.0 taken from Geoff-Bremner-Audio at https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/ | ||
dog_growl1.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ | ||
dog_growl2.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ | ||
dog_growl3.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ | ||
dog_snarl1.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ | ||
dog_snarl2.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ | ||
dog_snarl3.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ | ||
dog_whine.ogg licensed under CC SAMPLING+ 1.0 DEED taken from Sruddil at https://freesound.org/people/Sruddi1/sounds/34878/ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,3 @@ | ||
all taken from | ||
https://github.com/new-frontiers-14/frontier-station-14/tree/master/Resources/Audio/_NF/Vulpikanin | ||
licensed under CC BY-NC-SA 3.0 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,6 @@ | ||
pug.ogg (Renamed to vulp.ogg) | ||
pug_ask.ogg (Renamed to vulp_ask.ogg) | ||
pug_exclaim.ogg (Renamed to vulp_exclaim.ogg) | ||
all taken from | ||
https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790 | ||
licensed under CC BY-NC-SA 3.0 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
2 changes: 0 additions & 2 deletions
2
Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/vulpkanin.ftl
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,2 @@ | ||
ent-MobVulpkanin = Урист МакВульпканин | ||
.desc = { ent-BaseMobVulpkanin.desc } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/player/vulpkanin.ftl
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
ent-MobVulpkanin = Урист МакВульп | ||
.desc = { ent-BaseMobVulpkanin.desc } | ||
### ent-MobVulpkanin = Урист МакВульп | ||
### .desc = { ent-BaseMobVulpkanin.desc } |
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,38 @@ | ||
- type: entity | ||
id: OrganVulpkaninStomach | ||
parent: OrganAnimalStomach | ||
noSpawn: true | ||
components: | ||
- type: Stomach | ||
- type: SolutionContainerManager | ||
solutions: | ||
stomach: | ||
maxVol: 50.0 | ||
|
||
- type: entity | ||
id: ADTOrganVulpkaninAnimalLiver | ||
parent: BaseAnimalOrgan | ||
name: liver | ||
#noSpawn: true | ||
components: | ||
- type: Sprite | ||
state: liver | ||
- type: Organ | ||
- type: Metabolizer | ||
maxReagents: 1 | ||
metabolizerTypes: [ Animal ] | ||
groups: | ||
- id: Alcohol | ||
rateModifier: 0.1 | ||
|
||
- type: entity | ||
id: OrganVulpkaninHeart | ||
parent: OrganAnimalHeart | ||
components: | ||
- type: Metabolizer | ||
maxReagents: 2 | ||
metabolizerTypes: [ Vulpkanin, Animal ] | ||
groups: | ||
- id: Medicine | ||
- id: Poison | ||
- id: Narcotic |
Oops, something went wrong.