added feature to register team

This commit is contained in:
2023-02-05 23:14:12 +09:00
parent e349bd5037
commit bfb1d6d3e8
8 changed files with 185 additions and 38 deletions

16
src/model/ItemData.ts Normal file
View File

@@ -0,0 +1,16 @@
export interface ItemData {
id: number;
name: string;
image: string;
effect?: ItemEffect,
}
export interface ItemEffect {
attack?: number;
defense?: number;
special_attack?: number;
special_defense?: number;
speed?: number;
condition?: string;
type?: number;
}