mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 16:28:30 +08:00
25 lines
445 B
TypeScript
25 lines
445 B
TypeScript
![]() |
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,
|
||
|
}
|