promotional bannermobile promotional banner

Ars Meteorites

Use the Ars Nouveau to summon a meteorite

File Details

arsmeteorites-1.0.jar

  • R
  • Jun 6, 2025
  • 44.42 KB
  • 45
  • 1.20.1
  • Forge

File Name

arsmeteorites-1.0.jar

Supported Versions

  • 1.20.1

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:ars-meteorites-1278083:6621078")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Official version

正式版

Allows recipe registration via data pack
允许通过数据包注册配方

put it in meteorite_recipes under the mod
放于mod下meteorite_recipes中
The data packet needs to contain the following four elements
数据包中需要包含一下四个元素

input source meteorites weights
string double string[] int[]

They are respectively used to determine which meteorite it is,
他们分别是用于判断是那个陨石球的物品,
the magic source consumption of each block,
每个方块魔源消耗,
the array of blocks in the meteorite,
陨石中方块的数组,
and the array of weights corresponding to the meteorite blocks.
对应陨石方块的权重的数组

For example
例如

{
"input": "minecraft:obsidian",
"source": 120,
"meteorites": [
"minecraft:obsidian",
"minecraft:basalt",
"minecraft:blackstone"
],
"weights": [60, 30, 10]
}