File size: 219 Bytes
0dfe679 |
1 2 3 4 5 6 7 8 9 |
class LootBox extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
const type = this.getAttribute('type') || 'common';
const value = this.get |