├── .poggit.yml ├── LICENSE ├── README.md ├── plugin.yml ├── resources ├── commands.yml ├── config.yml ├── integration.yml ├── skills.yml └── sqlite.sql └── src └── cosmicpe └── mcmmo ├── McMMO.php ├── command ├── McMMOCommand.php ├── McMMOCommandManager.php └── McMMOSkillCommand.php ├── customitem ├── CustomItem.php ├── CustomItemFactory.php ├── CustomItemIds.php ├── GigaDrillShovel.php └── listener │ ├── CustomItemListener.php │ ├── Interactable.php │ └── Movable.php ├── database ├── IDatabase.php └── sqlite │ ├── SQLiteDatabase.php │ └── SQLiteStmt.php ├── event ├── McMMOEvent.php └── player │ ├── McMMOPlayerAbilityActivateEvent.php │ ├── McMMOPlayerEvent.php │ └── skill │ ├── McMMOPlayerSkillEvent.php │ ├── McMMOPlayerSkillExperienceChangeEvent.php │ └── combat │ ├── McMMOPlayerDodgeEvent.php │ └── McMMOPlayerRollEvent.php ├── integration ├── BlockHorizonsFireworkWrapper.php ├── EmptyFireworkWrapper.php ├── FireworkWrapper.php └── IntegrationManager.php ├── player ├── McMMOPlayer.php ├── PlayerAbilityHandler.php ├── PlayerManager.php └── task │ └── AbilityExpireTask.php ├── skill ├── Identifiable.php ├── Listenable.php ├── Skill.php ├── SkillIds.php ├── SkillInstance.php ├── SkillManager.php ├── ability │ ├── Ability.php │ ├── AbilityRemoveHandler.php │ ├── BuffableAbility.php │ ├── BuffableAbilitySubSkill.php │ └── utils │ │ └── AbilityDuration.php ├── combat │ ├── CombatSkill.php │ ├── CombatSkillIds.php │ ├── CombatSubSkill.php │ ├── CombatSubSkillIds.php │ └── acrobatics │ │ ├── Acrobatics.php │ │ ├── AcrobaticsListener.php │ │ ├── AcrobaticsSubSkill.php │ │ ├── Dodge.php │ │ └── Roll.php ├── experience │ ├── ExponentialSkillExperience.php │ ├── SkillExperience.php │ ├── SkillExperienceInstance.php │ └── SkillExperienceManager.php ├── gathering │ ├── GatheringAbilityTrait.php │ ├── GatheringSkill.php │ ├── GatheringSkillIds.php │ ├── GatheringSubSkill.php │ ├── GatheringSubSkillIds.php │ └── excavation │ │ ├── Archaeology.php │ │ ├── ArchaeologyLootTable.php │ │ ├── ArchaeologyLootTableEntry.php │ │ ├── ArchaeologySubSkill.php │ │ ├── Excavation.php │ │ ├── ExcavationListener.php │ │ ├── GigaDrillBreaker.php │ │ └── GigaDrillBreakerAbility.php ├── listener │ ├── McMMOExperienceToller.php │ ├── McMMOExperienceTollerEntry.php │ ├── McMMOListenerParserResult.php │ ├── McMMOSkillListener.php │ └── McMMOSubSkillListener.php └── subskill │ ├── SubSkill.php │ ├── SubSkillIds.php │ ├── SubSkillInstance.php │ └── SubSkillManager.php ├── sound └── McMMOLevelUpSound.php └── utils ├── NumberUtils.php ├── TypedConfigWrapper.php └── WeightedRandom.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/resources/commands.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/resources/integration.yml -------------------------------------------------------------------------------- /resources/skills.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/resources/skills.yml -------------------------------------------------------------------------------- /resources/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/resources/sqlite.sql -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/McMMO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/McMMO.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/command/McMMOCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/command/McMMOCommand.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/command/McMMOCommandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/command/McMMOCommandManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/command/McMMOSkillCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/command/McMMOSkillCommand.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/CustomItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/CustomItem.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/CustomItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/CustomItemFactory.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/CustomItemIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/CustomItemIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/GigaDrillShovel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/GigaDrillShovel.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/listener/CustomItemListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/listener/CustomItemListener.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/listener/Interactable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/listener/Interactable.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/customitem/listener/Movable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/customitem/listener/Movable.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/database/IDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/database/IDatabase.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/database/sqlite/SQLiteDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/database/sqlite/SQLiteDatabase.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/database/sqlite/SQLiteStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/database/sqlite/SQLiteStmt.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/McMMOEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/McMMOEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/McMMOPlayerAbilityActivateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/McMMOPlayerAbilityActivateEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/McMMOPlayerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/McMMOPlayerEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/skill/McMMOPlayerSkillEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/skill/McMMOPlayerSkillEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/skill/McMMOPlayerSkillExperienceChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/skill/McMMOPlayerSkillExperienceChangeEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/skill/combat/McMMOPlayerDodgeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/skill/combat/McMMOPlayerDodgeEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/event/player/skill/combat/McMMOPlayerRollEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/event/player/skill/combat/McMMOPlayerRollEvent.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/integration/BlockHorizonsFireworkWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/integration/BlockHorizonsFireworkWrapper.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/integration/EmptyFireworkWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/integration/EmptyFireworkWrapper.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/integration/FireworkWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/integration/FireworkWrapper.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/integration/IntegrationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/integration/IntegrationManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/player/McMMOPlayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/player/McMMOPlayer.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/player/PlayerAbilityHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/player/PlayerAbilityHandler.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/player/PlayerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/player/PlayerManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/player/task/AbilityExpireTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/player/task/AbilityExpireTask.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/Identifiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/Identifiable.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/Listenable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/Listenable.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/Skill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/Skill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/SkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/SkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/SkillInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/SkillInstance.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/SkillManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/SkillManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/ability/Ability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/ability/Ability.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/ability/AbilityRemoveHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/ability/AbilityRemoveHandler.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/ability/BuffableAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/ability/BuffableAbility.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/ability/BuffableAbilitySubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/ability/BuffableAbilitySubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/ability/utils/AbilityDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/ability/utils/AbilityDuration.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/CombatSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/CombatSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/CombatSkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/CombatSkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/CombatSubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/CombatSubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/CombatSubSkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/CombatSubSkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/acrobatics/Acrobatics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/acrobatics/Acrobatics.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/acrobatics/AcrobaticsListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/acrobatics/AcrobaticsListener.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/acrobatics/AcrobaticsSubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/acrobatics/AcrobaticsSubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/acrobatics/Dodge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/acrobatics/Dodge.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/combat/acrobatics/Roll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/combat/acrobatics/Roll.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/experience/ExponentialSkillExperience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/experience/ExponentialSkillExperience.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/experience/SkillExperience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/experience/SkillExperience.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/experience/SkillExperienceInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/experience/SkillExperienceInstance.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/experience/SkillExperienceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/experience/SkillExperienceManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/GatheringAbilityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/GatheringAbilityTrait.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/GatheringSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/GatheringSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/GatheringSkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/GatheringSkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/GatheringSubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/GatheringSubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/GatheringSubSkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/GatheringSubSkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/Archaeology.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/Archaeology.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologyLootTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologyLootTable.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologyLootTableEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologyLootTableEntry.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologySubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/ArchaeologySubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/Excavation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/Excavation.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/ExcavationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/ExcavationListener.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/GigaDrillBreaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/GigaDrillBreaker.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/gathering/excavation/GigaDrillBreakerAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/gathering/excavation/GigaDrillBreakerAbility.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/listener/McMMOExperienceToller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/listener/McMMOExperienceToller.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/listener/McMMOExperienceTollerEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/listener/McMMOExperienceTollerEntry.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/listener/McMMOListenerParserResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/listener/McMMOListenerParserResult.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/listener/McMMOSkillListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/listener/McMMOSkillListener.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/listener/McMMOSubSkillListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/listener/McMMOSubSkillListener.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/subskill/SubSkill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/subskill/SubSkill.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/subskill/SubSkillIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/subskill/SubSkillIds.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/subskill/SubSkillInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/subskill/SubSkillInstance.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/skill/subskill/SubSkillManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/skill/subskill/SubSkillManager.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/sound/McMMOLevelUpSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/sound/McMMOLevelUpSound.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/utils/NumberUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/utils/NumberUtils.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/utils/TypedConfigWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/utils/TypedConfigWrapper.php -------------------------------------------------------------------------------- /src/cosmicpe/mcmmo/utils/WeightedRandom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmoverse/mcMMO/HEAD/src/cosmicpe/mcmmo/utils/WeightedRandom.php --------------------------------------------------------------------------------