bc-minecraft-bedrock-types
Version:
The typescript library that provides default types for minecraft bedrock
22 lines • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DifficultyMode = void 0;
/** */
exports.DifficultyMode = {
name: 'Difficulty',
modes: [
{ name: '1', documentation: 'Easy mode, mobs will attack in this mode. but at a minimum.' },
{ name: 'e', documentation: 'Easy mode, mobs will attack in this mode. but at a minimum.' },
{ name: 'easy', documentation: 'Easy mode, mobs will attack in this mode. but at a minimum.' },
{ name: '2', documentation: 'The default difficulty mode for minecraft, mobs will attack.' },
{ name: 'n', documentation: 'The default difficulty mode for minecraft, mobs will attack.' },
{ name: 'normal', documentation: 'The default difficulty mode for minecraft, mobs will attack.' },
{ name: '3', documentation: 'The most difficult mode for minecraft, mobs will attack somewhat harder.' },
{ name: 'h', documentation: 'The most difficult mode for minecraft, mobs will attack somewhat harder.' },
{ name: 'hard', documentation: 'The most difficult mode for minecraft, mobs will attack somewhat harder.' },
{ name: '0', documentation: 'The relaxed mode, no mobs with attacking behavior can be spawned' },
{ name: 'p', documentation: 'The relaxed mode, no mobs with attacking behavior can be spawned' },
{ name: 'peaceful', documentation: 'The relaxed mode, no mobs with attacking behavior can be spawned' },
],
};
//# sourceMappingURL=difficulty.js.map