unit47.ts 487 B

12345678910111213141516171819202122
  1. import { _decorator } from 'cc';
  2. import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('unit47')
  5. export class unit47 extends BaseZhaocha {
  6. override answerName: Array<string> = [
  7. "炸弹",
  8. "直升机",
  9. "小车",
  10. "油桶",
  11. "汽油桶",
  12. "棒棒糖",
  13. "奶瓶",
  14. "光剑",
  15. "摩托车",
  16. "水壶",
  17. "帆布鞋",
  18. "军用头盔",
  19. ]
  20. }