UNPKG

lazuli-game-data

Version:

Some game data for Minecraft Bedrock Edition

52 lines (49 loc) 858 B
/** * All of the nutral effects. */ export const neutralEffectsId: string[] = [ "bad_omen", "trial_omen", "raid_omen", ]; /** * All of the negative(bad) effects. */ export const negativeEffectsId: string[] = [ "slowness", "mining_fatigue", "instant_damage", "nausea", "blindness", "hunger", "weakness", "poison", "wither", "fatal_poison", "levitation", "darkness", "wind_charged", "weaving", "oozing", "infested", ]; /** * All of the positive(good) effects. */ export const positiveEffectsId: string[] = [ "speed", "haste", "strength", "instant_health", "regeneration", "jump_boost", "invisibility", "water_breathing", "health_boost", "night_vision", "saturation", "absorption", "village_hero", "conduit_power", "slow_falling", ];