From 7bd194e45911449a14dffc8c67b4dc005c0419dc Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Sun, 9 Feb 2025 14:42:41 -0300 Subject: [PATCH 1/9] Adiciona a trait de sotaque "Nerd" no game --- .../Speech/Components/NerdAccentComponent.cs | 15 ++ .../Speech/EntitySystems/NerdAccentSystem.cs | 37 ++++ .../Locale/pt-BR/_Andromeda/accent/nerd.ftl | 176 ++++++++++++++++++ .../Locale/pt-BR/_Andromeda/traits/traits.ftl | 2 + .../Generic/languageGroups.yml | 2 + .../Traits/Accents/word_replacements.yml | 62 ++++++ .../Prototypes/_Andromeda/Traits/neutral.yml | 10 + 7 files changed, 304 insertions(+) create mode 100644 Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs create mode 100644 Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs create mode 100644 Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl create mode 100644 Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml create mode 100644 Resources/Prototypes/_Andromeda/Traits/neutral.yml diff --git a/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs b/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs new file mode 100644 index 00000000000..e9ff5226730 --- /dev/null +++ b/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Speech.Components; + +/// +/// Nyehh, my gabagool, see? +/// Etc etc. +/// +[RegisterComponent] +public sealed partial class NerdAccentComponent : Component +{ + /// + /// Do you make all the rules? + /// + [DataField("nerd")] + public bool nerd = true; +} diff --git a/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs b/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs new file mode 100644 index 00000000000..6504d8ed5ba --- /dev/null +++ b/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs @@ -0,0 +1,37 @@ +using System.Linq; +using System.Text.RegularExpressions; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class NerdAccentSystem : EntitySystem +{ + private static Regex RegexIng = new(@"(?<=\w\w)(in)g(?!\w)", RegexOptions.IgnoreCase); + private static Regex RegexLowerOr = new(@"(?<=\w)o[Rr](?=\w)"); + private static Regex RegexUpperOr = new(@"(?<=\w)O[Rr](?=\w)"); + private static Regex RegexLowerAr = new(@"(?<=\w)a[Rr](?=\w)"); + private static Regex RegexUpperAr = new(@"(?<=\w)A[Rr](?=\w)"); + + [Dependency] private ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAccentGet); + } + + public string Accentuate(string message, NerdAccentComponent component) + { + // Aplicar substituições diretas + var msg = _replacement.ApplyReplacements(message, "nerd"); + + + return msg; + } + + private void OnAccentGet(EntityUid uid, NerdAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl new file mode 100644 index 00000000000..47a55ef2a4c --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl @@ -0,0 +1,176 @@ +accent-nerd-words-1 = vulp +accent-nerd-words-replace-1 = canidae sapiens + +accent-nerd-words-2 = pessoa largato +accent-nerd-words-replace-2 = sauris sapiens + +accent-nerd-words-3 = felinids +accent-nerd-words-replace-3 = felis sapiens + +accent-nerd-words-4 = plasmaman +accent-nerd-words-replace-4 = pyro sapiens + +accent-nerd-words-5 = pessoa mariposa +accent-nerd-words-replace-5 = lepidoptera sapiens + +accent-nerd-words-6 = pessoa slime +accent-nerd-words-replace-6 = gelata sapiens + +accent-nerd-words-7 = pessoa aranha +accent-nerd-words-replace-7 = Araneae sapiens + +accent-nerd-words-8 = maça +accent-nerd-words-replace-8 = malus domestica + +accent-nerd-words-9 = banana +accent-nerd-words-replace-9 = musa paradisiaca + +accent-nerd-10 = laranja +accent-nerd-replace-10 = citrus sinensis + +accent-nerd-words-11 = limão +accent-nerd-words-replace-11 = citrus limon + +accent-nerd-words-12 = uva +accent-nerd-words-replace-12 = vitis vinifera + +accent-nerd-words-13 = manga +accent-nerd-words-replace-13 = mangifera indica + +accent-nerd-words-14 = morango +accent-nerd-words-replace-14 = fragaria ananassa + +accent-nerd-words-15 = abacaxi +accent-nerd-words-replace-15 = ananas comosus + +accent-nerd-words-16 = arroz +accent-nerd-words-replace-16 = oryza sativa + +accent-nerd-words-17 = trigo +accent-nerd-words-replace-17 = triticum aestivum + +accent-nerd-words-18 = batata +accent-nerd-words-replace-18 = solanum tuberosum + +accent-nerd-words-19 = vaca +accent-nerd-words-replace-19 = bos taurus + +accent-nerd-words-20 = porco +accent-nerd-words-replace-20 = sus scrofa domesticus + +accent-nerd-words-21 = galinha +accent-nerd-words-replace-21 = gallus gallus domesticus + +accent-nerd-words-22 = peixe +accent-nerd-words-replace-22 = salmo salar + +accent-nerd-words-23 = dormir +accent-nerd-words-replace-23 = entrar em estado de suspensão biológica para recuperação celular + +accent-nerd-words-24 = traidor +accent-nerd-words-replace-24 = sith + +accent-nerd-words-25 = magistrado +accent-nerd-words-replace-25 = judicador + +accent-nerd-words-26 = detetive +accent-nerd-words-replace-26 = blades + +accent-nerd-words-27 = capitão +accent-nerd-words-replace-27 = poderoso chefão + +accent-nerd-words-28 = oi +accent-nerd-words-replace-28 = saudações, forasteiro + +accent-nerd-words-29 = até +accent-nerd-words-replace-29 = até mais, e obrigado pelos peixes! + +accent-nerd-words-30 = obrigado +accent-nerd-words-replace-30 = você subiu um nível na minha consideração + +accent-nerd-words-31 = não +accent-nerd-words-replace-31 = inaceitável + +accent-nerd-words-32 = seu burro +accent-nerd-words-replace-32 = seu protocolo de pensamento tem um bug + +accent-nerd-words-33 = seu chato +accent-nerd-words-replace-33 = você é um NPC sem diálogos bons + +accent-nerd-words-34 = concordo +accent-nerd-words-replace-34 = se estivesse errado, eu já teria corrigido você + + accent-nerd-words-35 = certo +accent-nerd-words-replace-35 = se até um Gungan entende isso, então está certo + +accent-nerd-words-36 = muito obrigado +accent-nerd-words-replace-36 = você subiu um nível na minha consideração + +accent-nerd-words-37 = arma laser +accent-nerd-words-replace-37 = projector plasmae + +accent-nerd-words-38 = console +accent-nerd-words-replace-38 = machina calculatrix + +accent-nerd-words-39 = IA +accent-nerd-words-replace-39 = artificialis intellectus + +accent-nerd-words-40 = sindicato +accent-nerd-words-replace-40 = lado negro + +accent-nerd-words-41 = medbay +accent-nerd-words-replace-41 = setor de tratamento e recuperação + +accent-nerd-words-42 = delegacia +accent-nerd-words-replace-42 = setor de tratamento e recuperação + +accent-nerd-words-43 = ponte +accent-nerd-words-replace-43 = sala de controle tático + +accent-nerd-words-44 = evac +accent-nerd-words-replace-44 = o ponto de retirada prioritária + +accent-nerd-words-45 = assistente +accent-nerd-words-replace-45 = pessoa level 1 + +accent-nerd-words-46 = harpia +accent-nerd-words-replace-46 = aves sapiens + +accent-nerd-words-47 = IPC +accent-nerd-words-replace-47 = automaton sapiens + +accent-nerd-words-48 = Oni +accent-nerd-words-replace-48 = daemonis nipponicus + +accent-nerd-words-49 = esqueleto +accent-nerd-words-replace-49 = ossum revenant + +accent-nerd-words-50 = fantasma +accent-nerd-words-replace-50 = spectris sapiens + +accent-nerd-words-51 = zumbi +accent-nerd-words-replace-51 = homo mortuus ambulans + +accent-nerd-words-52 = goblin +accent-nerd-words-replace-52 = parvus viridis sapiens + +accent-nerd-words-53 = dragão +accent-nerd-words-replace-53 = draconis magnus + +accent-nerd-words-54 = elfo +accent-nerd-words-replace-54 = homo sylvanus + +accent-nerd-words-55 = anão +accent-nerd-words-replace-55 = homo montanus + +accent-nerd-words-56 = lobisomem +accent-nerd-words-replace-56 = lycanthropus sapiens + +accent-nerd-words-57 = vampiro +accent-nerd-words-replace-57 = homo nocturnis + +accent-nerd-words-58 = magia +accent-nerd-words-replace-58 = manipulação de forças arcanas + +accent-nerd-words-59 = feitiço +accent-nerd-words-replace-59 = código de realidade alterado diff --git a/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl b/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl new file mode 100644 index 00000000000..4a0a7a87cbf --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl @@ -0,0 +1,2 @@ +trait-name-NerdAccent = Nerd +trait-description-NerdAccent = Muito tempo de estudo, jogos e ficção cientifica não fizeram bem para sua cabeça. diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml index cf729ef7a47..992a7ab4d26 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml @@ -45,3 +45,5 @@ id: ScottishAccent - type: trait id: SkeletonAccent + - type: trait + id: NerdAccent diff --git a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml new file mode 100644 index 00000000000..320b041c1f4 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml @@ -0,0 +1,62 @@ +- type: accent + id: nerd + wordReplacements: + accent-nerd-words-1: accent-nerd-words-replace-1 + accent-nerd-words-2: accent-nerd-words-replace-2 + accent-nerd-words-3: accent-nerd-words-replace-3 + accent-nerd-words-4: accent-nerd-words-replace-4 + accent-nerd-words-5: accent-nerd-words-replace-5 + accent-nerd-words-6: accent-nerd-words-replace-6 + accent-nerd-words-7: accent-nerd-words-replace-7 + accent-nerd-words-8: accent-nerd-words-replace-8 + accent-nerd-words-9: accent-nerd-words-replace-9 + accent-nerd-words-10: accent-nerd-words-replace-10 + accent-nerd-words-11: accent-nerd-words-replace-11 + accent-nerd-words-12: accent-nerd-words-replace-12 + accent-nerd-words-13: accent-nerd-words-replace-13 + accent-nerd-words-14: accent-nerd-words-replace-14 + accent-nerd-words-15: accent-nerd-words-replace-15 + accent-nerd-words-16: accent-nerd-words-replace-16 + accent-nerd-words-17: accent-nerd-words-replace-17 + accent-nerd-words-18: accent-nerd-words-replace-18 + accent-nerd-words-19: accent-nerd-words-replace-19 + accent-nerd-words-20: accent-nerd-words-replace-20 + accent-nerd-words-21: accent-nerd-words-replace-21 + accent-nerd-words-22: accent-nerd-words-replace-22 + accent-nerd-words-23: accent-nerd-words-replace-23 + accent-nerd-words-24: accent-nerd-words-replace-24 + accent-nerd-words-25: accent-nerd-words-replace-25 + accent-nerd-words-26: accent-nerd-words-replace-26 + accent-nerd-words-27: accent-nerd-words-replace-27 + accent-nerd-words-28: accent-nerd-words-replace-28 + accent-nerd-words-29: accent-nerd-words-replace-29 + accent-nerd-words-30: accent-nerd-words-replace-30 + accent-nerd-words-31: accent-nerd-words-replace-31 + accent-nerd-words-32: accent-nerd-words-replace-32 + accent-nerd-words-33: accent-nerd-words-replace-33 + accent-nerd-words-34: accent-nerd-words-replace-34 + accent-nerd-words-35: accent-nerd-words-replace-35 + accent-nerd-words-36: accent-nerd-words-replace-36 + accent-nerd-words-37: accent-nerd-words-replace-37 + accent-nerd-words-38: accent-nerd-words-replace-38 + accent-nerd-words-39: accent-nerd-words-replace-39 + accent-nerd-words-40: accent-nerd-words-replace-40 + accent-nerd-words-41: accent-nerd-words-replace-41 + accent-nerd-words-42: accent-nerd-words-replace-42 + accent-nerd-words-43: accent-nerd-words-replace-43 + accent-nerd-words-44: accent-nerd-words-replace-44 + accent-nerd-words-45: accent-nerd-words-replace-45 + accent-nerd-words-46: accent-nerd-words-replace-46 + accent-nerd-words-47: accent-nerd-words-replace-47 + accent-nerd-words-48: accent-nerd-words-replace-48 + accent-nerd-words-49: accent-nerd-words-replace-49 + accent-nerd-words-50: accent-nerd-words-replace-50 + accent-nerd-words-51: accent-nerd-words-replace-51 + accent-nerd-words-52: accent-nerd-words-replace-52 + accent-nerd-words-53: accent-nerd-words-replace-53 + accent-nerd-words-54: accent-nerd-words-replace-54 + accent-nerd-words-55: accent-nerd-words-replace-55 + accent-nerd-words-56: accent-nerd-words-replace-56 + accent-nerd-words-57: accent-nerd-words-replace-57 + accent-nerd-words-58: accent-nerd-words-replace-58 + accent-nerd-words-59: accent-nerd-words-replace-59 diff --git a/Resources/Prototypes/_Andromeda/Traits/neutral.yml b/Resources/Prototypes/_Andromeda/Traits/neutral.yml new file mode 100644 index 00000000000..ba75fb6be58 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Traits/neutral.yml @@ -0,0 +1,10 @@ +- type: trait + id: NerdAccent + category: TraitsSpeechAccents + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents + functions: + - !type:TraitAddComponent + components: + - type: NerdAccent From 5f52f83ad76fe40756956558be47a42df375ca5e Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Sun, 9 Feb 2025 14:56:12 -0300 Subject: [PATCH 2/9] Revert "Adiciona a trait de sotaque "Nerd" no game" This reverts commit 7bd194e45911449a14dffc8c67b4dc005c0419dc. --- .../Speech/Components/NerdAccentComponent.cs | 15 -- .../Speech/EntitySystems/NerdAccentSystem.cs | 37 ---- .../Locale/pt-BR/_Andromeda/accent/nerd.ftl | 176 ------------------ .../Locale/pt-BR/_Andromeda/traits/traits.ftl | 2 - .../Generic/languageGroups.yml | 2 - .../Traits/Accents/word_replacements.yml | 62 ------ .../Prototypes/_Andromeda/Traits/neutral.yml | 10 - 7 files changed, 304 deletions(-) delete mode 100644 Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs delete mode 100644 Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs delete mode 100644 Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl delete mode 100644 Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl delete mode 100644 Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml delete mode 100644 Resources/Prototypes/_Andromeda/Traits/neutral.yml diff --git a/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs b/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs deleted file mode 100644 index e9ff5226730..00000000000 --- a/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace Content.Server.Speech.Components; - -/// -/// Nyehh, my gabagool, see? -/// Etc etc. -/// -[RegisterComponent] -public sealed partial class NerdAccentComponent : Component -{ - /// - /// Do you make all the rules? - /// - [DataField("nerd")] - public bool nerd = true; -} diff --git a/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs b/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs deleted file mode 100644 index 6504d8ed5ba..00000000000 --- a/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Linq; -using System.Text.RegularExpressions; -using Content.Server.Speech.Components; - -namespace Content.Server.Speech.EntitySystems; - -public sealed class NerdAccentSystem : EntitySystem -{ - private static Regex RegexIng = new(@"(?<=\w\w)(in)g(?!\w)", RegexOptions.IgnoreCase); - private static Regex RegexLowerOr = new(@"(?<=\w)o[Rr](?=\w)"); - private static Regex RegexUpperOr = new(@"(?<=\w)O[Rr](?=\w)"); - private static Regex RegexLowerAr = new(@"(?<=\w)a[Rr](?=\w)"); - private static Regex RegexUpperAr = new(@"(?<=\w)A[Rr](?=\w)"); - - [Dependency] private ReplacementAccentSystem _replacement = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnAccentGet); - } - - public string Accentuate(string message, NerdAccentComponent component) - { - // Aplicar substituições diretas - var msg = _replacement.ApplyReplacements(message, "nerd"); - - - return msg; - } - - private void OnAccentGet(EntityUid uid, NerdAccentComponent component, AccentGetEvent args) - { - args.Message = Accentuate(args.Message, component); - } -} diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl deleted file mode 100644 index 47a55ef2a4c..00000000000 --- a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl +++ /dev/null @@ -1,176 +0,0 @@ -accent-nerd-words-1 = vulp -accent-nerd-words-replace-1 = canidae sapiens - -accent-nerd-words-2 = pessoa largato -accent-nerd-words-replace-2 = sauris sapiens - -accent-nerd-words-3 = felinids -accent-nerd-words-replace-3 = felis sapiens - -accent-nerd-words-4 = plasmaman -accent-nerd-words-replace-4 = pyro sapiens - -accent-nerd-words-5 = pessoa mariposa -accent-nerd-words-replace-5 = lepidoptera sapiens - -accent-nerd-words-6 = pessoa slime -accent-nerd-words-replace-6 = gelata sapiens - -accent-nerd-words-7 = pessoa aranha -accent-nerd-words-replace-7 = Araneae sapiens - -accent-nerd-words-8 = maça -accent-nerd-words-replace-8 = malus domestica - -accent-nerd-words-9 = banana -accent-nerd-words-replace-9 = musa paradisiaca - -accent-nerd-10 = laranja -accent-nerd-replace-10 = citrus sinensis - -accent-nerd-words-11 = limão -accent-nerd-words-replace-11 = citrus limon - -accent-nerd-words-12 = uva -accent-nerd-words-replace-12 = vitis vinifera - -accent-nerd-words-13 = manga -accent-nerd-words-replace-13 = mangifera indica - -accent-nerd-words-14 = morango -accent-nerd-words-replace-14 = fragaria ananassa - -accent-nerd-words-15 = abacaxi -accent-nerd-words-replace-15 = ananas comosus - -accent-nerd-words-16 = arroz -accent-nerd-words-replace-16 = oryza sativa - -accent-nerd-words-17 = trigo -accent-nerd-words-replace-17 = triticum aestivum - -accent-nerd-words-18 = batata -accent-nerd-words-replace-18 = solanum tuberosum - -accent-nerd-words-19 = vaca -accent-nerd-words-replace-19 = bos taurus - -accent-nerd-words-20 = porco -accent-nerd-words-replace-20 = sus scrofa domesticus - -accent-nerd-words-21 = galinha -accent-nerd-words-replace-21 = gallus gallus domesticus - -accent-nerd-words-22 = peixe -accent-nerd-words-replace-22 = salmo salar - -accent-nerd-words-23 = dormir -accent-nerd-words-replace-23 = entrar em estado de suspensão biológica para recuperação celular - -accent-nerd-words-24 = traidor -accent-nerd-words-replace-24 = sith - -accent-nerd-words-25 = magistrado -accent-nerd-words-replace-25 = judicador - -accent-nerd-words-26 = detetive -accent-nerd-words-replace-26 = blades - -accent-nerd-words-27 = capitão -accent-nerd-words-replace-27 = poderoso chefão - -accent-nerd-words-28 = oi -accent-nerd-words-replace-28 = saudações, forasteiro - -accent-nerd-words-29 = até -accent-nerd-words-replace-29 = até mais, e obrigado pelos peixes! - -accent-nerd-words-30 = obrigado -accent-nerd-words-replace-30 = você subiu um nível na minha consideração - -accent-nerd-words-31 = não -accent-nerd-words-replace-31 = inaceitável - -accent-nerd-words-32 = seu burro -accent-nerd-words-replace-32 = seu protocolo de pensamento tem um bug - -accent-nerd-words-33 = seu chato -accent-nerd-words-replace-33 = você é um NPC sem diálogos bons - -accent-nerd-words-34 = concordo -accent-nerd-words-replace-34 = se estivesse errado, eu já teria corrigido você - - accent-nerd-words-35 = certo -accent-nerd-words-replace-35 = se até um Gungan entende isso, então está certo - -accent-nerd-words-36 = muito obrigado -accent-nerd-words-replace-36 = você subiu um nível na minha consideração - -accent-nerd-words-37 = arma laser -accent-nerd-words-replace-37 = projector plasmae - -accent-nerd-words-38 = console -accent-nerd-words-replace-38 = machina calculatrix - -accent-nerd-words-39 = IA -accent-nerd-words-replace-39 = artificialis intellectus - -accent-nerd-words-40 = sindicato -accent-nerd-words-replace-40 = lado negro - -accent-nerd-words-41 = medbay -accent-nerd-words-replace-41 = setor de tratamento e recuperação - -accent-nerd-words-42 = delegacia -accent-nerd-words-replace-42 = setor de tratamento e recuperação - -accent-nerd-words-43 = ponte -accent-nerd-words-replace-43 = sala de controle tático - -accent-nerd-words-44 = evac -accent-nerd-words-replace-44 = o ponto de retirada prioritária - -accent-nerd-words-45 = assistente -accent-nerd-words-replace-45 = pessoa level 1 - -accent-nerd-words-46 = harpia -accent-nerd-words-replace-46 = aves sapiens - -accent-nerd-words-47 = IPC -accent-nerd-words-replace-47 = automaton sapiens - -accent-nerd-words-48 = Oni -accent-nerd-words-replace-48 = daemonis nipponicus - -accent-nerd-words-49 = esqueleto -accent-nerd-words-replace-49 = ossum revenant - -accent-nerd-words-50 = fantasma -accent-nerd-words-replace-50 = spectris sapiens - -accent-nerd-words-51 = zumbi -accent-nerd-words-replace-51 = homo mortuus ambulans - -accent-nerd-words-52 = goblin -accent-nerd-words-replace-52 = parvus viridis sapiens - -accent-nerd-words-53 = dragão -accent-nerd-words-replace-53 = draconis magnus - -accent-nerd-words-54 = elfo -accent-nerd-words-replace-54 = homo sylvanus - -accent-nerd-words-55 = anão -accent-nerd-words-replace-55 = homo montanus - -accent-nerd-words-56 = lobisomem -accent-nerd-words-replace-56 = lycanthropus sapiens - -accent-nerd-words-57 = vampiro -accent-nerd-words-replace-57 = homo nocturnis - -accent-nerd-words-58 = magia -accent-nerd-words-replace-58 = manipulação de forças arcanas - -accent-nerd-words-59 = feitiço -accent-nerd-words-replace-59 = código de realidade alterado diff --git a/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl b/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl deleted file mode 100644 index 4a0a7a87cbf..00000000000 --- a/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl +++ /dev/null @@ -1,2 +0,0 @@ -trait-name-NerdAccent = Nerd -trait-description-NerdAccent = Muito tempo de estudo, jogos e ficção cientifica não fizeram bem para sua cabeça. diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml index 992a7ab4d26..cf729ef7a47 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml @@ -45,5 +45,3 @@ id: ScottishAccent - type: trait id: SkeletonAccent - - type: trait - id: NerdAccent diff --git a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml deleted file mode 100644 index 320b041c1f4..00000000000 --- a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml +++ /dev/null @@ -1,62 +0,0 @@ -- type: accent - id: nerd - wordReplacements: - accent-nerd-words-1: accent-nerd-words-replace-1 - accent-nerd-words-2: accent-nerd-words-replace-2 - accent-nerd-words-3: accent-nerd-words-replace-3 - accent-nerd-words-4: accent-nerd-words-replace-4 - accent-nerd-words-5: accent-nerd-words-replace-5 - accent-nerd-words-6: accent-nerd-words-replace-6 - accent-nerd-words-7: accent-nerd-words-replace-7 - accent-nerd-words-8: accent-nerd-words-replace-8 - accent-nerd-words-9: accent-nerd-words-replace-9 - accent-nerd-words-10: accent-nerd-words-replace-10 - accent-nerd-words-11: accent-nerd-words-replace-11 - accent-nerd-words-12: accent-nerd-words-replace-12 - accent-nerd-words-13: accent-nerd-words-replace-13 - accent-nerd-words-14: accent-nerd-words-replace-14 - accent-nerd-words-15: accent-nerd-words-replace-15 - accent-nerd-words-16: accent-nerd-words-replace-16 - accent-nerd-words-17: accent-nerd-words-replace-17 - accent-nerd-words-18: accent-nerd-words-replace-18 - accent-nerd-words-19: accent-nerd-words-replace-19 - accent-nerd-words-20: accent-nerd-words-replace-20 - accent-nerd-words-21: accent-nerd-words-replace-21 - accent-nerd-words-22: accent-nerd-words-replace-22 - accent-nerd-words-23: accent-nerd-words-replace-23 - accent-nerd-words-24: accent-nerd-words-replace-24 - accent-nerd-words-25: accent-nerd-words-replace-25 - accent-nerd-words-26: accent-nerd-words-replace-26 - accent-nerd-words-27: accent-nerd-words-replace-27 - accent-nerd-words-28: accent-nerd-words-replace-28 - accent-nerd-words-29: accent-nerd-words-replace-29 - accent-nerd-words-30: accent-nerd-words-replace-30 - accent-nerd-words-31: accent-nerd-words-replace-31 - accent-nerd-words-32: accent-nerd-words-replace-32 - accent-nerd-words-33: accent-nerd-words-replace-33 - accent-nerd-words-34: accent-nerd-words-replace-34 - accent-nerd-words-35: accent-nerd-words-replace-35 - accent-nerd-words-36: accent-nerd-words-replace-36 - accent-nerd-words-37: accent-nerd-words-replace-37 - accent-nerd-words-38: accent-nerd-words-replace-38 - accent-nerd-words-39: accent-nerd-words-replace-39 - accent-nerd-words-40: accent-nerd-words-replace-40 - accent-nerd-words-41: accent-nerd-words-replace-41 - accent-nerd-words-42: accent-nerd-words-replace-42 - accent-nerd-words-43: accent-nerd-words-replace-43 - accent-nerd-words-44: accent-nerd-words-replace-44 - accent-nerd-words-45: accent-nerd-words-replace-45 - accent-nerd-words-46: accent-nerd-words-replace-46 - accent-nerd-words-47: accent-nerd-words-replace-47 - accent-nerd-words-48: accent-nerd-words-replace-48 - accent-nerd-words-49: accent-nerd-words-replace-49 - accent-nerd-words-50: accent-nerd-words-replace-50 - accent-nerd-words-51: accent-nerd-words-replace-51 - accent-nerd-words-52: accent-nerd-words-replace-52 - accent-nerd-words-53: accent-nerd-words-replace-53 - accent-nerd-words-54: accent-nerd-words-replace-54 - accent-nerd-words-55: accent-nerd-words-replace-55 - accent-nerd-words-56: accent-nerd-words-replace-56 - accent-nerd-words-57: accent-nerd-words-replace-57 - accent-nerd-words-58: accent-nerd-words-replace-58 - accent-nerd-words-59: accent-nerd-words-replace-59 diff --git a/Resources/Prototypes/_Andromeda/Traits/neutral.yml b/Resources/Prototypes/_Andromeda/Traits/neutral.yml deleted file mode 100644 index ba75fb6be58..00000000000 --- a/Resources/Prototypes/_Andromeda/Traits/neutral.yml +++ /dev/null @@ -1,10 +0,0 @@ -- type: trait - id: NerdAccent - category: TraitsSpeechAccents - requirements: - - !type:CharacterItemGroupRequirement - group: TraitsAccents - functions: - - !type:TraitAddComponent - components: - - type: NerdAccent From e3e3bc9df64ac10f522cd5f7e1dce6d542c50509 Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Sun, 9 Feb 2025 14:56:24 -0300 Subject: [PATCH 3/9] Reapply "Adiciona a trait de sotaque "Nerd" no game" This reverts commit 5f52f83ad76fe40756956558be47a42df375ca5e. --- .../Speech/Components/NerdAccentComponent.cs | 15 ++ .../Speech/EntitySystems/NerdAccentSystem.cs | 37 ++++ .../Locale/pt-BR/_Andromeda/accent/nerd.ftl | 176 ++++++++++++++++++ .../Locale/pt-BR/_Andromeda/traits/traits.ftl | 2 + .../Generic/languageGroups.yml | 2 + .../Traits/Accents/word_replacements.yml | 62 ++++++ .../Prototypes/_Andromeda/Traits/neutral.yml | 10 + 7 files changed, 304 insertions(+) create mode 100644 Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs create mode 100644 Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs create mode 100644 Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl create mode 100644 Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml create mode 100644 Resources/Prototypes/_Andromeda/Traits/neutral.yml diff --git a/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs b/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs new file mode 100644 index 00000000000..e9ff5226730 --- /dev/null +++ b/Content.Server/_Andromeda/Speech/Components/NerdAccentComponent.cs @@ -0,0 +1,15 @@ +namespace Content.Server.Speech.Components; + +/// +/// Nyehh, my gabagool, see? +/// Etc etc. +/// +[RegisterComponent] +public sealed partial class NerdAccentComponent : Component +{ + /// + /// Do you make all the rules? + /// + [DataField("nerd")] + public bool nerd = true; +} diff --git a/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs b/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs new file mode 100644 index 00000000000..6504d8ed5ba --- /dev/null +++ b/Content.Server/_Andromeda/Speech/EntitySystems/NerdAccentSystem.cs @@ -0,0 +1,37 @@ +using System.Linq; +using System.Text.RegularExpressions; +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class NerdAccentSystem : EntitySystem +{ + private static Regex RegexIng = new(@"(?<=\w\w)(in)g(?!\w)", RegexOptions.IgnoreCase); + private static Regex RegexLowerOr = new(@"(?<=\w)o[Rr](?=\w)"); + private static Regex RegexUpperOr = new(@"(?<=\w)O[Rr](?=\w)"); + private static Regex RegexLowerAr = new(@"(?<=\w)a[Rr](?=\w)"); + private static Regex RegexUpperAr = new(@"(?<=\w)A[Rr](?=\w)"); + + [Dependency] private ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAccentGet); + } + + public string Accentuate(string message, NerdAccentComponent component) + { + // Aplicar substituições diretas + var msg = _replacement.ApplyReplacements(message, "nerd"); + + + return msg; + } + + private void OnAccentGet(EntityUid uid, NerdAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl new file mode 100644 index 00000000000..47a55ef2a4c --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl @@ -0,0 +1,176 @@ +accent-nerd-words-1 = vulp +accent-nerd-words-replace-1 = canidae sapiens + +accent-nerd-words-2 = pessoa largato +accent-nerd-words-replace-2 = sauris sapiens + +accent-nerd-words-3 = felinids +accent-nerd-words-replace-3 = felis sapiens + +accent-nerd-words-4 = plasmaman +accent-nerd-words-replace-4 = pyro sapiens + +accent-nerd-words-5 = pessoa mariposa +accent-nerd-words-replace-5 = lepidoptera sapiens + +accent-nerd-words-6 = pessoa slime +accent-nerd-words-replace-6 = gelata sapiens + +accent-nerd-words-7 = pessoa aranha +accent-nerd-words-replace-7 = Araneae sapiens + +accent-nerd-words-8 = maça +accent-nerd-words-replace-8 = malus domestica + +accent-nerd-words-9 = banana +accent-nerd-words-replace-9 = musa paradisiaca + +accent-nerd-10 = laranja +accent-nerd-replace-10 = citrus sinensis + +accent-nerd-words-11 = limão +accent-nerd-words-replace-11 = citrus limon + +accent-nerd-words-12 = uva +accent-nerd-words-replace-12 = vitis vinifera + +accent-nerd-words-13 = manga +accent-nerd-words-replace-13 = mangifera indica + +accent-nerd-words-14 = morango +accent-nerd-words-replace-14 = fragaria ananassa + +accent-nerd-words-15 = abacaxi +accent-nerd-words-replace-15 = ananas comosus + +accent-nerd-words-16 = arroz +accent-nerd-words-replace-16 = oryza sativa + +accent-nerd-words-17 = trigo +accent-nerd-words-replace-17 = triticum aestivum + +accent-nerd-words-18 = batata +accent-nerd-words-replace-18 = solanum tuberosum + +accent-nerd-words-19 = vaca +accent-nerd-words-replace-19 = bos taurus + +accent-nerd-words-20 = porco +accent-nerd-words-replace-20 = sus scrofa domesticus + +accent-nerd-words-21 = galinha +accent-nerd-words-replace-21 = gallus gallus domesticus + +accent-nerd-words-22 = peixe +accent-nerd-words-replace-22 = salmo salar + +accent-nerd-words-23 = dormir +accent-nerd-words-replace-23 = entrar em estado de suspensão biológica para recuperação celular + +accent-nerd-words-24 = traidor +accent-nerd-words-replace-24 = sith + +accent-nerd-words-25 = magistrado +accent-nerd-words-replace-25 = judicador + +accent-nerd-words-26 = detetive +accent-nerd-words-replace-26 = blades + +accent-nerd-words-27 = capitão +accent-nerd-words-replace-27 = poderoso chefão + +accent-nerd-words-28 = oi +accent-nerd-words-replace-28 = saudações, forasteiro + +accent-nerd-words-29 = até +accent-nerd-words-replace-29 = até mais, e obrigado pelos peixes! + +accent-nerd-words-30 = obrigado +accent-nerd-words-replace-30 = você subiu um nível na minha consideração + +accent-nerd-words-31 = não +accent-nerd-words-replace-31 = inaceitável + +accent-nerd-words-32 = seu burro +accent-nerd-words-replace-32 = seu protocolo de pensamento tem um bug + +accent-nerd-words-33 = seu chato +accent-nerd-words-replace-33 = você é um NPC sem diálogos bons + +accent-nerd-words-34 = concordo +accent-nerd-words-replace-34 = se estivesse errado, eu já teria corrigido você + + accent-nerd-words-35 = certo +accent-nerd-words-replace-35 = se até um Gungan entende isso, então está certo + +accent-nerd-words-36 = muito obrigado +accent-nerd-words-replace-36 = você subiu um nível na minha consideração + +accent-nerd-words-37 = arma laser +accent-nerd-words-replace-37 = projector plasmae + +accent-nerd-words-38 = console +accent-nerd-words-replace-38 = machina calculatrix + +accent-nerd-words-39 = IA +accent-nerd-words-replace-39 = artificialis intellectus + +accent-nerd-words-40 = sindicato +accent-nerd-words-replace-40 = lado negro + +accent-nerd-words-41 = medbay +accent-nerd-words-replace-41 = setor de tratamento e recuperação + +accent-nerd-words-42 = delegacia +accent-nerd-words-replace-42 = setor de tratamento e recuperação + +accent-nerd-words-43 = ponte +accent-nerd-words-replace-43 = sala de controle tático + +accent-nerd-words-44 = evac +accent-nerd-words-replace-44 = o ponto de retirada prioritária + +accent-nerd-words-45 = assistente +accent-nerd-words-replace-45 = pessoa level 1 + +accent-nerd-words-46 = harpia +accent-nerd-words-replace-46 = aves sapiens + +accent-nerd-words-47 = IPC +accent-nerd-words-replace-47 = automaton sapiens + +accent-nerd-words-48 = Oni +accent-nerd-words-replace-48 = daemonis nipponicus + +accent-nerd-words-49 = esqueleto +accent-nerd-words-replace-49 = ossum revenant + +accent-nerd-words-50 = fantasma +accent-nerd-words-replace-50 = spectris sapiens + +accent-nerd-words-51 = zumbi +accent-nerd-words-replace-51 = homo mortuus ambulans + +accent-nerd-words-52 = goblin +accent-nerd-words-replace-52 = parvus viridis sapiens + +accent-nerd-words-53 = dragão +accent-nerd-words-replace-53 = draconis magnus + +accent-nerd-words-54 = elfo +accent-nerd-words-replace-54 = homo sylvanus + +accent-nerd-words-55 = anão +accent-nerd-words-replace-55 = homo montanus + +accent-nerd-words-56 = lobisomem +accent-nerd-words-replace-56 = lycanthropus sapiens + +accent-nerd-words-57 = vampiro +accent-nerd-words-replace-57 = homo nocturnis + +accent-nerd-words-58 = magia +accent-nerd-words-replace-58 = manipulação de forças arcanas + +accent-nerd-words-59 = feitiço +accent-nerd-words-replace-59 = código de realidade alterado diff --git a/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl b/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl new file mode 100644 index 00000000000..4a0a7a87cbf --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/traits/traits.ftl @@ -0,0 +1,2 @@ +trait-name-NerdAccent = Nerd +trait-description-NerdAccent = Muito tempo de estudo, jogos e ficção cientifica não fizeram bem para sua cabeça. diff --git a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml index cf729ef7a47..992a7ab4d26 100644 --- a/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml +++ b/Resources/Prototypes/CharacterItemGroups/Generic/languageGroups.yml @@ -45,3 +45,5 @@ id: ScottishAccent - type: trait id: SkeletonAccent + - type: trait + id: NerdAccent diff --git a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml new file mode 100644 index 00000000000..320b041c1f4 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml @@ -0,0 +1,62 @@ +- type: accent + id: nerd + wordReplacements: + accent-nerd-words-1: accent-nerd-words-replace-1 + accent-nerd-words-2: accent-nerd-words-replace-2 + accent-nerd-words-3: accent-nerd-words-replace-3 + accent-nerd-words-4: accent-nerd-words-replace-4 + accent-nerd-words-5: accent-nerd-words-replace-5 + accent-nerd-words-6: accent-nerd-words-replace-6 + accent-nerd-words-7: accent-nerd-words-replace-7 + accent-nerd-words-8: accent-nerd-words-replace-8 + accent-nerd-words-9: accent-nerd-words-replace-9 + accent-nerd-words-10: accent-nerd-words-replace-10 + accent-nerd-words-11: accent-nerd-words-replace-11 + accent-nerd-words-12: accent-nerd-words-replace-12 + accent-nerd-words-13: accent-nerd-words-replace-13 + accent-nerd-words-14: accent-nerd-words-replace-14 + accent-nerd-words-15: accent-nerd-words-replace-15 + accent-nerd-words-16: accent-nerd-words-replace-16 + accent-nerd-words-17: accent-nerd-words-replace-17 + accent-nerd-words-18: accent-nerd-words-replace-18 + accent-nerd-words-19: accent-nerd-words-replace-19 + accent-nerd-words-20: accent-nerd-words-replace-20 + accent-nerd-words-21: accent-nerd-words-replace-21 + accent-nerd-words-22: accent-nerd-words-replace-22 + accent-nerd-words-23: accent-nerd-words-replace-23 + accent-nerd-words-24: accent-nerd-words-replace-24 + accent-nerd-words-25: accent-nerd-words-replace-25 + accent-nerd-words-26: accent-nerd-words-replace-26 + accent-nerd-words-27: accent-nerd-words-replace-27 + accent-nerd-words-28: accent-nerd-words-replace-28 + accent-nerd-words-29: accent-nerd-words-replace-29 + accent-nerd-words-30: accent-nerd-words-replace-30 + accent-nerd-words-31: accent-nerd-words-replace-31 + accent-nerd-words-32: accent-nerd-words-replace-32 + accent-nerd-words-33: accent-nerd-words-replace-33 + accent-nerd-words-34: accent-nerd-words-replace-34 + accent-nerd-words-35: accent-nerd-words-replace-35 + accent-nerd-words-36: accent-nerd-words-replace-36 + accent-nerd-words-37: accent-nerd-words-replace-37 + accent-nerd-words-38: accent-nerd-words-replace-38 + accent-nerd-words-39: accent-nerd-words-replace-39 + accent-nerd-words-40: accent-nerd-words-replace-40 + accent-nerd-words-41: accent-nerd-words-replace-41 + accent-nerd-words-42: accent-nerd-words-replace-42 + accent-nerd-words-43: accent-nerd-words-replace-43 + accent-nerd-words-44: accent-nerd-words-replace-44 + accent-nerd-words-45: accent-nerd-words-replace-45 + accent-nerd-words-46: accent-nerd-words-replace-46 + accent-nerd-words-47: accent-nerd-words-replace-47 + accent-nerd-words-48: accent-nerd-words-replace-48 + accent-nerd-words-49: accent-nerd-words-replace-49 + accent-nerd-words-50: accent-nerd-words-replace-50 + accent-nerd-words-51: accent-nerd-words-replace-51 + accent-nerd-words-52: accent-nerd-words-replace-52 + accent-nerd-words-53: accent-nerd-words-replace-53 + accent-nerd-words-54: accent-nerd-words-replace-54 + accent-nerd-words-55: accent-nerd-words-replace-55 + accent-nerd-words-56: accent-nerd-words-replace-56 + accent-nerd-words-57: accent-nerd-words-replace-57 + accent-nerd-words-58: accent-nerd-words-replace-58 + accent-nerd-words-59: accent-nerd-words-replace-59 diff --git a/Resources/Prototypes/_Andromeda/Traits/neutral.yml b/Resources/Prototypes/_Andromeda/Traits/neutral.yml new file mode 100644 index 00000000000..ba75fb6be58 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Traits/neutral.yml @@ -0,0 +1,10 @@ +- type: trait + id: NerdAccent + category: TraitsSpeechAccents + requirements: + - !type:CharacterItemGroupRequirement + group: TraitsAccents + functions: + - !type:TraitAddComponent + components: + - type: NerdAccent From 25c32f7b08516b30fd863d573432c750ae619763 Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Sun, 9 Feb 2025 22:23:17 -0300 Subject: [PATCH 4/9] Update nerd.ftl Estava trocando pequenas palavras por palavras melhores Signed-off-by: Nicolasfmendesx11 --- .../Locale/pt-BR/_Andromeda/accent/nerd.ftl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl index 47a55ef2a4c..16b4eb73768 100644 --- a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl +++ b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl @@ -4,7 +4,7 @@ accent-nerd-words-replace-1 = canidae sapiens accent-nerd-words-2 = pessoa largato accent-nerd-words-replace-2 = sauris sapiens -accent-nerd-words-3 = felinids +accent-nerd-words-3 = felinid accent-nerd-words-replace-3 = felis sapiens accent-nerd-words-4 = plasmaman @@ -91,17 +91,17 @@ accent-nerd-words-replace-30 = você subiu um nível na minha consideração accent-nerd-words-31 = não accent-nerd-words-replace-31 = inaceitável -accent-nerd-words-32 = seu burro -accent-nerd-words-replace-32 = seu protocolo de pensamento tem um bug +accent-nerd-words-32 = burro +accent-nerd-words-replace-32 = Erro 404: inteligência não encontrada -accent-nerd-words-33 = seu chato -accent-nerd-words-replace-33 = você é um NPC sem diálogos bons +accent-nerd-words-33 = chato +accent-nerd-words-replace-33 = um NPC sem diálogos bons -accent-nerd-words-34 = concordo -accent-nerd-words-replace-34 = se estivesse errado, eu já teria corrigido você +accent-nerd-words-34 = sim +accent-nerd-words-replace-34 = afirmativo - accent-nerd-words-35 = certo -accent-nerd-words-replace-35 = se até um Gungan entende isso, então está certo +accent-nerd-words-35 = amigo +accent-nerd-words-replace-35 = aliado de longa data com estatísticas positivas de lealdade accent-nerd-words-36 = muito obrigado accent-nerd-words-replace-36 = você subiu um nível na minha consideração From 09abc5d8638cae1d0afeab251f6bbfc60d8f796a Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Mon, 10 Feb 2025 11:57:33 -0300 Subject: [PATCH 5/9] Arrumei e adicionei mais 48 palavras do sotaque nerd --- .../Locale/pt-BR/_Andromeda/accent/nerd.ftl | 184 ++++++++++++++++-- .../Traits/Accents/word_replacements.yml | 49 +++++ 2 files changed, 213 insertions(+), 20 deletions(-) diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl index 47a55ef2a4c..ee87cc96a72 100644 --- a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl +++ b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl @@ -4,7 +4,7 @@ accent-nerd-words-replace-1 = canidae sapiens accent-nerd-words-2 = pessoa largato accent-nerd-words-replace-2 = sauris sapiens -accent-nerd-words-3 = felinids +accent-nerd-words-3 = felinid accent-nerd-words-replace-3 = felis sapiens accent-nerd-words-4 = plasmaman @@ -25,8 +25,8 @@ accent-nerd-words-replace-8 = malus domestica accent-nerd-words-9 = banana accent-nerd-words-replace-9 = musa paradisiaca -accent-nerd-10 = laranja -accent-nerd-replace-10 = citrus sinensis +accent-nerd-words-10 = laranja +accent-nerd-words-replace-10 = citrus sinensis accent-nerd-words-11 = limão accent-nerd-words-replace-11 = citrus limon @@ -65,7 +65,7 @@ accent-nerd-words-22 = peixe accent-nerd-words-replace-22 = salmo salar accent-nerd-words-23 = dormir -accent-nerd-words-replace-23 = entrar em estado de suspensão biológica para recuperação celular +accent-nerd-words-replace-23 = repousar accent-nerd-words-24 = traidor accent-nerd-words-replace-24 = sith @@ -82,29 +82,29 @@ accent-nerd-words-replace-27 = poderoso chefão accent-nerd-words-28 = oi accent-nerd-words-replace-28 = saudações, forasteiro -accent-nerd-words-29 = até -accent-nerd-words-replace-29 = até mais, e obrigado pelos peixes! +accent-nerd-words-29 = água +accent-nerd-words-replace-29 = H2O -accent-nerd-words-30 = obrigado -accent-nerd-words-replace-30 = você subiu um nível na minha consideração +accent-nerd-words-30 = ar +accent-nerd-words-replace-30 = O2 -accent-nerd-words-31 = não -accent-nerd-words-replace-31 = inaceitável +accent-nerd-words-31 = sede +accent-nerd-words-replace-31 = déficit hídrico -accent-nerd-words-32 = seu burro -accent-nerd-words-replace-32 = seu protocolo de pensamento tem um bug +accent-nerd-words-32 = burro +accent-nerd-words-replace-32 = inepto -accent-nerd-words-33 = seu chato -accent-nerd-words-replace-33 = você é um NPC sem diálogos bons +accent-nerd-words-33 = chato +accent-nerd-words-replace-33 = NPC sem diálogos bons -accent-nerd-words-34 = concordo -accent-nerd-words-replace-34 = se estivesse errado, eu já teria corrigido você +accent-nerd-words-34 = fome +accent-nerd-words-replace-34 = déficit calórico - accent-nerd-words-35 = certo -accent-nerd-words-replace-35 = se até um Gungan entende isso, então está certo +accent-nerd-words-35 = amigo +accent-nerd-words-replace-35 = tchum accent-nerd-words-36 = muito obrigado -accent-nerd-words-replace-36 = você subiu um nível na minha consideração +accent-nerd-words-replace-36 = muito pogger accent-nerd-words-37 = arma laser accent-nerd-words-replace-37 = projector plasmae @@ -122,7 +122,7 @@ accent-nerd-words-41 = medbay accent-nerd-words-replace-41 = setor de tratamento e recuperação accent-nerd-words-42 = delegacia -accent-nerd-words-replace-42 = setor de tratamento e recuperação +accent-nerd-words-replace-42 = setor de correção comportamental accent-nerd-words-43 = ponte accent-nerd-words-replace-43 = sala de controle tático @@ -174,3 +174,147 @@ accent-nerd-words-replace-58 = manipulação de forças arcanas accent-nerd-words-59 = feitiço accent-nerd-words-replace-59 = código de realidade alterado + +accent-nerd-words-60 = cachorro +accent-nerd-words-replace-60 = canis lupus familiaris + +accent-nerd-words-61 = gato +accent-nerd-words-replace-61 = felis catus + +accent-nerd-words-62 = cavalo +accent-nerd-words-replace-62 = equus ferus caballus + +accent-nerd-words-63 = rato +accent-nerd-words-replace-63 = rattus norvegicus + +accent-nerd-words-64 = coelho +accent-nerd-words-replace-64 = oryctolagus cuniculus + +accent-nerd-words-65 = lobo +accent-nerd-words-replace-65 = canis lupus + +accent-nerd-words-66 = tigre +accent-nerd-words-replace-66 = panthera tigris + +accent-nerd-words-67 = leão +accent-nerd-words-replace-67 = panthera leo + +accent-nerd-words-68 = urso +accent-nerd-words-replace-68 = ursus arctos + +accent-nerd-words-69 = tubarão +accent-nerd-words-replace-69 = selachimorpha + +accent-nerd-words-70 = jacaré +accent-nerd-words-replace-70 = alligator mississippiensis + +accent-nerd-words-71 = cobra +accent-nerd-words-replace-71 = serpentes + +accent-nerd-words-72 = formiga +accent-nerd-words-replace-72 = formicidae + +accent-nerd-words-73 = abelha +accent-nerd-words-replace-73 = apis mellifera + +accent-nerd-words-74 = aranha +accent-nerd-words-replace-74 = araneae + +accent-nerd-words-75 = borboleta +accent-nerd-words-replace-75 = lepidoptera + +accent-nerd-words-76 = cebola +accent-nerd-words-replace-76 = allium cepa + +accent-nerd-words-77 = alho +accent-nerd-words-replace-77 = allium sativum + +accent-nerd-words-78 = pimenta +accent-nerd-words-replace-78 = capsicum annuum + +accent-nerd-words-79 = tomate +accent-nerd-words-replace-79 = solanum lycopersicum + +accent-nerd-words-80 = cenoura +accent-nerd-words-replace-80 = daucus carota + +accent-nerd-words-81 = alface +accent-nerd-words-replace-81 = lactuca sativa + +accent-nerd-words-82 = milho +accent-nerd-words-replace-82 = zea mays + +accent-nerd-words-83 = feijão +accent-nerd-words-replace-83 = phaseolus vulgaris + +accent-nerd-words-84 = café +accent-nerd-words-replace-84 = coffea arabica + +accent-nerd-words-85 = cacau +accent-nerd-words-replace-85 = theobroma cacao + +accent-nerd-words-86 = algodão +accent-nerd-words-replace-86 = gossypium hirsutum + +accent-nerd-words-87 = carvalho +accent-nerd-words-replace-87 = quercus robur + +accent-nerd-words-88 = pinheiro +accent-nerd-words-replace-88 = pinus sylvestris + +accent-nerd-words-89 = rosa +accent-nerd-words-replace-89 = rosa rubiginosa + +accent-nerd-words-90 = girassol +accent-nerd-words-replace-90 = helianthus annuus + +accent-nerd-words-91 = margarida +accent-nerd-words-replace-91 = bellis perennis + +accent-nerd-words-92 = cogumelo +accent-nerd-words-replace-92 = agaricus bisporus + +accent-nerd-words-93 = madeira +accent-nerd-words-replace-93 = xylem lignificatus + +accent-nerd-words-94 = papel +accent-nerd-words-replace-94 = celulose refinada + +accent-nerd-words-95 = vidro +accent-nerd-words-replace-95 = sílica fundida + +accent-nerd-words-96 = ouro +accent-nerd-words-replace-96 = aurum + +accent-nerd-words-97 = ferro +accent-nerd-words-replace-97 = ferrum + +accent-nerd-words-98 = prata +accent-nerd-words-replace-98 = argentum + +accent-nerd-words-99 = cobre +accent-nerd-words-replace-99 = cuprum + +accent-nerd-words-100 = diamante +accent-nerd-words-replace-100 = carbono cristalino + +accent-nerd-words-102 = gelo +accent-nerd-words-replace-102 = água cristalizada + +accent-nerd-words-103 = sal +accent-nerd-words-replace-103 = cloreto de sódio + +accent-nerd-words-104 = açúcar +accent-nerd-words-replace-104 = sacarose + +accent-nerd-words-105 = leite +accent-nerd-words-replace-105 = secreção láctea + +accent-nerd-words-106 = ovo +accent-nerd-words-replace-106 = célula reprodutiva encapsulada + +accent-nerd-words-107 = carne +accent-nerd-words-replace-107 = tecido muscular animal + +accent-nerd-words-108 = sangue +accent-nerd-words-replace-108 = fluido hemolinfático diff --git a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml index 320b041c1f4..81d53f47f8a 100644 --- a/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml +++ b/Resources/Prototypes/_Andromeda/Traits/Accents/word_replacements.yml @@ -60,3 +60,52 @@ accent-nerd-words-57: accent-nerd-words-replace-57 accent-nerd-words-58: accent-nerd-words-replace-58 accent-nerd-words-59: accent-nerd-words-replace-59 + accent-nerd-words-60: accent-nerd-words-replace-60 + accent-nerd-words-61: accent-nerd-words-replace-61 + accent-nerd-words-62: accent-nerd-words-replace-62 + accent-nerd-words-63: accent-nerd-words-replace-63 + accent-nerd-words-64: accent-nerd-words-replace-64 + accent-nerd-words-65: accent-nerd-words-replace-65 + accent-nerd-words-66: accent-nerd-words-replace-66 + accent-nerd-words-67: accent-nerd-words-replace-67 + accent-nerd-words-68: accent-nerd-words-replace-68 + accent-nerd-words-69: accent-nerd-words-replace-69 + accent-nerd-words-70: accent-nerd-words-replace-70 + accent-nerd-words-71: accent-nerd-words-replace-71 + accent-nerd-words-72: accent-nerd-words-replace-72 + accent-nerd-words-73: accent-nerd-words-replace-73 + accent-nerd-words-74: accent-nerd-words-replace-74 + accent-nerd-words-75: accent-nerd-words-replace-75 + accent-nerd-words-76: accent-nerd-words-replace-76 + accent-nerd-words-77: accent-nerd-words-replace-77 + accent-nerd-words-78: accent-nerd-words-replace-78 + accent-nerd-words-79: accent-nerd-words-replace-79 + accent-nerd-words-80: accent-nerd-words-replace-80 + accent-nerd-words-81: accent-nerd-words-replace-81 + accent-nerd-words-82: accent-nerd-words-replace-82 + accent-nerd-words-83: accent-nerd-words-replace-83 + accent-nerd-words-84: accent-nerd-words-replace-84 + accent-nerd-words-85: accent-nerd-words-replace-85 + accent-nerd-words-86: accent-nerd-words-replace-86 + accent-nerd-words-87: accent-nerd-words-replace-87 + accent-nerd-words-88: accent-nerd-words-replace-88 + accent-nerd-words-89: accent-nerd-words-replace-89 + accent-nerd-words-90: accent-nerd-words-replace-90 + accent-nerd-words-91: accent-nerd-words-replace-91 + accent-nerd-words-92: accent-nerd-words-replace-92 + accent-nerd-words-93: accent-nerd-words-replace-93 + accent-nerd-words-94: accent-nerd-words-replace-94 + accent-nerd-words-95: accent-nerd-words-replace-95 + accent-nerd-words-96: accent-nerd-words-replace-96 + accent-nerd-words-97: accent-nerd-words-replace-97 + accent-nerd-words-98: accent-nerd-words-replace-98 + accent-nerd-words-99: accent-nerd-words-replace-99 + accent-nerd-words-100: accent-nerd-words-replace-100 + accent-nerd-words-101: accent-nerd-words-replace-101 + accent-nerd-words-102: accent-nerd-words-replace-102 + accent-nerd-words-103: accent-nerd-words-replace-103 + accent-nerd-words-104: accent-nerd-words-replace-104 + accent-nerd-words-105: accent-nerd-words-replace-105 + accent-nerd-words-106: accent-nerd-words-replace-106 + accent-nerd-words-107: accent-nerd-words-replace-107 + accent-nerd-words-108: accent-nerd-words-replace-108 From 4e597fab2f3486bfecb9701def5e20a028be0c50 Mon Sep 17 00:00:00 2001 From: Abigail <89530982+LaryNevesPR@users.noreply.github.com> Date: Mon, 10 Feb 2025 15:40:50 -0300 Subject: [PATCH 6/9] alterado word-36 para ser menos netspeak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tentativa de não trazer muito netspeak pro jogo para quem não souber o que é o sotaque Signed-off-by: Abigail <89530982+LaryNevesPR@users.noreply.github.com> --- Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl index ee87cc96a72..e5523ac1a59 100644 --- a/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl +++ b/Resources/Locale/pt-BR/_Andromeda/accent/nerd.ftl @@ -104,7 +104,7 @@ accent-nerd-words-35 = amigo accent-nerd-words-replace-35 = tchum accent-nerd-words-36 = muito obrigado -accent-nerd-words-replace-36 = muito pogger +accent-nerd-words-replace-36 = agradeço-lhe cordialmente accent-nerd-words-37 = arma laser accent-nerd-words-replace-37 = projector plasmae From 3f11bdd4087583b51eb510d64a9933626ef9d7a9 Mon Sep 17 00:00:00 2001 From: Nicolasfmendesx11 Date: Tue, 11 Feb 2025 14:57:16 -0300 Subject: [PATCH 7/9] Adiciona Capa do Representante da Nanotrasen --- .../Jobs/Command/nanorep.yml | 9 +++++- .../Loadouts/Jobs/Command/nanorep.yml | 15 +++++++++- .../Entities/Clothing/Neck/cloaks.yml | 10 +++++++ .../Neck/Cloaks/rnt.rsi/equipped-NECK.png | Bin 0 -> 964 bytes .../Clothing/Neck/Cloaks/rnt.rsi/icon.png | Bin 0 -> 401 bytes .../Neck/Cloaks/rnt.rsi/inhand-left.png | Bin 0 -> 961 bytes .../Neck/Cloaks/rnt.rsi/inhand-right.png | Bin 0 -> 892 bytes .../Clothing/Neck/Cloaks/rnt.rsi/meta.json | 26 ++++++++++++++++++ 8 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml create mode 100644 Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/equipped-NECK.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/icon.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/inhand-left.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/inhand-right.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/meta.json diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml index 6864346e3fb..ea8c9b37faa 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml @@ -12,4 +12,11 @@ - type: loadout id: LoadoutClothingUniformJumpskirtNanotrasenRepresentative - type: loadout - id: LoadoutClothingUniformJumpsuitNanotrasenRepresentative \ No newline at end of file + id: LoadoutClothingUniformJumpsuitNanotrasenRepresentative + +- type: characterItemGroup + id: LoadoutNanorepNeck + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingNeckCloaksNanotrasenRepresentative diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml index 858c7a65e8a..5ab9e180642 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml @@ -29,6 +29,19 @@ # Id # Neck +- type: loadout + id: LoadoutClothingNeckCloaksNanotrasenRepresentative + category: JobsCommandNanorep + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNanorepNeck + - !type:CharacterJobRequirement + jobs: + - NanotrasenRepresentative + items: + - ClothingNeckCloaksNanotrasenRepresentative # Mask @@ -63,4 +76,4 @@ jobs: - NanotrasenRepresentative items: - - ClothingUniformJumpsuitNanotrasenRepresentative \ No newline at end of file + - ClothingUniformJumpsuitNanotrasenRepresentative diff --git a/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml new file mode 100644 index 00000000000..bba8f5f1872 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCloaksNanotrasenRepresentative + name: Capa do Representante da Nanotrasen + description: Mostre a superioridade de um grande burocrata + components: + - type: Sprite + sprite: _Andromeda/Clothing/Neck/Cloaks/rnt.rsi + - type: StealTarget + stealGroup: HeadCloak diff --git a/Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/equipped-NECK.png b/Resources/Textures/_Andromeda/Clothing/Neck/Cloaks/rnt.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..63d0566efa77ae21fa38718a2a38d872b26ebe5f GIT binary patch literal 964 zcmV;#13UbQP)E1CzM(=)-yh65mu7M1htZo_!aASw|*wdM2 zjmYVuKbi!m>n0I_2HrGHc(1N&aL$EmYb^le3GrELylEQfx(=ihbZxB# zYb_XK008`$B9MJfUDx4X5`o$vqT2o^O{4vG9SqQ55z((!E02iYS{pud&V}|DL$&grN5TAPk(+F9%hK@+GARYtQ>gv^xvU zl2&p!94dgni?t7l_rAAOFBA%eLZMJ76bgmHxgeq+vPGSWbNtEPEc4Tvb5DN8;9P&Q z9*L2$-DVk{y^;EJMg+G>&kJ{(W$-7buPn8$udltV0pJfH=ZFY-UMQafI_Kc|`C09Q zx}h9A5j&QiN`%<28+!8wI&$51|drT=iJdr>|D9eIaQ7F z^l&xJ@ihpsQ8m2ya;c0000Qd`-_evVu-1;>jrDzB98bM~iHRumwQY-G7(&~7Uo1p5(ONr7VkT!u5iCS2;zctl z4$eDeV(ycow8#pu){fWHHnfc~AR;*D;Jt@)4nzbZ3WBbuZ8BFRvNo~(@$RJUb7R`y zu+pfMwgV3rVp8XvCRCXKw*T$pGfNgH>E*b=>pRAr3(3Ja`!z`xAIqG8;!^+s=fgVL zE`eHr-2HBUn~?7Ix7m5WDnR0VSWiSOabR%{uo&QH6*23;<+usoOc2{Y=YU+7f~pV! zU&k!s9 zMN6nLA!-8nwj^A&Mcis_Y|%Enu!!5Q#w*G%W5p-+Yl4*>wk-g#_Yw08nW2j>Oto%L;34FiuIpXY1R>}4>wyXuI|?XHGmr&)yJ zfUAsjK->c2MmivF0dXT8;8!6#^sE^=!lA9h`UOC!2c$jjrh6b{!Tx4Gce2DzxbVUv$nf*PwuIHDzP#g3B=~2~`#WPYndDA_ zBLeJfw3Cdz{|HFj0s!#!_kryR^?>Y)6jxQ%c@eI+qV#gMs@59-Rzede-rQd;g6#ad z{*H1*+3^<8J?}k1d>x?euk-xEAO@zlYu4!=v3jIo7=iyfDnAuIJc4ZUE8LlA#u&7< zx6TQa!<8|v?Qg>rIr(yiP!D+cdIyT4AZ4!ba$<;}CsQH3`?Tr-!Sq&;AjwXjGscjg z@5R9Mwln@ybc5@<4$;FHZhSqZY1;XjozxQox(Bp%Ah+?sBT!XUp)BxauqQrSOR-oa z?sEbaXNyczScC5*Xm$+~#u&`5VN!3bm0NXUo}?pbJYc2EkB^T*DRmA?0I;&iM+Y#K j%(+g9L?V$$BqIC+Jl-}^$`?ddg&HkY!x~M6@(Y>brbTYr!En6@+_!%^U%>+ zL04$kRj^nV61%~#gLr|F+2qBc`dB~eL833rv%->ZT0Vak6T}%wa zl3B$$N2zXnm<`6Cs}#hNS>?C=$@`e5S=L`~RQoB_bXPP0066CmLMT6=ZQDvp2`MEw z=XGm>ZQFsa9;_+=@H`IyD(VgyV9Bgnnd~YHxHF$poOAfs;&{hd>HlL^Cc7YnP(p~% z52~a)vT+*8RTw*(cBCcnFGB|C7N8q4K(_$hkO8^{=!Oi?EkHM9 zfNlZ0Ap>*^&AKkB^Jj!Af<$9nz+}}61l+m_TyZ%ffp`?9_0sEZ~-W$zdNru=jb0> zixl>^mq2jd27u!@th6p~7)JEej)7mfP9zd)dh=MCecdSPvId!vf1_%Z$xDfq0d7+- zlTsGT&btL*w-EF>j>G(O1nxoN%+3zD2MJd5Y=XCSq_e5FF3&I!1VIo)o$wQ!jWZ}c Sgp~jQ0000 Date: Tue, 11 Feb 2025 17:31:26 -0300 Subject: [PATCH 8/9] =?UTF-8?q?Adicionando=20tamb=C3=A9m=20um=20Chap=C3=A9?= =?UTF-8?q?u=20de=20representante=20da=20Nanotrasen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Jobs/Command/nanorep.yml | 7 ++++++ .../Loadouts/Jobs/Command/nanorep.yml | 13 +++++++++++ .../Entities/Clothing/Head/hats.yml | 15 ++++++++++++ .../Entities/Clothing/Neck/cloaks.yml | 4 ++-- .../Hats/rnt.rsi/equipped-HELMET-hamster.png | Bin 0 -> 318 bytes .../Head/Hats/rnt.rsi/equipped-HELMET.png | Bin 0 -> 324 bytes .../Clothing/Head/Hats/rnt.rsi/icon.png | Bin 0 -> 224 bytes .../Clothing/Head/Hats/rnt.rsi/meta.json | 22 ++++++++++++++++++ 8 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 Resources/Prototypes/_Andromeda/Entities/Clothing/Head/hats.yml create mode 100644 Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET-hamster.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/icon.png create mode 100644 Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/meta.json diff --git a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml index ea8c9b37faa..1565598e482 100644 --- a/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml +++ b/Resources/Prototypes/CharacterItemGroups/Jobs/Command/nanorep.yml @@ -20,3 +20,10 @@ items: - type: loadout id: LoadoutClothingNeckCloaksNanotrasenRepresentative + +- type: characterItemGroup + id: LoadoutNanorepHead + maxItems: 1 + items: + - type: loadout + id: LoadoutClothingHeadHatNanotrasenRepresentativecap diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml index 5ab9e180642..da2c0886986 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Command/nanorep.yml @@ -25,6 +25,19 @@ # Gloves # Head +- type: loadout + id: LoadoutClothingHeadHatNanotrasenRepresentativecap + category: JobsCommandNanorep + cost: 0 + exclusive: true + requirements: + - !type:CharacterItemGroupRequirement + group: LoadoutNanorepHead + - !type:CharacterJobRequirement + jobs: + - NanotrasenRepresentative + items: + - ClothingHeadHatNanotrasenRepresentativecap # Id diff --git a/Resources/Prototypes/_Andromeda/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_Andromeda/Entities/Clothing/Head/hats.yml new file mode 100644 index 00000000000..3dfeae80960 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/Entities/Clothing/Head/hats.yml @@ -0,0 +1,15 @@ +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNanotrasenRepresentativecap + name: Chapéu de representante da Nanotrasen + description: Poucos tem a honra de usar. + components: + - type: Sprite + sprite: _Andromeda/Clothing/Head/Hats/rnt.rsi + - type: Clothing + sprite: _Andromeda/Clothing/Head/Hats/rnt.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon + - HamsterWearable diff --git a/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml index bba8f5f1872..4a7d509a736 100644 --- a/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/_Andromeda/Entities/Clothing/Neck/cloaks.yml @@ -1,8 +1,8 @@ - type: entity parent: ClothingNeckBase id: ClothingNeckCloaksNanotrasenRepresentative - name: Capa do Representante da Nanotrasen - description: Mostre a superioridade de um grande burocrata + name: Capa de Representante da Nanotrasen + description: Mostre a superioridade de um grande burocrata. components: - type: Sprite sprite: _Andromeda/Clothing/Neck/Cloaks/rnt.rsi diff --git a/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET-hamster.png b/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET-hamster.png new file mode 100644 index 0000000000000000000000000000000000000000..f692bdb833ffec4775e248940320d4ca25298dc1 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!6a#!hT&1O@)zsAV^z{Cpi@rS9 zOi@vBS%ti!g0iiZqo9BwP*qHywgZsjE(!7r{tpKXUjB@qfWikoT^vIqTHj9FD0D=D z!$th!f}j8S?RJ<C%Z zv|pDJdK1&;FTZc`!b?2@Oj}~M%06UQ1sQdqnnC`8)$Do8n;Tt#o?-BG^>bP0l+XkK DsvLG) literal 0 HcmV?d00001 diff --git a/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET.png b/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..be48a3978b8423a44cf59ec831bf9db15a55c01f GIT binary patch literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!6a#!hT&1O@)zsAV^z{Cpi@rS9 zOi@vBS%ti!g0iiZqo9BwP*qHywgZsjE(!7r{tpKXUjB@qfWpT;T^vIqTHj7P$amO) z!`W9s@$LWm4_>Q06?LzgYP_&vEJ(a?nRmJW2Il|E@(Q&_T-guPHG6mwwQFdseB5o5Of5 z)3XOkjE=5n?g+B=)Ef8p6j<9IYSy%PXsxQi2sZOW@Bwc1wX-EkU842^y~N<@>gTe~ HDWM4fBshEW literal 0 HcmV?d00001 diff --git a/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/icon.png b/Resources/Textures/_Andromeda/Clothing/Head/Hats/rnt.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce31085b270667210e0144122985617f1abb87f8 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyasfUeuF}%dYHDhFdU}`Vnk}o4 z7Zecue=b^4LD|;I5vXLQ(&yDcimN2ZFZe$UFl;)ba~>#~?&;zfV$u6{q9xw}1s)bz z>CI36%lBD| Date: Wed, 12 Feb 2025 15:54:08 -0300 Subject: [PATCH 9/9] Traduzindo o AAC tablet, tive que colocar alguns do codigo do DeltaV em modo comentario para evitar conflito --- .../pt-BR/_Andromeda/phrases/common.ftl | 105 ++++++ .../pt-BR/_Andromeda/phrases/locations.ftl | 23 ++ .../pt-BR/_Andromeda/phrases/species.ftl | 42 +++ .../pt-BR/_Andromeda/phrases/subjects.ftl | 244 +++++++++++++ .../pt-BR/_Andromeda/phrases/threats.ftl | 57 +++ .../DeltaV/QuickPhrases/Common/actions.yml | 140 ++++---- .../DeltaV/QuickPhrases/Common/commands.yml | 160 ++++----- .../DeltaV/QuickPhrases/Common/manners.yml | 150 ++++---- .../DeltaV/QuickPhrases/Common/numbers.yml | 212 +++++------ .../DeltaV/QuickPhrases/Common/pronouns.yml | 170 ++++----- .../QuickPhrases/Common/qualitative.yml | 170 ++++----- .../DeltaV/QuickPhrases/Common/questions.yml | 120 +++---- .../DeltaV/QuickPhrases/Species/animals.yml | 332 +++++++++--------- .../DeltaV/QuickPhrases/Species/crew.yml | 140 ++++---- .../QuickPhrases/Species/generic_species.yml | 110 +++--- .../DeltaV/QuickPhrases/Threats/hazards.yml | 272 +++++++------- .../DeltaV/QuickPhrases/Threats/hostiles.yml | 132 +++---- .../Prototypes/DeltaV/QuickPhrases/base.yml | 172 ++++----- .../QuickPhrases/Common/actions.yml | 70 ++++ .../QuickPhrases/Common/commands.yml | 80 +++++ .../QuickPhrases/Common/manners.yml | 75 ++++ .../QuickPhrases/Common/numbers.yml | 106 ++++++ .../QuickPhrases/Common/pronouns.yml | 85 +++++ .../QuickPhrases/Common/qualitative.yml | 85 +++++ .../QuickPhrases/Common/questions.yml | 60 ++++ .../QuickPhrases/Species/animals.yml | 166 +++++++++ .../_Andromeda/QuickPhrases/Species/crew.yml | 70 ++++ .../QuickPhrases/Species/generic_species.yml | 55 +++ .../QuickPhrases/Threats/hazards.yml | 136 +++++++ .../QuickPhrases/Threats/hostiles.yml | 66 ++++ .../_Andromeda/QuickPhrases/base.yml | 86 +++++ 31 files changed, 2751 insertions(+), 1140 deletions(-) create mode 100644 Resources/Locale/pt-BR/_Andromeda/phrases/common.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/phrases/locations.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/phrases/species.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/phrases/subjects.ftl create mode 100644 Resources/Locale/pt-BR/_Andromeda/phrases/threats.ftl create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/actions.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/commands.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/manners.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/numbers.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/pronouns.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/qualitative.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Common/questions.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Species/animals.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Species/crew.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Species/generic_species.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hazards.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hostiles.yml create mode 100644 Resources/Prototypes/_Andromeda/QuickPhrases/base.yml diff --git a/Resources/Locale/pt-BR/_Andromeda/phrases/common.ftl b/Resources/Locale/pt-BR/_Andromeda/phrases/common.ftl new file mode 100644 index 00000000000..3ba3d3f4afb --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/phrases/common.ftl @@ -0,0 +1,105 @@ +phrase-where = Onde +phrase-who = Quem +phrase-what = O quê +phrase-why = Por quê +phrase-how = Como +phrase-when = Quando +phrase-do-you-have = Você tem +phrase-how-do-i = Como eu +phrase-can-i = Posso +phrase-should-i = Devo +phrase-give-me = Dê +phrase-need = Eu preciso +phrase-want = Eu quero +phrase-cant = Eu não posso +phrase-show = Mostrar +phrase-help = Ajuda +phrase-attack = Atacar +phrase-break = Quebrar +phrase-build = Construir +phrase-heal = Curar +phrase-stop = Pare +phrase-go-away = Vá embora +phrase-leave = Sair +phrase-stay = Ficar +phrase-come-here = Venha aqui +phrase-take = Pegar +phrase-go-to = Ir para +phrase-do-not = Não +phrase-wait = Espere +phrase-go = Vá +phrase-run = Corra +phrase-fix = Consertar +phrase-switch = Trocar +phrase-will = Vai +phrase-hello = Olá +phrase-bye = Adeus +phrase-cya = Até mais +phrase-please = Por favor +phrase-ty = Obrigado +phrase-np = Sem problema +phrase-yw = De nada +phrase-sorry = Desculpe +phrase-dw = Não se preocupe +phrase-yes = Sim +phrase-no = Não +phrase-maybe = Talvez +phrase-kinda = Mais ou menos +phrase-i = Eu +phrase-you = Você +phrase-someone = Alguém +phrase-something = Algo +phrase-he = Ele +phrase-she = Ela +phrase-they = Eles +phrase-it = Isso +phrase-everyone = Todos +phrase-no-one = Ninguém +phrase-anyone = Qualquer um +phrase-me = Me +phrase-more = Mais +phrase-less = Menos +phrase-all = Tudo +phrase-nothing = Nada +phrase-most = A maioria +phrase-some = Alguns +phrase-many = Muitos +phrase-few = Poucos +phrase-single = Único +phrase-too-much = Demais +phrase-not-enough = Não o suficiente +phrase-good = Bom +phrase-bad = Ruim +phrase-ok = Ok +phrase-number1 = 1 +phrase-number2 = 2 +phrase-number3 = 3 +phrase-number4 = 4 +phrase-number5 = 5 +phrase-number6 = 6 +phrase-number7 = 7 +phrase-number8 = 8 +phrase-number9 = 9 +phrase-number0 = 0 +phrase-ten = dez +phrase-hundred = cem +phrase-thousand = mil +phrase-million = milhão +phrase-billion = bilhão +phrase-stack = pilha +phrase-hour = hora +phrase-minute = minuto +phrase-second = segundo +phrase-i-am = Eu sou +phrase-you-are = Você é +phrase-mine = Meu +phrase-yours = Seu +phrase-on = Ligado +phrase-off = Desligado +phrase-day = dia +phrase-which = Qual +phrase-not = Não +phrase-call = Chamar +phrase-this = Isto +phrase-actiondrink = Beber +phrase-know = Saber diff --git a/Resources/Locale/pt-BR/_Andromeda/phrases/locations.ftl b/Resources/Locale/pt-BR/_Andromeda/phrases/locations.ftl new file mode 100644 index 00000000000..da82386d682 --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/phrases/locations.ftl @@ -0,0 +1,23 @@ +phrase-location-ats = ATS +phrase-location-shipyard = Estaleiro +phrase-location-boxing-ring = Ringue de Boxe +phrase-location-outpost = Posto Avançado +phrase-location-escape-shuttle = Nave de Fuga +phrase-location-shuttle = Nave +phrase-location-maintenance = Manutenção + +# relativo +phrase-location-near = perto +phrase-location-far = longe +phrase-location-inside = dentro +phrase-location-outside = fora + +## bússola +phrase-location-north = norte +phrase-location-east = leste +phrase-location-south = sul +phrase-location-west = oeste +phrase-location-northeast = nordeste +phrase-location-southeast = sudeste +phrase-location-southwest = sudoeste +phrase-location-northwest = noroeste diff --git a/Resources/Locale/pt-BR/_Andromeda/phrases/species.ftl b/Resources/Locale/pt-BR/_Andromeda/phrases/species.ftl new file mode 100644 index 00000000000..d05554ece5f --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/phrases/species.ftl @@ -0,0 +1,42 @@ +phrase-species-dog = cachorro +phrase-species-cat = gato +phrase-species-opossum = gambá +phrase-species-lizard = lagarto +phrase-species-bat = morcego +phrase-species-slime = slime +phrase-species-mouse = rato +phrase-species-mothroach = mariposa-barata +phrase-species-cockroach = barata +phrase-species-spider = aranha +phrase-species-bird = pássaro +phrase-species-parrot = papagaio +phrase-species-snake = cobra +phrase-species-pig = porco +phrase-species-monkey = macaco +phrase-species-kobold = kobold +phrase-species-ferret = furão +phrase-species-carp = carpa +phrase-species-xeno = xeno +phrase-species-hamster = hamster +phrase-species-ifrit = ifrit +phrase-species-raccoon = guaxinim +phrase-species-rouny = rouny +phrase-species-fox = raposa +phrase-species-crab = caranguejo +phrase-species-kangaroo = canguru +phrase-species-cow = vaca +phrase-species-duck = pato +phrase-species-bear = urso +phrase-species-penguin = pinguim +phrase-species-goat = cabra +phrase-species-person = pessoa +phrase-species-animal = animal +phrase-species-corpse = cadáver +phrase-species-robot = robô +phrase-species-alien = alienígena +phrase-species-monster = monstro +phrase-species-ghost = fantasma +phrase-species-pest = praga +phrase-species-insect = inseto +phrase-species-pet = mascote +phrase-species-chicken = galinha diff --git a/Resources/Locale/pt-BR/_Andromeda/phrases/subjects.ftl b/Resources/Locale/pt-BR/_Andromeda/phrases/subjects.ftl new file mode 100644 index 00000000000..16cf713877a --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/phrases/subjects.ftl @@ -0,0 +1,244 @@ +phrase-pen = caneta +phrase-paper = papel +phrase-wrench = chave inglesa +phrase-crowbar = pé-de-cabra +phrase-screwdriver = chave de fenda +phrase-wirecutter = alicate de corte +phrase-welding-tool = ferramenta de soldagem +phrase-welding-mask = máscara de soldagem +phrase-toolbox = caixa de ferramentas +phrase-beaker = béquer +phrase-radio = rádio +phrase-uniform = uniforme +phrase-suit-sensors = sensores do traje +phrase-internals = internos +phrase-gas-tank = tanque de gás +phrase-multitool = multiferramenta +phrase-lathe = torno +phrase-computer = computador +phrase-door = porta +phrase-firelock = trava de incêndio +phrase-space = espaço +phrase-tool = ferramenta +phrase-weapon = arma +phrase-armor = armadura +phrase-brain = cérebro +phrase-drink = bebida +phrase-food = comida +phrase-water = água +phrase-signature = assinatura +phrase-belt = cinto +phrase-hardsuit = traje blindado +phrase-light = luz +phrase-bag = bolsa +phrase-steel = aço +phrase-plastic = plástico +phrase-plasteel = plasteel +phrase-plasma = plasma +phrase-uranium = urânio +phrase-bananium = banânio +phrase-wood = madeira +phrase-cloth = tecido +phrase-cardboard = papelão +phrase-gold = ouro +phrase-glass = vidro +phrase-silver = prata +phrase-bluespace = bluespace +phrase-access = acesso +phrase-encryption-key = chave de criptografia +phrase-id-card = cartão de identificação +phrase-pda = PDA +phrase-stamp = carimbo +phrase-implant = implante +phrase-ame = AME +phrase-apc = APC +phrase-canister = cilindro +phrase-compressed-matter = matéria comprimida +phrase-frezon = frezon +phrase-gravity = gravidade +phrase-hvwire = cabo HV +phrase-lvwire = cabo LV +phrase-mvwire = cabo MV +phrase-network-configurator = configurador de rede +phrase-nitrogen = nitrogênio +phrase-oxygen = oxigênio +phrase-rcd = RCD +phrase-rtg = RTG +phrase-scrubber = purificador +phrase-singulo = singularidade +phrase-smes = SMES +phrase-substation = subestação +phrase-tray-scanner = scanner T-ray +phrase-teg = TEG +phrase-tesla = tesla +phrase-tritium = trítio +phrase-magboots = botas magnéticas +phrase-holofan = holofã +phrase-anomaly = anomalia +phrase-ape = A.P.E. +phrase-anomaly-vessel = recipiente de anomalia +phrase-artifact = artefato +phrase-artifact-container = recipiente de artefato +phrase-robotics = robótica +phrase-circuit-board = placa de circuito +phrase-research = pesquisa +phrase-research-console = computador de P&D +phrase-oracle = Oráculo +phrase-sophie = Sophie +phrase-glimmer = brilho +phrase-psionic = psíquico +phrase-lotophagol-oil = óleo de lotophagol +phrase-mindbreak-phase = colapso mental +phrase-protolathe = protolathe +phrase-circuit-imprinter = impressora de circuitos +phrase-bounty = recompensa +phrase-cargo-shuttle = nave de carga +phrase-crate = caixote +phrase-mail = correio +phrase-order = pedido +phrase-ore-processor = processador de minério +phrase-request = requisição +phrase-spesos = spesos +phrase-restock = reabastecimento +phrase-fulton = fulton +phrase-jetpack = mochila a jato +phrase-crusher = triturador +phrase-pka = acelerador proto-cinético +phrase-pickaxe = picareta +phrase-drill = furadeira +phrase-ore-bag = bolsa de minério +phrase-salv-magnet = ímã de salvamento +phrase-expedition = expedição +phrase-topical = tópico +phrase-topical-brute-pack = pacote de primeiros socorros +phrase-topical-gauze = gaze +phrase-topical-bloodpack = bolsa de sangue +phrase-defibrillator = desfibrilador +phrase-cryopod = criocápsula +phrase-stasis-bed = leito de estase +phrase-first-aid-kit = kit de primeiros socorros +phrase-clone = clone +phrase-cloning-pod = cápsula de clonagem +phrase-biomass = biomassa +phrase-syringe = seringa +phrase-pill = pílula +phrase-alive = vivo +phrase-crit = crítico +phrase-dead = morto +phrase-healthy = saudável +phrase-handcuffs = algemas +phrase-stun-baton = bastão de choque +phrase-disabler = desativador +phrase-flash = lanterna de flash +phrase-flashbang = granada de flash +phrase-arrest = prisão +phrase-warrant = mandado +phrase-wanted = procurado +phrase-search = busca +phrase-detain = deter +phrase-suspect = suspeito +phrase-forensic-scanner = scanner forense +phrase-forensic-pad = bloco forense +phrase-log-probe = LogProbe +phrase-meat = carne +phrase-flour = farinha +phrase-rice = arroz +phrase-dough = massa +phrase-bread = pão +phrase-milk = leite +phrase-egg = ovo +phrase-wheat = trigo +phrase-vegetable = vegetal +phrase-fruit = fruta +phrase-sugar = açúcar +phrase-alcohol = álcool +phrase-non-alcoholic = não alcoólico +phrase-juice = suco +phrase-mop = esfregão +phrase-bucket = balde +phrase-space-cleaner = limpador espacial +phrase-soap = sabão +phrase-trash = lixo +phrase-stage = palco +phrase-seed = semente +phrase-plant = planta +phrase-mutagen = mutágeno +phrase-robust = colheita robusta +phrase-weed = erva daninha +phrase-knife = faca +phrase-witness = testemunha +phrase-evidence = evidência +phrase-case = caso +phrase-sue = processar +phrase-courtroom-timer = cronômetro do tribunal +phrase-bailiff = oficial de justiça +phrase-sentence = sentença +phrase-defendant = réu +phrase-plaintiff = autor +phrase-victim = vítima +phrase-defense = defesa +phrase-prosecution = acusação +phrase-statement = declaração +phrase-gavel = martelo do juiz +phrase-charge = acusação +phrase-guilty = culpado +phrase-not-guilty = inocente +phrase-objection = Objeção +phrase-request-time = Preciso de mais tempo +phrase-your-honor = Meritíssimo +phrase-microwave = micro-ondas +phrase-grill = grelha +phrase-iron = ferro +phrase-coal = carvão +phrase-quartz = quartzo +phrase-salt = sal +phrase-artifact-fragment = fragmento de artefato +phrase-bluespace-crystal = cristal de bluespace +phrase-diamond = diamante +phrase-chemicals = produtos químicos +phrase-box = caixa +phrase-locker = armário +phrase-machine = máquina +phrase-blood = sangue +phrase-nukedisk = disco nuclear +phrase-pinpointer = localizador +phrase-law = lei +phrase-chassis = chassi +phrase-engi-on = ligado +phrase-engi-off = desligado +phrase-gas-analyzer = analisador de gás +phrase-planetside = superfície planetária +phrase-holopad = holopainel +phrase-upgrade = upgrade + +# cores +phrase-color-red = vermelho +phrase-color-orange = laranja +phrase-color-yellow = amarelo +phrase-color-green = verde +phrase-color-blue = azul +phrase-color-purple = roxo +phrase-color-pink = rosa +phrase-color-black = preto +phrase-color-white = branco +phrase-color-bright = brilhante +phrase-color-light = claro +phrase-color-dark = escuro +phrase-color-rainbow = arco-íris +phrase-color-brown = marrom +phrase-color-gray = cinza + +# sabores +phrase-sweet = doce +phrase-sour = azedo +phrase-spicy = picante +phrase-savory = salgado +phrase-bitter = amargo + +# plantas +phrase-tomato = tomate +phrase-potato = batata +phrase-onion = cebola +phrase-aloe = babosa +phrase-poppy = papoula +phrase-galaxythistle = cardo-galáxia diff --git a/Resources/Locale/pt-BR/_Andromeda/phrases/threats.ftl b/Resources/Locale/pt-BR/_Andromeda/phrases/threats.ftl new file mode 100644 index 00000000000..49f9e459625 --- /dev/null +++ b/Resources/Locale/pt-BR/_Andromeda/phrases/threats.ftl @@ -0,0 +1,57 @@ +phrase-hazard-space = expulso para o espaço +phrase-hazard-low-presure = baixa pressão +phrase-hazard-high-presure = alta pressão +phrase-hazard-heat = superaquecimento +phrase-hazard-cold = frio +phrase-hazard-gas-leak = vazamento de gás +phrase-hazard-explosion = explosão +phrase-hazard-radiation = radiação +phrase-hazard-structure-damage = dano estrutural +phrase-hazard-chemical-spill = vazamento químico +phrase-hazard-shock = risco de choque +phrase-hazard = perigo +phrase-hazard-meteors = meteoro +phrase-hazard-poison = veneno +phrase-hazard-fire = fogo +phrase-hazard-power-outage = queda de energia +phrase-hazard-low = pouca energia +phrase-hazard-infection = infecção +phrase-hazard-viral-threat = ameaça viral +phrase-hazard-broken-equipment = equipamento quebrado +phrase-hostile-enemy = inimigo +phrase-hostile = hostil +phrase-hostile-attacker = atacante +phrase-hostile-lifeform = forma de vida perigosa +phrase-hostile-entity = entidade +phrase-hostile-bomb = bomba +phrase-hostile-criminal = criminoso +phrase-hostile-intruder = intruso +phrase-hostile-infiltrator = infiltrador +phrase-hostile-fugitive = fugitivo +phrase-hostile-weapon = arma +phrase-hostile-gun = arma de fogo +phrase-safety-safe = seguro +phrase-safety-in-danger = em perigo +phrase-safety-injured = ferido +phrase-safety-dying = morrendo +phrase-safety-critical = crítico +phrase-safety-bleeding = sangrando +phrase-safety-dead = morto +phrase-safety-alive = vivo +phrase-safety-trustworthy = confiável +phrase-safety-escape = fuga +phrase-safety-leaving = saindo +phrase-safety-need = necessidade +phrase-safety-rescue = resgate +phrase-safety-dangerous = perigoso +phrase-safety-hazardous = arriscado +phrase-safety-here-to-help = Aqui para ajudar +phrase-safety-how-to-help = Como posso ajudar? +phrase-safety-evac = Vamos evacuar +phrase-safety-not = não +phrase-safety-lost = perdido +phrase-hazard-hot = quente +phrase-hazard-freezing = congelando +phrase-hazard-burning = pegando fogo +phrase-hazard-bad-temperature = temperatura inadequada +phrase-hazard-darkness = escuridão diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/actions.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/actions.yml index 2a8dc43a1e0..8d8b6587190 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/actions.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/actions.yml @@ -1,70 +1,70 @@ -- type: quickPhrase - id: BaseActionPhrase - parent: BaseCommonPhrase - group: Actions - abstract: true - -- type: quickPhrase - id: CallPhrase - parent: BaseActionPhrase - text: phrase-call - -- type: quickPhrase - id: DrinkActionPhrase - parent: BaseActionPhrase - text: phrase-actiondrink - -- type: quickPhrase - id: ShowMePhrase - parent: BaseActionPhrase - text: phrase-show - -- type: quickPhrase - id: HelpPhrase - parent: BaseActionPhrase - text: phrase-help - -- type: quickPhrase - id: AttackPhrase - parent: BaseActionPhrase - text: phrase-attack - -- type: quickPhrase - id: BreakPhrase - parent: BaseActionPhrase - text: phrase-break - -- type: quickPhrase - id: BuildPhrase - parent: BaseActionPhrase - text: phrase-build - -- type: quickPhrase - id: HealPhrase - parent: BaseActionPhrase - text: phrase-heal - -- type: quickPhrase - id: RunPhrase - parent: BaseActionPhrase - text: phrase-run - -- type: quickPhrase - id: GoPhrase - parent: BaseActionPhrase - text: phrase-go - -- type: quickPhrase - id: FixPhrase - parent: BaseActionPhrase - text: phrase-fix - -- type: quickPhrase - id: SwitchPhrase - parent: BaseActionPhrase - text: phrase-switch - -- type: quickPhrase - id: KnowPhrase - parent: BaseActionPhrase - text: phrase-know +#- type: quickPhrase +# id: BaseActionPhrase +# parent: BaseCommonPhrase +# group: Actions +# abstract: true +# +#- type: quickPhrase +# id: CallPhrase +# parent: BaseActionPhrase +# text: phrase-call +# +#- type: quickPhrase +# id: DrinkActionPhrase +# parent: BaseActionPhrase +# text: phrase-actiondrink +# +#- type: quickPhrase +# id: ShowMePhrase +# parent: BaseActionPhrase +# text: phrase-show +# +#- type: quickPhrase +# id: HelpPhrase +# parent: BaseActionPhrase +# text: phrase-help +# +#- type: quickPhrase +# id: AttackPhrase +# parent: BaseActionPhrase +# text: phrase-attack +# +#- type: quickPhrase +# id: BreakPhrase +# parent: BaseActionPhrase +# text: phrase-break +# +#- type: quickPhrase +# id: BuildPhrase +# parent: BaseActionPhrase +# text: phrase-build +# +#- type: quickPhrase +# id: HealPhrase +# parent: BaseActionPhrase +# text: phrase-heal +# +#- type: quickPhrase +# id: RunPhrase +# parent: BaseActionPhrase +# text: phrase-run +# +#- type: quickPhrase +# id: GoPhrase +# parent: BaseActionPhrase +# text: phrase-go +# +#- type: quickPhrase +# id: FixPhrase +# parent: BaseActionPhrase +# text: phrase-fix +# +#- type: quickPhrase +# id: SwitchPhrase +# parent: BaseActionPhrase +# text: phrase-switch +# +#- type: quickPhrase +# id: KnowPhrase +# parent: BaseActionPhrase +# text: phrase-know diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/commands.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/commands.yml index e038a2e18fa..3da17ec1350 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/commands.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/commands.yml @@ -1,80 +1,80 @@ -- type: quickPhrase - id: BaseImperativePhrase - parent: BaseCommonPhrase - group: Commands and Requests - abstract: true - -- type: quickPhrase - id: GiveMePhrase - parent: BaseImperativePhrase - text: phrase-give-me - -- type: quickPhrase - id: NeedPhrase - parent: BaseImperativePhrase - text: phrase-need - -- type: quickPhrase - id: WantPhrase - parent: BaseImperativePhrase - text: phrase-want - -- type: quickPhrase - id: CantPhrase - parent: BaseImperativePhrase - text: phrase-cant - -- type: quickPhrase - id: GoAwayPhrase - parent: BaseImperativePhrase - text: phrase-go-away - -- type: quickPhrase - id: ComeHerePhrase - parent: BaseImperativePhrase - text: phrase-come-here - -- type: quickPhrase - id: GoToPhrase - parent: BaseImperativePhrase - text: phrase-go-to - -- type: quickPhrase - id: DoNotPhrase - parent: BaseImperativePhrase - text: phrase-do-not - -- type: quickPhrase - id: WaitPhrase - parent: BaseImperativePhrase - text: phrase-wait - -- type: quickPhrase - id: WillPhrase - parent: BaseImperativePhrase - text: phrase-will - -- type: quickPhrase - id: ThisPhrase - parent: BaseImperativePhrase - text: phrase-this - -- type: quickPhrase - id: TakePhrase - parent: BaseImperativePhrase - text: phrase-take - -- type: quickPhrase - id: LeavePhrase - parent: BaseImperativePhrase - text: phrase-leave - -- type: quickPhrase - id: StayPhrase - parent: BaseImperativePhrase - text: phrase-stay - -- type: quickPhrase - id: StopPhrase - parent: BaseImperativePhrase - text: phrase-stop +#- type: quickPhrase +# id: BaseImperativePhrase +# parent: BaseCommonPhrase +# group: Commands and Requests +# abstract: true +# +#- type: quickPhrase +# id: GiveMePhrase +# parent: BaseImperativePhrase +# text: phrase-give-me +# +#- type: quickPhrase +# id: NeedPhrase +# parent: BaseImperativePhrase +# text: phrase-need +# +#- type: quickPhrase +# id: WantPhrase +# parent: BaseImperativePhrase +# text: phrase-want +# +#- type: quickPhrase +# id: CantPhrase +# parent: BaseImperativePhrase +# text: phrase-cant +# +#- type: quickPhrase +# id: GoAwayPhrase +# parent: BaseImperativePhrase +# text: phrase-go-away +# +#- type: quickPhrase +# id: ComeHerePhrase +# parent: BaseImperativePhrase +# text: phrase-come-here +# +#- type: quickPhrase +# id: GoToPhrase +# parent: BaseImperativePhrase +# text: phrase-go-to +# +#- type: quickPhrase +# id: DoNotPhrase +# parent: BaseImperativePhrase +# text: phrase-do-not +# +#- type: quickPhrase +# id: WaitPhrase +# parent: BaseImperativePhrase +# text: phrase-wait +# +#- type: quickPhrase +# id: WillPhrase +# parent: BaseImperativePhrase +# text: phrase-will +# +#- type: quickPhrase +# id: ThisPhrase +# parent: BaseImperativePhrase +# text: phrase-this +# +#- type: quickPhrase +# id: TakePhrase +# parent: BaseImperativePhrase +# text: phrase-take +# +#- type: quickPhrase +# id: LeavePhrase +# parent: BaseImperativePhrase +# text: phrase-leave +# +#- type: quickPhrase +# id: StayPhrase +# parent: BaseImperativePhrase +# text: phrase-stay +# +#- type: quickPhrase +# id: StopPhrase +# parent: BaseImperativePhrase +# text: phrase-stop diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/manners.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/manners.yml index 4d06d26ee99..eef85b992f3 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/manners.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/manners.yml @@ -1,75 +1,75 @@ -- type: quickPhrase - id: BaseMannerPhrase - parent: BaseCommonPhrase - group: Manners - abstract: true - -- type: quickPhrase - id: HelloPhrase - parent: BaseMannerPhrase - text: phrase-hello - -- type: quickPhrase - id: ByePhrase - parent: BaseMannerPhrase - text: phrase-bye - -- type: quickPhrase - id: CyaPhrase - parent: BaseMannerPhrase - text: phrase-cya - -- type: quickPhrase - id: PleasePhrase - parent: BaseMannerPhrase - text: phrase-please - -- type: quickPhrase - id: TyPhrase - parent: BaseMannerPhrase - text: phrase-ty - -- type: quickPhrase - id: NpPhrase - parent: BaseMannerPhrase - text: phrase-np - -- type: quickPhrase - id: YwPhrase - parent: BaseMannerPhrase - text: phrase-yw - -- type: quickPhrase - id: SorryPhrase - parent: BaseMannerPhrase - text: phrase-sorry - -- type: quickPhrase - id: DwPhrase - parent: BaseMannerPhrase - text: phrase-dw - -- type: quickPhrase - id: YesPhrase - parent: BaseMannerPhrase - text: phrase-yes - -- type: quickPhrase - id: NoPhrase - parent: BaseMannerPhrase - text: phrase-no - -- type: quickPhrase - id: MaybePhrase - parent: BaseMannerPhrase - text: phrase-maybe - -- type: quickPhrase - id: OkPhrase - parent: BaseMannerPhrase - text: phrase-ok - -- type: quickPhrase - id: KindaPhrase - parent: BaseMannerPhrase - text: phrase-kinda +#- type: quickPhrase +# id: BaseMannerPhrase +# parent: BaseCommonPhrase +# group: Manners +# abstract: true +# +#- type: quickPhrase +# id: HelloPhrase +# parent: BaseMannerPhrase +# text: phrase-hello +# +#- type: quickPhrase +# id: ByePhrase +# parent: BaseMannerPhrase +# text: phrase-bye +# +#- type: quickPhrase +# id: CyaPhrase +# parent: BaseMannerPhrase +# text: phrase-cya +# +#- type: quickPhrase +# id: PleasePhrase +# parent: BaseMannerPhrase +# text: phrase-please +# +#- type: quickPhrase +# id: TyPhrase +# parent: BaseMannerPhrase +# text: phrase-ty +# +#- type: quickPhrase +# id: NpPhrase +# parent: BaseMannerPhrase +# text: phrase-np +# +#- type: quickPhrase +# id: YwPhrase +# parent: BaseMannerPhrase +# text: phrase-yw +# +#- type: quickPhrase +# id: SorryPhrase +# parent: BaseMannerPhrase +# text: phrase-sorry +# +#- type: quickPhrase +# id: DwPhrase +# parent: BaseMannerPhrase +# text: phrase-dw +# +#- type: quickPhrase +# id: YesPhrase +# parent: BaseMannerPhrase +# text: phrase-yes +# +#- type: quickPhrase +# id: NoPhrase +# parent: BaseMannerPhrase +# text: phrase-no +# +#- type: quickPhrase +# id: MaybePhrase +# parent: BaseMannerPhrase +# text: phrase-maybe +# +#- type: quickPhrase +# id: OkPhrase +# parent: BaseMannerPhrase +# text: phrase-ok +# +#- type: quickPhrase +# id: KindaPhrase +# parent: BaseMannerPhrase +# text: phrase-kinda diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/numbers.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/numbers.yml index 832cbdfde21..26a0353b762 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/numbers.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/numbers.yml @@ -1,106 +1,106 @@ -- type: quickPhrase - id: BaseNumberPhrase - parent: BaseCommonPhrase - group: Numbers and Units - abstract: true - -- type: quickPhrase - id: Number1Phrase - parent: BaseNumberPhrase - text: phrase-number1 - -- type: quickPhrase - id: Number2Phrase - parent: BaseNumberPhrase - text: phrase-number2 - -- type: quickPhrase - id: Number3Phrase - parent: BaseNumberPhrase - text: phrase-number3 - -- type: quickPhrase - id: Number4Phrase - parent: BaseNumberPhrase - text: phrase-number4 - -- type: quickPhrase - id: Number5Phrase - parent: BaseNumberPhrase - text: phrase-number5 - -- type: quickPhrase - id: Number6Phrase - parent: BaseNumberPhrase - text: phrase-number6 - -- type: quickPhrase - id: Number7Phrase - parent: BaseNumberPhrase - text: phrase-number7 - -- type: quickPhrase - id: Number8Phrase - parent: BaseNumberPhrase - text: phrase-number8 - -- type: quickPhrase - id: Number9Phrase - parent: BaseNumberPhrase - text: phrase-number9 - -- type: quickPhrase - id: Number0Phrase - parent: BaseNumberPhrase - text: phrase-number0 - -- type: quickPhrase - id: TenPhrase - parent: BaseNumberPhrase - text: phrase-ten - -- type: quickPhrase - id: HundredPhrase - parent: BaseNumberPhrase - text: phrase-hundred - -- type: quickPhrase - id: ThousandPhrase - parent: BaseNumberPhrase - text: phrase-thousand - -- type: quickPhrase - id: MillionPhrase - parent: BaseNumberPhrase - text: phrase-million - -- type: quickPhrase - id: BillionPhrase - parent: BaseNumberPhrase - text: phrase-billion - -- type: quickPhrase - id: StackPhrase - parent: BaseNumberPhrase - text: phrase-stack - -- type: quickPhrase - id: HourPhrase - parent: BaseNumberPhrase - text: phrase-hour - -- type: quickPhrase - id: MinutePhrase - parent: BaseNumberPhrase - text: phrase-minute - -- type: quickPhrase - id: SecondPhrase - parent: BaseNumberPhrase - text: phrase-second - -- type: quickPhrase - id: DayPhrase - parent: BaseNumberPhrase - text: phrase-day - +#- type: quickPhrase +# id: BaseNumberPhrase +# parent: BaseCommonPhrase +# group: Numbers and Units +# abstract: true +# +#- type: quickPhrase +# id: Number1Phrase +# parent: BaseNumberPhrase +# text: phrase-number1 +# +#- type: quickPhrase +# id: Number2Phrase +# parent: BaseNumberPhrase +# text: phrase-number2 +# +#- type: quickPhrase +# id: Number3Phrase +# parent: BaseNumberPhrase +# text: phrase-number3 +# +#- type: quickPhrase +# id: Number4Phrase +# parent: BaseNumberPhrase +# text: phrase-number4 +# +#- type: quickPhrase +# id: Number5Phrase +# parent: BaseNumberPhrase +# text: phrase-number5 +# +#- type: quickPhrase +# id: Number6Phrase +# parent: BaseNumberPhrase +# text: phrase-number6 +# +#- type: quickPhrase +# id: Number7Phrase +# parent: BaseNumberPhrase +# text: phrase-number7 +# +#- type: quickPhrase +# id: Number8Phrase +# parent: BaseNumberPhrase +# text: phrase-number8 +# +#- type: quickPhrase +# id: Number9Phrase +# parent: BaseNumberPhrase +# text: phrase-number9 +# +#- type: quickPhrase +# id: Number0Phrase +# parent: BaseNumberPhrase +# text: phrase-number0 +# +#- type: quickPhrase +# id: TenPhrase +# parent: BaseNumberPhrase +# text: phrase-ten +# +#- type: quickPhrase +# id: HundredPhrase +# parent: BaseNumberPhrase +# text: phrase-hundred +# +#- type: quickPhrase +# id: ThousandPhrase +# parent: BaseNumberPhrase +# text: phrase-thousand +# +#- type: quickPhrase +# id: MillionPhrase +# parent: BaseNumberPhrase +# text: phrase-million +# +#- type: quickPhrase +# id: BillionPhrase +# parent: BaseNumberPhrase +# text: phrase-billion +# +#- type: quickPhrase +# id: StackPhrase +# parent: BaseNumberPhrase +# text: phrase-stack +# +#- type: quickPhrase +# id: HourPhrase +# parent: BaseNumberPhrase +# text: phrase-hour +# +#- type: quickPhrase +# id: MinutePhrase +# parent: BaseNumberPhrase +# text: phrase-minute +# +#- type: quickPhrase +# id: SecondPhrase +# parent: BaseNumberPhrase +# text: phrase-second +# +#- type: quickPhrase +# id: DayPhrase +# parent: BaseNumberPhrase +# text: phrase-day +# diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/pronouns.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/pronouns.yml index 683b48829d0..1d6f9350f30 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/pronouns.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/pronouns.yml @@ -1,85 +1,85 @@ -- type: quickPhrase - id: BaseNounsPhrase - parent: BaseCommonPhrase - group: Nouns and Pronouns - abstract: true - -- type: quickPhrase - id: IPhrase - parent: BaseNounsPhrase - text: phrase-i - -- type: quickPhrase - id: YouPhrase - parent: BaseNounsPhrase - text: phrase-you - -- type: quickPhrase - id: SomeonePhrase - parent: BaseNounsPhrase - text: phrase-someone - -- type: quickPhrase - id: SomethingPhrase - parent: BaseNounsPhrase - text: phrase-something - -- type: quickPhrase - id: HePhrase - parent: BaseNounsPhrase - text: phrase-he - -- type: quickPhrase - id: ShePhrase - parent: BaseNounsPhrase - text: phrase-she - -- type: quickPhrase - id: TheyPhrase - parent: BaseNounsPhrase - text: phrase-they - -- type: quickPhrase - id: ItPhrase - parent: BaseNounsPhrase - text: phrase-it - -- type: quickPhrase - id: EveryonePhrase - parent: BaseNounsPhrase - text: phrase-everyone - -- type: quickPhrase - id: NoOnePhrase - parent: BaseNounsPhrase - text: phrase-no-one - -- type: quickPhrase - id: AnyonePhrase - parent: BaseNounsPhrase - text: phrase-anyone - -- type: quickPhrase - id: MePhrase - parent: BaseNounsPhrase - text: phrase-me - -- type: quickPhrase - id: IAmPhrase - parent: BaseNounsPhrase - text: phrase-i-am - -- type: quickPhrase - id: YouArePhrase - parent: BaseNounsPhrase - text: phrase-you-are - -- type: quickPhrase - id: MinePhrase - parent: BaseNounsPhrase - text: phrase-mine - -- type: quickPhrase - id: YoursPhrase - parent: BaseNounsPhrase - text: phrase-yours +#- type: quickPhrase +# id: BaseNounsPhrase +# parent: BaseCommonPhrase +# group: Nouns and Pronouns +# abstract: true +# +#- type: quickPhrase +# id: IPhrase +# parent: BaseNounsPhrase +# text: phrase-i +# +#- type: quickPhrase +# id: YouPhrase +# parent: BaseNounsPhrase +# text: phrase-you +# +#- type: quickPhrase +# id: SomeonePhrase +# parent: BaseNounsPhrase +# text: phrase-someone +# +#- type: quickPhrase +# id: SomethingPhrase +# parent: BaseNounsPhrase +# text: phrase-something +# +#- type: quickPhrase +# id: HePhrase +# parent: BaseNounsPhrase +# text: phrase-he +# +#- type: quickPhrase +# id: ShePhrase +# parent: BaseNounsPhrase +# text: phrase-she +# +#- type: quickPhrase +# id: TheyPhrase +# parent: BaseNounsPhrase +# text: phrase-they +# +#- type: quickPhrase +# id: ItPhrase +# parent: BaseNounsPhrase +# text: phrase-it +# +#- type: quickPhrase +# id: EveryonePhrase +# parent: BaseNounsPhrase +# text: phrase-everyone +# +#- type: quickPhrase +# id: NoOnePhrase +# parent: BaseNounsPhrase +# text: phrase-no-one +# +#- type: quickPhrase +# id: AnyonePhrase +# parent: BaseNounsPhrase +# text: phrase-anyone +# +#- type: quickPhrase +# id: MePhrase +# parent: BaseNounsPhrase +# text: phrase-me +# +#- type: quickPhrase +# id: IAmPhrase +# parent: BaseNounsPhrase +# text: phrase-i-am +# +#- type: quickPhrase +# id: YouArePhrase +# parent: BaseNounsPhrase +# text: phrase-you-are +# +#- type: quickPhrase +# id: MinePhrase +# parent: BaseNounsPhrase +# text: phrase-mine +# +#- type: quickPhrase +# id: YoursPhrase +# parent: BaseNounsPhrase +# text: phrase-yours diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/qualitative.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/qualitative.yml index e8a0f80ac58..600c31dba95 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/qualitative.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/qualitative.yml @@ -1,85 +1,85 @@ -- type: quickPhrase - id: BaseQualitativePhrase - parent: BaseCommonPhrase - group: Quantity and Quality - abstract: true - -- type: quickPhrase - id: MorePhrase - parent: BaseQualitativePhrase - text: phrase-more - -- type: quickPhrase - id: LessPhrase - parent: BaseQualitativePhrase - text: phrase-less - -- type: quickPhrase - id: AllPhrase - parent: BaseQualitativePhrase - text: phrase-all - -- type: quickPhrase - id: NothingPhrase - parent: BaseQualitativePhrase - text: phrase-nothing - -- type: quickPhrase - id: MostPhrase - parent: BaseQualitativePhrase - text: phrase-most - -- type: quickPhrase - id: SomePhrase - parent: BaseQualitativePhrase - text: phrase-some - -- type: quickPhrase - id: ManyPhrase - parent: BaseQualitativePhrase - text: phrase-many - -- type: quickPhrase - id: FewPhrase - parent: BaseQualitativePhrase - text: phrase-few - -- type: quickPhrase - id: SinglePhrase - parent: BaseQualitativePhrase - text: phrase-single - -- type: quickPhrase - id: TooMuchPhrase - parent: BaseQualitativePhrase - text: phrase-too-much - -- type: quickPhrase - id: NotEnoughPhrase - parent: BaseQualitativePhrase - text: phrase-not-enough - -- type: quickPhrase - id: GoodPhrase - parent: BaseQualitativePhrase - text: phrase-good - -- type: quickPhrase - id: BadPhrase - parent: BaseQualitativePhrase - text: phrase-bad - -- type: quickPhrase - id: OnPhrase - parent: BaseQualitativePhrase - text: phrase-on - -- type: quickPhrase - id: OffPhrase - parent: BaseQualitativePhrase - text: phrase-off - -- type: quickPhrase - id: NotPhrase - parent: BaseQualitativePhrase - text: phrase-not +#- type: quickPhrase +# id: BaseQualitativePhrase +# parent: BaseCommonPhrase +# group: Quantity and Quality +# abstract: true +# +#- type: quickPhrase +# id: MorePhrase +# parent: BaseQualitativePhrase +# text: phrase-more +# +#- type: quickPhrase +# id: LessPhrase +# parent: BaseQualitativePhrase +# text: phrase-less +# +#- type: quickPhrase +# id: AllPhrase +# parent: BaseQualitativePhrase +# text: phrase-all +# +#- type: quickPhrase +# id: NothingPhrase +# parent: BaseQualitativePhrase +# text: phrase-nothing +# +#- type: quickPhrase +# id: MostPhrase +# parent: BaseQualitativePhrase +# text: phrase-most +# +#- type: quickPhrase +# id: SomePhrase +# parent: BaseQualitativePhrase +# text: phrase-some +# +#- type: quickPhrase +# id: ManyPhrase +# parent: BaseQualitativePhrase +# text: phrase-many +# +#- type: quickPhrase +# id: FewPhrase +# parent: BaseQualitativePhrase +# text: phrase-few +# +#- type: quickPhrase +# id: SinglePhrase +# parent: BaseQualitativePhrase +# text: phrase-single +# +#- type: quickPhrase +# id: TooMuchPhrase +# parent: BaseQualitativePhrase +# text: phrase-too-much +# +#- type: quickPhrase +# id: NotEnoughPhrase +# parent: BaseQualitativePhrase +# text: phrase-not-enough +# +#- type: quickPhrase +# id: GoodPhrase +# parent: BaseQualitativePhrase +# text: phrase-good +# +#- type: quickPhrase +# id: BadPhrase +# parent: BaseQualitativePhrase +# text: phrase-bad +# +#- type: quickPhrase +# id: OnPhrase +# parent: BaseQualitativePhrase +# text: phrase-on +# +#- type: quickPhrase +# id: OffPhrase +# parent: BaseQualitativePhrase +# text: phrase-off +# +#- type: quickPhrase +# id: NotPhrase +# parent: BaseQualitativePhrase +# text: phrase-not diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Common/questions.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Common/questions.yml index 99d6fdf7c55..045846d608a 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Common/questions.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Common/questions.yml @@ -1,60 +1,60 @@ -- type: quickPhrase - id: BaseQuestionPhrase - parent: BaseCommonPhrase - group: Question - abstract: true - -- type: quickPhrase - id: WherePhrase - parent: BaseQuestionPhrase - text: phrase-where - -- type: quickPhrase - id: WhoPhrase - parent: BaseQuestionPhrase - text: phrase-who - -- type: quickPhrase - id: WhatPhrase - parent: BaseQuestionPhrase - text: phrase-what - -- type: quickPhrase - id: WhyPhrase - parent: BaseQuestionPhrase - text: phrase-why - -- type: quickPhrase - id: HowPhrase - parent: BaseQuestionPhrase - text: phrase-how - -- type: quickPhrase - id: WhenPhrase - parent: BaseQuestionPhrase - text: phrase-when - -- type: quickPhrase - id: DoYouHavePhrase - parent: BaseQuestionPhrase - text: phrase-do-you-have - -- type: quickPhrase - id: HowDoIPhrase - parent: BaseQuestionPhrase - text: phrase-how-do-i - -- type: quickPhrase - id: CanIPhrase - parent: BaseQuestionPhrase - text: phrase-can-i - -- type: quickPhrase - id: ShouldIPhrase - parent: BaseQuestionPhrase - text: phrase-should-i - -- type: quickPhrase - id: WhichPhrase - parent: BaseQuestionPhrase - text: phrase-which +#- type: quickPhrase +# id: BaseQuestionPhrase +# parent: BaseCommonPhrase +# group: Question +# abstract: true +# +#- type: quickPhrase +# id: WherePhrase +# parent: BaseQuestionPhrase +# text: phrase-where +# +#- type: quickPhrase +# id: WhoPhrase +# parent: BaseQuestionPhrase +# text: phrase-who +# +#- type: quickPhrase +# id: WhatPhrase +# parent: BaseQuestionPhrase +# text: phrase-what +# +#- type: quickPhrase +# id: WhyPhrase +# parent: BaseQuestionPhrase +# text: phrase-why +# +#- type: quickPhrase +# id: HowPhrase +# parent: BaseQuestionPhrase +# text: phrase-how +# +#- type: quickPhrase +# id: WhenPhrase +# parent: BaseQuestionPhrase +# text: phrase-when +# +#- type: quickPhrase +# id: DoYouHavePhrase +# parent: BaseQuestionPhrase +# text: phrase-do-you-have +# +#- type: quickPhrase +# id: HowDoIPhrase +# parent: BaseQuestionPhrase +# text: phrase-how-do-i +# +#- type: quickPhrase +# id: CanIPhrase +# parent: BaseQuestionPhrase +# text: phrase-can-i +# +#- type: quickPhrase +# id: ShouldIPhrase +# parent: BaseQuestionPhrase +# text: phrase-should-i +# +#- type: quickPhrase +# id: WhichPhrase +# parent: BaseQuestionPhrase +# text: phrase-which diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Species/animals.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Species/animals.yml index ee1e5c95401..a266e46478d 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Species/animals.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Species/animals.yml @@ -1,166 +1,166 @@ -- type: quickPhrase - id: BaseAnimalSpeciesPhrase - parent: BaseSpeciesPhrase - group: Wildlife - abstract: true - -- type: quickPhrase - id: SpeciesDogPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-dog - -- type: quickPhrase - id: SpeciesCatPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-cat - -- type: quickPhrase - id: SpeciesOpossumPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-opossum - -- type: quickPhrase - id: SpeciesLizardPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-lizard - -- type: quickPhrase - id: SpeciesBatPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-bat - -- type: quickPhrase - id: SpeciesSlimePhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-slime - -- type: quickPhrase - id: SpeciesMousePhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-mouse - -- type: quickPhrase - id: SpeciesMothroachPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-mothroach - -- type: quickPhrase - id: SpeciesCockroachPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-cockroach - -- type: quickPhrase - id: SpeciesSpiderPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-spider - -- type: quickPhrase - id: SpeciesBirdPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-bird - -- type: quickPhrase - id: SpeciesParrotPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-parrot - -- type: quickPhrase - id: SpeciesSnakePhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-snake - -- type: quickPhrase - id: SpeciesPigPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-pig - -- type: quickPhrase - id: SpeciesMonkeyPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-monkey - -- type: quickPhrase - id: SpeciesKoboldPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-kobold - -- type: quickPhrase - id: SpeciesFerretPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-ferret - -- type: quickPhrase - id: SpeciesCarpPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-carp - -- type: quickPhrase - id: SpeciesXenoPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-xeno - -- type: quickPhrase - id: SpeciesHamsterPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-hamster - -- type: quickPhrase - id: SpeciesIfritPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-ifrit - -- type: quickPhrase - id: SpeciesRaccoonPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-raccoon - -- type: quickPhrase - id: SpeciesRounyPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-rouny - -- type: quickPhrase - id: SpeciesFoxPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-fox - -- type: quickPhrase - id: SpeciesCrabPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-crab - -- type: quickPhrase - id: SpeciesKangarooPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-kangaroo - -- type: quickPhrase - id: SpeciesCowPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-cow - -- type: quickPhrase - id: SpeciesDuckPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-duck - -- type: quickPhrase - id: SpeciesBearPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-bear - -- type: quickPhrase - id: SpeciesPenguinPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-penguin - -- type: quickPhrase - id: SpeciesGoatPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-goat - -- type: quickPhrase - id: SpeciesChickenPhrase - parent: BaseAnimalSpeciesPhrase - text: phrase-species-chicken - +#- type: quickPhrase +# id: BaseAnimalSpeciesPhrase +# parent: BaseSpeciesPhrase +# group: Wildlife +# abstract: true +# +#- type: quickPhrase +# id: SpeciesDogPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-dog +# +#- type: quickPhrase +# id: SpeciesCatPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-cat +# +#- type: quickPhrase +# id: SpeciesOpossumPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-opossum +# +#- type: quickPhrase +# id: SpeciesLizardPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-lizard +# +#- type: quickPhrase +# id: SpeciesBatPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-bat +# +#- type: quickPhrase +# id: SpeciesSlimePhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-slime +# +#- type: quickPhrase +# id: SpeciesMousePhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-mouse +# +#- type: quickPhrase +# id: SpeciesMothroachPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-mothroach +# +#- type: quickPhrase +# id: SpeciesCockroachPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-cockroach +# +#- type: quickPhrase +# id: SpeciesSpiderPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-spider +# +#- type: quickPhrase +# id: SpeciesBirdPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-bird +# +#- type: quickPhrase +# id: SpeciesParrotPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-parrot +# +#- type: quickPhrase +# id: SpeciesSnakePhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-snake +# +#- type: quickPhrase +# id: SpeciesPigPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-pig +# +#- type: quickPhrase +# id: SpeciesMonkeyPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-monkey +# +#- type: quickPhrase +# id: SpeciesKoboldPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-kobold +# +#- type: quickPhrase +# id: SpeciesFerretPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-ferret +# +#- type: quickPhrase +# id: SpeciesCarpPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-carp +# +#- type: quickPhrase +# id: SpeciesXenoPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-xeno +# +#- type: quickPhrase +# id: SpeciesHamsterPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-hamster +# +#- type: quickPhrase +# id: SpeciesIfritPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-ifrit +# +#- type: quickPhrase +# id: SpeciesRaccoonPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-raccoon +# +#- type: quickPhrase +# id: SpeciesRounyPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-rouny +# +#- type: quickPhrase +# id: SpeciesFoxPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-fox +# +#- type: quickPhrase +# id: SpeciesCrabPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-crab +# +#- type: quickPhrase +# id: SpeciesKangarooPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-kangaroo +# +#- type: quickPhrase +# id: SpeciesCowPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-cow +# +#- type: quickPhrase +# id: SpeciesDuckPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-duck +# +#- type: quickPhrase +# id: SpeciesBearPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-bear +# +#- type: quickPhrase +# id: SpeciesPenguinPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-penguin +# +#- type: quickPhrase +# id: SpeciesGoatPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-goat +# +#- type: quickPhrase +# id: SpeciesChickenPhrase +# parent: BaseAnimalSpeciesPhrase +# text: phrase-species-chicken +# diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Species/crew.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Species/crew.yml index a93c664b835..6e85609bfdb 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Species/crew.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Species/crew.yml @@ -1,70 +1,70 @@ -- type: quickPhrase - id: BaseCrewSpeciesPhrase - parent: BaseSpeciesPhrase - group: Crew - abstract: true - -- type: quickPhrase - id: SpeciesHumanPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-human - -- type: quickPhrase - id: SpeciesDionaPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-diona - -- type: quickPhrase - id: SpeciesArachnidPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-arachnid - -- type: quickPhrase - id: SpeciesMothPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-moth - -- type: quickPhrase - id: SpeciesReptilianPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-reptilian - -- type: quickPhrase - id: SpeciesSlimePersonPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-slime - -- type: quickPhrase - id: SpeciesVulpkaninPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-vulpkanin - -- type: quickPhrase - id: SpeciesFelinidPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-felinid - -- type: quickPhrase - id: SpeciesHarpyPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-harpy - -- type: quickPhrase - id: SpeciesOniPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-oni - -- type: quickPhrase - id: SpeciesSkeletonPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-skeleton - -- type: quickPhrase - id: SpeciesVoxPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-vox - -- type: quickPhrase - id: SpeciesRodentiaPhrase - parent: BaseCrewSpeciesPhrase - text: species-name-rodentia +#- type: quickPhrase +# id: BaseCrewSpeciesPhrase +# parent: BaseSpeciesPhrase +# group: Crew +# abstract: true +# +#- type: quickPhrase +# id: SpeciesHumanPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-human +# +#- type: quickPhrase +# id: SpeciesDionaPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-diona +# +#- type: quickPhrase +# id: SpeciesArachnidPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-arachnid +# +#- type: quickPhrase +# id: SpeciesMothPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-moth +# +#- type: quickPhrase +# id: SpeciesReptilianPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-reptilian +# +#- type: quickPhrase +# id: SpeciesSlimePersonPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-slime +# +#- type: quickPhrase +# id: SpeciesVulpkaninPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-vulpkanin +# +#- type: quickPhrase +# id: SpeciesFelinidPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-felinid +# +#- type: quickPhrase +# id: SpeciesHarpyPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-harpy +# +#- type: quickPhrase +# id: SpeciesOniPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-oni +# +#- type: quickPhrase +# id: SpeciesSkeletonPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-skeleton +# +#- type: quickPhrase +# id: SpeciesVoxPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-vox +# +#- type: quickPhrase +# id: SpeciesRodentiaPhrase +# parent: BaseCrewSpeciesPhrase +# text: species-name-rodentia diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Species/generic_species.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Species/generic_species.yml index 6a12736cc6e..5803277c70d 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Species/generic_species.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Species/generic_species.yml @@ -1,55 +1,55 @@ -- type: quickPhrase - id: BaseGenericSpeciesPhrase - parent: BaseSpeciesPhrase - group: Generic - abstract: true - -- type: quickPhrase - id: SpeciesPersonPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-person - -- type: quickPhrase - id: SpeciesAnimalPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-animal - -- type: quickPhrase - id: SpeciesCorpsePhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-corpse - -- type: quickPhrase - id: SpeciesRobotPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-robot - -- type: quickPhrase - id: SpeciesAlienPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-alien - -- type: quickPhrase - id: SpeciesMonsterPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-monster - -- type: quickPhrase - id: SpeciesGhostPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-ghost - -- type: quickPhrase - id: SpeciesPestPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-pest - -- type: quickPhrase - id: SpeciesInsectPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-insect - -- type: quickPhrase - id: SpeciesPetPhrase - parent: BaseGenericSpeciesPhrase - text: phrase-species-pet +#- type: quickPhrase +# id: BaseGenericSpeciesPhrase +# parent: BaseSpeciesPhrase +# group: Generic +# abstract: true +# +#- type: quickPhrase +# id: SpeciesPersonPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-person +# +#- type: quickPhrase +# id: SpeciesAnimalPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-animal +# +#- type: quickPhrase +# id: SpeciesCorpsePhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-corpse +# +#- type: quickPhrase +# id: SpeciesRobotPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-robot +# +#- type: quickPhrase +# id: SpeciesAlienPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-alien +# +#- type: quickPhrase +# id: SpeciesMonsterPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-monster +# +#- type: quickPhrase +# id: SpeciesGhostPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-ghost +# +#- type: quickPhrase +# id: SpeciesPestPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-pest +# +#- type: quickPhrase +# id: SpeciesInsectPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-insect +# +#- type: quickPhrase +# id: SpeciesPetPhrase +# parent: BaseGenericSpeciesPhrase +# text: phrase-species-pet diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hazards.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hazards.yml index 86cea67c74a..381decb1212 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hazards.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hazards.yml @@ -1,136 +1,136 @@ -- type: quickPhrase - id: BaseHazardThreatPhrase - parent: BaseThreatPhrase - group: Hazards - styleClass: EngineeringButton - abstract: true - -- type: quickPhrase - id: HazardSpacePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-space - -- type: quickPhrase - id: HazardLowPresurePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-low-presure - -- type: quickPhrase - id: HazardHighPresurePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-high-presure - -- type: quickPhrase - id: HazardHeatPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-heat - -- type: quickPhrase - id: HazardColdPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-cold - -- type: quickPhrase - id: HazardGasLeakPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-gas-leak - -- type: quickPhrase - id: HazardExplosionPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-explosion - -- type: quickPhrase - id: HazardRadiationPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-radiation - -- type: quickPhrase - id: HazardStructureDamagePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-structure-damage - -- type: quickPhrase - id: HazardChemicalSpillPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-chemical-spill - -- type: quickPhrase - id: HazardShockPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-shock - -- type: quickPhrase - id: HazardPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard - -- type: quickPhrase - id: HazardMeteorsPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-meteors - -- type: quickPhrase - id: HazardPoisonPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-poison - -- type: quickPhrase - id: HazardFirePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-fire - -- type: quickPhrase - id: HazardPowerOutagePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-power-outage - -- type: quickPhrase - id: HazardLowPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-low - -- type: quickPhrase - id: HazardInfectionPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-infection - -- type: quickPhrase - id: HazardViralThreatPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-viral-threat - -- type: quickPhrase - id: HazardBrokenEquipmentPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-broken-equipment - -- type: quickPhrase - id: HazardHotPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-hot - -- type: quickPhrase - id: HazardBurningPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-burning - -- type: quickPhrase - id: HazardBadTemperaturePhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-bad-temperature - -- type: quickPhrase - id: HazardFreezingPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-freezing - -- type: quickPhrase - id: HazardDarknessPhrase - parent: BaseHazardThreatPhrase - text: phrase-hazard-darkness - -- type: quickPhrase - id: HazardBloodPhrase - parent: BaseHazardThreatPhrase - text: phrase-blood +#- type: quickPhrase +# id: BaseHazardThreatPhrase +# parent: BaseThreatPhrase +# group: Hazards +# styleClass: EngineeringButton +# abstract: true +# +#- type: quickPhrase +# id: HazardSpacePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-space +# +#- type: quickPhrase +# id: HazardLowPresurePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-low-presure +# +#- type: quickPhrase +# id: HazardHighPresurePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-high-presure +# +#- type: quickPhrase +# id: HazardHeatPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-heat +# +#- type: quickPhrase +# id: HazardColdPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-cold +# +#- type: quickPhrase +# id: HazardGasLeakPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-gas-leak +# +#- type: quickPhrase +# id: HazardExplosionPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-explosion +# +#- type: quickPhrase +# id: HazardRadiationPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-radiation +# +#- type: quickPhrase +# id: HazardStructureDamagePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-structure-damage +# +#- type: quickPhrase +# id: HazardChemicalSpillPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-chemical-spill +# +#- type: quickPhrase +# id: HazardShockPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-shock +# +#- type: quickPhrase +# id: HazardPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard +# +#- type: quickPhrase +# id: HazardMeteorsPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-meteors +# +#- type: quickPhrase +# id: HazardPoisonPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-poison +# +#- type: quickPhrase +# id: HazardFirePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-fire +# +#- type: quickPhrase +# id: HazardPowerOutagePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-power-outage +# +#- type: quickPhrase +# id: HazardLowPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-low +# +#- type: quickPhrase +# id: HazardInfectionPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-infection +# +#- type: quickPhrase +# id: HazardViralThreatPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-viral-threat +# +#- type: quickPhrase +# id: HazardBrokenEquipmentPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-broken-equipment +# +#- type: quickPhrase +# id: HazardHotPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-hot +# +#- type: quickPhrase +# id: HazardBurningPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-burning +# +#- type: quickPhrase +# id: HazardBadTemperaturePhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-bad-temperature +# +#- type: quickPhrase +# id: HazardFreezingPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-freezing +# +#- type: quickPhrase +# id: HazardDarknessPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-hazard-darkness +# +#- type: quickPhrase +# id: HazardBloodPhrase +# parent: BaseHazardThreatPhrase +# text: phrase-blood diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hostiles.yml b/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hostiles.yml index af9253b1be4..f977371c8e2 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hostiles.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/Threats/hostiles.yml @@ -1,66 +1,66 @@ -- type: quickPhrase - id: BaseHostileThreatPhrase - parent: BaseThreatPhrase - group: Hostiles - styleClass: SecurityButton - abstract: true - -- type: quickPhrase - id: HostileEnemyPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-enemy - -- type: quickPhrase - id: HostilePhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile - -- type: quickPhrase - id: HostileAttackerPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-attacker - -- type: quickPhrase - id: HostileLifeformPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-lifeform - -- type: quickPhrase - id: HostileEntityPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-entity - -- type: quickPhrase - id: HostileBombPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-bomb - -- type: quickPhrase - id: HostileCriminalPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-criminal - -- type: quickPhrase - id: HostileIntruderPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-intruder - -- type: quickPhrase - id: HostileInfiltratorPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-infiltrator - -- type: quickPhrase - id: HostileFugitivePhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-fugitive - -- type: quickPhrase - id: HostileWeaponPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-weapon - -- type: quickPhrase - id: HostileGunPhrase - parent: BaseHostileThreatPhrase - text: phrase-hostile-gun +#- type: quickPhrase +# id: BaseHostileThreatPhrase +# parent: BaseThreatPhrase +# group: Hostiles +# styleClass: SecurityButton +# abstract: true +# +#- type: quickPhrase +# id: HostileEnemyPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-enemy +# +#- type: quickPhrase +# id: HostilePhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile +# +#- type: quickPhrase +# id: HostileAttackerPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-attacker +# +#- type: quickPhrase +# id: HostileLifeformPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-lifeform +# +#- type: quickPhrase +# id: HostileEntityPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-entity +# +#- type: quickPhrase +# id: HostileBombPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-bomb +# +#- type: quickPhrase +# id: HostileCriminalPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-criminal +# +#- type: quickPhrase +# id: HostileIntruderPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-intruder +# +#- type: quickPhrase +# id: HostileInfiltratorPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-infiltrator +# +#- type: quickPhrase +# id: HostileFugitivePhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-fugitive +# +#- type: quickPhrase +# id: HostileWeaponPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-weapon +# +#- type: quickPhrase +# id: HostileGunPhrase +# parent: BaseHostileThreatPhrase +# text: phrase-hostile-gun diff --git a/Resources/Prototypes/DeltaV/QuickPhrases/base.yml b/Resources/Prototypes/DeltaV/QuickPhrases/base.yml index 5ec03dff1a7..f9826c91991 100644 --- a/Resources/Prototypes/DeltaV/QuickPhrases/base.yml +++ b/Resources/Prototypes/DeltaV/QuickPhrases/base.yml @@ -1,86 +1,86 @@ -# Tabs - -- type: quickPhrase - id: BaseCommonPhrase - tab: Common Phrases - abstract: true - -- type: quickPhrase - id: BaseJobPhrase - tab: Jobs - abstract: true - -- type: quickPhrase - id: BaseLocationPhrase - tab: Locations - abstract: true - -- type: quickPhrase - id: BaseSubjectPhrase - tab: Subjects - abstract: true - -- type: quickPhrase - id: BaseThreatPhrase - tab: Safety - abstract: true - -- type: quickPhrase - id: BaseSpeciesPhrase - tab: Species - abstract: true - -# Departments - -- type: quickPhrase - id: BaseCivilianPhrase - group: Civilian - abstract: true - -- type: quickPhrase - id: BaseCommandPhrase - group: Command - styleClass: CommandButton - abstract: true - -- type: quickPhrase - id: BaseEngineeringPhrase - group: Engineering - styleClass: EngineeringButton - abstract: true - -- type: quickPhrase - id: BaseEpistemicsPhrase - group: Epistemics - styleClass: EpistemicsButton - abstract: true - -- type: quickPhrase - id: BaseJusticePhrase - group: Justice - styleClass: JusticeButton - abstract: true - -- type: quickPhrase - id: BaseLogisticsPhrase - group: Logistics - styleClass: LogisticsButton - abstract: true - -- type: quickPhrase - id: BaseMedicalPhrase - group: Medical - styleClass: MedicalButton - abstract: true - -- type: quickPhrase - id: BaseSecurityPhrase - group: Security - styleClass: SecurityButton - abstract: true - -- type: quickPhrase - id: BaseServicePhrase - group: Service - styleClass: ServiceButton - abstract: true +## Tabs +# +#- type: quickPhrase +# id: BaseCommonPhrase +# tab: Common Phrases +# abstract: true +# +#- type: quickPhrase +# id: BaseJobPhrase +# tab: Jobs +# abstract: true +# +#- type: quickPhrase +# id: BaseLocationPhrase +# tab: Locations +# abstract: true +# +#- type: quickPhrase +# id: BaseSubjectPhrase +# tab: Subjects +# abstract: true +# +#- type: quickPhrase +# id: BaseThreatPhrase +# tab: Safety +# abstract: true +# +#- type: quickPhrase +# id: BaseSpeciesPhrase +# tab: Species +# abstract: true +# +## Departments +# +#- type: quickPhrase +# id: BaseCivilianPhrase +# group: Civilian +# abstract: true +# +#- type: quickPhrase +# id: BaseCommandPhrase +# group: Command +# styleClass: CommandButton +# abstract: true +# +#- type: quickPhrase +# id: BaseEngineeringPhrase +# group: Engineering +# styleClass: EngineeringButton +# abstract: true +# +#- type: quickPhrase +# id: BaseEpistemicsPhrase +# group: Epistemics +# styleClass: EpistemicsButton +# abstract: true +# +#- type: quickPhrase +# id: BaseJusticePhrase +# group: Justice +# styleClass: JusticeButton +# abstract: true +# +#- type: quickPhrase +# id: BaseLogisticsPhrase +# group: Logistics +# styleClass: LogisticsButton +# abstract: true +# +#- type: quickPhrase +# id: BaseMedicalPhrase +# group: Medical +# styleClass: MedicalButton +# abstract: true +# +#- type: quickPhrase +# id: BaseSecurityPhrase +# group: Security +# styleClass: SecurityButton +# abstract: true +# +#- type: quickPhrase +# id: BaseServicePhrase +# group: Service +# styleClass: ServiceButton +# abstract: true diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/actions.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/actions.yml new file mode 100644 index 00000000000..39b85779f2c --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/actions.yml @@ -0,0 +1,70 @@ +- type: quickPhrase + id: BaseActionPhrase + parent: BaseCommonPhrase + group: Ação + abstract: true + +- type: quickPhrase + id: CallPhrase + parent: BaseActionPhrase + text: phrase-call + +- type: quickPhrase + id: DrinkActionPhrase + parent: BaseActionPhrase + text: phrase-actiondrink + +- type: quickPhrase + id: ShowMePhrase + parent: BaseActionPhrase + text: phrase-show + +- type: quickPhrase + id: HelpPhrase + parent: BaseActionPhrase + text: phrase-help + +- type: quickPhrase + id: AttackPhrase + parent: BaseActionPhrase + text: phrase-attack + +- type: quickPhrase + id: BreakPhrase + parent: BaseActionPhrase + text: phrase-break + +- type: quickPhrase + id: BuildPhrase + parent: BaseActionPhrase + text: phrase-build + +- type: quickPhrase + id: HealPhrase + parent: BaseActionPhrase + text: phrase-heal + +- type: quickPhrase + id: RunPhrase + parent: BaseActionPhrase + text: phrase-run + +- type: quickPhrase + id: GoPhrase + parent: BaseActionPhrase + text: phrase-go + +- type: quickPhrase + id: FixPhrase + parent: BaseActionPhrase + text: phrase-fix + +- type: quickPhrase + id: SwitchPhrase + parent: BaseActionPhrase + text: phrase-switch + +- type: quickPhrase + id: KnowPhrase + parent: BaseActionPhrase + text: phrase-know diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/commands.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/commands.yml new file mode 100644 index 00000000000..02e851d266f --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/commands.yml @@ -0,0 +1,80 @@ +- type: quickPhrase + id: BaseImperativePhrase + parent: BaseCommonPhrase + group: Comandos e Pedidos + abstract: true + +- type: quickPhrase + id: GiveMePhrase + parent: BaseImperativePhrase + text: phrase-give-me + +- type: quickPhrase + id: NeedPhrase + parent: BaseImperativePhrase + text: phrase-need + +- type: quickPhrase + id: WantPhrase + parent: BaseImperativePhrase + text: phrase-want + +- type: quickPhrase + id: CantPhrase + parent: BaseImperativePhrase + text: phrase-cant + +- type: quickPhrase + id: GoAwayPhrase + parent: BaseImperativePhrase + text: phrase-go-away + +- type: quickPhrase + id: ComeHerePhrase + parent: BaseImperativePhrase + text: phrase-come-here + +- type: quickPhrase + id: GoToPhrase + parent: BaseImperativePhrase + text: phrase-go-to + +- type: quickPhrase + id: DoNotPhrase + parent: BaseImperativePhrase + text: phrase-do-not + +- type: quickPhrase + id: WaitPhrase + parent: BaseImperativePhrase + text: phrase-wait + +- type: quickPhrase + id: WillPhrase + parent: BaseImperativePhrase + text: phrase-will + +- type: quickPhrase + id: ThisPhrase + parent: BaseImperativePhrase + text: phrase-this + +- type: quickPhrase + id: TakePhrase + parent: BaseImperativePhrase + text: phrase-take + +- type: quickPhrase + id: LeavePhrase + parent: BaseImperativePhrase + text: phrase-leave + +- type: quickPhrase + id: StayPhrase + parent: BaseImperativePhrase + text: phrase-stay + +- type: quickPhrase + id: StopPhrase + parent: BaseImperativePhrase + text: phrase-stop diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/manners.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/manners.yml new file mode 100644 index 00000000000..5059112fc8e --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/manners.yml @@ -0,0 +1,75 @@ +- type: quickPhrase + id: BaseMannerPhrase + parent: BaseCommonPhrase + group: Boas Maneiras + abstract: true + +- type: quickPhrase + id: HelloPhrase + parent: BaseMannerPhrase + text: phrase-hello + +- type: quickPhrase + id: ByePhrase + parent: BaseMannerPhrase + text: phrase-bye + +- type: quickPhrase + id: CyaPhrase + parent: BaseMannerPhrase + text: phrase-cya + +- type: quickPhrase + id: PleasePhrase + parent: BaseMannerPhrase + text: phrase-please + +- type: quickPhrase + id: TyPhrase + parent: BaseMannerPhrase + text: phrase-ty + +- type: quickPhrase + id: NpPhrase + parent: BaseMannerPhrase + text: phrase-np + +- type: quickPhrase + id: YwPhrase + parent: BaseMannerPhrase + text: phrase-yw + +- type: quickPhrase + id: SorryPhrase + parent: BaseMannerPhrase + text: phrase-sorry + +- type: quickPhrase + id: DwPhrase + parent: BaseMannerPhrase + text: phrase-dw + +- type: quickPhrase + id: YesPhrase + parent: BaseMannerPhrase + text: phrase-yes + +- type: quickPhrase + id: NoPhrase + parent: BaseMannerPhrase + text: phrase-no + +- type: quickPhrase + id: MaybePhrase + parent: BaseMannerPhrase + text: phrase-maybe + +- type: quickPhrase + id: OkPhrase + parent: BaseMannerPhrase + text: phrase-ok + +- type: quickPhrase + id: KindaPhrase + parent: BaseMannerPhrase + text: phrase-kinda diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/numbers.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/numbers.yml new file mode 100644 index 00000000000..65e088f3800 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/numbers.yml @@ -0,0 +1,106 @@ +- type: quickPhrase + id: BaseNumberPhrase + parent: BaseCommonPhrase + group: Números e Unidades + abstract: true + +- type: quickPhrase + id: Number1Phrase + parent: BaseNumberPhrase + text: phrase-number1 + +- type: quickPhrase + id: Number2Phrase + parent: BaseNumberPhrase + text: phrase-number2 + +- type: quickPhrase + id: Number3Phrase + parent: BaseNumberPhrase + text: phrase-number3 + +- type: quickPhrase + id: Number4Phrase + parent: BaseNumberPhrase + text: phrase-number4 + +- type: quickPhrase + id: Number5Phrase + parent: BaseNumberPhrase + text: phrase-number5 + +- type: quickPhrase + id: Number6Phrase + parent: BaseNumberPhrase + text: phrase-number6 + +- type: quickPhrase + id: Number7Phrase + parent: BaseNumberPhrase + text: phrase-number7 + +- type: quickPhrase + id: Number8Phrase + parent: BaseNumberPhrase + text: phrase-number8 + +- type: quickPhrase + id: Number9Phrase + parent: BaseNumberPhrase + text: phrase-number9 + +- type: quickPhrase + id: Number0Phrase + parent: BaseNumberPhrase + text: phrase-number0 + +- type: quickPhrase + id: TenPhrase + parent: BaseNumberPhrase + text: phrase-ten + +- type: quickPhrase + id: HundredPhrase + parent: BaseNumberPhrase + text: phrase-hundred + +- type: quickPhrase + id: ThousandPhrase + parent: BaseNumberPhrase + text: phrase-thousand + +- type: quickPhrase + id: MillionPhrase + parent: BaseNumberPhrase + text: phrase-million + +- type: quickPhrase + id: BillionPhrase + parent: BaseNumberPhrase + text: phrase-billion + +- type: quickPhrase + id: StackPhrase + parent: BaseNumberPhrase + text: phrase-stack + +- type: quickPhrase + id: HourPhrase + parent: BaseNumberPhrase + text: phrase-hour + +- type: quickPhrase + id: MinutePhrase + parent: BaseNumberPhrase + text: phrase-minute + +- type: quickPhrase + id: SecondPhrase + parent: BaseNumberPhrase + text: phrase-second + +- type: quickPhrase + id: DayPhrase + parent: BaseNumberPhrase + text: phrase-day + diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/pronouns.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/pronouns.yml new file mode 100644 index 00000000000..c40a0997a69 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/pronouns.yml @@ -0,0 +1,85 @@ +- type: quickPhrase + id: BaseNounsPhrase + parent: BaseCommonPhrase + group: Substantivos e Pronomes + abstract: true + +- type: quickPhrase + id: IPhrase + parent: BaseNounsPhrase + text: phrase-i + +- type: quickPhrase + id: YouPhrase + parent: BaseNounsPhrase + text: phrase-you + +- type: quickPhrase + id: SomeonePhrase + parent: BaseNounsPhrase + text: phrase-someone + +- type: quickPhrase + id: SomethingPhrase + parent: BaseNounsPhrase + text: phrase-something + +- type: quickPhrase + id: HePhrase + parent: BaseNounsPhrase + text: phrase-he + +- type: quickPhrase + id: ShePhrase + parent: BaseNounsPhrase + text: phrase-she + +- type: quickPhrase + id: TheyPhrase + parent: BaseNounsPhrase + text: phrase-they + +- type: quickPhrase + id: ItPhrase + parent: BaseNounsPhrase + text: phrase-it + +- type: quickPhrase + id: EveryonePhrase + parent: BaseNounsPhrase + text: phrase-everyone + +- type: quickPhrase + id: NoOnePhrase + parent: BaseNounsPhrase + text: phrase-no-one + +- type: quickPhrase + id: AnyonePhrase + parent: BaseNounsPhrase + text: phrase-anyone + +- type: quickPhrase + id: MePhrase + parent: BaseNounsPhrase + text: phrase-me + +- type: quickPhrase + id: IAmPhrase + parent: BaseNounsPhrase + text: phrase-i-am + +- type: quickPhrase + id: YouArePhrase + parent: BaseNounsPhrase + text: phrase-you-are + +- type: quickPhrase + id: MinePhrase + parent: BaseNounsPhrase + text: phrase-mine + +- type: quickPhrase + id: YoursPhrase + parent: BaseNounsPhrase + text: phrase-yours diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/qualitative.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/qualitative.yml new file mode 100644 index 00000000000..a1bf3e4b926 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/qualitative.yml @@ -0,0 +1,85 @@ +- type: quickPhrase + id: BaseQualitativePhrase + parent: BaseCommonPhrase + group: Quantidade e Qualidade + abstract: true + +- type: quickPhrase + id: MorePhrase + parent: BaseQualitativePhrase + text: phrase-more + +- type: quickPhrase + id: LessPhrase + parent: BaseQualitativePhrase + text: phrase-less + +- type: quickPhrase + id: AllPhrase + parent: BaseQualitativePhrase + text: phrase-all + +- type: quickPhrase + id: NothingPhrase + parent: BaseQualitativePhrase + text: phrase-nothing + +- type: quickPhrase + id: MostPhrase + parent: BaseQualitativePhrase + text: phrase-most + +- type: quickPhrase + id: SomePhrase + parent: BaseQualitativePhrase + text: phrase-some + +- type: quickPhrase + id: ManyPhrase + parent: BaseQualitativePhrase + text: phrase-many + +- type: quickPhrase + id: FewPhrase + parent: BaseQualitativePhrase + text: phrase-few + +- type: quickPhrase + id: SinglePhrase + parent: BaseQualitativePhrase + text: phrase-single + +- type: quickPhrase + id: TooMuchPhrase + parent: BaseQualitativePhrase + text: phrase-too-much + +- type: quickPhrase + id: NotEnoughPhrase + parent: BaseQualitativePhrase + text: phrase-not-enough + +- type: quickPhrase + id: GoodPhrase + parent: BaseQualitativePhrase + text: phrase-good + +- type: quickPhrase + id: BadPhrase + parent: BaseQualitativePhrase + text: phrase-bad + +- type: quickPhrase + id: OnPhrase + parent: BaseQualitativePhrase + text: phrase-on + +- type: quickPhrase + id: OffPhrase + parent: BaseQualitativePhrase + text: phrase-off + +- type: quickPhrase + id: NotPhrase + parent: BaseQualitativePhrase + text: phrase-not diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Common/questions.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/questions.yml new file mode 100644 index 00000000000..8a85a5d7a3f --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Common/questions.yml @@ -0,0 +1,60 @@ +- type: quickPhrase + id: BaseQuestionPhrase + parent: BaseCommonPhrase + group: Pergunta + abstract: true + +- type: quickPhrase + id: WherePhrase + parent: BaseQuestionPhrase + text: phrase-where + +- type: quickPhrase + id: WhoPhrase + parent: BaseQuestionPhrase + text: phrase-who + +- type: quickPhrase + id: WhatPhrase + parent: BaseQuestionPhrase + text: phrase-what + +- type: quickPhrase + id: WhyPhrase + parent: BaseQuestionPhrase + text: phrase-why + +- type: quickPhrase + id: HowPhrase + parent: BaseQuestionPhrase + text: phrase-how + +- type: quickPhrase + id: WhenPhrase + parent: BaseQuestionPhrase + text: phrase-when + +- type: quickPhrase + id: DoYouHavePhrase + parent: BaseQuestionPhrase + text: phrase-do-you-have + +- type: quickPhrase + id: HowDoIPhrase + parent: BaseQuestionPhrase + text: phrase-how-do-i + +- type: quickPhrase + id: CanIPhrase + parent: BaseQuestionPhrase + text: phrase-can-i + +- type: quickPhrase + id: ShouldIPhrase + parent: BaseQuestionPhrase + text: phrase-should-i + +- type: quickPhrase + id: WhichPhrase + parent: BaseQuestionPhrase + text: phrase-which diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Species/animals.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/animals.yml new file mode 100644 index 00000000000..6b683a0a8b7 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/animals.yml @@ -0,0 +1,166 @@ +- type: quickPhrase + id: BaseAnimalSpeciesPhrase + parent: BaseSpeciesPhrase + group: Fauna + abstract: true + +- type: quickPhrase + id: SpeciesDogPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-dog + +- type: quickPhrase + id: SpeciesCatPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-cat + +- type: quickPhrase + id: SpeciesOpossumPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-opossum + +- type: quickPhrase + id: SpeciesLizardPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-lizard + +- type: quickPhrase + id: SpeciesBatPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-bat + +- type: quickPhrase + id: SpeciesSlimePhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-slime + +- type: quickPhrase + id: SpeciesMousePhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-mouse + +- type: quickPhrase + id: SpeciesMothroachPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-mothroach + +- type: quickPhrase + id: SpeciesCockroachPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-cockroach + +- type: quickPhrase + id: SpeciesSpiderPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-spider + +- type: quickPhrase + id: SpeciesBirdPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-bird + +- type: quickPhrase + id: SpeciesParrotPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-parrot + +- type: quickPhrase + id: SpeciesSnakePhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-snake + +- type: quickPhrase + id: SpeciesPigPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-pig + +- type: quickPhrase + id: SpeciesMonkeyPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-monkey + +- type: quickPhrase + id: SpeciesKoboldPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-kobold + +- type: quickPhrase + id: SpeciesFerretPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-ferret + +- type: quickPhrase + id: SpeciesCarpPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-carp + +- type: quickPhrase + id: SpeciesXenoPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-xeno + +- type: quickPhrase + id: SpeciesHamsterPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-hamster + +- type: quickPhrase + id: SpeciesIfritPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-ifrit + +- type: quickPhrase + id: SpeciesRaccoonPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-raccoon + +- type: quickPhrase + id: SpeciesRounyPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-rouny + +- type: quickPhrase + id: SpeciesFoxPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-fox + +- type: quickPhrase + id: SpeciesCrabPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-crab + +- type: quickPhrase + id: SpeciesKangarooPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-kangaroo + +- type: quickPhrase + id: SpeciesCowPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-cow + +- type: quickPhrase + id: SpeciesDuckPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-duck + +- type: quickPhrase + id: SpeciesBearPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-bear + +- type: quickPhrase + id: SpeciesPenguinPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-penguin + +- type: quickPhrase + id: SpeciesGoatPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-goat + +- type: quickPhrase + id: SpeciesChickenPhrase + parent: BaseAnimalSpeciesPhrase + text: phrase-species-chicken + diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Species/crew.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/crew.yml new file mode 100644 index 00000000000..ad7391f0d8e --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/crew.yml @@ -0,0 +1,70 @@ +- type: quickPhrase + id: BaseCrewSpeciesPhrase + parent: BaseSpeciesPhrase + group: Tripulantes + abstract: true + +- type: quickPhrase + id: SpeciesHumanPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-human + +- type: quickPhrase + id: SpeciesDionaPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-diona + +- type: quickPhrase + id: SpeciesArachnidPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-arachnid + +- type: quickPhrase + id: SpeciesMothPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-moth + +- type: quickPhrase + id: SpeciesReptilianPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-reptilian + +- type: quickPhrase + id: SpeciesSlimePersonPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-slime + +- type: quickPhrase + id: SpeciesVulpkaninPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-vulpkanin + +- type: quickPhrase + id: SpeciesFelinidPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-felinid + +- type: quickPhrase + id: SpeciesHarpyPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-harpy + +- type: quickPhrase + id: SpeciesOniPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-oni + +- type: quickPhrase + id: SpeciesSkeletonPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-skeleton + +- type: quickPhrase + id: SpeciesVoxPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-vox + +- type: quickPhrase + id: SpeciesRodentiaPhrase + parent: BaseCrewSpeciesPhrase + text: species-name-rodentia diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Species/generic_species.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/generic_species.yml new file mode 100644 index 00000000000..742496e48a6 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Species/generic_species.yml @@ -0,0 +1,55 @@ +- type: quickPhrase + id: BaseGenericSpeciesPhrase + parent: BaseSpeciesPhrase + group: Genérico + abstract: true + +- type: quickPhrase + id: SpeciesPersonPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-person + +- type: quickPhrase + id: SpeciesAnimalPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-animal + +- type: quickPhrase + id: SpeciesCorpsePhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-corpse + +- type: quickPhrase + id: SpeciesRobotPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-robot + +- type: quickPhrase + id: SpeciesAlienPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-alien + +- type: quickPhrase + id: SpeciesMonsterPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-monster + +- type: quickPhrase + id: SpeciesGhostPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-ghost + +- type: quickPhrase + id: SpeciesPestPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-pest + +- type: quickPhrase + id: SpeciesInsectPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-insect + +- type: quickPhrase + id: SpeciesPetPhrase + parent: BaseGenericSpeciesPhrase + text: phrase-species-pet diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hazards.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hazards.yml new file mode 100644 index 00000000000..caa991a46e2 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hazards.yml @@ -0,0 +1,136 @@ +- type: quickPhrase + id: BaseHazardThreatPhrase + parent: BaseThreatPhrase + group: Perigos + styleClass: EngineeringButton + abstract: true + +- type: quickPhrase + id: HazardSpacePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-space + +- type: quickPhrase + id: HazardLowPresurePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-low-presure + +- type: quickPhrase + id: HazardHighPresurePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-high-presure + +- type: quickPhrase + id: HazardHeatPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-heat + +- type: quickPhrase + id: HazardColdPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-cold + +- type: quickPhrase + id: HazardGasLeakPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-gas-leak + +- type: quickPhrase + id: HazardExplosionPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-explosion + +- type: quickPhrase + id: HazardRadiationPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-radiation + +- type: quickPhrase + id: HazardStructureDamagePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-structure-damage + +- type: quickPhrase + id: HazardChemicalSpillPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-chemical-spill + +- type: quickPhrase + id: HazardShockPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-shock + +- type: quickPhrase + id: HazardPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard + +- type: quickPhrase + id: HazardMeteorsPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-meteors + +- type: quickPhrase + id: HazardPoisonPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-poison + +- type: quickPhrase + id: HazardFirePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-fire + +- type: quickPhrase + id: HazardPowerOutagePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-power-outage + +- type: quickPhrase + id: HazardLowPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-low + +- type: quickPhrase + id: HazardInfectionPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-infection + +- type: quickPhrase + id: HazardViralThreatPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-viral-threat + +- type: quickPhrase + id: HazardBrokenEquipmentPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-broken-equipment + +- type: quickPhrase + id: HazardHotPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-hot + +- type: quickPhrase + id: HazardBurningPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-burning + +- type: quickPhrase + id: HazardBadTemperaturePhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-bad-temperature + +- type: quickPhrase + id: HazardFreezingPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-freezing + +- type: quickPhrase + id: HazardDarknessPhrase + parent: BaseHazardThreatPhrase + text: phrase-hazard-darkness + +- type: quickPhrase + id: HazardBloodPhrase + parent: BaseHazardThreatPhrase + text: phrase-blood diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hostiles.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hostiles.yml new file mode 100644 index 00000000000..e64d47014aa --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/Threats/hostiles.yml @@ -0,0 +1,66 @@ +- type: quickPhrase + id: BaseHostileThreatPhrase + parent: BaseThreatPhrase + group: Hostis + styleClass: SecurityButton + abstract: true + +- type: quickPhrase + id: HostileEnemyPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-enemy + +- type: quickPhrase + id: HostilePhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile + +- type: quickPhrase + id: HostileAttackerPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-attacker + +- type: quickPhrase + id: HostileLifeformPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-lifeform + +- type: quickPhrase + id: HostileEntityPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-entity + +- type: quickPhrase + id: HostileBombPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-bomb + +- type: quickPhrase + id: HostileCriminalPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-criminal + +- type: quickPhrase + id: HostileIntruderPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-intruder + +- type: quickPhrase + id: HostileInfiltratorPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-infiltrator + +- type: quickPhrase + id: HostileFugitivePhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-fugitive + +- type: quickPhrase + id: HostileWeaponPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-weapon + +- type: quickPhrase + id: HostileGunPhrase + parent: BaseHostileThreatPhrase + text: phrase-hostile-gun diff --git a/Resources/Prototypes/_Andromeda/QuickPhrases/base.yml b/Resources/Prototypes/_Andromeda/QuickPhrases/base.yml new file mode 100644 index 00000000000..16391c38c18 --- /dev/null +++ b/Resources/Prototypes/_Andromeda/QuickPhrases/base.yml @@ -0,0 +1,86 @@ +# Tabs + +- type: quickPhrase + id: BaseCommonPhrase + tab: Common Phrases + abstract: true + +- type: quickPhrase + id: BaseJobPhrase + tab: Jobs + abstract: true + +- type: quickPhrase + id: BaseLocationPhrase + tab: Locations + abstract: true + +- type: quickPhrase + id: BaseSubjectPhrase + tab: Subjects + abstract: true + +- type: quickPhrase + id: BaseThreatPhrase + tab: Safety + abstract: true + +- type: quickPhrase + id: BaseSpeciesPhrase + tab: Species + abstract: true + +# Departments + +- type: quickPhrase + id: BaseCivilianPhrase + group: Civil + abstract: true + +- type: quickPhrase + id: BaseCommandPhrase + group: Comando + styleClass: CommandButton + abstract: true + +- type: quickPhrase + id: BaseEngineeringPhrase + group: Engenharia + styleClass: EngineeringButton + abstract: true + +- type: quickPhrase + id: BaseEpistemicsPhrase + group: Epistemics + styleClass: EpistemicsButton + abstract: true + +- type: quickPhrase + id: BaseJusticePhrase + group: Justiça + styleClass: JusticeButton + abstract: true + +- type: quickPhrase + id: BaseLogisticsPhrase + group: Logistica + styleClass: LogisticsButton + abstract: true + +- type: quickPhrase + id: BaseMedicalPhrase + group: Medico + styleClass: MedicalButton + abstract: true + +- type: quickPhrase + id: BaseSecurityPhrase + group: Segurança + styleClass: SecurityButton + abstract: true + +- type: quickPhrase + id: BaseServicePhrase + group: Serviço + styleClass: ServiceButton + abstract: true