Skip to content

Introduction

Emaki Series is a set of RPG plugin modules for Minecraft Spigot 1.21+. CoreLib holds shared infrastructure; business modules add attributes, equipment, strengthening, gems, skills, and cooking stations.

Technical baseline

ItemValue
ServerSpigot / Bukkit 1.21+
APIspigot-api:1.21.11-R0.1-SNAPSHOT
Java25
plugin.yml api-version1.21
Build systemMaven multi-module project

Modules

ModuleVersionAggregationPurpose
EmakiCoreLib4.1.0defaultShared infrastructure for all business modules.
EmakiAttribute4.1.0defaultAttributes, resources, damage, conditions, and API bridges.
EmakiForge4.1.0defaultForging, blueprints, materials, quality, recipe book, editor.
EmakiStrengthen4.1.0defaultStar strengthening, protection, failure handling, presentation.
EmakiCooking3.1.0defaultWorld-based cooking stations.
EmakiGem2.1.0private-modulesGems, sockets, opening, inlay, extraction, upgrades.
EmakiSkills2.1.0private-modulesActive/passive skills, triggers, resources, MythicMobs bridge.
EmakiItem2.1.0private-modulesCustom items, sets, triggers, auto update.

Why CoreLib exists

Most modules need the same infrastructure: actions, GUI sessions, item-source resolution, PDC storage, economy access, expressions, and structured item presentation. CoreLib centralizes those pieces so business modules can focus on their own gameplay rules.

Common module combinations

  • Attribute-only combat: install CoreLib + Attribute. Add PlaceholderAPI, MythicMobs, or MMOItems only if you use those integrations.
  • Equipment progression: install CoreLib + Attribute + Item + Forge + Strengthen + Gem.
  • Skill system: install CoreLib + Skills + MythicMobs. Add Attribute or Item when skills need resources, attributes, or equipment unlocks.
  • Life-skill gameplay: install CoreLib + Cooking. Add CraftEngine, ItemsAdder, or Nexo when stations use custom blocks or items.