Langue

RandomJS

RandomJS

Modrinth

Added a new category of block presets to KubeJS, allowing players to set custom survival rules for created blocks.

291 téléchargements 3 abonnés mis à jour 30mo ago
dernière v1.0.0-A Modrinth
Forge 1.20.1 – 1.20.4

Added a new category of block presets to KubeJS, allowing players to set custom survival rules for created blocks. (More features coming soon)

Currently added kinds:

  • Determination of the bottom block
  • Determination of whether the immediate neighboring faces are complete or not

The full list of methods is below:

  • customSurviveRule( Json ) (use json to customize the survival rule)
  • surviveType( String ) (select a preset rule for surviving blocks, see below for details)
  • catchAllDirection( Boolean ) (enable full face all match mode)

Optional json statement:

  • "setFaceSturdy" : String[]
    • (set a list of directions, make the blocks detect if the neighboring faces of the directions in the list are all faces, if any direction meets the condition, all matches need to enable all-face-match mode)
    • (optional values: "up" "down" "east" "west" "south" "north")
  • "setBelowBlock" : String[]
    • (set a list of blocks so that blocks must be placed on the blocks in the list)
    • (optional: full block id, e.g. "minecraft:stone", no way to match blockstate yet because it's not done yet)

Future plans:

  • More survival rules with preset types
  • Custom HUD
  • Custom GUI

Usage examples:

StartupEvents.registry ("block", e=> {
    e.create ("block_name", "super_block")
        .surviveType ("custom")
        .customSurviveRule (
            {
                "setFaceSturdy" : ["up", "down"],
                "setBelowBlock" : ["minecraft:stone", "minecraft:oak_log", "minecraft:campfire"]
            })
         .catchAllDirection (false)
})

Versions

Release
1.0.0-A
forge · 1.20.1, 1.20.2, 1.20.3 · 30mo ago
291

Commentaires 0

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

Télécharger RandomJS

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