premium banner
Apothic Enchanting Addition is an addon mod for Apothic Enchanting.

Description

Apothic Enchanting Addition

Apothic Enchanting Addition is an addon mod for Apothic Enchanting that expands the enchanting system with flux-powered machines, automation tools, and progression utilities.

This mod introduces a set of magical machines powered by Flux Experience, providing new ways to interact with enchanting mechanics and spawner systems.

Features

Flux Enchanting Table

A powered enchanting station that allows players to perform advanced enchantments using flux energy and specialized resources.

Flux Stats Bookshelf

A configurable bookshelf that lets you precisely adjust enchanting stats such as Eterna, Quanta, Arcana, and Clues, allowing greater control over enchantment generation.

Flux Spawner

An advanced spawner block that works with spawn eggs and flux energy to control mob spawning behavior.

Supports additional mechanics such as:

  • Adjustable spawn delay

  • Spawn count modification

  • Redstone control

  • Echo upgrades

Flux Anvil

A powered anvil that consumes flux energy instead of traditional experience, making high-level enchanting workflows more manageable.

Flux Experience Materials

New materials such as Solidified Flux Experience and its compressed forms allow storing and processing flux energy for machine usage.


Design Goals

This addon focuses on:

  • Expanding Apothic Enchanting gameplay

  • Providing automation-friendly enchanting tools

  • Allowing fine control over enchantment mechanics

  • Offering modular and scalable magical machinery


Compatibility

Requires:

Apothic Enchanting
Apothic Spawners

Optional integration:

  • Jade support for machine information display


  • JEI

  • KubeJs
ServerEvents.recipes(event => {
    // Draw a Spirit Gathering Ritual, using: Iron Pickaxe, durability cost: 10
    event.recipes.apothicenchantingaddition.drawing('minecraft:iron_pickaxe', true, 10)
    
    // Draw a Spirit Gathering Ritual, using: Iron Ingot, consumed
    event.recipes.apothicenchantingaddition.drawing('minecraft:iron_ingot', true, 0)
    
    // Draw a Spirit Gathering Ritual, using: Gold Ingot, not consumed
    event.recipes.apothicenchantingaddition.drawing('minecraft:gold_ingot', false, 0)
    
    // Ritual recipe: input: Iron Ingot, output: 16 Oak Logs, summons a lightning bolt, duration: 200 ticks
    event.recipes.apothicenchantingaddition.ritual(['minecraft:iron_ingot'], Item.of('minecraft:oak_log', 16),'' , 'minecraft:lightning_bolt', 200)
    
    // Ritual recipe: input: Stone and Sand, output: 2 Oak Logs, duration: 200 ticks
    event.recipes.apothicenchantingaddition.ritual(['minecraft:stone', 'minecraft:sand'], Item.of('minecraft:oak_log', 2),'' , '', 200)
    
    // Ritual recipe: input: Iron Ingot and Gold Ingot, output: 16 Iron Blocks, generates one block of water, summons a Warden, duration: 60 ticks
    event.recipes.apothicenchantingaddition.ritual(['minecraft:iron_ingot','minecraft:gold_ingot'],Item.of('minecraft:iron_block', 16),'minecraft:water','minecraft:warden', 60)
    
    // Flux Spawner recipe: input: Cow Spawn Egg, output: 1 Stone, 50% chance to get 1 Sand, 10% chance to get 3 Iron Blocks
    event.recipes.apothicenchantingaddition.spawner('minecraft:cow')
        .addItem('minecraft:stone')
        .addItem('minecraft:sand', 0.5)
        .addItem(Item.of('minecraft:iron_block', 3), 0.1)

    // Flux Spawner removal recipe: Zombie Spawn Eggs cannot be inserted into the Flux Spawner, and any already inserted Zombie Spawn Eggs will not generate drops
    event.recipes.apothicenchantingaddition.spawner_remove('minecraft:zombie')
})

 

神化附魔附属(Apothic Enchanting Addition)

Apothic Enchanting Addition 是一个为 Apothic Enchanting(神化附魔) 提供扩展内容的附属模组。

该模组引入了一系列基于 神化 的魔法机器,为附魔系统提供更多自动化、可调节和扩展玩法。


主要内容

通量附魔台

一种使用通量能量驱动的通量附魔台,可以进行更加灵活和高级的附魔操作。

通量书架

可调节附魔属性的通量书架,可以精确控制:

  • 位阶

  • 量子化

  • 阿卡那

  • 宝藏附魔

从而改变附魔生成方式。

通量刷怪笼

一种可控制刷怪行为的高级刷怪装置,支持多种机制:

  • 刷怪延迟调整

  • 刷怪数量控制

  • 红石控制

  • 回响强化

通量铁砧

一种消耗通量能量而不是经验的铁砧,用于附魔与物品处理,使高等级附魔流程更加稳定。

通量经验

新增多种用于存储与压缩通量经验的材料,例如:

  • 固化通量经验

  • 压缩固化通量经验


设计目标

本模组旨在:

  • 扩展神化附魔系统玩法

  • 提供电力化的附魔设备

  • 增强附魔属性的可控性

  • 构建模块化科技魔法机器体系


依赖

需要:

Apothic Enchanting

Apothic Spawners

可选支持:

  • Jade(用于显示机器信息)


  • JEI

  • KubeJs
ServerEvents.recipes(event => {
    // 绘制聚灵法阵,使用:铁镐 消耗:10耐久
    event.recipes.apothicenchantingaddition.drawing('minecraft:iron_pickaxe', true, 10)
    
    // 绘制聚灵法阵,使用:铁锭 消耗
    event.recipes.apothicenchantingaddition.drawing('minecraft:iron_ingot', true, 0)
    
    // 绘制聚灵法阵,使用:金锭 不消耗
    event.recipes.apothicenchantingaddition.drawing('minecraft:gold_ingot', false, 0)
    
    // 法阵配方:输入:铁锭 输出:16个橡木 生成一道闪电 用时:200tick
    event.recipes.apothicenchantingaddition.ritual(['minecraft:iron_ingot'], Item.of('minecraft:oak_log', 16),'' , 'minecraft:lightning_bolt', 200)
    
    // 法阵配方:输入:石头、沙子 输出:2个橡木 用时:200tick
    event.recipes.apothicenchantingaddition.ritual(['minecraft:stone', 'minecraft:sand'], Item.of('minecraft:oak_log', 2),'' , '', 200)
    
    // 法阵配方:输入:铁锭、金锭 输出:16个铁块 生成一格水 生成一只监守者 用时:60tick
    event.recipes.apothicenchantingaddition.ritual(['minecraft:iron_ingot','minecraft:gold_ingot'],Item.of('minecraft:iron_block', 16),'minecraft:water','minecraft:warden', 60)
    
    // 通量刷怪笼配方:输入:牛刷怪蛋 输出:1个石头、50%概率1个沙子、10%概率3个铁块
    event.recipes.apothicenchantingaddition.spawner('minecraft:cow')
        .addItem('minecraft:stone')
        .addItem('minecraft:sand', 0.5)
        .addItem(Item.of('minecraft:iron_block', 3), 0.1)

    // 通量刷怪笼移除配方:僵尸刷怪蛋无法放入通量刷怪笼,已放入的僵尸刷怪蛋无法生成掉落物
    event.recipes.apothicenchantingaddition.spawner_remove('minecraft:zombie')
})