DaFuWeng/assets/Script/MapTile/MapTitleAction.ts

35 lines
986 B
TypeScript
Raw Normal View History

2024-03-26 17:18:28 +08:00
/*
* @Author: WoNiu
* @Date: 2024-03-26 11:36:36
* @LastEditTime: 2024-03-26 15:28:36
* @LastEditors: WoNiu
* @Description:
*/
import { LuckyCoinsNode, LuckyType } from "../DialogNode/LuckyCoinsNode";
/**
* @description:
*/
export class MapTitleAction {
// ─── 特殊事件 ────────────────────────────────────────────────────────────
//* 月光酒馆
//* 决斗场
//* 海上列车
//* 幸运硬币
/**
* @description:
*/
static lucky(){
LuckyCoinsNode.show(LuckyType.GoThree);
}
// ─── 怪物事件 ────────────────────────────────────────────────────────────────────
/**
* @description:
*/
static monsterAction(){
}
}