mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
Scottish Trait (#608)
* Scottish Accent Draft * Add Accent Component and Accent System * Fix System and Component Slightly * Fixed Accent and Component * Fixed capitalization * Added Plural Words * God given right to own bag pipes * Added Kilts * Added Scottish Clothes to Theater Vend * Updated Pricing * Fixed Pricing
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using Content.Server.DeltaV.Speech.EntitySystems;
|
||||
|
||||
namespace Content.Server.DeltaV.Speech.Components;
|
||||
|
||||
[RegisterComponent]
|
||||
[Access(typeof(ScottishAccentSystem))]
|
||||
public sealed partial class ScottishAccentComponent : Component
|
||||
{ }
|
||||
@@ -0,0 +1,33 @@
|
||||
using Content.Server.DeltaV.Speech.Components;
|
||||
using Content.Server.Speech;
|
||||
using Content.Server.Speech.EntitySystems;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace Content.Server.DeltaV.Speech.EntitySystems;
|
||||
|
||||
public sealed class ScottishAccentSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly ReplacementAccentSystem _replacement = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
|
||||
SubscribeLocalEvent<ScottishAccentComponent, AccentGetEvent>(OnAccentGet);
|
||||
}
|
||||
|
||||
// converts left word when typed into the right word. For example typing you becomes ye.
|
||||
public string Accentuate(string message, ScottishAccentComponent component)
|
||||
{
|
||||
var msg = message;
|
||||
|
||||
msg = _replacement.ApplyReplacements(msg, "scottish");
|
||||
|
||||
return msg;
|
||||
}
|
||||
|
||||
private void OnAccentGet(EntityUid uid, ScottishAccentComponent component, AccentGetEvent args)
|
||||
{
|
||||
args.Message = Accentuate(args.Message, component);
|
||||
}
|
||||
}
|
||||
469
Resources/Locale/en-US/deltav/accent/scottish.ftl
Normal file
469
Resources/Locale/en-US/deltav/accent/scottish.ftl
Normal file
@@ -0,0 +1,469 @@
|
||||
# these specifically mostly come from examples of specific scottish-english (not necessarily scots) verbiage
|
||||
# https://en.wikipedia.org/wiki/Scotticism
|
||||
# https://en.wikipedia.org/wiki/Scottish_English
|
||||
# https://www.cs.stir.ac.uk/~kjt/general/scots.html
|
||||
|
||||
accent-scottish-words-1 = girl
|
||||
accent-scottish-words-replace-1 = lassie
|
||||
|
||||
accent-scottish-words-2 = boy
|
||||
accent-scottish-words-replace-2 = laddie
|
||||
|
||||
accent-scottish-words-3 = man
|
||||
accent-scottish-words-replace-3 = lad
|
||||
|
||||
accent-scottish-words-4 = woman
|
||||
accent-scottish-words-replace-4 = lass
|
||||
|
||||
accent-scottish-words-5 = do
|
||||
accent-scottish-words-replace-5 = dae
|
||||
|
||||
accent-scottish-words-6 = don't
|
||||
accent-scottish-words-replace-6 = dinnae
|
||||
|
||||
accent-scottish-words-7 = dont
|
||||
accent-scottish-words-replace-7 = dinnae
|
||||
|
||||
accent-scottish-words-8 = i'm
|
||||
accent-scottish-words-replace-8 = A'm
|
||||
|
||||
accent-scottish-words-9 = im
|
||||
accent-scottish-words-replace-9 = am
|
||||
|
||||
accent-scottish-words-10 = going
|
||||
accent-scottish-words-replace-10 = gaun
|
||||
|
||||
accent-scottish-words-11 = know
|
||||
accent-scottish-words-replace-11 = ken
|
||||
|
||||
accent-scottish-words-12 = i
|
||||
accent-scottish-words-replace-12 = Ah
|
||||
|
||||
accent-scottish-words-13 = you're
|
||||
accent-scottish-words-replace-13 = ye're
|
||||
|
||||
accent-scottish-words-14 = youre
|
||||
accent-scottish-words-replace-14 = yere
|
||||
|
||||
accent-scottish-words-15 = you
|
||||
accent-scottish-words-replace-15 = ya
|
||||
|
||||
accent-scottish-words-16 = i'll
|
||||
accent-scottish-words-replace-16 = A'll
|
||||
|
||||
accent-scottish-words-17 = ill
|
||||
accent-scottish-words-replace-17 = all
|
||||
|
||||
accent-scottish-words-18 = of
|
||||
accent-scottish-words-replace-18 = ae
|
||||
|
||||
accent-scottish-words-19 = was
|
||||
accent-scottish-words-replace-19 = wis
|
||||
|
||||
accent-scottish-words-20 = can't
|
||||
accent-scottish-words-replace-20 = cannae
|
||||
|
||||
accent-scottish-words-21 = cant
|
||||
accent-scottish-words-replace-21 = cannae
|
||||
|
||||
accent-scottish-words-22 = yourself
|
||||
accent-scottish-words-replace-22 = yarsel
|
||||
|
||||
accent-scottish-words-23 = where
|
||||
accent-scottish-words-replace-23 = whaur
|
||||
|
||||
accent-scottish-words-24 = oh
|
||||
accent-scottish-words-replace-24 = ach
|
||||
|
||||
accent-scottish-words-25 = little
|
||||
accent-scottish-words-replace-25 = wee
|
||||
|
||||
accent-scottish-words-26 = small
|
||||
accent-scottish-words-replace-26 = wee
|
||||
|
||||
accent-scottish-words-27 = shit
|
||||
accent-scottish-words-replace-27 = shite
|
||||
|
||||
accent-scottish-words-28 = yeah
|
||||
accent-scottish-words-replace-28 = aye
|
||||
|
||||
accent-scottish-words-29 = yea
|
||||
accent-scottish-words-replace-29 = aye
|
||||
|
||||
accent-scottish-words-30 = yes
|
||||
accent-scottish-words-replace-30 = aye
|
||||
|
||||
accent-scottish-words-31 = too
|
||||
accent-scottish-words-replace-31 = tae
|
||||
|
||||
accent-scottish-words-32 = my
|
||||
accent-scottish-words-replace-32 = me
|
||||
|
||||
accent-scottish-words-33 = not
|
||||
accent-scottish-words-replace-33 = nae
|
||||
|
||||
accent-scottish-words-34 = dad
|
||||
accent-scottish-words-replace-34 = da
|
||||
|
||||
accent-scottish-words-35 = mom
|
||||
accent-scottish-words-replace-35 = maw
|
||||
|
||||
accent-scottish-words-36 = newbie
|
||||
accent-scottish-words-replace-36 = greenbeard
|
||||
|
||||
accent-scottish-words-37 = noob
|
||||
accent-scottish-words-replace-37 = greenbeard
|
||||
|
||||
accent-scottish-words-38 = noobie
|
||||
accent-scottish-words-replace-38 = greenbeard
|
||||
|
||||
accent-scottish-words-39 = professional
|
||||
accent-scottish-words-replace-39 = greybeard
|
||||
|
||||
accent-scottish-words-40 = veteran
|
||||
accent-scottish-words-replace-40 = greybeard
|
||||
|
||||
accent-scottish-words-41 = fuck
|
||||
accent-scottish-words-replace-41 = feck
|
||||
|
||||
accent-scottish-words-42 = would
|
||||
accent-scottish-words-replace-42 = wou
|
||||
|
||||
accent-scottish-words-43 = should
|
||||
accent-scottish-words-replace-43 = shou
|
||||
|
||||
accent-scottish-words-44 = could
|
||||
accent-scottish-words-replace-44 = cou
|
||||
|
||||
accent-scottish-words-45 = would've
|
||||
accent-scottish-words-replace-45 = wou'hae
|
||||
|
||||
accent-scottish-words-46 = should've
|
||||
accent-scottish-words-replace-46 = shou'hae
|
||||
|
||||
accent-scottish-words-47 = could've
|
||||
accent-scottish-words-replace-47 = cou'hae
|
||||
|
||||
accent-scottish-words-48 = wouldve
|
||||
accent-scottish-words-replace-48 = wouhae
|
||||
|
||||
accent-scottish-words-49 = shouldve
|
||||
accent-scottish-words-replace-49 = shouhae
|
||||
|
||||
accent-scottish-words-50 = couldve
|
||||
accent-scottish-words-replace-50 = couhae
|
||||
|
||||
accent-scottish-words-51 = would'nt
|
||||
accent-scottish-words-replace-51 = wou'nae
|
||||
|
||||
accent-scottish-words-52 = should'nt
|
||||
accent-scottish-words-replace-52 = shou'nae
|
||||
|
||||
accent-scottish-words-53 = could'nt
|
||||
accent-scottish-words-replace-53 = cou'nae
|
||||
|
||||
accent-scottish-words-54 = wouldnt
|
||||
accent-scottish-words-replace-54 = wounae
|
||||
|
||||
accent-scottish-words-55 = shouldnt
|
||||
accent-scottish-words-replace-55 = shounae
|
||||
|
||||
accent-scottish-words-56 = couldnt
|
||||
accent-scottish-words-replace-56 = counae
|
||||
|
||||
accent-scottish-words-57 = have
|
||||
accent-scottish-words-replace-57 = hae
|
||||
|
||||
accent-scottish-words-58 = no
|
||||
accent-scottish-words-replace-58 = nae
|
||||
|
||||
accent-scottish-words-59 = to
|
||||
accent-scottish-words-replace-59 = tae
|
||||
|
||||
accent-scottish-words-60 = the
|
||||
accent-scottish-words-replace-60 = tha
|
||||
|
||||
accent-scottish-words-61 = have
|
||||
accent-scottish-words-replace-61 = hae
|
||||
|
||||
accent-scottish-words-62 = are
|
||||
accent-scottish-words-replace-62 = be
|
||||
|
||||
accent-scottish-words-63 = is
|
||||
accent-scottish-words-replace-63 = be
|
||||
|
||||
accent-scottish-words-64 = am
|
||||
accent-scottish-words-replace-64 = be
|
||||
|
||||
accent-scottish-words-66 = food
|
||||
accent-scottish-words-replace-66 = grub
|
||||
|
||||
accent-scottish-words-67 = have
|
||||
accent-scottish-words-replace-67 = hae
|
||||
|
||||
accent-scottish-words-68 = hey
|
||||
accent-scottish-words-replace-68 = oi
|
||||
|
||||
accent-scottish-words-69 = what
|
||||
accent-scottish-words-replace-69 = wot
|
||||
|
||||
accent-scottish-words-70 = where
|
||||
accent-scottish-words-replace-70 = whaur
|
||||
|
||||
accent-scottish-words-71 = when
|
||||
accent-scottish-words-replace-71 = wen
|
||||
|
||||
accent-scottish-words-72 = myself
|
||||
accent-scottish-words-replace-72 = mesel
|
||||
|
||||
accent-scottish-words-73 = himself
|
||||
accent-scottish-words-replace-73 = hesel
|
||||
|
||||
accent-scottish-words-74 = herself
|
||||
accent-scottish-words-replace-74 = shesel
|
||||
|
||||
accent-scottish-words-75 = move
|
||||
accent-scottish-words-replace-75 = moev
|
||||
|
||||
accent-scottish-words-76 = moving
|
||||
accent-scottish-words-replace-76 = moeven
|
||||
|
||||
accent-scottish-words-77 = wasn't
|
||||
accent-scottish-words-replace-77 = wis'nae
|
||||
|
||||
accent-scottish-words-78 = wasnt
|
||||
accent-scottish-words-replace-78 = wisnae
|
||||
|
||||
accent-scottish-words-79 = wizard
|
||||
accent-scottish-words-replace-79 = wizer
|
||||
|
||||
accent-scottish-words-80 = fool
|
||||
accent-scottish-words-replace-80 = wazzok
|
||||
|
||||
accent-scottish-words-81 = have
|
||||
accent-scottish-words-replace-81 = hae
|
||||
|
||||
accent-scottish-words-82 = for
|
||||
accent-scottish-words-replace-82 = fer
|
||||
|
||||
accent-scottish-words-83 = about
|
||||
accent-scottish-words-replace-83 = aboot
|
||||
|
||||
accent-scottish-words-84 = ow
|
||||
accent-scottish-words-replace-84 = och
|
||||
|
||||
accent-scottish-words-85 = small
|
||||
accent-scottish-words-replace-85 = wee
|
||||
|
||||
accent-scottish-words-86 = tiny
|
||||
accent-scottish-words-replace-86 = tinnae
|
||||
|
||||
accent-scottish-words-87 = baby
|
||||
accent-scottish-words-replace-87 = babee
|
||||
|
||||
accent-scottish-words-88 = after
|
||||
accent-scottish-words-replace-88 = efter
|
||||
|
||||
accent-scottish-words-90 = gonna
|
||||
accent-scottish-words-replace-90 = gaun'ae
|
||||
|
||||
accent-scottish-words-91 = going to
|
||||
accent-scottish-words-replace-91 = gaun'ae
|
||||
|
||||
accent-scottish-words-92 = gone
|
||||
accent-scottish-words-replace-92 = gaun
|
||||
|
||||
accent-scottish-words-93 = talk
|
||||
accent-scottish-words-replace-93 = blather
|
||||
|
||||
accent-scottish-words-94 = talking
|
||||
accent-scottish-words-replace-94 = blatherin'
|
||||
|
||||
accent-scottish-words-95 = now
|
||||
accent-scottish-words-replace-95 = nou
|
||||
|
||||
accent-scottish-words-96 = talked
|
||||
accent-scottish-words-replace-96 = blathered
|
||||
|
||||
accent-scottish-words-97 = give
|
||||
accent-scottish-words-replace-97 = gie
|
||||
|
||||
accent-scottish-words-98 = gimme
|
||||
accent-scottish-words-replace-98 = gie's
|
||||
|
||||
accent-scottish-words-99 = give me
|
||||
accent-scottish-words-replace-99 = gie's
|
||||
|
||||
accent-scottish-words-100 = do you
|
||||
accent-scottish-words-replace-100 = d'ya
|
||||
|
||||
accent-scottish-words-101 = with
|
||||
accent-scottish-words-replace-101 = wi
|
||||
|
||||
accent-scottish-words-102 = without
|
||||
accent-scottish-words-replace-102 = wi'ou
|
||||
|
||||
accent-scottish-words-103 = whether
|
||||
accent-scottish-words-replace-103 = we'er
|
||||
|
||||
accent-scottish-words-104 = ever
|
||||
accent-scottish-words-replace-104 = e'er
|
||||
|
||||
accent-scottish-words-105 = whenever
|
||||
accent-scottish-words-replace-105 = wen'er
|
||||
|
||||
accent-scottish-words-106 = whatever
|
||||
accent-scottish-words-replace-106 = wot'er
|
||||
|
||||
accent-scottish-words-107 = how
|
||||
accent-scottish-words-replace-107 = hou
|
||||
|
||||
accent-scottish-words-108 = however
|
||||
accent-scottish-words-replace-108 = hou'er
|
||||
|
||||
accent-scottish-words-109 = think
|
||||
accent-scottish-words-replace-109 = reckon
|
||||
|
||||
accent-scottish-words-111 = hamlet
|
||||
accent-scottish-words-replace-111 = hammy
|
||||
|
||||
accent-scottish-words-112 = hampster
|
||||
accent-scottish-words-replace-112 = hammy
|
||||
|
||||
accent-scottish-words-113 = nukie
|
||||
accent-scottish-words-replace-113 = reddie
|
||||
|
||||
accent-scottish-words-114 = nuclear op
|
||||
accent-scottish-words-replace-114 = reddie
|
||||
|
||||
accent-scottish-words-115 = nuclear operative
|
||||
accent-scottish-words-replace-115 = reddie
|
||||
|
||||
accent-scottish-words-116 = nuclear agent
|
||||
accent-scottish-words-replace-116 = reddie
|
||||
|
||||
accent-scottish-words-121 = more
|
||||
accent-scottish-words-replace-121 = maer
|
||||
|
||||
accent-scottish-words-122 = moreover
|
||||
accent-scottish-words-replace-122 = maero'er
|
||||
|
||||
accent-scottish-words-123 = over
|
||||
accent-scottish-words-replace-123 = o'er
|
||||
|
||||
accent-scottish-words-125 = human
|
||||
accent-scottish-words-replace-125 = hyooman
|
||||
|
||||
accent-scottish-words-126 = dwarf
|
||||
accent-scottish-words-replace-126 = dorf
|
||||
|
||||
accent-scottish-words-127 = slime
|
||||
accent-scottish-words-replace-127 = oozi
|
||||
|
||||
accent-scottish-words-128 = rat
|
||||
accent-scottish-words-replace-128 = raki
|
||||
|
||||
accent-scottish-words-129 = arachnid
|
||||
accent-scottish-words-replace-129 = aranaki
|
||||
|
||||
accent-scottish-words-130 = spider
|
||||
accent-scottish-words-replace-130 = hisser
|
||||
|
||||
accent-scottish-words-131 = isn't
|
||||
accent-scottish-words-replace-131 = be'nae
|
||||
|
||||
accent-scottish-words-132 = aren't
|
||||
accent-scottish-words-replace-132 = be'nae
|
||||
|
||||
accent-scottish-words-133 = ain't
|
||||
accent-scottish-words-replace-133 = be'nae
|
||||
|
||||
accent-scottish-words-134 = isnt
|
||||
accent-scottish-words-replace-134 = benae
|
||||
|
||||
accent-scottish-words-135 = arent
|
||||
accent-scottish-words-replace-135 = benae
|
||||
|
||||
accent-scottish-words-136 = aint
|
||||
accent-scottish-words-replace-136 = benae
|
||||
|
||||
accent-scottish-words-137 = zombie
|
||||
accent-scottish-words-replace-137 = rotter
|
||||
|
||||
accent-scottish-words-138 = zomb
|
||||
accent-scottish-words-replace-138 = rotter
|
||||
|
||||
accent-scottish-words-139 = clown
|
||||
accent-scottish-words-replace-139 = honki
|
||||
|
||||
accent-scottish-words-140 = cluwn
|
||||
accent-scottish-words-replace-140 = hunki
|
||||
|
||||
accent-scottish-words-141 = carp
|
||||
accent-scottish-words-replace-141 = fin
|
||||
|
||||
accent-scottish-words-142 = crusher
|
||||
accent-scottish-words-replace-142 = axe
|
||||
|
||||
accent-scottish-words-143 = coward
|
||||
accent-scottish-words-replace-143 = leaflover
|
||||
|
||||
accent-scottish-words-144 = idiot
|
||||
accent-scottish-words-replace-144 = eejit
|
||||
|
||||
accent-scottish-words-145 = stupid
|
||||
accent-scottish-words-replace-145 = diteit
|
||||
|
||||
accent-scottish-words-146 = officer
|
||||
accent-scottish-words-replace-146 = bobby
|
||||
|
||||
accent-scottish-words-147 = seccie
|
||||
accent-scottish-words-replace-147 = bobby
|
||||
|
||||
accent-scottish-words-148 = a
|
||||
accent-scottish-words-replace-148 = ae
|
||||
|
||||
accent-scottish-words-149 = certain
|
||||
accent-scottish-words-replace-149 = cocksure
|
||||
|
||||
accent-scottish-words-150 = to all
|
||||
accent-scottish-words-replace-150 = t'all
|
||||
|
||||
accent-scottish-words-151 = old
|
||||
accent-scottish-words-replace-151 = ol'
|
||||
|
||||
accent-scottish-words-152 = filthy
|
||||
accent-scottish-words-replace-152 = manky
|
||||
|
||||
accent-scottish-words-153 = i do not know
|
||||
accent-scottish-words-replace-153 = ah dinnae ken
|
||||
|
||||
accent-scottish-words-154 = dumbass
|
||||
accent-scottish-words-replace-154 = bampot
|
||||
|
||||
accent-scottish-words-155 = there
|
||||
accent-scottish-words-replace-155 = thare
|
||||
|
||||
accent-scottish-words-156 = from
|
||||
accent-scottish-words-replace-156 = frae
|
||||
|
||||
accent-scottish-words-157 = highland
|
||||
accent-scottish-words-replace-157 = hielan
|
||||
|
||||
accent-scottish-words-158 = high
|
||||
accent-scottish-words-replace-158 = hie
|
||||
|
||||
accent-scottish-words-159 = syndicate agent
|
||||
accent-scottish-words-replace-159 = snakey bastard
|
||||
|
||||
accent-scottish-words-160 = syndicate
|
||||
accent-scottish-words-replace-160 = snake
|
||||
|
||||
accent-scottish-words-161 = syndicates
|
||||
accent-scottish-words-replace-161 = snakes
|
||||
|
||||
accent-scottish-words-162 = nukies
|
||||
accent-scottish-words-replace-162 = reddies
|
||||
|
||||
accent-scottish-words-163 = syndicate agents
|
||||
accent-scottish-words-replace-163 = snakey bastards
|
||||
2
Resources/Locale/en-US/deltav/traits/traits.ftl
Normal file
2
Resources/Locale/en-US/deltav/traits/traits.ftl
Normal file
@@ -0,0 +1,2 @@
|
||||
trait-scottish-accent-name = Scottish Accent
|
||||
trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan.
|
||||
@@ -33,7 +33,7 @@
|
||||
sprite: Objects/Specific/Service/vending_machine_restock.rsi
|
||||
state: base
|
||||
product: CrateVendingMachineRestockClothesFilled
|
||||
cost: 6550 #DeltaV
|
||||
cost: 6625 #DeltaV
|
||||
category: Service
|
||||
group: market
|
||||
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
ClothingOuterCardborg: 2
|
||||
ClothingHeadHatSombrero: 2
|
||||
ClothingOuterPonchoClassic: 2
|
||||
ClothingUniformJumpsuitKilt: 3 # DeltaV - SCOTTTTLANDDDDD FURREVERRRRR!!
|
||||
ClothingEyesEyepatch: 2 # Delta-V Yarrr
|
||||
ClothingHeadHatPwig: 2
|
||||
ClothingOuterRobesJudge: 2
|
||||
ClothingOuterPoncho: 2
|
||||
|
||||
166
Resources/Prototypes/DeltaV/Accents/word_replacements.yml
Normal file
166
Resources/Prototypes/DeltaV/Accents/word_replacements.yml
Normal file
@@ -0,0 +1,166 @@
|
||||
- type: accent
|
||||
id: scottish
|
||||
wordReplacements:
|
||||
accent-scottish-words-1: accent-scottish-words-replace-1
|
||||
accent-scottish-words-2: accent-scottish-words-replace-2
|
||||
accent-scottish-words-3: accent-scottish-words-replace-3
|
||||
accent-scottish-words-4: accent-scottish-words-replace-4
|
||||
accent-scottish-words-5: accent-scottish-words-replace-5
|
||||
accent-scottish-words-6: accent-scottish-words-replace-6
|
||||
accent-scottish-words-7: accent-scottish-words-replace-7
|
||||
accent-scottish-words-8: accent-scottish-words-replace-8
|
||||
accent-scottish-words-9: accent-scottish-words-replace-9
|
||||
accent-scottish-words-10: accent-scottish-words-replace-10
|
||||
accent-scottish-words-11: accent-scottish-words-replace-11
|
||||
accent-scottish-words-12: accent-scottish-words-replace-12
|
||||
accent-scottish-words-13: accent-scottish-words-replace-13
|
||||
accent-scottish-words-14: accent-scottish-words-replace-14
|
||||
accent-scottish-words-15: accent-scottish-words-replace-15
|
||||
accent-scottish-words-16: accent-scottish-words-replace-16
|
||||
accent-scottish-words-17: accent-scottish-words-replace-17
|
||||
accent-scottish-words-18: accent-scottish-words-replace-18
|
||||
accent-scottish-words-19: accent-scottish-words-replace-19
|
||||
accent-scottish-words-20: accent-scottish-words-replace-20
|
||||
accent-scottish-words-21: accent-scottish-words-replace-21
|
||||
accent-scottish-words-22: accent-scottish-words-replace-22
|
||||
accent-scottish-words-23: accent-scottish-words-replace-23
|
||||
accent-scottish-words-24: accent-scottish-words-replace-24
|
||||
accent-scottish-words-25: accent-scottish-words-replace-25
|
||||
accent-scottish-words-26: accent-scottish-words-replace-26
|
||||
accent-scottish-words-27: accent-scottish-words-replace-27
|
||||
accent-scottish-words-28: accent-scottish-words-replace-28
|
||||
accent-scottish-words-29: accent-scottish-words-replace-29
|
||||
accent-scottish-words-30: accent-scottish-words-replace-30
|
||||
accent-scottish-words-31: accent-scottish-words-replace-31
|
||||
accent-scottish-words-32: accent-scottish-words-replace-32
|
||||
accent-scottish-words-33: accent-scottish-words-replace-33
|
||||
accent-scottish-words-34: accent-scottish-words-replace-34
|
||||
accent-scottish-words-35: accent-scottish-words-replace-35
|
||||
accent-scottish-words-36: accent-scottish-words-replace-36
|
||||
accent-scottish-words-37: accent-scottish-words-replace-37
|
||||
accent-scottish-words-38: accent-scottish-words-replace-38
|
||||
accent-scottish-words-39: accent-scottish-words-replace-39
|
||||
accent-scottish-words-40: accent-scottish-words-replace-40
|
||||
accent-scottish-words-41: accent-scottish-words-replace-41
|
||||
accent-scottish-words-42: accent-scottish-words-replace-42
|
||||
accent-scottish-words-43: accent-scottish-words-replace-43
|
||||
accent-scottish-words-44: accent-scottish-words-replace-44
|
||||
accent-scottish-words-45: accent-scottish-words-replace-45
|
||||
accent-scottish-words-46: accent-scottish-words-replace-46
|
||||
accent-scottish-words-47: accent-scottish-words-replace-47
|
||||
accent-scottish-words-48: accent-scottish-words-replace-48
|
||||
accent-scottish-words-49: accent-scottish-words-replace-49
|
||||
accent-scottish-words-50: accent-scottish-words-replace-50
|
||||
accent-scottish-words-51: accent-scottish-words-replace-51
|
||||
accent-scottish-words-52: accent-scottish-words-replace-52
|
||||
accent-scottish-words-53: accent-scottish-words-replace-53
|
||||
accent-scottish-words-54: accent-scottish-words-replace-54
|
||||
accent-scottish-words-55: accent-scottish-words-replace-55
|
||||
accent-scottish-words-56: accent-scottish-words-replace-56
|
||||
accent-scottish-words-57: accent-scottish-words-replace-57
|
||||
accent-scottish-words-58: accent-scottish-words-replace-58
|
||||
accent-scottish-words-59: accent-scottish-words-replace-59
|
||||
accent-scottish-words-60: accent-scottish-words-replace-60
|
||||
accent-scottish-words-61: accent-scottish-words-replace-61
|
||||
accent-scottish-words-62: accent-scottish-words-replace-62
|
||||
accent-scottish-words-63: accent-scottish-words-replace-63
|
||||
accent-scottish-words-64: accent-scottish-words-replace-64
|
||||
accent-scottish-words-65: accent-scottish-words-replace-65
|
||||
accent-scottish-words-66: accent-scottish-words-replace-66
|
||||
accent-scottish-words-67: accent-scottish-words-replace-67
|
||||
accent-scottish-words-68: accent-scottish-words-replace-68
|
||||
accent-scottish-words-69: accent-scottish-words-replace-69
|
||||
accent-scottish-words-70: accent-scottish-words-replace-70
|
||||
accent-scottish-words-71: accent-scottish-words-replace-71
|
||||
accent-scottish-words-72: accent-scottish-words-replace-72
|
||||
accent-scottish-words-73: accent-scottish-words-replace-73
|
||||
accent-scottish-words-74: accent-scottish-words-replace-74
|
||||
accent-scottish-words-75: accent-scottish-words-replace-75
|
||||
accent-scottish-words-76: accent-scottish-words-replace-76
|
||||
accent-scottish-words-77: accent-scottish-words-replace-77
|
||||
accent-scottish-words-78: accent-scottish-words-replace-78
|
||||
accent-scottish-words-79: accent-scottish-words-replace-79
|
||||
accent-scottish-words-80: accent-scottish-words-replace-80
|
||||
accent-scottish-words-81: accent-scottish-words-replace-81
|
||||
accent-scottish-words-82: accent-scottish-words-replace-82
|
||||
accent-scottish-words-83: accent-scottish-words-replace-83
|
||||
accent-scottish-words-84: accent-scottish-words-replace-84
|
||||
accent-scottish-words-85: accent-scottish-words-replace-85
|
||||
accent-scottish-words-86: accent-scottish-words-replace-86
|
||||
accent-scottish-words-87: accent-scottish-words-replace-87
|
||||
accent-scottish-words-88: accent-scottish-words-replace-88
|
||||
accent-scottish-words-89: accent-scottish-words-replace-89
|
||||
accent-scottish-words-90: accent-scottish-words-replace-90
|
||||
accent-scottish-words-91: accent-scottish-words-replace-91
|
||||
accent-scottish-words-92: accent-scottish-words-replace-92
|
||||
accent-scottish-words-93: accent-scottish-words-replace-93
|
||||
accent-scottish-words-94: accent-scottish-words-replace-94
|
||||
accent-scottish-words-95: accent-scottish-words-replace-95
|
||||
accent-scottish-words-96: accent-scottish-words-replace-96
|
||||
accent-scottish-words-97: accent-scottish-words-replace-97
|
||||
accent-scottish-words-98: accent-scottish-words-replace-98
|
||||
accent-scottish-words-99: accent-scottish-words-replace-99
|
||||
accent-scottish-words-100: accent-scottish-words-replace-100
|
||||
accent-scottish-words-101: accent-scottish-words-replace-101
|
||||
accent-scottish-words-102: accent-scottish-words-replace-102
|
||||
accent-scottish-words-103: accent-scottish-words-replace-103
|
||||
accent-scottish-words-104: accent-scottish-words-replace-104
|
||||
accent-scottish-words-105: accent-scottish-words-replace-105
|
||||
accent-scottish-words-106: accent-scottish-words-replace-106
|
||||
accent-scottish-words-107: accent-scottish-words-replace-107
|
||||
accent-scottish-words-108: accent-scottish-words-replace-108
|
||||
accent-scottish-words-109: accent-scottish-words-replace-109
|
||||
accent-scottish-words-110: accent-scottish-words-replace-110
|
||||
accent-scottish-words-111: accent-scottish-words-replace-111
|
||||
accent-scottish-words-112: accent-scottish-words-replace-112
|
||||
accent-scottish-words-113: accent-scottish-words-replace-113
|
||||
accent-scottish-words-114: accent-scottish-words-replace-114
|
||||
accent-scottish-words-115: accent-scottish-words-replace-115
|
||||
accent-scottish-words-116: accent-scottish-words-replace-116
|
||||
accent-scottish-words-117: accent-scottish-words-replace-117
|
||||
accent-scottish-words-118: accent-scottish-words-replace-118
|
||||
accent-scottish-words-119: accent-scottish-words-replace-119
|
||||
accent-scottish-words-120: accent-scottish-words-replace-120
|
||||
accent-scottish-words-121: accent-scottish-words-replace-121
|
||||
accent-scottish-words-122: accent-scottish-words-replace-122
|
||||
accent-scottish-words-123: accent-scottish-words-replace-123
|
||||
accent-scottish-words-124: accent-scottish-words-replace-124
|
||||
accent-scottish-words-125: accent-scottish-words-replace-125
|
||||
accent-scottish-words-126: accent-scottish-words-replace-126
|
||||
accent-scottish-words-127: accent-scottish-words-replace-127
|
||||
accent-scottish-words-128: accent-scottish-words-replace-128
|
||||
accent-scottish-words-129: accent-scottish-words-replace-129
|
||||
accent-scottish-words-130: accent-scottish-words-replace-130
|
||||
accent-scottish-words-131: accent-scottish-words-replace-131
|
||||
accent-scottish-words-132: accent-scottish-words-replace-132
|
||||
accent-scottish-words-133: accent-scottish-words-replace-133
|
||||
accent-scottish-words-134: accent-scottish-words-replace-134
|
||||
accent-scottish-words-135: accent-scottish-words-replace-135
|
||||
accent-scottish-words-136: accent-scottish-words-replace-136
|
||||
accent-scottish-words-137: accent-scottish-words-replace-137
|
||||
accent-scottish-words-138: accent-scottish-words-replace-138
|
||||
accent-scottish-words-139: accent-scottish-words-replace-139
|
||||
accent-scottish-words-140: accent-scottish-words-replace-140
|
||||
accent-scottish-words-141: accent-scottish-words-replace-141
|
||||
accent-scottish-words-142: accent-scottish-words-replace-142
|
||||
accent-scottish-words-143: accent-scottish-words-replace-143
|
||||
accent-scottish-words-144: accent-scottish-words-replace-144
|
||||
accent-scottish-words-145: accent-scottish-words-replace-145
|
||||
accent-scottish-words-146: accent-scottish-words-replace-146
|
||||
accent-scottish-words-147: accent-scottish-words-replace-147
|
||||
accent-scottish-words-148: accent-scottish-words-replace-148
|
||||
accent-scottish-words-149: accent-scottish-words-replace-149
|
||||
accent-scottish-words-150: accent-scottish-words-replace-150
|
||||
accent-scottish-words-151: accent-scottish-words-replace-151
|
||||
accent-scottish-words-152: accent-scottish-words-replace-152
|
||||
accent-scottish-words-153: accent-scottish-words-replace-153
|
||||
accent-scottish-words-154: accent-scottish-words-replace-154
|
||||
accent-scottish-words-155: accent-scottish-words-replace-155
|
||||
accent-scottish-words-156: accent-scottish-words-replace-156
|
||||
accent-scottish-words-157: accent-scottish-words-replace-157
|
||||
accent-scottish-words-158: accent-scottish-words-replace-158
|
||||
accent-scottish-words-159: accent-scottish-words-replace-159
|
||||
accent-scottish-words-160: accent-scottish-words-replace-160
|
||||
accent-scottish-words-161: accent-scottish-words-replace-161
|
||||
accent-scottish-words-162: accent-scottish-words-replace-162
|
||||
accent-scottish-words-163: accent-scottish-words-replace-163
|
||||
@@ -232,3 +232,14 @@
|
||||
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi
|
||||
- type: Clothing
|
||||
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/centcom_officer.rsi
|
||||
|
||||
- type: entity
|
||||
parent: ClothingUniformBase
|
||||
id: ClothingUniformJumpsuitKilt
|
||||
name: kilt
|
||||
description: A fine bit o' garb for the lad an' lasses.
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi
|
||||
- type: Clothing
|
||||
sprite: DeltaV/Clothing/Uniforms/Jumpsuit/kilt.rsi
|
||||
7
Resources/Prototypes/DeltaV/Traits/neutral.yml
Normal file
7
Resources/Prototypes/DeltaV/Traits/neutral.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
- type: trait
|
||||
id: ScottishAccent
|
||||
name: trait-scottish-accent-name
|
||||
description: trait-scottish-accent-desc
|
||||
traitGear: BagpipeInstrument
|
||||
components:
|
||||
- type: ScottishAccent
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 353 B |
Binary file not shown.
|
After Width: | Height: | Size: 349 B |
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"version": 1,
|
||||
"license": "CC0-1.0",
|
||||
"copyright": "Taken from Yogstation https://github.com/yogstation13/Yogstation/blob/master/icons/mob/clothing/uniform/uniform.dmi. Edited by ps3moira",
|
||||
"size": {
|
||||
"x": 32,
|
||||
"y": 32
|
||||
},
|
||||
"states": [
|
||||
{
|
||||
"name": "icon"
|
||||
},
|
||||
{
|
||||
"name": "equipped-INNERCLOTHING",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "inhand-left",
|
||||
"directions": 4
|
||||
},
|
||||
{
|
||||
"name": "inhand-right",
|
||||
"directions": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user