Ayfri
11/21/2023, 9:42 AMAyfri
11/21/2023, 9:54 AMAyfri
11/22/2023, 11:07 PMscoreboard
command were added, new features are available for the `ScoreboardManager`s and much more !
Take a look at the biggest changelog.Ayfri
12/07/2023, 10:33 PMAyfri
12/08/2023, 1:41 PMAyfri
12/21/2023, 6:55 PMAyfri
01/27/2024, 3:39 PM/transfer
command ! π₯Ayfri
02/03/2024, 11:27 PMAyfri
02/29/2024, 10:55 AMAyfri
03/18/2024, 2:31 AMAyfri
04/03/2024, 6:21 AMAyfri
05/09/2024, 12:32 PMAyfri
05/19/2024, 5:31 AMAyfri
06/02/2024, 2:27 AMAyfri
08/07/2024, 3:08 AMAyfri
08/15/2024, 6:47 PMAyfri
09/15/2024, 1:33 PMenchantment("more_xp") {
description = textComponent("More Experience") // Name of enchantment in game
maxLevel = 3
supportedItems(Tags.Enchentable.WEAPON)
weight = 3 // The probability of the enchant to be displayed in enchantment table
minCost(15, 5) // Minimum cost of the enchantment of level 1, with 5 more levels required to have the next level available
maxCost(20, 5) // Maximum cost of the enchantment of last level
anvilCost = 2 // The cost to add the enchantment to an item by combining with another item having the enchant in an anvil
slots(EquipmentSlot.MAINHAND)
effects {
mobExperience {
add(2) // Add 2 xp points per level when killing a mob
}
}
}
Ayfri
09/27/2024, 9:07 AMAyfri
10/30/2024, 5:15 AMval myDatapack1 = dataPack("my_datapack 1") {
// datapack code here
}
val myDatapack2 = dataPack("my_datapack 2") {
// datapack code here
}
myDatapack1.generate {
mergeWithDatapacks(myDatapack2)
mergeWithDatapacks("existing_local_datapack.zip")
}
Checkout the documentation on this new feature there ! πAyfri
11/11/2024, 1:01 AMfabric
, forge
, neoforge
and quilt
mod-loaders !
Example :
kotlin
val myDataPack = dataPack("my_datapack") {
// ...
}
myDataPack.generateJar {
fabric {
author("Ayfri")
contact {
homepage = "<https://kore.ayfri.com>"
sources = "<https://github.com/Ayfri/Kore>"
}
version = "1.2.5"
}
// Other mod-loaders...
}
Check out the documentation on this feature here : https://github.com/Ayfri/Kore/wiki/creating-a-datapack#jar-generation
The next release should be focused on updating Kore to 1.21.2 πAyfri
11/24/2024, 4:51 PMAyfri
12/19/2024, 9:08 PMAyfri
01/06/2025, 8:53 PMAyfri
01/12/2025, 12:03 PMAyfri
01/17/2025, 5:48 PMAyfri
03/02/2025, 3:01 AMAyfri
03/18/2025, 3:19 PMAyfri
03/18/2025, 5:32 PMAyfri
03/24/2025, 12:50 AMAyfri
03/27/2025, 1:09 AM