Inventory system changes

This commit is contained in:
2023-11-02 17:12:24 +01:00
parent 8b55039972
commit 4e2eedda49
13 changed files with 100 additions and 160 deletions

View File

@@ -0,0 +1,12 @@
import { Stat } from "../itemData"
export class inventoryChange{
id : number
name : string
rarity : number
change : number
templateId: number
operation : number
equipment : number[]
stats : Stat[] = []
}