Conium

Conium

Mod

Conium is a datapack and script framework for modern Minecraft, it provides very diverse features without Java coding, Conium lets you complete your mods only using datapacks.

Client and server Game MechanicsLibraryManagementOptimization

134 downloads
6 followers
Follow Save
90% of ad revenue goes to creators. Go ad-free while supporting creators with Modrinth Plus. Subscribe today!

Conium 1.0.0-alpha1 (1.21.3)

Changelog

Basic datapack and scripts supports by Conium framework.

Data driven supported

Item

Current supported item components:

  1. 'minecraft:damage'
  2. 'minecraft:durability'
  3. 'minecraft:can_destroy_in_creative'
  4. 'minecraft:max_stack_size'
  5. 'minecraft:food'
  6. 'minecraft:rarity'
  7. 'minecraft:use_animation'

For bedrock schema and corresponding conium schema templates:

  1. 'minecraft:damage', 'minecraft:durability' is in 'tool', named as 'attack_damage', 'durability'
  2. 'can_destroy_in_creative'
  3. 'max_count'
  4. 'food'
  5. 'rarity'
  6. 'use_action'

The 'using_converts_to' in bedrock food component is moved to 'convert_to' in 'consumable'.

a full sample

{
  "minecraft:item": {
    "description": {
      "identifier": "awa:bedrock"
    },
    "components": {
      "minecraft:damage": 100,
      "minecraft:durability": {
        "max_durability": 50
      },
      "minecraft:can_destroy_in_creative": {
        "value": true
      },
      "minecraft:max_stack_size": {
        "value": 64
      },
      "minecraft:food": {
        "can_always_eat": false,
        "nutrition": 10,
        "saturation_modifier": 1.0,
        "using_converts_to": "bowl"
      },
      "minecraft:rarity": "uncommon",
      "minecraft:use_animation": {
        "value": "eat"
      }
    }
  }
}

Recipe

Current supported recipe:

  1. 'minecraft:recipe_shaped'
  2. 'minecraft:recipe_shapeless'

recipes are current not supported 'unlock' yet now.

a full sample:

{
  "minecraft:recipe_shaped": {
    "description": {
      "identifier": "awa:test_recipe"
    },
    "group": "wood",
    "pattern": [
      "###",
      " # "
    ],
    "key": {
      "#": {
        "item": "minecraft:bedrock"
      }
    },
    "result": {
      "item": "minecraft:grass_block"
    }
  }
}

Others

See github home README.

Files

conium-1.21.3-1.0.0-alpha1.jar(83.2 MiB) Primary Download

Project members

cao-awa

Member

Details

Licensed GPL-3.0-only
Published 3 months ago
Updated a month ago