Resource Type | Name | URL | Source | License |
---|---|---|---|---|
Skin | Yes Steve Model mod (YSM) | Hachiroku | https://zhb.jihutuku.cn/1445.html | https://www.planetminecraft.com/texture-pack/yes-steve-model-mod-ysm-hachiroku/ | |
Skin | 甘雨但是MC | https://zhb.jihutuku.cn/1503.html | https://www.bilibili.com/video/BV1VM411X7kn/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @typedef {{armors: $Item_[], bonus: [mobEffect: Special.MobEffect, amplifier: number?, showParticles: boolean?]}} $ArmorSetBonus_ | |
* @type {Object.<String, $ArmorSetBonus_} | |
*/ | |
const bonuses = { | |
set1: { | |
armors: ["minecraft:leather_helmet", "minecraft:leather_boots"], | |
bonus: ["speed", 0], | |
}, | |
set2: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// requires: ae2 | |
(() => { | |
const { keyPickItem } = Client.options; // 「选取方块」对应的 KeyMapping | |
ClientEvents.tick((event) => { | |
let { player } = event; | |
if (!keyPickItem.isDown()) return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ItemEntity = Java.loadClass("net.minecraft.world.entity.item.ItemEntity"); | |
global.recipes = global.recipes || {}; | |
/** @type {[ingredient: $Ingredient_, result: $ItemStack_][]} */ | |
global.recipes["portal_to_alfheim"] = [ | |
["#c:raw_materials/gold", "2x minecraft:gold_ingot"], | |
["#c:raw_materials/iron", "2x minecraft:iron_ingot"], | |
["#c:raw_materials/copper", "2x minecraft:copper_ingot"], | |
["nether_star", "nether_star"], | |
]; |
Note
ChatGPT used: https://chatgpt.com/share/67586ad8-8ba4-8008-8bc5-db4e97afa1af
FilesJS is a powerful addon for KubeJS 6 designed to handle your file operations with ease. Just kidding—it's not out to steal your Discord account or wallet!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// KubeJS 5 / 1.18.x | |
const $CreativeTabRegistry = java("dev.architectury.registry.CreativeTabRegistry"); | |
$CreativeTabRegistry.create( | |
"test:group", | |
() => Item.of("minecraft:apple") | |
); | |
onEvent("item.registry", (event) => { |
NewerOlder