ProjectGenesis's picture
<!DOCTYPE html>
0dfe679 verified
raw
history blame contribute delete
219 Bytes
class LootBox extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
const type = this.getAttribute('type') || 'common';
const value = this.get