This commit is contained in:
ZHAY10086
2025-11-27 11:06:45 +08:00
parent bcce341d01
commit 4c4bf04b3c
92 changed files with 15628 additions and 978 deletions
+15 -1
View File
@@ -512,4 +512,18 @@ masterspelltenebrae.itemRightClick = function(stack, world, player, hand) {
Commands.call("/summon abyssalcraft:shadowmonster ~-5 ~3 ~ {HandItems:[{Count:10,id:\"contenttweaker:dark_capacitor_shard\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"黯曶之影\",ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:40,permshields:40}},Attributes:[{Name:generic.maxHealth, Base:1000.0},{Name:generic.attackDamage, Base:50.0}],Health:1000f}", player, world, false, true);
return "Pass";
};
masterspelltenebrae.register();
masterspelltenebrae.register();
var masterspellmestia = VanillaFactory.createItem("master_spell_bestia");
masterspellmestia.maxStackSize = 1;
masterspellmestia.glowing = true;
masterspellmestia.itemRightClick = function(stack, world, player, hand) {
if(world.remote) {
return "FAIL";
}
Commands.call("/summon twilightforest:mist_wolf ~5 ~3 ~5 {HandItems:[{Count:1,id:\"contenttweaker:investiture_of_the_direwolf\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"野性冰原狼\",ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:40,permshields:40}},Attributes:[{Name:generic.maxHealth, Base:2000.0},{Name:generic.attackDamage, Base:50.0}],Health:2000f}", player, world, false, true);
return "Pass";
};
masterspellmestia.register();