This commit is contained in:
ZHAY10086
2026-04-11 14:32:39 +08:00
parent 5054031f74
commit cb61e018ba
91 changed files with 3148 additions and 333 deletions
+12
View File
@@ -542,3 +542,15 @@ masterspellvinculum.itemRightClick = function(stack, world, player, hand) {
masterspellvinculum.register();
var masterspellexanimis = VanillaFactory.createItem("master_spell_exanimis");
masterspellexanimis.maxStackSize = 1;
masterspellexanimis.glowing = true;
masterspellexanimis.itemRightClick = function(stack, world, player, hand) {
if(world.remote) {
return "FAIL";
}
Commands.call("summon bewitchment:snake ~ ~3 ~ {HandItems:[{Count:1,id:\"contenttweaker:twilit_venom\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"费图奇尼,危险面条\",Attributes:[{Name:generic.maxHealth, Base:3000.0},{Name:generic.attackDamage, Base:50.0}],Health:3000f}", player, world, false, true);
return "Pass";
};
masterspellexanimis.register();