add first patch

This commit is contained in:
2026-07-31 10:34:32 +09:00
parent 03aac2e45e
commit b1cbc6c78d
6390 changed files with 547430 additions and 0 deletions
@@ -0,0 +1,51 @@
console.info("[SOCIETY] animalPet.js loaded");
ItemEvents.entityInteracted((e) => {
const { hand, player, level, target, server } = e;
if (hand == "OFF_HAND") return;
if (!global.checkEntityTag(target, "society:pet_animal")) return;
if (hand == "MAIN_HAND") {
let data = target.persistentData;
let possibleGifts;
let gift = level.createEntity("minecraft:item");
if (!data.gifted && data.affection >= 1000) {
let nonIdType = String(target.type).path.replace(/_/g, " ");
let name = target.customName ? target.customName : global.getTranslatedEntityName(String(target.type), global.formatName(nonIdType));
server.runCommandSilent(
global.getEmbersTextAPICommand(
player.username,
// Commented code is original one before 2025.12.22 (84067a9), and I think this is right code. so I attached.
// `{anchor:"BOTTOM_CENTER",background:1,align:"BOTTOM_CENTER",color:"#55FF55",y:-90}`,
// 80,
// Text.translatable("society.husbandry.pet.max_affection", name).toJson(),
`{anchor:"BOTTOM_CENTER",background:1,wrap:220,align:"BOTTOM_CENTER",color:"#FFAA00",offsetY:20}`,
40,
Text.translatable("society.husbandry.pet.max_affection").toJson()
)
);
global.petGifts.forEach((gift) => {
if (gift.animal === target.type) possibleGifts = gift.gifts;
});
data.gifted = true;
gift.x = player.x;
gift.y = player.y;
gift.z = player.z;
gift.item = Item.of(possibleGifts[rnd(0, possibleGifts.length - 1)]);
gift.spawn();
level.spawnParticles(
"minecraft:heart",
true,
target.x,
target.y + 1.5,
target.z,
0.2 * rnd(0, 3),
0.2 * rnd(0, 3),
0.2 * rnd(0, 3),
20,
0.01
);
}
}
});