journal-stats.component.ts 829 B

1234567891011121314151617181920212223242526272829303132
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-journal-stats',
  4. templateUrl: './journal-stats.component.html',
  5. styleUrls: ['./journal-stats.component.scss'],
  6. })
  7. export class JournalStatsComponent {
  8. public attributes: any = [
  9. { name: 'strength', skills: ['athletics'] },
  10. { name: 'dexterity', skills: ['acrobatics', 'sleightOfHand', 'stealth'] },
  11. { name: 'constitution', skills: [] },
  12. {
  13. name: 'intelligence',
  14. skills: ['arcana', 'history', 'investigation', 'nature', 'religion'],
  15. },
  16. {
  17. name: 'wisdom',
  18. skills: [
  19. 'animalHandling',
  20. 'insight',
  21. 'medicine',
  22. 'perception',
  23. 'survival',
  24. ],
  25. },
  26. {
  27. name: 'charisma',
  28. skills: ['deception', 'intimidation', 'performance', 'persuasion'],
  29. },
  30. ];
  31. }