unit69.ts 490 B

12345678910111213141516171819202122
  1. import { _decorator } from 'cc';
  2. import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('unit69')
  5. export class unit69 extends BaseZhaocha {
  6. override answerName: Array<string> = [
  7. "避雷针",
  8. "伞兵",
  9. "应急灯",
  10. "工人",
  11. "导弹车",
  12. "灭火器",
  13. "汽油桶",
  14. "借条",
  15. "羽毛扇",
  16. "高射炮",
  17. "望远镜",
  18. "雷达",
  19. ]
  20. }