35 lines
986 B
TypeScript
35 lines
986 B
TypeScript
/*
|
|
* @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(){
|
|
|
|
}
|
|
|
|
}
|