UNPKG

@magikcraft/mct1

Version:

Minecraft for Type 1 Diabetes

19 lines (16 loc) 512 B
import * as Locations from './locs' import { worldly } from '@magikcraft/mct1/world' import { QuestConfig, QuestMCT1 } from '@magikcraft/mct1/quests/Quest' export default class QuestMCT1Breakout2 extends QuestMCT1 { constructor(conf: QuestConfig) { super(conf) this.Locs = Locations.getLocations(this.world) super.registerEvents() } start() { super.start() const { world } = this worldly(world).setSun() this.setMCT1SuperPowers(true) } }