Data driven
Block
Add supported to these components:
- 'minecraft:destructible_by_explosion'
- 'minecraft:destructible_by_mining'
- 'minecraft:light_emission'
- 'minecraft:map_color' (Not completed)
For bedrock schema and corresponding conium schema templates:
- 'explosion_resistance'
- 'mining_time'
- 'luminance'
- 'map_color' (Not completed)
Other
- Optimized performances.
- Fix bug of shapeless recipe unable to load in '1.0.0-alpha2'
Planning
Entity components and Molang, first is entity components.
Data driven
Item
Add supported to these components:
- 'minecraft:fuel'
- 'minecraft:glint'
- 'minecraft:wearable'
For bedrock schema and corresponding conium schema templates:
- 'fuel'
- 'glint'
- 'armor'
Recipe
Add supported to 'minecraft:recipe_furnace'
Basic datapack and scripts supports by Conium framework.
Data driven supported
Item
Current supported item components:
- 'minecraft:damage'
- 'minecraft:durability'
- 'minecraft:can_destroy_in_creative'
- 'minecraft:max_stack_size'
- 'minecraft:food'
- 'minecraft:rarity'
- 'minecraft:use_animation'
For bedrock schema and corresponding conium schema templates:
- 'minecraft:damage', 'minecraft:durability' is in 'tool', named as 'attack_damage', 'durability'
- 'can_destroy_in_creative'
- 'max_count'
- 'food'
- 'rarity'
- '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:
- 'minecraft:recipe_shaped'
- '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.