diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 3c783dad1b4..c8563ed0a25 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -332,7 +332,7 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot } break; - // Lust-start + // Lust-Start case Sex.Futanari: displacementData = inventory.FemaleDisplacements.GetValueOrDefault($"{slot}-{bodyTypeName}") @@ -345,7 +345,7 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot } break; - // Lust-end + // Lust-End } } diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index d394fd1235c..34db2e911eb 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -125,13 +125,13 @@ private void SetLayerData( if (sexMorph) protoId = HumanoidVisualLayersExtension.GetSexMorph(key, component.Sex, protoId); - // Lust-start + // Lust-Start if (_prototypeManager.TryIndex(protoId, out HumanoidSpeciesSpriteLayer? proto)) component.BaseLayers[key] = proto; if (proto == null) return; - // Lust-end + // Lust-End if (proto.MatchSkin) layer.Color = component.SkinColor.WithAlpha(proto.LayerAlpha); diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index 841615cb9d1..a4100983277 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -1366,11 +1366,11 @@ private void SetSex(Sex newSex) case Sex.Female: Profile = Profile?.WithGender(Gender.Female); break; - // Lust-start + // Lust-Start case Sex.Futanari: Profile = Profile?.WithGender(Gender.Female); break; - // Lust-end + // Lust-End default: Profile = Profile?.WithGender(Gender.Epicene); break; @@ -1586,7 +1586,7 @@ private void UpdateSexControls() else { SexButton.SelectId((int) sexes[0]); - SetSex(sexes[0]); // Lust-edit + SetSex(sexes[0]); // Lust-Edit } } diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index f2fe7164e36..4ff56a763f3 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -1056,7 +1056,7 @@ public StyleNano(IResourceCache resCache) : base(resCache) itemListBackgroundSelected) }), - //sunrise-lust-edit-start + // Lust-Start new StyleRule(new SelectorElement(typeof(ItemList), new[] {"darkItemList"}, null, null), new[] { new StyleProperty(ItemList.StylePropertyBackground, @@ -1068,7 +1068,7 @@ public StyleNano(IResourceCache resCache) : base(resCache) new StyleProperty(ItemList.StylePropertySelectedItemBackground, itemListBackgroundSelected) }), - //sunrise-lust-edit-end + // Lust-End new StyleRule(new SelectorElement(typeof(ItemList), new[] {"transparentItemList"}, null, null), new[] { new StyleProperty(ItemList.StylePropertyBackground, diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 92c89b58bcf..2690b884a55 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -633,12 +633,12 @@ private void AddSmiteVerbs(GetVerbsEvent args) }; args.Verbs.Add(nyanify); - var killSignName = Loc.GetString("admin-smite-fuck-sign-name").ToLowerInvariant(); // Lust-edit + var killSignName = Loc.GetString("admin-smite-fuck-sign-name").ToLowerInvariant(); // Lust-Edit Verb killSign = new() { Text = killSignName, Category = VerbCategory.Smite, - Icon = new SpriteSpecifier.Rsi(new("_Lust/Objects/Misc/fuck_sign.rsi"), "icon"), // Lust-edit + Icon = new SpriteSpecifier.Rsi(new("_Lust/Objects/Misc/fuck_sign.rsi"), "icon"), // Lust-Edit Act = () => { EnsureComp(args.Target, out var comp); @@ -646,7 +646,7 @@ private void AddSmiteVerbs(GetVerbsEvent args) Dirty(args.Target, comp); }, Impact = LogImpact.Extreme, - Message = string.Join(": ", killSignName, Loc.GetString("admin-smite-fuck-sign-description")) // Lust-edit + Message = string.Join(": ", killSignName, Loc.GetString("admin-smite-fuck-sign-description")) // Lust-Edit }; args.Verbs.Add(killSign); diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 381b9102fed..1af945bdde8 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -218,7 +218,7 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) var spawnPriority = (SpawnPriorityPreference) profile.SpawnPriority; - // Sunrise-Lust Start + // Lust-Start var erp = Erp.Ask; var virginity = Virginity.No; var analVirginity = Virginity.Yes; @@ -238,7 +238,7 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) var gender = sex == Sex.Male ? Gender.Male : Gender.Female; if (Enum.TryParse(profile.Gender, true, out var genderVal)) gender = genderVal; - // Sunrise-Lust End + // Lust-End // Sunrise-TTS-Start var voice = profile.Voice; @@ -294,9 +294,9 @@ private static HumanoidCharacterProfile ConvertProfiles(Profile profile) profile.BodyType, profile.Age, sex, - erp, // Sunrise-Lust Edit - virginity, // Sunrise-Lust Edit - analVirginity, // Sunrise-Lust Edit + erp, // Lust-Edit + virginity, // Lust-Edit + analVirginity, // Lust-Edit gender, new HumanoidCharacterAppearance ( @@ -349,7 +349,7 @@ private static Profile ConvertProfiles(HumanoidCharacterProfile humanoid, int sl profile.Sex = humanoid.Sex.ToString(); profile.Gender = humanoid.Gender.ToString(); - // Sunrise-Lust Edit - Update or create ErpData + // Lust-Edit - Update or create ErpData if (profile.ErpData == null) { profile.ErpData = new ProfileErp diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index 7ecc6a8606e..d03a437cef3 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -44,7 +44,7 @@ public override void DoRemoveStutter(EntityUid uid) private void OnAccent(Entity entity, ref AccentGetEvent args) { - // Lust-start + // Lust-Start if (TryComp(entity, out var pu)) { entity.Comp.MatchRandomProb = 0.3f; @@ -52,7 +52,7 @@ private void OnAccent(Entity entity, ref AccentGetEve entity.Comp.ThreeRandomProb = 0; entity.Comp.CutRandomProb = 0; } - // Lust-end + // Lust-End args.Message = Accentuate(args.Message, entity.Comp); } diff --git a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs index f0f64482a9d..0104feb5538 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.Roundstart.cs @@ -389,10 +389,10 @@ private Dictionary> GetPlayersJobCandidates(int? weight, continue; // Sunrise-End - // Sunrise-Lust start + // Lust-Start if (job.SexBlacklist.Contains(profile.Sex)) continue; - // Sunrise-Lust end + // Lust-End availableJobs ??= new List(profile.JobPriorities.Count); availableJobs.Add(jobId); diff --git a/Content.Server/_Sunrise/Fugitive/FugitiveSystem.cs b/Content.Server/_Sunrise/Fugitive/FugitiveSystem.cs index 9921ca796e6..fae48164867 100644 --- a/Content.Server/_Sunrise/Fugitive/FugitiveSystem.cs +++ b/Content.Server/_Sunrise/Fugitive/FugitiveSystem.cs @@ -175,7 +175,7 @@ private FormattedMessage GenerateFugiReport(EntityUid uid) { Sex.Male => Loc.GetString("fugitive-report-sex-m"), Sex.Female => Loc.GetString("fugitive-report-sex-f"), - Sex.Futanari => Loc.GetString("fugitive-report-sex-f"), // Lust-edit + Sex.Futanari => Loc.GetString("fugitive-report-sex-f"), // Lust-Edit _ => Loc.GetString("fugitive-report-sex-n") }; diff --git a/Content.Shared/Humanoid/Sex.cs b/Content.Shared/Humanoid/Sex.cs index 4e1288c6637..0fdedd7e37a 100644 --- a/Content.Shared/Humanoid/Sex.cs +++ b/Content.Shared/Humanoid/Sex.cs @@ -11,7 +11,7 @@ public enum Sex : byte Male, Female, Unsexed, - Futanari, // Lust-edit + Futanari, // Lust-Edit } /// diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 5691a54afe4..7e9b5645a09 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -58,7 +58,7 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem { {Sex.Male, "Voljin"}, {Sex.Female, "Amina"}, - {Sex.Futanari, "Amina"}, // Lust-edit + {Sex.Futanari, "Amina"}, // Lust-Edit {Sex.Unsexed, "Charlotte"} }; // Sunrise-TTS-End diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index 2379db2ff1e..7b8b8bb6e04 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -52,10 +52,10 @@ public ProtoId TemplateIdVV [DataField, AutoNetworkedField] public Dictionary MaleDisplacements = new(); - // Lust-start + // Lust-Start [DataField] public Dictionary FutanariDisplacements = new(); - // Lust-end + // Lust-End } /// diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs index 9faca0a3997..58ada2472a8 100644 --- a/Content.Shared/Roles/JobPrototype.cs +++ b/Content.Shared/Roles/JobPrototype.cs @@ -180,10 +180,10 @@ public sealed partial class JobPrototype : IPrototype public SpriteSpecifier PreviewIcon = new SpriteSpecifier.Rsi(new ResPath("/Textures/_Sunrise/Interface/Misc/job_preview.rsi"), "test"); // Sunrise-End - // Sunrise-Lust start + // Lust-Start [DataField("sexBlacklist")] public List SexBlacklist = new(); - // Sunrise-Lust end + // Lust-End } /// diff --git a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs index a0561c39a50..7eac61ca529 100644 --- a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs @@ -34,6 +34,6 @@ public sealed partial class EmagSiliconLawComponent : Component /// to let them know they've been emagged /// [DataField] - public SoundSpecifier EmaggedSound = new SoundPathSpecifier("/Audio/_Lust/Ambience/Antag/death_to_qillu_corporation.ogg"); //Lust-edit + public SoundSpecifier EmaggedSound = new SoundPathSpecifier("/Audio/_Lust/Ambience/Antag/death_to_qillu_corporation.ogg"); // Lust-Edit } diff --git a/Content.Shared/Trigger/Components/Effects/ShockOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/ShockOnTriggerComponent.cs index eb3cc8183f3..86d8dadd456 100644 --- a/Content.Shared/Trigger/Components/Effects/ShockOnTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/Effects/ShockOnTriggerComponent.cs @@ -32,7 +32,7 @@ public sealed partial class ShockOnTriggerComponent : BaseXOnTriggerComponent [DataField, AutoNetworkedField] public TimeSpan Duration = TimeSpan.FromSeconds(2); - // Lust-start + // Lust-Start /// /// Как часто можно шокировать цель. /// @@ -44,5 +44,5 @@ public sealed partial class ShockOnTriggerComponent : BaseXOnTriggerComponent /// [DataField(readOnly: true), AutoNetworkedField] public TimeSpan PreviousActivation = TimeSpan.Zero; - // Lust-end + // Lust-End } diff --git a/Resources/Prototypes/Body/Parts/silicon.yml b/Resources/Prototypes/Body/Parts/silicon.yml index 71f9b0c27a2..591b550d6ca 100644 --- a/Resources/Prototypes/Body/Parts/silicon.yml +++ b/Resources/Prototypes/Body/Parts/silicon.yml @@ -4,9 +4,9 @@ abstract: true components: - type: Sprite - sprite: _Lust/Objects/Specific/Robotics/cyborg_parts.rsi # Lust edit + sprite: _Lust/Objects/Specific/Robotics/cyborg_parts.rsi # Lust-Edit - type: Icon - sprite: _Lust/Objects/Specific/Robotics/cyborg_parts.rsi # Lust edit + sprite: _Lust/Objects/Specific/Robotics/cyborg_parts.rsi # Lust-Edit - type: Damageable damageContainer: Inorganic - type: BodyPart diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml index 517b856d5cd..e1fcc267b56 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/curadrobe.yml @@ -15,7 +15,7 @@ ClothingShoesBootsLaceup: 2 ClothingHeadsetService: 2 CopyMachineFlatpack: 2 - LibrarianPointer: 2 # Lust-add + LibrarianPointer: 2 # Lust-Edit contrabandInventory: ToyFigurineLibrarian: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml index a80d8b3e326..d1c69cdeab8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml @@ -23,12 +23,12 @@ ClothingHeadHatSurgcapBlue: 4 ClothingHeadHatSurgcapPurple: 4 ClothingShoesBootsWinterMed: 2 - #Lust-start + # Lust-Start ClothingOuterCoatMedNeko: 2 ClothingOuterCoatMedNekoBlue: 2 ClothingOuterCoatMedNekoGreen: 2 ClothingOuterCoatMedNekoPurple: 2 - #Lust-end + # Lust-End contrabandInventory: ClothingUniformJumpskirtOfLife: 1 ToyFigurineMedicalDoctor: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index be0cc1a7ce7..e227b0a67e8 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -73,10 +73,10 @@ ClothingShoesBootsCowboyBrown: 1 ClothingShoesBootsCowboyBlack: 1 ClothingShoesBootsCowboyWhite: 1 -#Lust-start +# Lust-Start ClothingBeerCostume: 2 ClothingPivozavr: 2 -#Lust-end +# Lust-End contrabandInventory: ClothingHeadHatRichard: 1 ToyFigurineBoxer: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index 519b7f84c38..7c77d435d82 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -28,7 +28,7 @@ - SimpleHostile - type: Sprite drawdepth: SmallMobs - sprite: _Lust/Mobs/Animals/regal_rat.rsi # Lust - edit + sprite: _Lust/Mobs/Animals/regal_rat.rsi # Lust-Edit layers: - map: ["enum.DamageStateVisualLayers.Base"] state: regalrat @@ -142,10 +142,10 @@ - type: VentCrawler - type: NightVision # Sunrise-end - # Sunrise-Lust start + # Lust-Start - type: TTS voice: Planya - # Sunrise-Lust end + # Lust-End - type: entity id: MobRatKingBuff diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index b06164c948d..da77743a34d 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -10,7 +10,7 @@ components: # general - DetailExaminable - - ErpStatus # Lust-Station + - ErpStatus # Lust-Edit - Dna - Fingerprint - NpcFactionMember diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index acc5fbdac30..64763e442cf 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -51,7 +51,7 @@ Male: UnisexDwarf Female: FemaleDwarf Unsexed: UnisexDwarf - Futanari: FemaleDwarf # Lust-edit + Futanari: FemaleDwarf # Lust-Edit - type: ReplacementAccent accent: dwarf - type: Speech diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 84798de46f9..453b3ef7ded 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -57,7 +57,7 @@ Male: UnisexMoth Female: UnisexMoth Unsexed: UnisexMoth - Futanari: UnisexMoth # Lust-edit + Futanari: UnisexMoth # Lust-Edit - type: MovementSpeedModifier baseWeightlessAcceleration: 1.5 # Move around more easily in space. baseWeightlessFriction: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 84afd367dd9..56f33f5db6c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -46,7 +46,7 @@ Male: MaleReptilian Female: FemaleReptilian Unsexed: MaleReptilian - Futanari: FemaleReptilian # Lust-edit + Futanari: FemaleReptilian # Lust-Edit - type: BodyEmotes soundsId: ReptilianBodyEmotes - type: Damageable diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 12064db6602..a046ae86296 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -63,7 +63,7 @@ Male: MaleSlime Female: FemaleSlime Unsexed: MaleSlime - Futanari: FemaleSlime # Lust-edit + Futanari: FemaleSlime # Lust-Edit - type: Damageable damageContainer: Biological damageModifierSet: Slime diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 667c39ab322..58f017909db 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -42,13 +42,13 @@ - type: Appearance - type: Extractable grindableSolutionName: food - # LUST STATION START + # Lust-Start - type: Clothing slots: - PLUG equipDelay: 4 unequipDelay: 4 - # LUST STATION END + # Lust-End # Subclasses diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml index 42a1eaba300..5d3d924d6f7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml @@ -19,13 +19,13 @@ state: rpg - type: StaticPrice price: 20 - # LUST STATION START + # Lust-Start - type: Clothing slots: - PLUG equipDelay: 5 unequipDelay: 5 - # LUST STATION END + # Lust-End - type: entity id: CartridgeRocketSlow @@ -46,13 +46,13 @@ state: frag - type: StaticPrice price: 20 - # LUST STATION START + # Lust-Start - type: Clothing slots: - PLUG equipDelay: 5 unequipDelay: 5 - # LUST STATION END + # Lust-End # Grenades @@ -68,13 +68,13 @@ - type: Item size: Small - type: Sprite -# LUST STATION START + # Lust-Start - type: Clothing slots: - PLUG equipDelay: 3 unequipDelay: 3 -# LUST STATION END + # Lust-End - type: entity id: GrenadeBaton @@ -192,13 +192,13 @@ - type: Item size: Small - type: Sprite - # LUST STATION START + # Lust-Start - type: Clothing slots: - PLUG equipDelay: 6 unequipDelay: 6 - # LUST STATION END + # Lust-End - type: entity id: CannonBall diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 8e904d110f3..1e7e1f73095 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -365,9 +365,9 @@ name: command crate components: - type: Icon - sprite: _Lust/Structures/Storage/Crates/command.rsi #Lust-edit + sprite: _Lust/Structures/Storage/Crates/command.rsi # Lust-Edit - type: Sprite - sprite: _Lust/Structures/Storage/Crates/command.rsi #Lust-edit + sprite: _Lust/Structures/Storage/Crates/command.rsi # Lust-Edit - type: AccessReader access: [["Command"]] # Sunrise-start diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml index 2a1f1ba58d1..3246f1f33e3 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml @@ -96,21 +96,21 @@ - type: loadout id: EyesHudSecurity equipment: - eyes: ClothingEyesHudSecurity # Lust Station + eyes: ClothingEyesHudSecurity # Lust-Edit - type: loadout id: EyesGlassesSecurity equipment: - eyes: ClothingEyesGlassesSecurity # Lust Station + eyes: ClothingEyesGlassesSecurity # Lust-Edit - type: loadout id: EyesHudSecurityAlt sponsorOnly: true equipment: - eyes: ClothingEyesHudSecurityAlt # Lust Station + eyes: ClothingEyesHudSecurityAlt # Lust-Edit - type: loadout - id: EyesEyepatchHudSecurity # Lust Station + id: EyesEyepatchHudSecurity # Lust-Edit equipment: eyes: ClothingEyesEyepatchHudSecurity diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index a1c878c1d86..c3f18f58a31 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -173,7 +173,7 @@ - CaptainCloak - CaptainCloakFormal - CaptainMantle - - CaptainSpecialCloak # Lust Station + - CaptainSpecialCloak # Lust-Edit # Sunrise - Start - CaptainEliteCloak - CaptainScarf @@ -251,7 +251,7 @@ - HoPCloak - HoPMantle - HoPScarf # Sunrise-Edit - - HopSpecialCloak # Lust Station + - HopSpecialCloak # Lust-Edit - type: loadoutGroup id: HoPBackpack @@ -830,7 +830,7 @@ - QuartermasterCloak - QuartermasterMantle - QuartermasterScarf # Sunrise-Edit - - QuartermasterSpecialCloak # Lust Station + - QuartermasterSpecialCloak # Lust-Edit #Sunrise-start - SunriseScarfOrange - SunriseScarfYellow @@ -1214,7 +1214,7 @@ - ResearchDirectorMantle - ResearchDirectorCloak - ResearchDirectorScarf # Sunrise-Edit - - RdSpecialCloak # Lust Station + - RdSpecialCloak # Lust-Edit - ResearchDirectorCloakLegacy # Sunrise-edit - type: loadoutGroup @@ -1349,7 +1349,7 @@ - HeadofSecurityFormalSkirt - HeadofSecurityJumpsuitHoSOld #Sunrise-Edit - HeadofSecurityJumpsuitUSSPBlack #Sunrise-Edit - - HeadofSecurityJumpsuitElegant #Lust-Edit + - HeadofSecurityJumpsuitElegant # Lust-Edit - type: loadoutGroup id: HeadofSecurityNeck @@ -1361,7 +1361,7 @@ - HeadofSecurityDarthHOSCloak #Sunrise-Edit - HeadofSecurityCloakHOSCloak #Sunrise-Edit - HeadofSecurityScarf #Sunrise-Edit - - HosSpecialCloak # Lust Station + - HosSpecialCloak # Lust-Edit - type: loadoutGroup id: HeadofSecurityOuterClothing @@ -1451,7 +1451,7 @@ name: loadout-group-security-belt loadouts: - SecurityBelt - - SecuritySheathBelt # Lust Station + - SecuritySheathBelt # Lust-Edit - SecurityWebbing - type: loadoutGroup @@ -1499,7 +1499,7 @@ loadouts: - DetectiveTie - DetectiveTieHorrific #Sunrise-add - - SecurityCloak # Lust Station + - SecurityCloak # Lust-Edit - type: loadoutGroup id: DetectiveJumpsuit @@ -1627,7 +1627,7 @@ - ChiefMedicalOfficerCloak - ChiefMedicalOfficerMantle - ChiefMedicalOfficerScarf # Sunrise-Edit - - CmoSpecialCloak # Lust Station + - CmoSpecialCloak # Lust-Edit # Sunrise-start - SunriseScarfRed - SunriseScarfOrange diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 784aef958ab..b33fea44ddd 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -13,7 +13,7 @@ - CaptainJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -35,7 +35,7 @@ - HoPJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -71,7 +71,7 @@ - PassengerJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -92,7 +92,7 @@ - BartenderJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -111,7 +111,7 @@ - ServiceWorkerJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -133,7 +133,7 @@ - ChefJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -152,7 +152,7 @@ - LibrarianJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -172,7 +172,7 @@ - LawyerJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -196,7 +196,7 @@ - ChaplainJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -218,7 +218,7 @@ - JanitorJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -239,7 +239,7 @@ - BotanistJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -261,7 +261,7 @@ - Trinkets - ClownJobTrinkets # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -284,7 +284,7 @@ - Trinkets - MimeJobTrinkets # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -306,7 +306,7 @@ - Instruments - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -333,7 +333,7 @@ - QuartermasterJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - TrinketsCargo - Bra - Pants @@ -512,7 +512,7 @@ - ResearchDirectorJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -537,7 +537,7 @@ - ScientistJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -556,7 +556,7 @@ - ResearchAssistantJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -573,7 +573,7 @@ - SecurityBackpack - SecurityBelt - HeadofSecurityOuterClothing - - SecurityGlasses #Lust-Edit + - SecurityGlasses # Lust-Edit - SecurityShoes - SurvivalSecurity - Trinkets @@ -594,7 +594,7 @@ - WardenHead - WardenJumpsuit - SecurityBackpack - - SecurityGlasses #Lust-Edit + - SecurityGlasses # Lust-Edit - SecurityBelt - WardenOuterClothing - SecurityShoes @@ -642,7 +642,7 @@ - DetectiveNeck - DetectiveJumpsuit - SecurityBackpack - - SecurityGlasses #Lust-Edit + - SecurityGlasses # Lust-Edit - DetectiveOuterClothing - SecurityShoes - SurvivalSecurity @@ -652,7 +652,7 @@ - SecurityTrinkets # Sunrise # Sunrise-start - SunriseWeaponDetective - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -664,7 +664,7 @@ groups: - SecurityCadetJumpsuit - SecurityBackpack - - SecurityGlasses #Lust-Edit + - SecurityGlasses # Lust-Edit - SurvivalSecurity - Trinkets - SecurityCadetJobTrinkets @@ -672,7 +672,7 @@ - SecurityTrinkets # Sunrise # Sunrise-start - SunriseWeaponCadet - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks @@ -830,7 +830,7 @@ - ReporterJobTrinkets - GroupSpeciesBreathTool # Sunrise-start - - SpecialLoadout # Lust Station + - SpecialLoadout # Lust-Edit - Bra - Pants - Socks diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml index 8bdfddca3db..f4b4f3f2433 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/assistant.yml @@ -6,8 +6,8 @@ startingGear: PassengerGear icon: "JobIconPassenger" supervisors: job-supervisors-everyone - #lust-edit access: - #lust-edit - Maintenance + #access: # Lust-Edit + #- Maintenance # Lust-Edit - type: startingGear id: PassengerGear diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 6901396d856..d63ea4b16dd 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -29,7 +29,7 @@ - type: startingGear id: DetectiveGear equipment: -# eyes: ClothingEyesGlassesSecurity #Lust-Edit + # eyes: ClothingEyesGlassesSecurity # Lust-Edit id: DetectivePDA ears: ClothingHeadsetSecurity belt: ClothingBeltHolsterFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index d1fb1a4d038..9e00a6f1e24 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -47,7 +47,7 @@ - type: startingGear id: HoSGear equipment: -# eyes: ClothingEyesGlassesSecurity #Lust-Edit + # eyes: ClothingEyesGlassesSecurity # Lust-Edit id: HoSPDA gloves: ClothingHandsGlovesCombat ears: ClothingHeadsetAltSecurity diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 6b493612f2e..6fd5b7d9554 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -33,7 +33,7 @@ - type: startingGear id: WardenGear equipment: -# eyes: ClothingEyesGlassesSecurity #Lust-Edit + # eyes: ClothingEyesGlassesSecurity # Lust-Edit id: WardenPDA ears: ClothingHeadsetSecurity # pocket1: WeaponPistolMk58 # Sunrise-Edit diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 29336cbd7a6..6d8d0170018 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -32,7 +32,7 @@ - Visitor - ServiceWorker - Barber # Sunrise-Roles - - ComMaid # Sunrise-Lust edit + - ComMaid # Lust-Edit # Вынесено в _Sunrise #- type: department @@ -76,7 +76,7 @@ - CentCommOfficial - NanoTrasenRepresentative #Sunrise-Edit - Adjutant #Sunrise-edit - - ComMaid # Sunrise-Lust edit + - ComMaid # Lust-Edit primary: false weight: 100 diff --git a/Resources/Prototypes/Species/dwarf.yml b/Resources/Prototypes/Species/dwarf.yml index eb3487ba27f..eb9f288b03d 100644 --- a/Resources/Prototypes/Species/dwarf.yml +++ b/Resources/Prototypes/Species/dwarf.yml @@ -28,4 +28,4 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit diff --git a/Resources/Prototypes/Species/human.yml b/Resources/Prototypes/Species/human.yml index 60d091b8555..e20eb11abd1 100644 --- a/Resources/Prototypes/Species/human.yml +++ b/Resources/Prototypes/Species/human.yml @@ -20,7 +20,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit # The lack of a layer means that # this person cannot have round-start anything diff --git a/Resources/Prototypes/Species/moth.yml b/Resources/Prototypes/Species/moth.yml index 741c535dbc5..c4eec473e0e 100644 --- a/Resources/Prototypes/Species/moth.yml +++ b/Resources/Prototypes/Species/moth.yml @@ -18,7 +18,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: MothNormal diff --git a/Resources/Prototypes/Species/reptilian.yml b/Resources/Prototypes/Species/reptilian.yml index f1b3a1a838d..2bdd6cf8030 100644 --- a/Resources/Prototypes/Species/reptilian.yml +++ b/Resources/Prototypes/Species/reptilian.yml @@ -17,7 +17,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: ReptilianNormal diff --git a/Resources/Prototypes/Species/slime.yml b/Resources/Prototypes/Species/slime.yml index b26a4e7e44c..d3cfe714233 100644 --- a/Resources/Prototypes/Species/slime.yml +++ b/Resources/Prototypes/Species/slime.yml @@ -14,7 +14,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human # Sunrise-Edit - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: SlimeNormal diff --git a/Resources/Prototypes/Species/vulpkanin.yml b/Resources/Prototypes/Species/vulpkanin.yml index e00986181c7..5b3da9483c8 100644 --- a/Resources/Prototypes/Species/vulpkanin.yml +++ b/Resources/Prototypes/Species/vulpkanin.yml @@ -28,7 +28,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human # SUNRISE-TODO: Спрайт жопы вульп - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: VulpkaninNormal # VulpkaninCurvedSmallMuzzle diff --git a/Resources/Prototypes/_Lust/Loadouts/Cargo/quartermaster.yml b/Resources/Prototypes/_Lust/Loadouts/Cargo/quartermaster.yml index 06ebdaa6e5d..bde57562cde 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Cargo/quartermaster.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Cargo/quartermaster.yml @@ -1,4 +1,4 @@ -- type: loadout # Lust Station +- type: loadout id: QuartermasterSpecialCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Command/captain.yml b/Resources/Prototypes/_Lust/Loadouts/Command/captain.yml index 5150f2b8a79..9a54c4f7802 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Command/captain.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Command/captain.yml @@ -1,4 +1,4 @@ -- type: loadout # Lust Station +- type: loadout id: CaptainSpecialCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Command/head_of_personnal.yml b/Resources/Prototypes/_Lust/Loadouts/Command/head_of_personnal.yml index 49eb08a5e1e..34b31ef710f 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Command/head_of_personnal.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Command/head_of_personnal.yml @@ -1,4 +1,4 @@ -- type: loadout # Lust Station +- type: loadout id: HopSpecialCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Engineering/station_engineer.yml b/Resources/Prototypes/_Lust/Loadouts/Engineering/station_engineer.yml index 16009c84170..260b4fcc1d2 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Engineering/station_engineer.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Engineering/station_engineer.yml @@ -1,5 +1,5 @@ # Neck -- type: loadout # Lust Station +- type: loadout id: EngineerCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Medical/chief_medical_officer.yml b/Resources/Prototypes/_Lust/Loadouts/Medical/chief_medical_officer.yml index dd0b3365396..7f62f4d90b2 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Medical/chief_medical_officer.yml @@ -1,5 +1,5 @@ # Neck -- type: loadout # Lust Station +- type: loadout id: CmoSpecialCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Science/research_director.yml b/Resources/Prototypes/_Lust/Loadouts/Science/research_director.yml index e62b82b86b9..358beb9b137 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Science/research_director.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Science/research_director.yml @@ -1,4 +1,4 @@ -- type: loadout # Lust Station +- type: loadout id: RdSpecialCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/Loadouts/Security/security_officer.yml b/Resources/Prototypes/_Lust/Loadouts/Security/security_officer.yml index 74e6161a7f2..6cebab70429 100644 --- a/Resources/Prototypes/_Lust/Loadouts/Security/security_officer.yml +++ b/Resources/Prototypes/_Lust/Loadouts/Security/security_officer.yml @@ -1,5 +1,5 @@ # Neck -- type: loadout # Lust Station +- type: loadout id: SecurityCloak sponsorOnly: true equipment: diff --git a/Resources/Prototypes/_Lust/loadout_groups.yml b/Resources/Prototypes/_Lust/loadout_groups.yml index 0cdaf8007c9..a49079ca803 100644 --- a/Resources/Prototypes/_Lust/loadout_groups.yml +++ b/Resources/Prototypes/_Lust/loadout_groups.yml @@ -1,11 +1,11 @@ -- type: loadoutGroup # Lust Station +- type: loadoutGroup id: EngineerNeck name: loadout-group-engineer-neck minLimit: 0 loadouts: - EngineerCloak -- type: loadoutGroup # Lust Station +- type: loadoutGroup id: SecurityNeck name: loadout-group-security-neck loadouts: diff --git a/Resources/Prototypes/_Sunrise/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_Sunrise/Entities/Clothing/Neck/cloaks.yml index aa095250909..0693431d131 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Clothing/Neck/cloaks.yml @@ -5,7 +5,7 @@ description: The NanoTrasen logo embroidered in gold speaks for itself. components: - type: Sprite - sprite: _Lust/Clothing/Neck/Cloaks/centcom_officer_black.rsi # LUST STATION EDIT + sprite: _Lust/Clothing/Neck/Cloaks/centcom_officer_black.rsi # Lust-Edit - type: entity parent: ClothingCloakBase # SUNRISE EDIT diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Cyborgs/borg_chassis.yml index 32f379f8509..8be65155f13 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -117,12 +117,12 @@ - type: InnateItem entityTargetActions: - AccessBreaker - # Lust-start + # Lust-Start - type: ActionGrant actions: - ActionViewLaws - type: StandingState - # Lust-end + # Lust-End - type: startingGear id: SyndiReaperHardsuitGear @@ -237,12 +237,12 @@ - type: PowerCellDraw # Use it to increase battery life further drawRate: 0.5 - type: ToggleableNightVision - # Lust-start + # Lust-Start - type: ActionGrant actions: - ActionViewLaws - type: StandingState - # Lust-end + # Lust-End - type: entity id: BorgChassisSyndicateHeavy @@ -353,12 +353,12 @@ - type: InnateItem entityTargetActions: - AccessBreaker - # Lust-start + # Lust-Start - type: ActionGrant actions: - ActionViewLaws - type: StandingState - # Lust-end + # Lust-End - type: entity id: BorgChassisSyndicateSpider @@ -440,12 +440,12 @@ - type: InnateItem entityTargetActions: - AccessBreaker - # Lust-start + # Lust-Start - type: ActionGrant actions: - ActionViewLaws - type: StandingState - # Lust-end + # Lust-End - type: entity parent: BaseBorgChassisSyndicateDerelict diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/demon.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/demon.yml index 75acb597b8e..a68af568768 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/demon.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/demon.yml @@ -36,7 +36,7 @@ Male: MaleHuman Female: FemaleHuman Unsexed: FemaleHuman - Futanari: FemaleHuman # Lust-edit + Futanari: FemaleHuman # Lust-Edit - type: Damageable damageContainer: Biological - type: MeleeWeapon diff --git a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml index 56d4f84b32c..0d1b0420f6b 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Mobs/Species/felinid.yml @@ -475,7 +475,7 @@ Male: MaleFelinid Female: FemaleFelinid Unsexed: MaleFelinid - Futanari: FemaleFelinid # Lust-edit + Futanari: FemaleFelinid # Lust-Edit - type: Respirator damage: types: diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Books/hyperlinkbooks.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Books/hyperlinkbooks.yml index 44fa1ab62e0..45bdec3b46d 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Objects/Books/hyperlinkbooks.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Books/hyperlinkbooks.yml @@ -31,7 +31,7 @@ - state: icon_law color: "#fff300" - type: HyperLink - url: https://lust.station.wiki.shizainc.com/corplaw # Lust Station КЗ + url: https://lust.station.wiki.shizainc.com/corplaw # Lust-Edit - type: Tag tags: - Book diff --git a/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/suntick.yml b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/suntick.yml index 939b39e2644..80d6ec13cd9 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/suntick.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Objects/Specific/suntick.yml @@ -7,10 +7,10 @@ description: Incredibly attractive and beautiful coins that open the door to the world of a cute little shop. components: - type: Sprite - sprite: _Lust/lust_coin.rsi # Lust - edit + sprite: _Lust/lust_coin.rsi # Lust-Edit state: telecrystal - type: Item - sprite: _Lust/lust_coin.rsi # Lust - edit + sprite: _Lust/lust_coin.rsi # Lust-Edit size: Tiny - type: Stack count: 20 diff --git a/Resources/Prototypes/_Sunrise/Loadouts/loadout_groups.yml b/Resources/Prototypes/_Sunrise/Loadouts/loadout_groups.yml index 807317b5cea..c5c25ea9ba5 100644 --- a/Resources/Prototypes/_Sunrise/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/_Sunrise/Loadouts/loadout_groups.yml @@ -1298,8 +1298,8 @@ - SunriseScarfBrown - SunriseScarfPurple - SunriseBedsheetCosmos - - SalvageSpecialistNeck50h #Lust-Edit - - SalvageSpecialistNeck100h #Lust-Edit + - SalvageSpecialistNeck50h # Lust-Edit + - SalvageSpecialistNeck100h # Lust-Edit - type: loadoutGroup id: SunriseSalvageHead diff --git a/Resources/Prototypes/_Sunrise/Loadouts/role_loadouts.yml b/Resources/Prototypes/_Sunrise/Loadouts/role_loadouts.yml index fbdaeffb46e..55b4e4c0a5b 100644 --- a/Resources/Prototypes/_Sunrise/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/_Sunrise/Loadouts/role_loadouts.yml @@ -2,14 +2,14 @@ id: JobIAA groups: - LawyerNeck - # Lust - Start - # - LawyerJumpsuit # Lust Commented - # - CommonBackpack # Lust Commented + # Lust-Start + # - LawyerJumpsuit # Lust-Edit + # - CommonBackpack # Lust-Edit - IAAuniformFormalSuit - IAASatchel - IAAOuterClothing - IAANeck - # Lust - End + # Lust-End - Trinkets - Survival - GroupSpeciesBreathTool @@ -17,9 +17,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobMagistrat @@ -32,9 +32,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobNtrOfficer @@ -64,9 +64,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobCentCommOfficial @@ -80,9 +80,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobCentCommOperator @@ -96,9 +96,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobBlueShieldEnsign @@ -130,9 +130,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobSeniorOfficer @@ -151,9 +151,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobSeniorResearcher @@ -170,9 +170,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobSeniorPhysician @@ -195,9 +195,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobMedicalPathologist @@ -240,9 +240,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobRoboticist @@ -260,9 +260,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobSecurityPilot @@ -280,9 +280,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End #- type: roleLoadout # id: JobPrisonGuard @@ -372,9 +372,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobPrisonDoctor @@ -388,9 +388,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobPrisonTrainee @@ -460,9 +460,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobBarber @@ -476,9 +476,9 @@ - Pants - Socks - Contributors - #Lust-Start + # Lust-Start - SpecialLoadout - #Lust-End + # Lust-End - type: roleLoadout id: JobAdjutant diff --git a/Resources/Prototypes/_Sunrise/Roles/Jobs/Law/iaa.yml b/Resources/Prototypes/_Sunrise/Roles/Jobs/Law/iaa.yml index 737acb04d4c..3431872d050 100644 --- a/Resources/Prototypes/_Sunrise/Roles/Jobs/Law/iaa.yml +++ b/Resources/Prototypes/_Sunrise/Roles/Jobs/Law/iaa.yml @@ -29,7 +29,7 @@ - type: startingGear id: IAAGear equipment: - shoes: ClothingShoesBootsLaceup # Lust - edit + shoes: ClothingShoesBootsLaceup # Lust-Edit id: IAAPDA eyes: ClothingEyesGlassesSunglasses ears: ClothingHeadsetIAA diff --git a/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/security_pilot.yml b/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/security_pilot.yml index 488cb91436d..0a9ba4488d8 100644 --- a/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/security_pilot.yml +++ b/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/security_pilot.yml @@ -25,7 +25,7 @@ id: SecurityPilotGear equipment: mask: ClothingMaskGasPilot -# eyes: ClothingEyesGlassesSunglasses #Lust-Edit + # eyes: ClothingEyesGlassesSunglasses # Lust-Edit gloves: ClothingHandsGlovesColorGray head: ClothingHeadHelmetPilot outerClothing: ClothingOuterCoatPilot diff --git a/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/senior_officer.yml index c7f98e9f10c..ea137775243 100644 --- a/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/_Sunrise/Roles/Jobs/Security/senior_officer.yml @@ -33,7 +33,7 @@ - type: startingGear id: SeniorOfficerGear equipment: -# eyes: ClothingEyesGlassesSecurity #Lust-Edit + # eyes: ClothingEyesGlassesSecurity # Lust-Edit head: ClothingHeadHatBeretSecurity id: SeniorOfficerPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/_Sunrise/Species/demon.yml b/Resources/Prototypes/_Sunrise/Species/demon.yml index 2907ceedfb3..f27bb4819d6 100644 --- a/Resources/Prototypes/_Sunrise/Species/demon.yml +++ b/Resources/Prototypes/_Sunrise/Species/demon.yml @@ -14,7 +14,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human # SUNRISE-TODO: Спрайт жопы аркан - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: DemonNormal @@ -44,7 +44,7 @@ name: body-slim sexRestrictions: - Male - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Head: MobDemonSlimHead Hair: MobHumanoidAnyMarking diff --git a/Resources/Prototypes/_Sunrise/Species/felinid.yml b/Resources/Prototypes/_Sunrise/Species/felinid.yml index 2cb0b142091..5ee8f88e8e8 100644 --- a/Resources/Prototypes/_Sunrise/Species/felinid.yml +++ b/Resources/Prototypes/_Sunrise/Species/felinid.yml @@ -30,7 +30,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: markingPoints id: MobFelinidMarkingLimits diff --git a/Resources/Prototypes/_Sunrise/Species/human.yml b/Resources/Prototypes/_Sunrise/Species/human.yml index 1b74f86181a..578653f194b 100644 --- a/Resources/Prototypes/_Sunrise/Species/human.yml +++ b/Resources/Prototypes/_Sunrise/Species/human.yml @@ -4,7 +4,7 @@ name: body-slim-f sexRestrictions: - Male - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanSlimHead @@ -28,7 +28,7 @@ name: body-slim-m sexRestrictions: - Female - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanSlimHead @@ -52,7 +52,7 @@ name: body-giga-f sexRestrictions: - Male - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanGigaHead @@ -76,7 +76,7 @@ name: body-giga-m sexRestrictions: - Female - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanGigaHead @@ -100,7 +100,7 @@ name: body-fat-f sexRestrictions: - Male - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanFatHead @@ -124,7 +124,7 @@ name: body-fat-m sexRestrictions: - Female - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanFatHead @@ -148,7 +148,7 @@ name: body-distrofik-f sexRestrictions: - Male - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanDistrofikHead @@ -172,7 +172,7 @@ name: body-distrofik-m sexRestrictions: - Female - - Futanari # Lust-edit + - Futanari # Lust-Edit sprites: Special: MobHumanoidAnyMarking Head: MobHumanDistrofikHead diff --git a/Resources/Prototypes/_Sunrise/Species/humanoid_xeno.yml b/Resources/Prototypes/_Sunrise/Species/humanoid_xeno.yml index 73a922cb4e0..18eb02bf31e 100644 --- a/Resources/Prototypes/_Sunrise/Species/humanoid_xeno.yml +++ b/Resources/Prototypes/_Sunrise/Species/humanoid_xeno.yml @@ -3,7 +3,7 @@ id: HumanoidXeno name: species-name-xeno roundStart: true - sponsorOnly: false # Lust-edit + sponsorOnly: false # Lust-Edit prototype: MobHumanoidXeno bodyTypes: - HumanoidXenoNormal diff --git a/Resources/Prototypes/_Sunrise/Species/predator.yml b/Resources/Prototypes/_Sunrise/Species/predator.yml index 60d7f977a47..454f76bee34 100644 --- a/Resources/Prototypes/_Sunrise/Species/predator.yml +++ b/Resources/Prototypes/_Sunrise/Species/predator.yml @@ -3,7 +3,7 @@ id: Predator name: species-name-predator roundStart: true - sponsorOnly: false # Lust-edit + sponsorOnly: false # Lust-Edit prototype: MobPredator bodyTypes: - PredatorNormal diff --git a/Resources/Prototypes/_Sunrise/Species/tajaran.yml b/Resources/Prototypes/_Sunrise/Species/tajaran.yml index 85aad3310be..bb055910905 100644 --- a/Resources/Prototypes/_Sunrise/Species/tajaran.yml +++ b/Resources/Prototypes/_Sunrise/Species/tajaran.yml @@ -21,7 +21,7 @@ buttScan: sprite: /Textures/_Sunrise/CopyMachine/butts_scans.rsi state: human # SUNRISE-TODO: Спрайт жопы таяров - sexes: [Male, Female, Futanari] # Lust-edit + sexes: [Male, Female, Futanari] # Lust-Edit - type: bodyType id: TajaranNormal diff --git a/Resources/Prototypes/_Sunrise/Store/currency.yml b/Resources/Prototypes/_Sunrise/Store/currency.yml index df003317a45..a073d817cfe 100644 --- a/Resources/Prototypes/_Sunrise/Store/currency.yml +++ b/Resources/Prototypes/_Sunrise/Store/currency.yml @@ -1,6 +1,6 @@ - type: currency id: Suntick - displayName: Lust Coin # Lust-Station-Edit + displayName: Lust Coin # Lust-Edit cash: 1: Suntick1 canWithdraw: false diff --git a/Resources/Prototypes/_Sunrise/tts-voices.yml b/Resources/Prototypes/_Sunrise/tts-voices.yml index 64621dac82c..09d05f4c0f0 100644 --- a/Resources/Prototypes/_Sunrise/tts-voices.yml +++ b/Resources/Prototypes/_Sunrise/tts-voices.yml @@ -1,21 +1,21 @@ - type: ttsVoice id: Charlotte name: tts-voice-name-charlotte - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: charlotte provider: ntts.fdev.team - type: ttsVoice id: Bebey name: tts-voice-name-bebey - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: bebey provider: ntts.fdev.team @@ -30,10 +30,10 @@ - type: ttsVoice id: Biden name: tts-voice-name-biden - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: biden sponsorOnly: true provider: ntts.fdev.team @@ -41,10 +41,10 @@ - type: ttsVoice id: Papa name: tts-voice-name-papa - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: papa sponsorOnly: true provider: ntts.fdev.team @@ -52,11 +52,11 @@ - type: ttsVoice id: Glados name: tts-voice-name-glados - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: glados roundStart: true provider: ntts.fdev.team @@ -64,10 +64,10 @@ - type: ttsVoice id: Sentrybot name: tts-voice-name-sentrybot - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sentrybot roundStart: true provider: ntts.fdev.team @@ -75,53 +75,53 @@ - type: ttsVoice id: Mana name: tts-voice-name-mana - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: mana provider: ntts.fdev.team - type: ttsVoice id: Soldier name: tts-voice-name-soldier - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: soldier provider: ntts.fdev.team - type: ttsVoice id: Planya name: tts-voice-name-planya - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: planya provider: ntts.fdev.team - type: ttsVoice id: Amina name: tts-voice-name-amina - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: amina provider: ntts.fdev.team - type: ttsVoice id: AdventureCore name: tts-voice-name-adventure-core - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: adventure_core roundStart: true provider: ntts.fdev.team @@ -129,10 +129,10 @@ - type: ttsVoice id: SpaceCore name: tts-voice-name-space-core - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: space_core roundStart: true provider: ntts.fdev.team @@ -140,10 +140,10 @@ - type: ttsVoice id: FactCore name: tts-voice-name-fact-core - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: fact_core roundStart: true provider: ntts.fdev.team @@ -151,195 +151,195 @@ - type: ttsVoice id: Kleiner name: tts-voice-name-kleiner - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: kleiner provider: ntts.fdev.team - type: ttsVoice id: Dbkn name: tts-voice-name-dbkn - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dbkn provider: ntts.fdev.team - type: ttsVoice id: Neco name: tts-voice-name-neco - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: neco provider: ntts.fdev.team - type: ttsVoice id: Gman name: tts-voice-name-gman - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: gman provider: ntts.fdev.team - type: ttsVoice id: Obama name: tts-voice-name-obama - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: obama provider: ntts.fdev.team - type: ttsVoice id: Trump name: tts-voice-name-trump - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: trump provider: ntts.fdev.team - type: ttsVoice id: Briman name: tts-voice-name-briman - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: briman provider: ntts.fdev.team - type: ttsVoice id: FatherGrigori name: tts-voice-name-father-grigori - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: father_grigori provider: ntts.fdev.team - type: ttsVoice id: Vance name: tts-voice-name-vance - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: vance provider: ntts.fdev.team - type: ttsVoice id: Barni name: tts-voice-name-barni - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: barni provider: ntts.fdev.team - type: ttsVoice id: Alyx name: tts-voice-name-alyx - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: alyx provider: ntts.fdev.team - type: ttsVoice id: Mossman name: tts-voice-name-mossman - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: mossman provider: ntts.fdev.team - type: ttsVoice id: Bandit name: tts-voice-name-bandit - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: bandit provider: ntts.fdev.team - type: ttsVoice id: Geralt name: tts-voice-name-geralt - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: geralt provider: ntts.fdev.team - type: ttsVoice id: Triss name: tts-voice-name-triss - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: triss provider: ntts.fdev.team - type: ttsVoice id: KodlakWhiteMane name: tts-voice-name-kodlak-white-mane - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: kodlakwhitemane provider: ntts.fdev.team - type: ttsVoice id: Cicero name: tts-voice-name-cicero - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: cicero provider: ntts.fdev.team - type: ttsVoice id: Sheogorath name: tts-voice-name-sheogorath - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sheogorath provider: ntts.fdev.team - type: ttsVoice id: TurretFloor name: tts-voice-name-turret-floor - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: turret_floor roundStart: true provider: ntts.fdev.team @@ -347,11 +347,11 @@ - type: ttsVoice id: Cirilla name: tts-voice-name-cirilla - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: cirilla sponsorOnly: true provider: ntts.fdev.team @@ -359,163 +359,163 @@ - type: ttsVoice id: Lambert name: tts-voice-name-lambert - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: lambert provider: ntts.fdev.team - type: ttsVoice id: Polina name: tts-voice-name-polina - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: polina provider: ntts.fdev.team - type: ttsVoice id: Arthas name: tts-voice-name-arthas - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: arthas provider: ntts.fdev.team - type: ttsVoice id: Xrenoid name: tts-voice-name-xrenoid - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: xrenoid provider: ntts.fdev.team - type: ttsVoice id: Azir name: tts-voice-name-azir - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: azir provider: ntts.fdev.team - type: ttsVoice id: Caitlyn name: tts-voice-name-caitlyn - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: caitlyn provider: ntts.fdev.team - type: ttsVoice id: Ekko name: tts-voice-name-ekko - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ekko provider: ntts.fdev.team - type: ttsVoice id: Twitch name: tts-voice-name-twitch - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: twitch provider: ntts.fdev.team - type: ttsVoice id: Strelok name: tts-voice-name-strelok - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: strelok provider: ntts.fdev.team - type: ttsVoice id: Ziggs name: tts-voice-name-ziggs - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ziggs provider: ntts.fdev.team - type: ttsVoice id: Tracer name: tts-voice-name-tracer - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: tracer provider: ntts.fdev.team - type: ttsVoice id: Illidan name: tts-voice-name-illidan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: illidan provider: ntts.fdev.team - type: ttsVoice id: Rexxar name: tts-voice-name-rexxar - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: rexxar provider: ntts.fdev.team - type: ttsVoice id: Voljin name: tts-voice-name-voljin - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: voljin provider: ntts.fdev.team - type: ttsVoice id: Forester name: tts-voice-name-forester - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: forester provider: ntts.fdev.team - type: ttsVoice id: Sidorovich name: tts-voice-name-sidorovich - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sidorovich sponsorOnly: true provider: ntts.fdev.team @@ -523,10 +523,10 @@ - type: ttsVoice id: TfEngineer name: tts-voice-name-tf-engineer - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: engineer sponsorOnly: true provider: ntts.fdev.team @@ -534,10 +534,10 @@ - type: ttsVoice id: TfHeavy name: tts-voice-name-tf-heavy - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: heavy sponsorOnly: true provider: ntts.fdev.team @@ -545,10 +545,10 @@ - type: ttsVoice id: TfMedic name: tts-voice-name-tf-medic - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: medic sponsorOnly: true provider: ntts.fdev.team @@ -556,10 +556,10 @@ - type: ttsVoice id: TfSniper name: tts-voice-name-tf-sniper - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sniper sponsorOnly: true provider: ntts.fdev.team @@ -567,10 +567,10 @@ - type: ttsVoice id: TfSpy name: tts-voice-name-tf-spy - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: spy sponsorOnly: true provider: ntts.fdev.team @@ -578,10 +578,10 @@ - type: ttsVoice id: TfDemoman name: tts-voice-name-tf-demoman - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: demoman sponsorOnly: true provider: ntts.fdev.team @@ -589,30 +589,30 @@ - type: ttsVoice id: Khajiit name: tts-voice-name-khajiit - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: khajiit provider: ntts.fdev.team - type: ttsVoice id: Punisher name: tts-voice-name-punisher - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: punisher provider: ntts.fdev.team - type: ttsVoice id: Johnny name: tts-voice-name-johnny - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: johnny sponsorOnly: true provider: ntts.fdev.team @@ -620,42 +620,42 @@ - type: ttsVoice id: Panam name: tts-voice-name-panam - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: panam provider: ntts.fdev.team - type: ttsVoice id: Dornan name: tts-voice-name-dornan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dornan provider: ntts.fdev.team - type: ttsVoice id: VFemale name: tts-voice-name-v-female - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: v_female provider: ntts.fdev.team - type: ttsVoice id: OfficerEnclave name: tts-voice-name-officer-enclave - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: officer_enclave roundStart: true provider: ntts.fdev.team @@ -663,31 +663,31 @@ - type: ttsVoice id: Richardson name: tts-voice-name-richardson - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: richardson provider: ntts.fdev.team - type: ttsVoice id: Elenwen name: tts-voice-name-elenwen - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: elenwen provider: ntts.fdev.team - type: ttsVoice id: EmperorTit name: tts-voice-name-emperor-tit - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: emperor sponsorOnly: true provider: ntts.fdev.team @@ -695,10 +695,10 @@ - type: ttsVoice id: GuardSkyrim name: tts-voice-name-guard-skyrim - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: guard sponsorOnly: true provider: ntts.fdev.team @@ -706,20 +706,20 @@ - type: ttsVoice id: Hagraven name: tts-voice-name-hagraven - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hagraven provider: ntts.fdev.team - type: ttsVoice id: HermaeusMora name: tts-voice-name-hermaeus-mora - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hermaeus_mora sponsorOnly: true provider: ntts.fdev.team @@ -727,10 +727,10 @@ - type: ttsVoice id: Nord name: tts-voice-name-nord - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: nord sponsorOnly: true provider: ntts.fdev.team @@ -738,10 +738,10 @@ - type: ttsVoice id: Ulfric name: tts-voice-name-ulfric - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ulfric sponsorOnly: true provider: ntts.fdev.team @@ -749,11 +749,11 @@ - type: ttsVoice id: GoodThalya name: tts-voice-name-good-thalya - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: good_thalya sponsorOnly: true provider: ntts.fdev.team @@ -761,22 +761,22 @@ - type: ttsVoice id: Cerys name: tts-voice-name-cerys - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: cerys provider: ntts.fdev.team - type: ttsVoice id: Judy name: tts-voice-name-judy - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: judy sponsorOnly: true provider: ntts.fdev.team @@ -784,185 +784,185 @@ - type: ttsVoice id: Mitch name: tts-voice-name-mitch - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: mitch provider: ntts.fdev.team - type: ttsVoice id: Skippy name: tts-voice-name-skippy - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: skippy provider: ntts.fdev.team - type: ttsVoice id: Butch name: tts-voice-name-butch - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: butch provider: ntts.fdev.team - type: ttsVoice id: Marcus name: tts-voice-name-marcus - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: marcus provider: ntts.fdev.team - type: ttsVoice id: Sulik name: tts-voice-name-sulik - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sulik provider: ntts.fdev.team - type: ttsVoice id: Astrid name: tts-voice-name-astrid - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: astrid provider: ntts.fdev.team - type: ttsVoice id: Maven name: tts-voice-name-maven - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: maven provider: ntts.fdev.team - type: ttsVoice id: Nazir name: tts-voice-name-nazir - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: nazir provider: ntts.fdev.team - type: ttsVoice id: Jackie name: tts-voice-name-jackie - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: jackie provider: ntts.fdev.team - type: ttsVoice id: EvilThalya name: tts-voice-name-evil-thalya - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: evil_thalya provider: ntts.fdev.team - type: ttsVoice id: PostalDude name: tts-voice-name-dude - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dude provider: ntts.fdev.team - type: ttsVoice id: Anduin name: tts-voice-name-anduin - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: anduin provider: ntts.fdev.team - type: ttsVoice id: Brukan name: tts-voice-name-brukan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: brukan provider: ntts.fdev.team - type: ttsVoice id: Puchkow name: tts-voice-name-puchkow - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: puchkow provider: ntts.fdev.team - type: ttsVoice id: Moriarti name: tts-voice-name-moriarti - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: moriarti provider: ntts.fdev.team - type: ttsVoice id: NecoArcTwo name: tts-voice-name-neco-arc-two - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: neco_arc_2 provider: ntts.fdev.team - type: ttsVoice id: AngryNecoArc name: tts-voice-name-angry-neco-arc - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: angry_neco_arc provider: ntts.fdev.team - type: ttsVoice id: Squidward name: tts-voice-name-squidward - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: squidward provider: ntts.fdev.team sponsorOnly: true @@ -970,73 +970,73 @@ - type: ttsVoice id: Garrosh name: tts-voice-name-garrosh - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: garrosh provider: ntts.fdev.team - type: ttsVoice id: Jaina name: tts-voice-name-jaina - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: jaina provider: ntts.fdev.team - type: ttsVoice id: Adjutant name: tts-voice-name-adjutant - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: adjutant provider: ntts.fdev.team - type: ttsVoice id: Hanson name: tts-voice-name-hanson - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: hanson provider: ntts.fdev.team - type: ttsVoice id: Bralik name: tts-voice-name-bralik - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: bralik provider: ntts.fdev.team - type: ttsVoice id: Horner name: tts-voice-name-horner - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: horner provider: ntts.fdev.team - type: ttsVoice id: Villager name: tts-voice-name-villager - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: villager roundStart: true provider: ntts.fdev.team @@ -1044,10 +1044,10 @@ - type: ttsVoice id: Dobakin name: tts-voice-name-dbkn2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dbkn2 roundStart: true provider: ntts.fdev.team @@ -1055,11 +1055,11 @@ - type: ttsVoice id: MoiraBrown name: tts-voice-name-moira-brown - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: moira_brown roundStart: true sponsorOnly: true @@ -1068,10 +1068,10 @@ - type: ttsVoice id: RobertMaccready name: tts-voice-name-robert-maccready - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: robert_maccready roundStart: true sponsorOnly: true @@ -1080,10 +1080,10 @@ - type: ttsVoice id: Threedog name: tts-voice-name-threedog - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: threedog roundStart: true sponsorOnly: true @@ -1092,10 +1092,10 @@ - type: ttsVoice id: ThreedogRadio name: tts-voice-name-threedog-radio - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: threedog_radio roundStart: true sponsorOnly: true @@ -1104,10 +1104,10 @@ - type: ttsVoice id: Romka name: tts-voice-name-romka - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: romka roundStart: true sponsorOnly: true @@ -1116,10 +1116,10 @@ - type: ttsVoice id: BorisPetrovFatherTB name: tts-voice-name-boris-petrov-father-tb - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: boris_petrov_father_tb roundStart: true provider: ntts.fdev.team @@ -1127,11 +1127,11 @@ - type: ttsVoice id: KarinaPetrovaTB name: tts-voice-name-karina-petrova-tb - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: karina_petrova_tb roundStart: true provider: ntts.fdev.team @@ -1139,11 +1139,11 @@ - type: ttsVoice id: KateSmirnovaTB name: tts-voice-name-kate-smirnovatb - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: kate_smirnova_tb roundStart: true sponsorOnly: true @@ -1152,10 +1152,10 @@ - type: ttsVoice id: SemenBaburinTB name: tts-voice-name-semen-baburin-tb - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: semen_baburin_tb roundStart: true sponsorOnly: true @@ -1164,10 +1164,10 @@ - type: ttsVoice id: TihonovTB name: tts-voice-name-tihonov-tb - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: tihonov_tb roundStart: true sponsorOnly: true @@ -1176,11 +1176,11 @@ - type: ttsVoice id: FemaleCommander name: tts-voice-name-female-commander - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: female_commander roundStart: true provider: ntts.fdev.team @@ -1188,10 +1188,10 @@ - type: ttsVoice id: LordHarkon name: tts-voice-name-lord-harkon - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: lord_harkon roundStart: true sponsorOnly: true @@ -1200,11 +1200,11 @@ - type: ttsVoice id: Serana name: tts-voice-name-serana - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: serana roundStart: true sponsorOnly: true @@ -1213,10 +1213,10 @@ - type: ttsVoice id: Myron name: tts-voice-name-myron - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: myron roundStart: true sponsorOnly: true @@ -1225,10 +1225,10 @@ - type: ttsVoice id: MarratorD3 name: tts-voice-name-narrator-d3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: narrator_d3 roundStart: true sponsorOnly: true @@ -1237,10 +1237,10 @@ - type: ttsVoice id: UtherHS name: tts-voice-name-uther-hs - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: uther_hs roundStart: true provider: ntts.fdev.team @@ -1248,10 +1248,10 @@ - type: ttsVoice id: Tosh name: tts-voice-name-tosh - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: tosh roundStart: true provider: ntts.fdev.team @@ -1259,10 +1259,10 @@ - type: ttsVoice id: Tychus name: tts-voice-name-tychus - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: tychus roundStart: true provider: ntts.fdev.team @@ -1270,10 +1270,10 @@ - type: ttsVoice id: AmitTakkar name: tts-voice-name-amitkakkar - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: amitkakkar roundStart: true provider: ntts.fdev.team @@ -1281,10 +1281,10 @@ - type: ttsVoice id: EleazarFig name: tts-voice-name-eleazarfig - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: eleazarfig roundStart: true provider: ntts.fdev.team @@ -1292,10 +1292,10 @@ - type: ttsVoice id: ErnieLark name: tts-voice-name-ernielark - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ernielark roundStart: true provider: ntts.fdev.team @@ -1303,11 +1303,11 @@ - type: ttsVoice id: IgnatiaFlootravel name: tts-voice-name-ignatiaflootravel - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: ignatiaflootravel roundStart: true provider: ntts.fdev.team @@ -1315,10 +1315,10 @@ - type: ttsVoice id: Lodgok name: tts-voice-name-lodgok - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: lodgok roundStart: true provider: ntts.fdev.team @@ -1326,10 +1326,10 @@ - type: ttsVoice id: PhineasBlack name: tts-voice-name-phineasblack - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: phineasblack roundStart: true provider: ntts.fdev.team @@ -1337,10 +1337,10 @@ - type: ttsVoice id: Ranrak name: tts-voice-name-ranrak - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ranrak roundStart: true provider: ntts.fdev.team @@ -1348,10 +1348,10 @@ - type: ttsVoice id: VictorRookwood name: tts-voice-name-victorrookwood - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: victorrookwood roundStart: true provider: ntts.fdev.team @@ -1359,11 +1359,11 @@ - type: ttsVoice id: ZenobiaNoke name: tts-voice-name-zenobianoke - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: zenobianoke roundStart: true sponsorOnly: true @@ -1372,10 +1372,10 @@ - type: ttsVoice id: GladwinMoon name: tts-voice-name-gladwinmoon - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: gladwinmoon roundStart: true provider: ntts.fdev.team @@ -1383,11 +1383,11 @@ - type: ttsVoice id: MatildaWeasley name: tts-voice-name-matildaweasley - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: matildaweasley roundStart: true provider: ntts.fdev.team @@ -1395,11 +1395,11 @@ - type: ttsVoice id: NatsaiOnai name: tts-voice-name-natsaionai - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: natsaionai roundStart: true provider: ntts.fdev.team @@ -1407,10 +1407,10 @@ - type: ttsVoice id: OminisGaunt name: tts-voice-name-ominisgaunt - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ominisgaunt roundStart: true provider: ntts.fdev.team @@ -1418,11 +1418,11 @@ - type: ttsVoice id: PoppySweeting name: tts-voice-name-poppysweeting - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: poppysweeting roundStart: true provider: ntts.fdev.team @@ -1430,11 +1430,11 @@ - type: ttsVoice id: SophroniaFranklin name: tts-voice-name-sophronia-franklin - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: sophronia_franklin roundStart: true provider: ntts.fdev.team @@ -1443,11 +1443,11 @@ - type: ttsVoice id: SironaRyan name: tts-voice-name-sirona-ryan - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: sirona_ryan roundStart: true provider: ntts.fdev.team @@ -1455,11 +1455,11 @@ - type: ttsVoice id: SamanthaDale name: tts-voice-name-samantha-dale - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: samantha_dale roundStart: true provider: ntts.fdev.team @@ -1467,10 +1467,10 @@ - type: ttsVoice id: AbrahamRonen name: tts-voice-name-abraham-ronen - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: abraham_ronen roundStart: true provider: ntts.fdev.team @@ -1478,10 +1478,10 @@ - type: ttsVoice id: AesopSharp name: tts-voice-name-aesop-sharp - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: aesop_sharp roundStart: true provider: ntts.fdev.team @@ -1489,11 +1489,11 @@ - type: ttsVoice id: DinahHecat name: tts-voice-name-dinah-hecat - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: dinah_hecat roundStart: true provider: ntts.fdev.team @@ -1501,10 +1501,10 @@ - type: ttsVoice id: GenericGoblinC name: tts-voice-name-generic-goblin-c - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: generic_goblin_c roundStart: true provider: ntts.fdev.team @@ -1539,10 +1539,10 @@ - type: ttsVoice id: MisterHandyFL3 name: tts-voice-name-mister-handy-fl3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: mister_handy_fl3 roundStart: true provider: ntts.fdev.team @@ -1550,10 +1550,10 @@ - type: ttsVoice id: MisterGutsyFL3 name: tts-voice-name-mister-gutsy-fl3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: mister_gutsy_fl3 roundStart: true provider: ntts.fdev.team @@ -1561,10 +1561,10 @@ - type: ttsVoice id: JerichoFL3 name: tts-voice-name-jericho-fl3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: jericho_fl3 roundStart: true provider: ntts.fdev.team @@ -1573,10 +1573,10 @@ - type: ttsVoice id: ElderLyonsFL3 name: tts-voice-name-elder-lyons-fl3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: elder_lyons_fl3 roundStart: true provider: ntts.fdev.team @@ -1585,11 +1585,11 @@ - type: ttsVoice id: SarahLyonsFL3 name: tts-voice-name-sarah-lyons-fl3 - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: sarah_lyons_fl3 roundStart: true provider: ntts.fdev.team @@ -1597,10 +1597,10 @@ - type: ttsVoice id: ColinMoriartyFL1 name: tts-voice-name-colin-moriarty-fl3 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: colin_moriarty_fl3 roundStart: true provider: ntts.fdev.team @@ -1627,10 +1627,10 @@ - type: ttsVoice id: KovirNobleman name: tts-voice-name-kovir-nobleman - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: kovir_nobleman roundStart: true provider: ntts.fdev.team @@ -1638,10 +1638,10 @@ - type: ttsVoice id: ZoltanChivay name: tts-voice-name-zoltan-chivay - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: zoltan_chivay roundStart: true provider: ntts.fdev.team @@ -1703,11 +1703,11 @@ - type: ttsVoice id: Maiko name: tts-voice-name-maiko - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: maiko roundStart: true provider: ntts.fdev.team @@ -1715,10 +1715,10 @@ - type: ttsVoice id: Brendan name: tts-voice-name-brendan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: brendan roundStart: true provider: ntts.fdev.team @@ -1726,11 +1726,11 @@ - type: ttsVoice id: NancyHartley name: tts-voice-name-nancy-hartley - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: nancy_hartley roundStart: true provider: ntts.fdev.team @@ -1738,10 +1738,10 @@ - type: ttsVoice id: OswaldForrest name: tts-voice-name-oswald-forrest - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: oswald_forrest roundStart: true provider: ntts.fdev.team @@ -1750,10 +1750,10 @@ - type: ttsVoice id: Steve name: tts-voice-name-steve - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: steve roundStart: true provider: ntts.fdev.team diff --git a/Resources/Prototypes/_Sunrise/tts_voices_sunrise.yml b/Resources/Prototypes/_Sunrise/tts_voices_sunrise.yml index dae2af902ab..d6c40d86050 100644 --- a/Resources/Prototypes/_Sunrise/tts_voices_sunrise.yml +++ b/Resources/Prototypes/_Sunrise/tts_voices_sunrise.yml @@ -1,10 +1,10 @@ - type: ttsVoice id: Minkir name: tts-voice-name-minkir - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: minkir provider: sunrise sponsorOnly: true @@ -12,10 +12,10 @@ - type: ttsVoice id: Jirinovskiy name: tts-voice-name-jirinovskiy - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: jirinovskiy provider: sunrise sponsorOnly: true @@ -23,10 +23,10 @@ - type: ttsVoice id: MaksimPoltavskiy name: tts-voice-name-maksim-poltavskiy - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: maksim_poltavskiy provider: sunrise sponsorOnly: true @@ -34,10 +34,10 @@ - type: ttsVoice id: PortalGlados name: tts-voice-name-hl2-glados - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: portal_glados roundStart: false # for borgs provider: sunrise @@ -46,10 +46,10 @@ - type: ttsVoice id: SBSquidward name: tts-voice-name-sb-squidward - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: sb_squidward provider: sunrise sponsorOnly: true @@ -57,11 +57,11 @@ - type: ttsVoice id: TemplarAssasin name: tts-voice-name-templar-assasin - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: templar_assasin provider: sunrise sponsorOnly: true @@ -69,10 +69,10 @@ - type: ttsVoice id: Brejnev name: tts-voice-name-brejnev - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: brejnev provider: sunrise sponsorOnly: true @@ -80,20 +80,20 @@ - type: ttsVoice id: HL2Kleiner name: tts-voice-name-hl2-kleiner - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hl2_kleiner provider: sunrise - type: ttsVoice id: TF2Medic name: tts-voice-name-tf2-medic - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: tf2_medic provider: sunrise sponsorOnly: true @@ -101,30 +101,30 @@ - type: ttsVoice id: HL2Barni name: tts-voice-name-hl2-barni - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hl2_barni provider: sunrise - type: ttsVoice id: HL2Gman name: tts-voice-name-hl2-gman - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hl2_gman provider: sunrise - type: ttsVoice id: Losyash name: tts-voice-name-losyash - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: losyash provider: sunrise sponsorOnly: true @@ -132,20 +132,20 @@ - type: ttsVoice id: HL2FatherGrigori name: tts-voice-name-hl2-father-grigori - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hl2_father_grigori provider: sunrise - type: ttsVoice id: Kopatich name: tts-voice-name-kopatich - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: kopatich provider: sunrise sponsorOnly: true @@ -153,10 +153,10 @@ - type: ttsVoice id: StalkerSidorovich name: tts-voice-name-stalker-sidorovich - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: stalker_sidorovich provider: sunrise sponsorOnly: true @@ -164,10 +164,10 @@ - type: ttsVoice id: Livsey2 name: tts-voice-name-livsey - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: livsey provider: sunrise sponsorOnly: true @@ -175,10 +175,10 @@ - type: ttsVoice id: SCP049 # DON'T USE name: tts-voice-name-scp-049 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: scp_049 roundStart: false provider: sunrise @@ -187,10 +187,10 @@ - type: ttsVoice id: SCP079 # DON'T USE name: tts-voice-name-scp-079 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: scp_079 roundStart: false provider: sunrise @@ -199,20 +199,20 @@ - type: ttsVoice id: IcarusRevenge name: tts-voice-name-icarus-revenge - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: icarus_revenge provider: sunrise - type: ttsVoice id: HeartstoneThrud name: tts-voice-name-hearthstone-thrud - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: heartstone_thrud provider: sunrise sponsorOnly: true @@ -220,171 +220,171 @@ - type: ttsVoice id: Kendrick name: tts-voice-name-kendrick - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: kendrick provider: sunrise - type: ttsVoice id: Dota2Riki name: tts-voice-name-dota2-riki - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dota2_riki provider: sunrise - type: ttsVoice id: Dota2Pudge name: tts-voice-name-dota2-pudge - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dota2_pudge provider: sunrise - type: ttsVoice id: TF2Soldier name: tts-voice-name-tf2-soldier - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: tf2_soldier provider: sunrise - type: ttsVoice id: Dota2Abaddon name: tts-voice-name-dota2-abaddon - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dota2_abaddon provider: sunrise - type: ttsVoice id: Dota2Silencer name: tts-voice-name-dota2-silencer - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dota2_silencer provider: sunrise - type: ttsVoice id: HearthstoneWarden name: tts-voice-name-hearthstone-warden - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_warden provider: sunrise - type: ttsVoice id: CBAnnouncer name: tts-voice-name-cb-announcer - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: cb_announcer provider: sunrise - type: ttsVoice id: HearthstoneLordOfThunder name: tts-voice-name-hearthstone-lord-of-thunder - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_lord_of_thunder provider: sunrise - type: ttsVoice id: HearthstoneTekahn name: tts-voice-name-hearthstone-tekahn - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_tekahn provider: sunrise - type: ttsVoice id: HearthstoneFinli name: tts-voice-name-hearthstone-finli - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_finli provider: sunrise - type: ttsVoice id: HearthstoneBrann name: tts-voice-name-hearthstone-brann - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_brann provider: sunrise - type: ttsVoice id: HearthstoneReno name: tts-voice-name-hearthstone-reno - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_reno provider: sunrise - type: ttsVoice id: HearthstoneZverolovTavish name: tts-voice-name-hearthstone-zverolov-tavish - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_zverolov_tavish provider: sunrise - type: ttsVoice id: HearthstoneElisa name: tts-voice-name-hearthstone-elisa - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: hearthstone_elisa provider: sunrise - type: ttsVoice id: HearthstoneSotis name: tts-voice-name-hearthstone-sotis - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_sotis provider: sunrise - type: ttsVoice id: CBMTF1 name: tts-voice-name-mtf1 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: mtf_1 provider: sunrise roundStart: false # временно @@ -392,10 +392,10 @@ - type: ttsVoice id: CBMTF2 # Переобучить name: tts-voice-name-mtf2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: mtf_2 provider: sunrise roundStart: false # временно @@ -403,51 +403,51 @@ - type: ttsVoice id: ThreeBigatiraAleshaPopovich name: tts-voice-name-three-bogatira-alesha-popovich - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: three_bogatira_alesha provider: sunrise - type: ttsVoice id: PetrGlanceIvashenko name: tts-voice-name-petr_glance_ivashenko - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: petr_ivashenko provider: sunrise - type: ttsVoice id: HearthstoneValiraSangvinar name: tts-voice-name-hearthstone-valira-sangvinar - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: hearthstone_valira_sangvinar provider: sunrise - type: ttsVoice id: HearthstoneAkama name: tts-voice-name-hearthstone-akama - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_akama provider: sunrise - type: ttsVoice id: Pathologic2GeorgiyKain name: tts-voice-name-pathologic2-georgiy-kain - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_georgiy_kain provider: sunrise sponsorOnly: true @@ -455,10 +455,10 @@ - type: ttsVoice id: Pathologic2ArtemiyBurach name: tts-voice-name-pathologic2-artemiy-burach - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_artemiy_burach provider: sunrise sponsorOnly: true @@ -466,10 +466,10 @@ - type: ttsVoice id: Pathologic2Grif name: tts-voice-name-pathologic2-grif - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_grif provider: sunrise sponsorOnly: true @@ -477,11 +477,11 @@ - type: ttsVoice id: Pathologic2AnglayaLilich name: tts-voice-name-pathologic2-anglaya-lilich - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: pathologic2_anglaya_lilich_tired provider: sunrise sponsorOnly: true @@ -489,10 +489,10 @@ - type: ttsVoice id: Pathologic2AlexanderSaburov name: tts-voice-name-pathologic2-alexander-saburov - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_alexander_saburov provider: sunrise sponsorOnly: true @@ -500,11 +500,11 @@ - type: ttsVoice id: Pathologic2Inkvizitor name: tts-voice-name-pathologic2-inkvizitor - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: pathologic2_inkvizitor provider: sunrise sponsorOnly: true @@ -512,10 +512,10 @@ - type: ttsVoice id: Pathologic2AlexanderBlok name: tts-voice-name-pathologic2-alexander-blok - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_alexander_blok provider: sunrise sponsorOnly: true @@ -523,10 +523,10 @@ - type: ttsVoice id: Pathologic2MarkBessmertnik name: tts-voice-name-pathologic2-mark-bessmertnik - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: pathologic2_mark_bessmertnik provider: sunrise sponsorOnly: true @@ -534,20 +534,20 @@ - type: ttsVoice id: Crysis2Operator3v1 name: tts-voice-name-crysis2-ai-blackops-03-v1 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_blackops_03_v1 provider: sunrise - type: ttsVoice id: Crysis2AICostume name: tts-voice-name-crysis2-ai-costume - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_costume provider: sunrise roundStart: false @@ -555,313 +555,313 @@ - type: ttsVoice id: HearthstoneBellok name: tts-voice-name-hearthstone-bellok-bright-blade - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_bellok_bright_blade provider: sunrise - type: ttsVoice id: HearthstonePriceArtas name: tts-voice-name-hearthstone-prince-artas - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_prince_artas provider: sunrise - type: ttsVoice id: HearthstoneTarkus name: tts-voice-name-hearthstone-tarkus - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: heathstone_tarkus provider: sunrise - type: ttsVoice id: HearthstoneUter name: tts-voice-name-hearthstone-uter - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_uter provider: sunrise - type: ttsVoice id: HearthstoneMalfurion name: tts-voice-name-hearthstone-malfurion - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_malfurion provider: sunrise - type: ttsVoice id: HearthstoneGulDan name: tts-voice-name-hearthstone-gul-dan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_gul_dan provider: sunrise - type: ttsVoice id: HearthstoneTiranda name: tts-voice-name-hearthstone-tiranda - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: hearthstone_tiranda provider: sunrise - type: ttsVoice id: HearthstoneMediv1 name: tts-voice-name-hearthstone-mediv1 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_mediv1 provider: sunrise - type: ttsVoice id: HearthstoneMediv2 name: tts-voice-name-hearthstone-mediv2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_mediv2 provider: sunrise - type: ttsVoice id: HearthstoneThrall name: tts-voice-name-hearthstone-thrall - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_thrall provider: sunrise - type: ttsVoice id: Crysis2AIUsafrican01 name: tts-voice-name-crysis2-ai-usafrican-01 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: ai_usafrican_01 provider: sunrise - type: ttsVoice id: Warcraft3LordGarithos name: tts-voice-name-warcraft3-lord-garithos - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_lord_garithos provider: sunrise - type: ttsVoice id: Warcraft3Artas2 name: tts-voice-name-warcraft3-artas-2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_artas provider: sunrise - type: ttsVoice id: Warcraft3Muradin name: tts-voice-name-warcraft3-muradin - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_muradin provider: sunrise - type: ttsVoice id: Warcraft3Dreney name: tts-voice-name-warcraft3-dreney - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_dreney provider: sunrise - type: ttsVoice id: Warcraft3Witcher name: tts-voice-name-warcraft3-witcher - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_witcher provider: sunrise - type: ttsVoice id: Warcraft3Kel name: tts-voice-name-warcraft3-kel - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_kel provider: sunrise - type: ttsVoice id: Warcraft3StarikTumba name: tts-voice-name-warcraft3-starik-tumba - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_starik_tumba provider: sunrise - type: ttsVoice id: StarcraftTerranAdviser name: tts-voice-name-starcraft-terran-adviser - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: starcraft_terran_adviser provider: sunrise - type: ttsVoice id: CRYSIS2AiUscaucasian03 name: tts-voice-name-crysis2-ai-uscaucasian-03 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_uscaucasian_03 provider: sunrise - type: ttsVoice id: Warcraft3Yastreb name: tts-voice-name-warcraft3-yastreb - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: warcraft3_yastreb provider: sunrise - type: ttsVoice id: CRYSIS2AIuscaucasian02 name: tts-voice-name-crysis2-ai-uscaucasian-02 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_uscaucasian_02 provider: sunrise - type: ttsVoice id: HearthstoneKhadgar name: tts-voice-name-hearthstone-khadgar - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_khadgar provider: sunrise - type: ttsVoice id: Dota2Antimage name: tts-voice-name-dota2-antimage - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dota2_antimage provider: sunrise - type: ttsVoice id: HeartstoneHamulRunicalTotem name: tts-voice-name-hearthstone-hamul-runical-totem - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: hearthstone_hamul_runical_totem provider: sunrise - type: ttsVoice id: HeartstoneDjaina name: tts-voice-name-hearthstone-djaina - # Lust-start + # Lust-Start sex: - Female - Futanari - # Lust-end + # Lust-End speaker: hearthstone_djaina provider: sunrise - type: ttsVoice id: HeartstoneBob name: tts-voice-name-hearthstone-bob1 - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: hearthstone_bob1 provider: sunrise - type: ttsVoice id: HeartstoneRexar name: tts-voice-name-hearthstone-rexar - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: hearthstone_rexar provider: sunrise - type: ttsVoice id: Crysis2Blackops01 name: tts-voice-name-crysis2-ai-blackops-01 - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: crysis2_ai_blackops_01 provider: sunrise - type: ttsVoice id: Crysis2Blackops02 name: tts-voice-name-crysis2-ai-blackops-02 - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: crysis2_ai_blackops_02 provider: sunrise - type: ttsVoice id: Portal2FactCore name: tts-voice-name-portal2-fact-core - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: portal2_factcore provider: sunrise roundStart: false # Это ТТС для автоматов с едой, напитками и т.д (вендоров) @@ -869,179 +869,179 @@ - type: ttsVoice id: HearthstoneAlleria name: tts-voice-name-hearthstone-alleria - #Lust-Start + # Lust-Start sex: - Female - #Lust-End + # Lust-End speaker: hearthstone_alleria provider: sunrise - type: ttsVoice id: HearthstoneLunara name: tts-voice-name-hearthstone-lunara - #Lust-Start + # Lust-Start sex: - Female - #Lust-End + # Lust-End speaker: hearthstone_lunara provider: sunrise - type: ttsVoice id: SmesharikiBarash name: tts-voice-name-barash - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: smeshariki_barash provider: sunrise - type: ttsVoice id: ChocolateFabricWonka name: tts-voice-name-chocolate-fabric-wonka - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: chocolatefabric_wonka provider: sunrise - type: ttsVoice id: DeathNoteYagami name: tts-voice-name-death-note-yagami-light - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: deathnote_yagami_light provider: sunrise - type: ttsVoice id: Warcraft3Jaina name: tts-voice-name-warcraft3-jaina - #Lust-Start + # Lust-Start sex: - Female - #Lust-End + # Lust-End speaker: warcraft3_jaina provider: sunrise - type: ttsVoice id: LOLAurora name: tts-voice-name-lol-aurora - #Lust-Start + # Lust-Start sex: - Female - #Lust-End + # Lust-End speaker: lol_aurora provider: sunrise - type: ttsVoice id: 314Zabolotniy name: tts-voice-name-314-zabolotniy - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: 314_zabolotniy provider: sunrise - type: ttsVoice id: LOLAkali1 name: tts-voice-name-lol-akali1 - #Lust-Start + # Lust-Start sex: - Female - #Lust-End + # Lust-End speaker: lol_akali1 provider: sunrise - type: ttsVoice id: LOLNasus name: tts-voice-name-lol-nasus - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: lol_nasus provider: sunrise - type: ttsVoice id: Crysis2Overlord1 name: tts-voice-name-crysis2-overlord-1 - #Lust-Start + # Lust-Start sex: - Male - #Lust-End + # Lust-End speaker: crysis2_overlord1 provider: sunrise - type: ttsVoice id: Crysis2Overlord2 name: tts-voice-name-crysis2-overlord-2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_overlord2 provider: sunrise - type: ttsVoice id: DictorVsevolodKuznetsov name: tts-voice-name-dictor-vsevolod-kuznetsov - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: dictor_vsevolod_kuznetsov provider: sunrise - type: ttsVoice id: DukeNukemForever name: tts-voice-name-duke-nukem-forever - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: duke_nukem_forever provider: sunrise - type: ttsVoice id: CRYSIS2AiUscaucasian01 name: tts-voice-name-crysis2-ai-uscaucasian-01 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_uscaucasian_01 provider: sunrise - type: ttsVoice id: CRYSIS2AiBlackops04 name: tts-voice-name-crysis2-ai-blackops-04 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_blackops_04 provider: sunrise - type: ttsVoice id: CRYSIS2AIUsafrician01v2 name: tts-voice-name-crysis2-ai-usafrician-01-v2 - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: crysis2_ai_usafrician_01_v2 provider: sunrise - type: ttsVoice id: LOLAkshan name: tts-voice-name-lol-akshan - # Lust-start + # Lust-Start sex: - Male - # Lust-end + # Lust-End speaker: lol_akshan provider: sunrise diff --git a/Resources/Prototypes/bar_signs.yml b/Resources/Prototypes/bar_signs.yml index 664a7ce2ca5..45ca9f14706 100644 --- a/Resources/Prototypes/bar_signs.yml +++ b/Resources/Prototypes/bar_signs.yml @@ -194,6 +194,6 @@ id: WhiskeyEchoes name: barsign-prototype-name-whiskeyechoes icon: - sprite: _Lust/Structures/Wallmounts/barsign.rsi # Lust-edit + sprite: _Lust/Structures/Wallmounts/barsign.rsi # Lust-Edit state: whiskeyechoes description: barsign-prototype-description-whiskeyechoes diff --git a/Resources/Prototypes/borg_types.yml b/Resources/Prototypes/borg_types.yml index 5a07dba6ffa..5b96c959853 100644 --- a/Resources/Prototypes/borg_types.yml +++ b/Resources/Prototypes/borg_types.yml @@ -157,7 +157,7 @@ # Visual inventoryTemplateId: borgTall spriteBodyState: miner -# spriteBodyMovementState: miner_moving # Lust-edit +# spriteBodyMovementState: miner_moving # Lust-Edit spriteHasMindState: miner_e spriteNoMindState: miner_e_r spriteToggleLightState: miner_l @@ -196,7 +196,7 @@ # Sunrise-Start footstepCollection: - collection: FootstepCyborgSpider # Lust-edit + collection: FootstepCyborgSpider # Lust-Edit params: volume: -5 # Sunrise-Start @@ -204,7 +204,7 @@ # Visual inventoryTemplateId: borgShort spriteBodyState: janitor -# spriteBodyMovementState: janitor_moving # Lust-edit +# spriteBodyMovementState: janitor_moving # Lust-Edit spriteHasMindState: janitor_e spriteNoMindState: janitor_e_r spriteToggleLightState: janitor_l @@ -280,7 +280,7 @@ # Visual inventoryTemplateId: borgDutch spriteBodyState: medical -# spriteBodyMovementState: medical_moving # Lust-edit +# spriteBodyMovementState: medical_moving # Lust-Edit spriteHasMindState: medical_e spriteNoMindState: medical_e_r spriteToggleLightState: medical_l diff --git a/Resources/migration.yml b/Resources/migration.yml index d9a060f0b9a..bd78e3203fb 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -887,8 +887,8 @@ GrenadeBlast: GrenadeBlastTimer GrenadeEMP: GrenadeEMPTimer WeaponEnergyGunMini: WeaponMiniEnergyGun GunSafeCombineSmallArms: SpawnerSafeSmallArms -#AphrodisiacChemistryBottle: null # Lust-edit -#PatchViagra: null # Lust-edit +#AphrodisiacChemistryBottle: null # Lust-Edit +#PatchViagra: null # Lust-Edit ClothingHandsGlovesBoxingRigged: GlovesBoxingRiggedRandomSpawner MagazinePPSH41: MagazinePistolSubMachineGunPPSHExtended MagazinePPSH41Extended: null diff --git a/Tools/_sunrise/Schemas/ignore_list.yml b/Tools/_sunrise/Schemas/ignore_list.yml index 55389cfcfd1..e243b432568 100644 --- a/Tools/_sunrise/Schemas/ignore_list.yml +++ b/Tools/_sunrise/Schemas/ignore_list.yml @@ -183,11 +183,11 @@ ignore_list: - 'RobustChat' - 'www.wetskrell.nt' - '25-j*%...o1q' - # Sunrise-Lust start + # Lust-Start - 'Qillu' - 'QL' - 'ERP' - # Sunrise-Lust end + # Lust-End ignore_files: - 'italian.ftl' @@ -221,7 +221,7 @@ ignore_files: - xeno_last.ftl - xeno_first.ftl - narsie.ftl - # Sunrise-Lust start + # Lust-Start - 'friendly_interactions.yml' - 'anal_interactions.yml' - 'ears_interactions.yml' @@ -238,4 +238,4 @@ ignore_files: - 'thighs_interactions.yml' - 'toyInteractions.yml' - 'butt_interactions.yml' - # Sunrise-Lust end + # Lust-End diff --git a/Tools/_sunrise/Schemas/validate_yml.py b/Tools/_sunrise/Schemas/validate_yml.py index 8941493b23c..9f529498154 100644 --- a/Tools/_sunrise/Schemas/validate_yml.py +++ b/Tools/_sunrise/Schemas/validate_yml.py @@ -92,12 +92,12 @@ def check_translations(root_dir, ignore_list, ignore_files): # elif has_russian(value): # add_error(rel_path, line_num, f'Русская строка "{key}": {line.strip()}') -def check_yml_files(dir: str, ignore_list: List[str], ignore_files: List[str]): # Sunrise-Lust edit +def check_yml_files(dir: str, ignore_list: List[str], ignore_files: List[str]): # Lust-Edit key_pattern = re.compile(r'^(name|description|suffix|rules|desc):\s*(.+)') for yml_rel in iglob("**/*.yml", root_dir=dir, recursive=True): - if any(ignored in yml_rel for ignored in ignore_files): # Sunrise-Lust edit - continue # Sunrise-Lust edit + if any(ignored in yml_rel for ignored in ignore_files): # Lust-Edit + continue # Lust-Edit yml_path = os.path.join(dir, yml_rel) with open(yml_path, 'r', encoding='utf-8') as file: @@ -127,7 +127,7 @@ def load_ignore_list(ignore_file): check_translations(args.localization_dir, ignore_list, ignore_files) - check_yml_files(args.yml_dir, ignore_list, ignore_files) # Sunrise-Lust edit + check_yml_files(args.yml_dir, ignore_list, ignore_files) # Lust-Edit if errors: for error in errors: