22 lines
463 B
JavaScript
22 lines
463 B
JavaScript
const PROPERTY_ICONS = Object.freeze({
|
|
action: 'offline_bolt',
|
|
attribute: 'donut_small',
|
|
buff: 'star',
|
|
classLevel: 'school',
|
|
damageMultiplier: 'layers',
|
|
effect: 'show_chart',
|
|
experience: 'add',
|
|
feature: 'subject',
|
|
folder: 'folder',
|
|
note: 'note',
|
|
proficiency: 'radio_button_checked',
|
|
roll: 'flare',
|
|
skill: 'check_box',
|
|
spellList: 'list',
|
|
spell: 'whatshot',
|
|
container: 'work',
|
|
item: 'category',
|
|
});
|
|
|
|
export default PROPERTY_ICONS;
|