Langue

champions-alter

champions-alter

Modrinth

This is an add-on for the Champions mod, which allows you to easily control the spawn rate of champion creatures.

895 téléchargements 2 abonnés mis à jour 10mo ago
dernière v1.21.1-2.1.11.8-alter Modrinth
Neoforge 1.21.1 – 1.21.1 AdventureMobsWorldgen

This mod allows you to dynamically control the spawn rates of champion mobs through Kubejs. You can find the configurations for the spawn rates of champion mobs provided by various stages in champions-server.toml and configure them via Kubejs.

(KubeJS is optional, but if you don't install KubeJS for modifications, this mod will have no effect!)

By default, you can apply new stages in Kubejs to control the spawn rate of champions.

You can refer to the images below for partial script tutorials.

For example, if I set the stage to Kether, a large number of high-star creatures will spawn in the world (if possible)

This mod was created for the Reverie Foundry modpack!

// Visit the wiki for more info - https://kubejs.com/
// console.info('Hello, World! (Loaded server example script)')
//
const ChampionHelper = Java.loadClass("top.theillusivec4.champions.common.util.ChampionHelper")
const ChampionAttachment = Java.loadClass("top.theillusivec4.champions.common.capability.ChampionAttachment")
const List = Java.loadClass("java.util.List")

ChampionsJs.addSephiahName(event => {

  let entity = event.getEntity()
  let entityName = entity.getName().getString()
  let entityId = event.getMobId()
  let sephiahName = event.getName()
  console.log(entityName)
  console.log(sephiahName)
  console.log(entityId)
  if (entityId === "minecraft:zombie") {
    event.setName("Hod")
    console.log("after set sephirahName")
    console.log(event.getName())
  }

  // event.setCanceled(true);
})
// ChampionsJs.preSpawn(event =>{
//
//   console.log("/tp Dev "+ event.getEntity().position().x()+ " " + event.getEntity().position().y()+ " " + event.getEntity().position().z())
//   console.log(event.getEntity().name)
//   // event.setCanceled(true);
// })
ChampionsJs.postSpawn(event => {


  console.log("/tp Dev " + event.getEntity().position().x() + " " + event.getEntity().position().y() + " " + event.getEntity().position().z())
  ChampionAttachment.getAttachment(event.getEntity()).ifPresent(champion => {
    console.log(event.getEntity().name.getString() + ": " + ChampionHelper.isValidChampion(event.getChampion().getServer()))
  })
  // event.setCanceled(true);
})

Versions

Release
1.21.1-2.1.11.8-alter
neoforge · 1.21.1 · 10mo ago
Initial version
895

Commentaires 0

Aucun commentaire pour l'instant. Sois le premier à donner ton avis.

Télécharger champions-alter

Les fichiers proviennent directement de la source d'origine. Modgrid ne les héberge ni ne les modifie.