[add] slot系列API Class化

This commit is contained in:
2024-08-30 11:20:52 +08:00
parent 735a0a6bb3
commit acd1cb7337
8 changed files with 129 additions and 71 deletions

7
src/api/slot1/in.ts Normal file
View File

@@ -0,0 +1,7 @@
import SlotInBase from "../slot/SlotInBase";
export default class SlotIn1 extends SlotInBase {
protected db: number = 4;
protected br: number[] = [4, 10, 20, 40, 80, 100, 120, 160, 200, 400, 600, 800, 1000, 1200, 1600, 2000, 4000, 10000, 20000, 30000];
protected jp: { [key: string]: number; } = { "1": 1500000, "3": 3000000, "5": 30000000 };
}