Skip to content

Commit

Permalink
antoher fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Jul 20, 2023
1 parent b0fc039 commit 89c43ec
Showing 1 changed file with 8 additions and 28 deletions.
36 changes: 8 additions & 28 deletions client/src/app/pages/inventory/inventory.page.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { Component, OnInit } from '@angular/core';
import {
AllAccessories,
AllArmor,
AllWeapons,
Armor,
ICollectible,
IDiscoveries,
Expand Down Expand Up @@ -32,34 +35,11 @@ export class InventoryPage implements OnInit {
Record<ItemSlot, IEquipment>
>;

public readonly basicEquipTypes = [
'body',
'feet',
'head',
'legs',
'shoulders',
'waist',
];

public readonly weaponEquipTypes = [
'axe',
'bow',
'dagger',
'fist',
'gun',
'mace',
'spear',
'staff',
'sword',
];

public readonly accessoryEquipTypes = [
'jewelry',
'wrist',
'hands',
'ammo',
'back',
];
public readonly basicEquipTypes = AllArmor;

public readonly weaponEquipTypes = AllWeapons;

public readonly accessoryEquipTypes = AllAccessories;

public items: IItem[] = [];
public discoveries!: IDiscoveries;
Expand Down

0 comments on commit 89c43ec

Please sign in to comment.