| class LootBox extends HTMLElement { | |
| constructor() { | |
| super(); | |
| this.attachShadow({ mode: 'open' }); | |
| } | |
| connectedCallback() { | |
| const type = this.getAttribute('type') || 'common'; | |
| const value = this.get |
| class LootBox extends HTMLElement { | |
| constructor() { | |
| super(); | |
| this.attachShadow({ mode: 'open' }); | |
| } | |
| connectedCallback() { | |
| const type = this.getAttribute('type') || 'common'; | |
| const value = this.get |