phantasmal-world/src/dto.ts

25 lines
445 B
TypeScript
Raw Normal View History

2019-06-11 20:34:57 +08:00
import { Difficulty, SectionId } from "./domain";
export type ItemDto = {
name: string,
}
export type EnemyDropDto = {
difficulty: Difficulty,
episode: number,
sectionId: SectionId,
enemy: string,
item: string,
dropRate: number,
rareRate: number,
}
export type BoxDropDto = {
difficulty: Difficulty,
episode: number,
sectionId: SectionId,
box: string,
item: string,
dropRate: number,
}