Valhelsia Wiki
BlogFeedback
  • Home
  • Support Us
  • Navigation
    • Common Questions
    • Translation
    • Knowledge Base
      • Allocating Memory
      • Installation
      • OptiFine
      • Performance Tweaks
      • Server Setup
  • Useful links
    • CurseForge
    • Twitter
    • Discord
    • Reddit
    • YouTube
    • GitHub
  • Modpacks
    • Valhelsia: Enhanced Vanilla
      • Changelog
      • Getting Started Guide
      • Knowledge Base
    • Valhelsia 7
      • Changelog
    • Valhelsia 6
      • Changelog
    • Valhelsia 5
      • Changelog
    • Valhelsia 3
      • Changelog
      • Apotheosis
  • Mods
    • Valhelsia Structures
      • Changelog
    • Valhelsia Furniture
      • Changelog
    • Valhelsia Quests
  • External Mods
    • Forbidden and Arcanus
      • Wiki
        • 1.21.x
          • Blocks
            • Hephaestus Forge
              • Essence Providers
            • Clibano
        • Item Modifiers
        • Items
          • Enhancer Relics
        • Blocks
          • Hephaestus Forge
            • Essence Providers
        • Ores
        • Mobs
        • Trees
        • Datapack Guide
          • Hephaestus Forge Rituals
          • Magic Circles
          • Enhancers
          • Item Modifiers
Powered by GitBook

© 2024 Valhelsia Inc, All Rights Reserved. We are in no way affiliated with or endorsed by Mojang, AB.

On this page
  • Example JSON
  • Enhancer Target
  • Enhancer Effect

Was this helpful?

Edit on GitHub
  1. External Mods
  2. Forbidden and Arcanus
  3. Wiki
  4. Datapack Guide

Enhancers

Enhancers are special catalysts that allow the Hephaestus Forge and the Clibano to unlock new powers. Enhancers can be configured using JSON files within a data pack in the path data/<namespace>/forbidden_arcanus/enhancer/definition.

Name
Description
Value
Required

description

The description which is shown in the item tooltip.

true

effects

The effects the enhancer has.

true

Example JSON

{
  "description": {
    "clibano": {
      "translate": "item.forbidden_arcanus.enhancer.crimson_stone.clibano"
    },
    "hephaestus_forge": {
      "translate": "item.forbidden_arcanus.enhancer.crimson_stone.hephaestus_forge"
    }
  },
  "effects": [
    {
      "type": "forbidden_arcanus:multiply_required_essence",
      "conditions": [],
      "essence_type": "souls",
      "multiplier": 0.5
    },
    {
      "type": "forbidden_arcanus:multiply_soul_duration",
      "conditions": [],
      "multiplier": 1.3
    }
  ]
}

Enhancer Target

Currently there are two valid enhancer targets:

  • hephaestus_forge

  • clibano

Enhancer Effect

Enhancer Effects determine the effects the Enhancer has. The following effects are possible:

  • multiply_required_essence

  • modify_required_essence

  • multiply_soul_duration

Multiply Required Essence

Multiplies the given essence type with the given multiplier. Can be used to either increase or decrease the needed essence amount.

Enhancer Target: hephaestus_forge

Name
Description
Value
Required

type

The effect type.

forbidden_arcanus:multiply_required_essence

true

essence_type

The essence type to modify.

An essence type.

true

multiplier

The multiplier to apply.

A double value.

true

Modify Required Essence

Add the provided value to the given essence type. The essence amount cannot get negative.

Enhancer Target: hephaestus_forge

Name
Description
Value
Required

type

The effect type.

forbidden_arcanus:modify_required_essence

true

essence_type

The essence type to modify.

An essence type.

true

value

The value to add.

An int value.

true

Multiply Soul Duration

Multiplies the soul duration with the given multiplier.

Enhancer Target: clibano

Name
Description
Value
Required

type

The effect type.

forbidden_arcanus:multiply_soul_duration

true

multiplier

The multiplier to apply.

A double value. Range: 0.0-10.0

true

PreviousMagic CirclesNextItem Modifiers

Last updated 10 months ago

Was this helpful?

A map with as keys and as values.

A list of .

JSON text components
Enhancer Targets
Enhancer Effects