-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamplePlayerCharacter.ts
887 lines (886 loc) · 29.1 KB
/
examplePlayerCharacter.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
import { Proficiencies } from "./src/PF2eCoreLib/Proficiencies";
import { BonusType } from "./src/PF2eCoreLib/BonusTypes";
import { ArmorGroup } from "./src/PF2eCoreLib/ArmorGroup";
import PlayerCharacterData from "./src/PF2eCoreLib/PlayerCharacter/PlayerCharacter";
import "react-native-get-random-values";
import { NIL as uuidNil, v4 as uuidv4 } from "uuid";
import { ArmorCategory } from "./src/PF2eCoreLib/ArmorCategory";
import { Ability } from "./src/PF2eCoreLib/Ability";
import { Size } from "./src/PF2eCoreLib/Size";
import { DEFAULT_ARMOR } from "./src/PF2eCoreLib/PlayerCharacter/Armor";
export const examplePlayerCharacter: PlayerCharacterData = {
metadata: {
id: uuidNil, // All zero uuid for testing
},
level: 1,
experiencePoints: 100,
name: "Chuck",
playerName: "Mirko",
alignment: "LN",
deity: "Lamashtu",
traits: ["Dwarf", "Druid", "Humanoid"],
size: Size.Medium,
ancestry: {
name: "Dwarf",
heritage: "Anvil Dwarf",
},
background: {
name: "Emancipated",
},
pcClass: {
name: "Druid",
subClass: "Wild Order",
proficiency: Proficiencies.Master,
keyAbility: Ability.Wisdom,
},
abilityScores: {
Strength: { score: 10, ability: Ability.Strength },
Dexterity: { score: 16, ability: Ability.Dexterity },
Constitution: { score: 20, ability: Ability.Constitution },
Intelligence: { score: 6, ability: Ability.Intelligence },
Wisdom: { score: 18, ability: Ability.Wisdom },
Charisma: { score: 8, ability: Ability.Charisma },
},
languages: ["Common", "Dwarf", "Goblin"],
saves: {
fortitude: Proficiencies.Expert,
reflex: Proficiencies.Trained,
will: Proficiencies.Expert,
},
armorProficiencies: {
unarmored: Proficiencies.Trained,
light: Proficiencies.Trained,
medium: Proficiencies.Untrained,
heavy: Proficiencies.Untrained,
},
skills: [
{
name: "Acrobatics",
ability: Ability.Dexterity,
proficiency: Proficiencies.Legendary,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Arcana",
ability: Ability.Intelligence,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Athletics",
ability: Ability.Strength,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Crafting",
ability: Ability.Intelligence,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Deception",
ability: Ability.Charisma,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Diplomacy",
ability: Ability.Charisma,
proficiency: Proficiencies.Untrained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Intimidation",
ability: Ability.Charisma,
proficiency: Proficiencies.Expert,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Lore",
loreDescriptor: "Golarion",
ability: Ability.Intelligence,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Medicine",
ability: Ability.Wisdom,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Nature",
ability: Ability.Wisdom,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Occultism",
ability: Ability.Intelligence,
proficiency: Proficiencies.Master,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Performance",
ability: Ability.Charisma,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Religion",
ability: Ability.Wisdom,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Society",
ability: Ability.Intelligence,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Stealth",
ability: Ability.Dexterity,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Survival",
ability: Ability.Wisdom,
proficiency: Proficiencies.Trained,
hasArmorPenalty: false,
},
{
name: "Thievery",
ability: Ability.Dexterity,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 2,
},
],
ancestryFeatsAndAbilities: [
{ title: "Special 1st", description: "Dwarf Stuff" },
{ title: "Heritage 1st", description: "other Dwarf Stuff" },
{ title: "Feat 1st", description: "other Dwarf Stuff" },
{ title: "Feat 5th", description: "other Dwarf Stuff" },
{ title: "Feat 9th", description: "other Dwarf Stuff" },
{ title: "Feat 13th", description: "other Dwarf Stuff" },
{ title: "Feat 17th", description: "other Dwarf Stuff" },
],
hitPoints: {
maxHitPoints: 30,
currentHitPoints: 30,
temporaryHitPoints: 2,
dying: 0,
maxDying: 4,
wounded: 1,
},
movement: {
landSpeed: 25,
burrowSpeed: 5,
climbSpeed: 10,
flySpeed: 0,
},
weaponProficiencies: {
Unarmed: Proficiencies.Trained,
Simple: Proficiencies.Trained,
Martial: Proficiencies.Untrained,
Other: [
{
description: "Brass Knuckles",
proficiency: Proficiencies.Expert,
},
{
description: "Halberd",
proficiency: Proficiencies.Expert,
},
],
},
perceptionProficiency: Proficiencies.Trained,
senses: "Low-Light Vision",
resistances: "Force 5, Cold 5",
immunities: "Electricity, Fire",
conditions: "Clumsy 1, Flat-Footed",
weakness: "Silver 5",
skillFeats: [
{ title: "Background", description: "Dwarf Stuff" },
{ title: "2nd", description: "other Dwarf Stuff" },
{ title: "4th", description: "other Dwarf Stuff" },
{ title: "6th", description: "other Dwarf Stuff" },
{ title: "8th", description: "other Dwarf Stuff" },
{ title: "10th", description: "other Dwarf Stuff" },
{ title: "12th", description: "other Dwarf Stuff" },
{ title: "14th", description: "other Dwarf Stuff" },
{ title: "16th", description: "other Dwarf Stuff" },
{ title: "18th", description: "other Dwarf Stuff" },
{ title: "20th", description: "other Dwarf Stuff" },
],
generalFeats: [
{ title: "3rd", description: "Dwarf Stuff" },
{ title: "7th", description: "other Dwarf Stuff" },
{ title: "11th", description: "other Dwarf Stuff" },
{ title: "15th", description: "other Dwarf Stuff" },
{ title: "19th", description: "other Dwarf Stuff" },
],
classFeatsAndAbilities: [
{ title: "Feature 1st", description: "Dwarf Stuff" },
{ title: "-Feature 1st", description: "Dwarf Stuff" },
{ title: "Feat 1st", description: "other Dwarf Stuff" },
{ title: "Feat 2nd", description: "other Dwarf Stuff" },
{ title: "Feature 3rd", description: "other Dwarf Stuff" },
{ title: "Feat 4th", description: "other Dwarf Stuff" },
{ title: "Feature 5th", description: "other Dwarf Stuff" },
{ title: "Feat 6th", description: "other Dwarf Stuff" },
{ title: "Feature 7th", description: "other Dwarf Stuff" },
{ title: "Feat 8th", description: "other Dwarf Stuff" },
{ title: "Feature 9th", description: "other Dwarf Stuff" },
{ title: "Feat 10th", description: "other Dwarf Stuff" },
{ title: "Feature 11th", description: "other Dwarf Stuff" },
{ title: "Feat 12th", description: "other Dwarf Stuff" },
{ title: "Feature 13th", description: "other Dwarf Stuff" },
{ title: "Feat 14th", description: "other Dwarf Stuff" },
{ title: "Feature 15th", description: "other Dwarf Stuff" },
{ title: "Feat 16th", description: "other Dwarf Stuff" },
{ title: "Feature 17th", description: "other Dwarf Stuff" },
{ title: "Feat 18th", description: "other Dwarf Stuff" },
{ title: "Feature 19th", description: "other Dwarf Stuff" },
{ title: "Feat 20th", description: "other Dwarf Stuff" },
],
bonusFeats: [
{ title: "Bonus1", description: "Dwarf Stuff" },
{ title: "Bonus2", description: "other Dwarf Stuff" },
],
inventory: {
items: [
DEFAULT_ARMOR,
{
id: uuidv4(),
description: "Leather Armor made from leather",
invested: false,
worn: true,
readied: false,
name: "Leather Armor",
category: ArmorCategory.Light,
level: 1,
price: { Copper: 0, Silver: 7, Gold: 0, Platinum: 0 },
acBonus: {
type: BonusType.Item,
appliesTo: "ac",
amount: 2,
source: "armor",
},
dexCap: 4,
checkPenalty: {
type: BonusType.Armor,
appliesTo: "StrAndDexChecks",
amount: 0,
source: "armor",
},
speedPenalty: {
type: BonusType.Armor,
appliesTo: "speed",
amount: 0,
source: "armor",
},
strengthRequirement: 12,
bulk: 1,
wornBulk: 1,
armorGroup: ArmorGroup.Leather,
traits: ["Additive", "Grapple"],
isContainer: false,
},
{
id: uuidv4(),
description: "Shield made from leather",
invested: false,
worn: true,
readied: false,
name: "Shield McShieldFace",
bulk: 5,
level: 1,
acBonus: {
type: BonusType.Circumstance,
appliesTo: "ac",
amount: 2,
source: "shield",
},
hardness: 5,
maxHP: 20,
currentHP: 15,
breakThreshold: 10,
traits: ["Additive", "Grapple"],
isContainer: false,
},
{
id: uuidv4(),
description: "Another Shield",
invested: false,
worn: true,
readied: false,
name: "Shield Squared",
bulk: 5,
level: 1,
acBonus: {
type: BonusType.Circumstance,
appliesTo: "ac",
amount: 3,
source: "otherShield",
},
hardness: 5,
maxHP: 20,
currentHP: 15,
breakThreshold: 10,
traits: ["Additive", "Grapple"],
isContainer: false,
},
{
id: uuidv4(),
description: "A magical short sword",
bulk: 1,
level: 5,
invested: false,
readied: true,
worn: true,
name: "+1 ShortSword",
ability: Ability.Strength,
toHitBonus: {
type: BonusType.Item,
appliesTo: "toHit",
amount: 1,
source: "",
},
damageDice: [
{ formula: "1d6", damageType: "piercing, slashing" },
],
damageAbilityModifier: Ability.Strength,
traits: ["Agile", "Finesse", "Versatile"],
weaponCategory: "Simple",
isContainer: false,
},
{
id: uuidv4(),
name: "Longbow",
description: "A longbow of yew",
bulk: 1,
level: 1,
invested: false,
readied: true,
worn: true,
ability: Ability.Dexterity,
toHitBonus: {
type: BonusType.Item,
appliesTo: "toHit",
amount: 0,
source: "",
},
damageDice: [{ formula: "1d8", damageType: "piercing" }],
damageAbilityModifier: undefined,
traits: ["Volley30"],
weaponCategory: "Martial",
isContainer: false,
},
{
id: uuidv4(),
level: 5,
name: "Doubling Rings",
bulk: 0,
invested: true,
worn: true,
readied: false,
description: "Rings that are double",
traits: [],
isContainer: false,
},
{
name: "Bracers of Missile Deflection",
id: uuidv4(),
level: 5,
bulk: 0.1,
invested: false,
worn: true,
readied: false,
description: "",
traits: [],
isContainer: false,
},
{
name: "Alchemist's Fire",
id: uuidv4(),
level: 5,
bulk: 0.1,
invested: false,
worn: false,
readied: true,
description: "",
traits: [],
isContainer: false,
},
{
name: "Thieves Tools",
id: uuidv4(),
level: 5,
bulk: 0.1,
invested: false,
worn: false,
readied: true,
description: "",
traits: [],
isContainer: false,
},
{
name: "Feather Token (Ladder)",
id: uuidv4(),
level: 5,
bulk: 0,
invested: false,
worn: false,
readied: false,
description: "",
traits: [],
isContainer: false,
},
{
name: "Signal Whistle",
id: uuidv4(),
level: 5,
bulk: 0.1,
invested: false,
worn: false,
readied: false,
description: "",
traits: [],
isContainer: false,
},
],
},
biographicalData: {
ethnicity: "Varisian",
nationality: "Absalomnian",
birthplace: "Absalom",
age: 89,
gender: "M",
height: 70,
weight: 210,
appearance: "middle height fair skin moderate looks",
},
personalityData: {
attitude: "sassy",
beliefs: "all people are good",
likes: "peanut butter",
dislikes: "sassy people",
catchphrases: "to infinity and beyond!",
},
campaignNotesData: {
notes:
"this is my campaign notes. They are thorough and they help my GM keep track of that various things that we do so he doesn't have to do all the work.",
allies: "my trusty sword, my trusty dagger, my cat",
enemies: "World Hungry",
organizations: "NRA, PFS, LP",
},
actions: [
{
id: uuidv4(),
name: "Shove",
numberOfActions: 1,
traits: ["Attack", "Athletics"],
bookAbbreviation: "CRB",
pageNumber: 242,
description:
"You shove your foe away and stuff. You can go too, if you want.",
source: "Skill Action",
skill: "Athletics",
},
{
id: uuidv4(),
name: "Power Attack",
numberOfActions: 2,
traits: ["Attack", "Flourish"],
bookAbbreviation: "CRB",
pageNumber: 278,
description: "Moar damage dice!",
source: "What grants this action",
},
{
id: uuidv4(),
name: "Speak out loud",
numberOfActions: 0,
traits: ["FreeAction", "Verbal"],
bookAbbreviation: "CRB",
pageNumber: 1,
description: "You speak. Like a dog.",
source: "What grants this action",
},
{
id: uuidv4(),
name: "Attack of Opportunity",
numberOfActions: 0.5,
traits: [],
bookAbbreviation: "CRB",
pageNumber: 142,
description:
"You lash out at a foe that leaves an opening. Make a melee Strike against the triggering creature. If your attack is a critical hit and the trigger was a manipulate action, you disrupt that action. This Strike doesn’t count toward your multiple attack penalty, and your multiple attack penalty doesn’t apply to this Strike.",
trigger:
"A creature within your reach uses a manipulate action or a move action, makes a ranged attack, or leaves a square during a move action it’s using.",
source: "What grants this action",
},
],
spellcastingAbilityModifier: Ability.Wisdom,
spellAttackProficiency: Proficiencies.Trained,
bonuses: [
// AC bonus from worn armor
{
type: BonusType.Item,
appliesTo: "ac",
amount: 2,
source: "armor",
},
{
type: BonusType.Item,
appliesTo: "spellAttack",
amount: 1,
source: "",
},
{
type: BonusType.Item,
appliesTo: "spellAttack",
amount: 4,
source: "",
},
{
type: BonusType.Item,
appliesTo: "spellAttack",
amount: 2,
source: "",
},
{
type: BonusType.Item,
appliesTo: "spellAttack",
amount: 1,
source: "",
},
{ type: BonusType.Item, appliesTo: "spellDC", amount: 12, source: "" },
{ type: BonusType.Item, appliesTo: "classDC", amount: 3, source: "" },
{ type: BonusType.Item, appliesTo: "classDC", amount: 2, source: "" },
{
type: BonusType.Item,
appliesTo: "Athletics",
amount: 2,
source: "",
},
],
penalties: [],
magicTraditions: {
prepared: true,
spontaneous: false,
arcane: true,
primal: false,
divine: true,
occult: false,
},
spellSlots: [
{
spellLevel: "Focus",
maximum: 1,
current: 0,
},
{
spellLevel: "1st",
maximum: 3,
current: 3,
},
{
spellLevel: "2nd",
maximum: 3,
current: 3,
},
{
spellLevel: "3rd",
maximum: 2,
current: 1,
},
{
spellLevel: "4th",
maximum: 3,
current: 3,
},
{
spellLevel: "5th",
maximum: 3,
current: 3,
},
{
spellLevel: "6th",
maximum: 3,
current: 3,
},
{
spellLevel: "7th",
maximum: 1,
current: 3,
},
{
spellLevel: "8th",
maximum: 2,
current: 2,
},
{
spellLevel: "9th",
maximum: 3,
current: 1,
},
{
spellLevel: "10th",
maximum: 1,
current: 1,
},
],
spells: {
Focus: [{ name: "MantisForm" }],
FirstLevel: [
{ name: "Heal", description: "you heal people with magic" },
],
SecondLevel: [],
ThirdLevel: [],
FourthLevel: [],
FifthLevel: [],
SixthLevel: [],
SeventhLevel: [],
EighthLevel: [],
NinthLevel: [],
TenthLevel: [],
},
companions: [
{
abilityScores: {
Strength: { score: 10, ability: Ability.Strength },
Constitution: { score: 12, ability: Ability.Constitution },
Dexterity: { score: 16, ability: Ability.Dexterity },
Intelligence: { score: 6, ability: Ability.Intelligence },
Wisdom: { score: 14, ability: Ability.Wisdom },
Charisma: { score: 8, ability: Ability.Charisma },
},
actions: [
{
id: uuidv4(),
name: "Bark",
numberOfActions: 2,
traits: ["Attack", "Flourish"],
bookAbbreviation: "CRB",
pageNumber: 278,
description: "Moar damage dice!",
source: "What grants this action",
},
{
id: uuidv4(),
name: "Fetch",
numberOfActions: 0,
traits: ["FreeAction", "Verbal"],
bookAbbreviation: "CRB",
pageNumber: 1,
description: "you go get it",
source: "What grants this action",
},
],
alignment: "Good boi",
attackProficiencies: Proficiencies.Trained,
bardingProficiency: Proficiencies.Trained,
bonuses: [],
conditions: "",
feats: [],
hitPoints: {
maxHitPoints: 20,
currentHitPoints: 20,
temporaryHitPoints: 4,
dying: 0,
maxDying: 4,
wounded: 1,
},
immunities: "",
inventory: {
items: [
{
name: "Collar of Good Boi",
id: uuidv4(),
level: 20,
bulk: 0.1,
invested: true,
worn: true,
readied: false,
description:
"This collar is only for the best of bois.",
traits: [],
isContainer: false,
},
{
id: uuidv4(),
description: "Leather Armor made from leather",
invested: false,
worn: true,
readied: false,
name: "Leather Armor",
category: ArmorCategory.Light,
level: 1,
price: { Copper: 0, Silver: 7, Gold: 0, Platinum: 0 },
acBonus: {
type: BonusType.Item,
appliesTo: "ac",
amount: 2,
source: "armor",
},
dexCap: 4,
checkPenalty: {
type: BonusType.Armor,
appliesTo: "StrAndDexChecks",
amount: 0,
source: "armor",
},
speedPenalty: {
type: BonusType.Armor,
appliesTo: "speed",
amount: 0,
source: "armor",
},
strengthRequirement: 12,
bulk: 1,
wornBulk: 1,
armorGroup: ArmorGroup.Leather,
traits: ["Additive", "Grapple"],
isContainer: false,
},
],
},
languages: ["Common"],
metaData: {
id: uuidv4(),
},
name: "Fido",
perception: Proficiencies.Legendary,
resistance: "",
saves: {
fortitude: Proficiencies.Legendary,
reflex: Proficiencies.Trained,
will: Proficiencies.Expert,
},
senses: "Scent 30ft",
size: Size.Small,
skills: [
{
name: "Acrobatics",
ability: Ability.Dexterity,
proficiency: Proficiencies.Legendary,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Athletics",
ability: Ability.Strength,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Deception",
ability: Ability.Charisma,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Diplomacy",
ability: Ability.Charisma,
proficiency: Proficiencies.Untrained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Intimidation",
ability: Ability.Charisma,
proficiency: Proficiencies.Expert,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Performance",
ability: Ability.Charisma,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Stealth",
ability: Ability.Dexterity,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 0,
},
{
name: "Survival",
ability: Ability.Wisdom,
proficiency: Proficiencies.Trained,
hasArmorPenalty: false,
},
{
name: "Thievery",
ability: Ability.Dexterity,
proficiency: Proficiencies.Trained,
hasArmorPenalty: true,
armorPenalty: 2,
},
],
speed: {
landSpeed: 45,
burrowSpeed: 5,
climbSpeed: 10,
flySpeed: 20,
},
supportBenefit: "Licking the dishes int he dishwasher.",
traits: [],
type: "dog",
unarmoredProficiency: Proficiencies.Trained,
weaknesses: "hugs",
advancement: {
advancedManuever: {
id: uuidv4(),
name: "Advanced Manuever",
numberOfActions: 1,
traits: ["Attack", "Athletics"],
bookAbbreviation: "CRB",
pageNumber: 242,
description:
"You shove your foe away and stuff. You can go too, if you want.",
source: "Skill Action",
skill: "Athletics",
},
mature: false,
nimble: false,
savage: false,
},
details: {
variety: "pit bull",
age: "22",
height: "2",
weight: "3",
attitude: "cuddly",
likes: "peanut butter",
dislikes: "vacuum",
notes: "is a good boi",
},
},
],
};