Merge branch '1.12.2' into 1.12.2-dev
This commit is contained in:
@@ -33,12 +33,12 @@ import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.entity.player.EntityPlayerMP;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.init.MobEffects;
|
||||
import net.minecraft.init.SoundEvents;
|
||||
import net.minecraft.item.ItemEnchantedBook;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.nbt.NBTTagInt;
|
||||
import net.minecraft.nbt.NBTTagString;
|
||||
import net.minecraft.nbt.*;
|
||||
import net.minecraft.potion.PotionEffect;
|
||||
import net.minecraft.util.EnumFacing;
|
||||
import net.minecraft.util.EnumHand;
|
||||
@@ -278,12 +278,14 @@ public class WizardData implements INBTSerializable<NBTTagCompound> {
|
||||
for(ItemStack stack : player.inventory.mainInventory){
|
||||
if(stack.isItemEnchanted()){
|
||||
|
||||
Map<Enchantment, Integer> enchantments = EnchantmentHelper.getEnchantments(stack);
|
||||
NBTTagList enchantmentList = stack.getItem() == Items.ENCHANTED_BOOK ?
|
||||
ItemEnchantedBook.getEnchantments(stack) : stack.getEnchantmentTagList();
|
||||
|
||||
Iterator<Entry<Enchantment, Integer>> iterator = enchantments.entrySet().iterator();
|
||||
Iterator<NBTBase> iterator =enchantmentList.iterator();
|
||||
// For each of the item's enchantments
|
||||
while(iterator.hasNext()){
|
||||
Enchantment enchantment = iterator.next().getKey();
|
||||
NBTTagCompound enchantmentTag = (NBTTagCompound) iterator.next();
|
||||
Enchantment enchantment = Enchantment.getEnchantmentByID(enchantmentTag.getShort("id"));
|
||||
// Ignores the enchantment unless it is an imbuement
|
||||
if(enchantment instanceof Imbuement){
|
||||
int duration = this.getImbuementDuration(enchantment);
|
||||
@@ -295,10 +297,8 @@ public class WizardData implements INBTSerializable<NBTTagCompound> {
|
||||
activeImbuements.add((Imbuement)enchantment);
|
||||
// Otherwise:
|
||||
}else{
|
||||
// Removes the enchantment from the enchantment map
|
||||
// Removes the enchantment from the item
|
||||
iterator.remove();
|
||||
// Applies the new enchantment map to the item
|
||||
EnchantmentHelper.setEnchantments(enchantments, stack);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,6 +51,7 @@ import net.minecraft.world.storage.loot.LootPool;
|
||||
import net.minecraft.world.storage.loot.RandomValueRange;
|
||||
import net.minecraft.world.storage.loot.conditions.LootCondition;
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
import net.minecraftforge.common.util.FakePlayer;
|
||||
import net.minecraftforge.event.LootTableLoadEvent;
|
||||
import net.minecraftforge.event.entity.living.LivingAttackEvent;
|
||||
import net.minecraftforge.event.entity.living.LivingDeathEvent;
|
||||
@@ -200,7 +201,8 @@ public final class WizardryEventHandler {
|
||||
|
||||
// Ice Shroud
|
||||
if(event.getEntityLiving().isPotionActive(WizardryPotions.ice_shroud)
|
||||
&& !MagicDamage.isEntityImmune(DamageType.FROST, event.getEntityLiving()))
|
||||
&& !MagicDamage.isEntityImmune(DamageType.FROST, event.getEntityLiving())
|
||||
&& !(event.getEntityLiving() instanceof FakePlayer))
|
||||
attacker.addPotionEffect(new PotionEffect(WizardryPotions.frost, 100, 0));
|
||||
|
||||
// Static Aura
|
||||
|
||||
@@ -175,7 +175,7 @@ public class WizardryWorldGenerator implements IWorldGenerator {
|
||||
}
|
||||
|
||||
// 0 = West, 1 = North, 2 = East, 3 = South (The way you would face when walking out of the door)
|
||||
EnumFacing orientation = EnumFacing.getHorizontal(random.nextInt(4));
|
||||
EnumFacing orientation = EnumFacing.byHorizontalIndex(random.nextInt(4));
|
||||
boolean flip = random.nextBoolean();
|
||||
|
||||
if(checkSpaceForTower(world, origin, towerBlueprint, orientation, flip)){
|
||||
@@ -237,7 +237,8 @@ public class WizardryWorldGenerator implements IWorldGenerator {
|
||||
// BlockPos is immutable, so I'm not sure if simply saying pos1 = pos will be sufficient.
|
||||
BlockPos layerCentre = new BlockPos(origin);
|
||||
|
||||
while(flag){
|
||||
// Stop when the bottom of the world is reached
|
||||
while(flag && layerCentre.getY() > 0){
|
||||
|
||||
flag = false;
|
||||
|
||||
@@ -299,7 +300,7 @@ public class WizardryWorldGenerator implements IWorldGenerator {
|
||||
// Rotates the door depending on whether flip is true.
|
||||
ItemDoor.placeDoor(
|
||||
world, pos, flip
|
||||
? EnumFacing.getHorizontal(3 - orientation.getHorizontalIndex())
|
||||
? EnumFacing.byHorizontalIndex(3 - orientation.getHorizontalIndex())
|
||||
.getOpposite()
|
||||
: orientation.rotateYCCW(),
|
||||
Blocks.OAK_DOOR, false);
|
||||
|
||||
@@ -51,7 +51,7 @@ public class BlockSnare extends BlockContainer {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEntityCollidedWithBlock(World world, BlockPos pos, IBlockState state, Entity entity){
|
||||
public void onEntityCollision(World world, BlockPos pos, IBlockState state, Entity entity){
|
||||
|
||||
if(!world.isRemote && entity instanceof EntityLivingBase){
|
||||
if(world.getTileEntity(pos) instanceof TileEntityPlayerSave){
|
||||
@@ -80,7 +80,7 @@ public class BlockSnare extends BlockContainer {
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockRenderLayer getBlockLayer(){
|
||||
public BlockRenderLayer getRenderLayer() {
|
||||
return BlockRenderLayer.CUTOUT;
|
||||
}
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ public class BlockSpectral extends BlockContainer {
|
||||
|
||||
// Replaces getRenderBlockPass
|
||||
@Override
|
||||
public BlockRenderLayer getBlockLayer(){
|
||||
public BlockRenderLayer getRenderLayer(){
|
||||
return BlockRenderLayer.TRANSLUCENT;
|
||||
}
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ public class BlockStatue extends BlockContainer {
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockRenderLayer getBlockLayer(){
|
||||
public BlockRenderLayer getRenderLayer(){
|
||||
return this.isIce ? BlockRenderLayer.TRANSLUCENT : BlockRenderLayer.SOLID;
|
||||
}
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ public class BlockVanishingCobweb extends BlockContainer {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEntityCollidedWithBlock(World world, BlockPos pos, IBlockState state, Entity entity){
|
||||
public void onEntityCollision(World world, BlockPos pos, IBlockState state, Entity entity){
|
||||
entity.setInWeb();
|
||||
}
|
||||
|
||||
|
||||
@@ -53,6 +53,8 @@ public class GuiArcaneWorkbench extends GuiContainer {
|
||||
@Override
|
||||
public void drawScreen(int p_73863_1_, int p_73863_2_, float p_73863_3_){
|
||||
|
||||
this.drawDefaultBackground();
|
||||
|
||||
// Tests if there is a wand in the workbench and edits the positioning accordingly
|
||||
if(this.inventorySlots.getSlot(ContainerArcaneWorkbench.CENTRE_SLOT).getHasStack() && this.inventorySlots
|
||||
.getSlot(ContainerArcaneWorkbench.CENTRE_SLOT).getStack().getItem() instanceof ItemWand){
|
||||
|
||||
@@ -40,7 +40,7 @@ public class RenderMagicLight extends TileEntitySpecialRenderer<TileEntityMagicL
|
||||
GlStateManager.scale((float)tileentity.timer / 10, (float)tileentity.timer / 10,
|
||||
(float)tileentity.timer / 10);
|
||||
}
|
||||
if(tileentity.timer > tileentity.maxTimer - 10){
|
||||
if(tileentity.timer > tileentity.maxTimer - 10 && tileentity.timer <= tileentity.maxTimer){
|
||||
GlStateManager.scale((float)(tileentity.maxTimer - tileentity.timer) / 10,
|
||||
(float)(tileentity.maxTimer - tileentity.timer) / 10,
|
||||
(float)(tileentity.maxTimer - tileentity.timer) / 10);
|
||||
|
||||
@@ -92,24 +92,20 @@ public class CommandViewAllies extends CommandBase {
|
||||
|
||||
if(WizardData.get(player) != null){
|
||||
|
||||
String string = "";
|
||||
Object playerList = null;
|
||||
Set<String> names = WizardData.get(player).allyNames;
|
||||
|
||||
if(!names.isEmpty()){
|
||||
for(String name : names){
|
||||
string = string + name + ", ";
|
||||
}
|
||||
// Cuts the last " ," off of the string.
|
||||
string = string.substring(0, string.length() - 2);
|
||||
playerList = joinNiceStringFromCollection(names);
|
||||
}else{
|
||||
string = I18n.format("commands." + Wizardry.MODID + ":allies.none");
|
||||
playerList = new TextComponentTranslation("commands." + Wizardry.MODID + ":allies.none");
|
||||
}
|
||||
|
||||
if(executeAsOtherPlayer){
|
||||
sender.sendMessage(
|
||||
new TextComponentTranslation("commands." + Wizardry.MODID + ":allies.list_other", player.getName(), string));
|
||||
new TextComponentTranslation("commands." + Wizardry.MODID + ":allies.list_other", player.getName(), playerList));
|
||||
}else{
|
||||
sender.sendMessage(new TextComponentTranslation("commands." + Wizardry.MODID + ":allies.list", string));
|
||||
sender.sendMessage(new TextComponentTranslation("commands." + Wizardry.MODID + ":allies.list", playerList));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
package electroblob.wizardry.enchantment;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
|
||||
import com.google.common.collect.Iterables;
|
||||
import electroblob.wizardry.Wizardry;
|
||||
import electroblob.wizardry.registry.WizardryEnchantments;
|
||||
import electroblob.wizardry.spell.FreezingWeapon;
|
||||
@@ -10,11 +12,15 @@ import net.minecraft.enchantment.EnchantmentHelper;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.entity.item.EntityItem;
|
||||
import net.minecraft.entity.projectile.EntityArrow;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.inventory.ContainerChest;
|
||||
import net.minecraft.inventory.Slot;
|
||||
import net.minecraft.item.ItemBow;
|
||||
import net.minecraft.item.ItemEnchantedBook;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTBase;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.nbt.NBTTagList;
|
||||
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
|
||||
import net.minecraftforge.event.entity.item.ItemTossEvent;
|
||||
import net.minecraftforge.event.entity.living.LivingDropsEvent;
|
||||
@@ -55,11 +61,18 @@ public interface Imbuement {
|
||||
if(stack.isItemEnchanted()){
|
||||
// No need to check what enchantments the item has, since remove() does nothing if the element does not
|
||||
// exist.
|
||||
Map<Enchantment, Integer> enchantments = EnchantmentHelper.getEnchantments(stack);
|
||||
// Removes the magic weapon enchantments from the enchantment map
|
||||
enchantments.entrySet().removeIf(entry -> entry.getKey() instanceof Imbuement);
|
||||
// Applies the new enchantment map to the item
|
||||
EnchantmentHelper.setEnchantments(enchantments, stack);
|
||||
NBTTagList enchantmentList = stack.getItem() == Items.ENCHANTED_BOOK ?
|
||||
ItemEnchantedBook.getEnchantments(stack) : stack.getEnchantmentTagList();
|
||||
// Check all enchantments of the item
|
||||
Iterator<NBTBase> enchantmentIt = enchantmentList.iterator();
|
||||
while(enchantmentIt.hasNext()){
|
||||
NBTTagCompound enchantmentTag = (NBTTagCompound) enchantmentIt.next();
|
||||
Enchantment enchantment = Enchantment.getEnchantmentByID(enchantmentTag.getShort("id"));
|
||||
// If the item contains a magic weapon enchantment, remove it from the item
|
||||
if(enchantment instanceof Imbuement){
|
||||
enchantmentIt.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,18 +83,23 @@ public interface Imbuement {
|
||||
// Still not sure if it's better to set stacks in slots or modify the itemstack list directly, but I would
|
||||
// imagine it's the former.
|
||||
for(Slot slot : event.getContainer().inventorySlots){
|
||||
if(slot.getStack().getItem() instanceof ItemEnchantedBook){
|
||||
ItemStack slotStack = slot.getStack();
|
||||
if(slotStack.getItem() instanceof ItemEnchantedBook){
|
||||
// We don't care about the level of the enchantments
|
||||
Map<Enchantment, Integer> enchantments = EnchantmentHelper.getEnchantments(slot.getStack());
|
||||
NBTTagList enchantmentList = ItemEnchantedBook.getEnchantments(slotStack);
|
||||
// Removes all imbuements
|
||||
if(enchantments.keySet().removeIf(e -> e instanceof Imbuement)){
|
||||
// If any imbuements were removed, replaces the enchantments on the book with the new ones, or
|
||||
// deletes the book entirely if there are none left.
|
||||
if(enchantments.isEmpty()){
|
||||
slot.putStack(ItemStack.EMPTY);
|
||||
if(Iterables.removeIf(enchantmentList, tag -> {
|
||||
NBTTagCompound enchantmentTag = (NBTTagCompound) tag;
|
||||
return Enchantment.getEnchantmentByID(enchantmentTag.getShort("id"))
|
||||
instanceof Imbuement;
|
||||
})){
|
||||
// If any imbuements were removed, inform about the removal of the enchantment(s), or
|
||||
// delete the book entirely if there are none left.
|
||||
if(enchantmentList.isEmpty()){
|
||||
slot.putStack(ItemStack.EMPTY); // NOTE: Will need changing in 1.11
|
||||
Wizardry.logger.info("Deleted enchanted book with illegal enchantments");
|
||||
}else{
|
||||
EnchantmentHelper.setEnchantments(enchantments, slot.getStack());
|
||||
// Inform about enchantment removal
|
||||
Wizardry.logger.info("Removed illegal enchantments from enchanted book");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -395,7 +395,7 @@ public abstract class EntityMagicArrow extends Entity implements IProjectile, IE
|
||||
this.onBlockHit(raytraceresult);
|
||||
|
||||
if(this.stuckInBlock.getMaterial() != Material.AIR){
|
||||
this.stuckInBlock.getBlock().onEntityCollidedWithBlock(this.world, raytraceresult.getBlockPos(),
|
||||
this.stuckInBlock.getBlock().onEntityCollision(this.world, raytraceresult.getBlockPos(),
|
||||
this.stuckInBlock, this);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ public final class WizardryBlocks {
|
||||
*/
|
||||
public static void registerBlock(IForgeRegistry<Block> registry, String name, Block block){
|
||||
block.setRegistryName(Wizardry.MODID, name);
|
||||
block.setUnlocalizedName(block.getRegistryName().toString());
|
||||
block.setTranslationKey(block.getRegistryName().toString());
|
||||
registry.register(block);
|
||||
}
|
||||
|
||||
|
||||
@@ -335,7 +335,7 @@ public final class WizardryItems {
|
||||
// It now makes sense to have the name first, since it's shorter than an entire item declaration.
|
||||
public static void registerItem(IForgeRegistry<Item> registry, String name, Item item, boolean setTabIcon){
|
||||
item.setRegistryName(Wizardry.MODID, name);
|
||||
item.setUnlocalizedName(item.getRegistryName().toString());
|
||||
item.setTranslationKey(item.getRegistryName().toString());
|
||||
registry.register(item);
|
||||
|
||||
if(setTabIcon && item.getCreativeTab() instanceof CreativeTabSorted){
|
||||
|
||||
@@ -31,7 +31,7 @@ public final class WizardryTabs {
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public ItemStack getTabIconItem(){
|
||||
public ItemStack createIcon(){
|
||||
return new ItemStack(WizardryItems.wizard_handbook);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ public final class WizardryTabs {
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public ItemStack getTabIconItem(){
|
||||
public ItemStack createIcon(){
|
||||
return new ItemStack(WizardryItems.spell_book);
|
||||
}
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ public class IceAge extends Spell {
|
||||
world.setBlockState(pos.down(), Blocks.OBSIDIAN.getDefaultState());
|
||||
}else if(world.getBlockState(pos.down()) == Blocks.FLOWING_LAVA.getDefaultState()){
|
||||
world.setBlockState(pos.down(), Blocks.COBBLESTONE.getDefaultState());
|
||||
}else{
|
||||
}else if(Blocks.SNOW_LAYER.canPlaceBlockAt(world, pos)){
|
||||
world.setBlockState(pos, Blocks.SNOW_LAYER.getDefaultState());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -398,7 +398,7 @@ public abstract class Spell extends IForgeRegistryEntry.Impl<Spell> implements C
|
||||
*/
|
||||
public static Spell get(String name){
|
||||
ResourceLocation key = new ResourceLocation(name);
|
||||
if(key.getResourceDomain().equals("minecraft")) key = new ResourceLocation(Wizardry.MODID, name);
|
||||
if(key.getNamespace().equals("minecraft")) key = new ResourceLocation(Wizardry.MODID, name);
|
||||
return ((ForgeRegistry<Spell>)registry).getValue(key);
|
||||
}
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ public final class WandHelper {
|
||||
|
||||
int selectedSpell = wand.getTagCompound().getInteger(SELECTED_SPELL_KEY);
|
||||
|
||||
if(selectedSpell < spells.length){
|
||||
if(selectedSpell >= 0 && selectedSpell < spells.length){
|
||||
return spells[selectedSpell];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,741 @@
|
||||
tile.ebwizardry:arcane_workbench.name=奥术工作台
|
||||
tile.ebwizardry:crystal_ore.name=水晶矿
|
||||
tile.ebwizardry:petrified_stone.name=石化石像
|
||||
tile.ebwizardry:ice_statue.name=冰像
|
||||
tile.ebwizardry:crystal_flower.name=水晶花
|
||||
tile.ebwizardry:snare.name=陷阱
|
||||
tile.ebwizardry:transportation_stone.name=传送石
|
||||
tile.ebwizardry:spectral_block.name=幽冥块
|
||||
tile.ebwizardry:crystal_block.name=水晶块
|
||||
|
||||
item.ebwizardry:magic_crystal.name=魔法水晶
|
||||
item.ebwizardry:magic_wand.name=法杖
|
||||
item.ebwizardry:apprentice_wand.name=学徒法杖
|
||||
item.ebwizardry:advanced_wand.name=进阶法杖
|
||||
item.ebwizardry:master_wand.name=大师法杖
|
||||
item.ebwizardry:spell_book.name=法术书
|
||||
|
||||
item.ebwizardry:arcane_tome.name=奥法宝典
|
||||
item.ebwizardry:arcane_tome.desc1=升级需求 %1$s
|
||||
item.ebwizardry:arcane_tome.desc2=法杖升级至 %1$s 级别
|
||||
|
||||
item.ebwizardry:wizard_handbook.name=巫师手册
|
||||
item.ebwizardry:wizard_handbook.desc=编写于 %1$s
|
||||
|
||||
item.ebwizardry:wand.buff=+%1$s %2$s 能力
|
||||
item.ebwizardry:wand.spell=当前法术: %1$s
|
||||
item.ebwizardry:wand.mana=魔力: %1$s/%2$s
|
||||
|
||||
item.ebwizardry:wand.addally=%1$s 已添加到你的盟友名单
|
||||
item.ebwizardry:wand.removeally=%1$s 已移出你的盟友名单
|
||||
|
||||
item.ebwizardry:basic_fire_wand.name=余火法杖
|
||||
item.ebwizardry:basic_ice_wand.name=寒霜法杖
|
||||
item.ebwizardry:basic_lightning_wand.name=星火法杖
|
||||
item.ebwizardry:basic_necromancy_wand.name=暗影法杖
|
||||
item.ebwizardry:basic_earth_wand.name=森林法杖
|
||||
item.ebwizardry:basic_sorcery_wand.name=神秘法杖
|
||||
item.ebwizardry:basic_healing_wand.name=治愈法杖
|
||||
|
||||
item.ebwizardry:apprentice_fire_wand.name=学徒烈焰法杖
|
||||
item.ebwizardry:apprentice_ice_wand.name=学徒冰霜法杖
|
||||
item.ebwizardry:apprentice_lightning_wand.name=学徒风暴法杖
|
||||
item.ebwizardry:apprentice_necromancy_wand.name=学徒死灵法杖
|
||||
item.ebwizardry:apprentice_earth_wand.name=学徒大地法杖
|
||||
item.ebwizardry:apprentice_sorcery_wand.name=学徒妖术法杖
|
||||
item.ebwizardry:apprentice_healing_wand.name=学徒治愈法杖
|
||||
|
||||
item.ebwizardry:advanced_fire_wand.name=烈焰法杖
|
||||
item.ebwizardry:advanced_ice_wand.name=冰霜法杖
|
||||
item.ebwizardry:advanced_lightning_wand.name=风暴法杖
|
||||
item.ebwizardry:advanced_necromancy_wand.name=死灵法杖
|
||||
item.ebwizardry:advanced_earth_wand.name=大地法杖
|
||||
item.ebwizardry:advanced_sorcery_wand.name=妖术法杖
|
||||
item.ebwizardry:advanced_healing_wand.name=治愈法杖
|
||||
|
||||
item.ebwizardry:master_fire_wand.name=大师烈焰法杖
|
||||
item.ebwizardry:master_ice_wand.name=大师冰霜法杖
|
||||
item.ebwizardry:master_lightning_wand.name=大师风暴法杖
|
||||
item.ebwizardry:master_necromancy_wand.name=大师死灵法杖
|
||||
item.ebwizardry:master_earth_wand.name=大师大地法杖
|
||||
item.ebwizardry:master_sorcery_wand.name=大师妖术法杖
|
||||
item.ebwizardry:master_healing_wand.name=大师治愈法杖
|
||||
|
||||
item.ebwizardry:spectral_sword.name=幽冥剑
|
||||
item.ebwizardry:spectral_pickaxe.name=幽冥镐
|
||||
item.ebwizardry:spectral_bow.name=幽冥弓
|
||||
|
||||
item.ebwizardry:mana_flask.name=魔力瓶
|
||||
item.ebwizardry:storage_upgrade.name=法杖存储升级
|
||||
item.ebwizardry:siphon_upgrade.name=法杖汲取升级
|
||||
item.ebwizardry:condenser_upgrade.name=法杖聚光升级
|
||||
item.ebwizardry:range_upgrade.name=法杖范围升级
|
||||
item.ebwizardry:duration_upgrade.name=法杖时限升级
|
||||
item.ebwizardry:cooldown_upgrade.name=法杖冷却升级
|
||||
item.ebwizardry:blast_upgrade.name=法杖爆破升级
|
||||
item.ebwizardry:attunement_upgrade.name=法杖协调升级
|
||||
|
||||
item.ebwizardry:flaming_axe.name=炽烈之斧
|
||||
item.ebwizardry:frost_axe.name=冰霜之斧
|
||||
|
||||
item.ebwizardry:firebomb.name=燃烧弹
|
||||
item.ebwizardry:poison_bomb.name=毒液弹
|
||||
item.ebwizardry:smoke_bomb.name=烟雾弹
|
||||
|
||||
item.ebwizardry:blank_scroll.name=空白卷轴
|
||||
item.ebwizardry:scroll.name=卷轴 %1$s
|
||||
item.ebwizardry:scroll.undiscovered.name=卷轴 "%1$s"
|
||||
item.ebwizardry:identification_scroll.name=鉴定卷轴
|
||||
item.ebwizardry:identification_scroll.desc1=%1$s 鉴定未知的
|
||||
item.ebwizardry:identification_scroll.desc2=%1$s 法术书或卷轴
|
||||
item.ebwizardry:identification_scroll.nothing_to_identify=没有可以鉴定的东西!
|
||||
|
||||
item.ebwizardry:armour_upgrade.name=奥术戳记:保护
|
||||
item.ebwizardry:armour_upgrade.desc1=%1$s升级任何巫师护甲
|
||||
item.ebwizardry:armour_upgrade.desc2=%1$s使其达到 %2$s传奇
|
||||
|
||||
item.ebwizardry:magic_silk.name=魔法丝绸
|
||||
|
||||
item.ebwizardry:wizard_armour.legendary=传奇
|
||||
item.ebwizardry:wizard_armour.buff=-%1$s %2$s 消耗
|
||||
item.ebwizardry:wizard_armour.mana=魔力: %1$s/%2$s
|
||||
|
||||
item.ebwizardry:wizard_hat.name=巫师帽
|
||||
item.ebwizardry:wizard_robe.name=巫师法袍
|
||||
item.ebwizardry:wizard_leggings.name=巫师护腿
|
||||
item.ebwizardry:wizard_boots.name=巫师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_fire.name=烈焰法师帽子
|
||||
item.ebwizardry:wizard_robe_fire.name=烈焰法师法袍
|
||||
item.ebwizardry:wizard_leggings_fire.name=烈焰法师护腿
|
||||
item.ebwizardry:wizard_boots_fire.name=烈焰法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_ice.name=冰霜法师帽子
|
||||
item.ebwizardry:wizard_robe_ice.name=冰霜法师法袍
|
||||
item.ebwizardry:wizard_leggings_ice.name=冰霜法师护腿
|
||||
item.ebwizardry:wizard_boots_ice.name=冰霜法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_lightning.name=风暴法师帽子
|
||||
item.ebwizardry:wizard_robe_lightning.name=风暴法师法袍
|
||||
item.ebwizardry:wizard_leggings_lightning.name=风暴法师护腿
|
||||
item.ebwizardry:wizard_boots_lightning.name=风暴法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_necromancy.name=死灵法师帽子
|
||||
item.ebwizardry:wizard_robe_necromancy.name=死灵法师法袍
|
||||
item.ebwizardry:wizard_leggings_necromancy.name=死灵法师护腿
|
||||
item.ebwizardry:wizard_boots_necromancy.name=死灵法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_earth.name=大地法师帽子
|
||||
item.ebwizardry:wizard_robe_earth.name=大地法师法袍
|
||||
item.ebwizardry:wizard_leggings_earth.name=大地法师护腿
|
||||
item.ebwizardry:wizard_boots_earth.name=大地法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_sorcery.name=妖术法师帽子
|
||||
item.ebwizardry:wizard_robe_sorcery.name=妖术法师法袍
|
||||
item.ebwizardry:wizard_leggings_sorcery.name=妖术法师护腿
|
||||
item.ebwizardry:wizard_boots_sorcery.name=妖术法师靴子
|
||||
|
||||
item.ebwizardry:wizard_hat_healing.name=治愈法师帽子
|
||||
item.ebwizardry:wizard_robe_healing.name=治愈法师法袍
|
||||
item.ebwizardry:wizard_leggings_healing.name=治愈法师护腿
|
||||
item.ebwizardry:wizard_boots_healing.name=治愈法师靴子
|
||||
|
||||
item.ebwizardry:spawn_wizard.name=生成巫师
|
||||
item.ebwizardry:spawn_evil_wizard.name=生成邪恶巫师
|
||||
|
||||
item.ebwizardry:spectral_helmet.name=幽冥头盔
|
||||
item.ebwizardry:spectral_chestplate.name=幽冥胸甲
|
||||
item.ebwizardry:spectral_leggings.name=幽冥护腿
|
||||
item.ebwizardry:spectral_boots.name=幽冥靴子
|
||||
|
||||
entity.ebwizardry:summonedcreature.nameplate=%1$s 的 %2$s
|
||||
entity.ebwizardry:summonedcreature.nameplate_fallback=某人的 %1$s
|
||||
|
||||
entity.ebwizardry:zombie_minion.name=僵尸
|
||||
entity.ebwizardry:skeleton_minion.name=骷髅
|
||||
entity.ebwizardry:spider_minion.name=蜘蛛
|
||||
entity.ebwizardry:blaze_minion.name=烈焰人
|
||||
entity.ebwizardry:wither_skeleton_minion.name=凋灵骷髅
|
||||
entity.ebwizardry:ice_wraith.name=冰封幽灵
|
||||
entity.ebwizardry:lightning_wraith.name=光明幽灵
|
||||
entity.ebwizardry:shadow_wraith.name=阴影幽灵
|
||||
entity.ebwizardry:spirit_wolf.name=精灵狼
|
||||
entity.ebwizardry:spirit_horse.name=精灵马
|
||||
entity.ebwizardry:ice_giant.name=冰封巨人
|
||||
entity.ebwizardry:phoenix.name=凤凰
|
||||
entity.ebwizardry:wizard.name=巫师
|
||||
entity.ebwizardry:magic_slime.name=魔法史莱姆
|
||||
entity.ebwizardry:silverfish_minion.name=蠹虫
|
||||
entity.ebwizardry:storm_elemental.name=风暴元素
|
||||
entity.ebwizardry:evil_wizard.name=巫师
|
||||
entity.ebwizardry:decoy.name=诱饵
|
||||
|
||||
entity.ebwizardry:magic_missile.name=魔法
|
||||
entity.ebwizardry:arc.name=魔法
|
||||
entity.ebwizardry:spark_bomb.name=魔法
|
||||
entity.ebwizardry:ice_shard.name=魔法
|
||||
entity.ebwizardry:firebomb.name=魔法
|
||||
entity.ebwizardry:poison_bomb.name=魔法
|
||||
entity.ebwizardry:force_orb.name=魔法
|
||||
entity.ebwizardry:spark.name=魔法
|
||||
entity.ebwizardry:darkness_orb.name=魔法
|
||||
entity.ebwizardry:fire_sigil.name=魔法
|
||||
entity.ebwizardry:frost_sigil.name=魔法
|
||||
entity.ebwizardry:lightning_sigil.name=魔法
|
||||
entity.ebwizardry:lightning_arrow.name=魔法
|
||||
entity.ebwizardry:firebolt.name=魔法
|
||||
entity.ebwizardry:ice_charge.name=魔法
|
||||
entity.ebwizardry:force_arrow.name=魔法
|
||||
entity.ebwizardry:dart.name=魔法
|
||||
entity.ebwizardry:lightning_disc.name=魔法
|
||||
entity.ebwizardry:thunderbolt.name=魔法
|
||||
entity.ebwizardry:decay.name=魔法
|
||||
entity.ebwizardry:ice_lance.name=魔法
|
||||
entity.ebwizardry:smoke_bomb.name=魔法
|
||||
entity.ebwizardry:ice_spike.name=魔法
|
||||
|
||||
entity.ebwizardry:black_hole.name=黑洞
|
||||
entity.ebwizardry:shield.name=盾
|
||||
entity.ebwizardry:meteor.name=陨星
|
||||
entity.ebwizardry:blizzard.name=暴风雪
|
||||
entity.ebwizardry:bubble.name=气泡
|
||||
entity.ebwizardry:tornado.name=飓风
|
||||
entity.ebwizardry:lightning_hammer.name=雷神之锤
|
||||
entity.ebwizardry:arrow_rain.name=箭雨
|
||||
entity.ebwizardry:healing_aura.name=治疗灵气
|
||||
entity.ebwizardry:forcefield.name=力场护盾
|
||||
entity.ebwizardry:ring_of_fire.name=火环
|
||||
entity.ebwizardry:earthquake.name=地震
|
||||
entity.ebwizardry:falling_grass.name=落草
|
||||
entity.ebwizardry:hailstorm.name=冰雹风暴
|
||||
entity.ebwizardry:lightning_pulse.name=闪电脉冲
|
||||
|
||||
itemGroup.ebwizardry=巫术学
|
||||
itemGroup.ebwizardryspells=卷轴
|
||||
|
||||
advancement.wizardry:root=新兴巫术
|
||||
advancement.wizardry:root.desc=一个巫师掌握奥术的旅程
|
||||
advancement.wizardry:crystal=一个奇异的水晶...
|
||||
advancement.wizardry:crystal.desc=挖掘一个魔法水晶
|
||||
advancement.wizardry:arcane_initiate=奥术启程
|
||||
advancement.wizardry:arcane_initiate.desc=利用金锭,木棍和魔法水晶制造一根法杖
|
||||
advancement.wizardry:apprentice=见习巫师
|
||||
advancement.wizardry:apprentice.desc=使用奥法宝典来升级你的法杖
|
||||
advancement.wizardry:master=大师级巫师
|
||||
advancement.wizardry:master.desc=获得大师级法杖
|
||||
advancement.wizardry:all_spells=巫师的自我修养
|
||||
advancement.wizardry:all_spells.desc=在游戏中施放所有法术
|
||||
advancement.wizardry:wizard_trade=魔法交易
|
||||
advancement.wizardry:wizard_trade.desc=向巫师购买物品
|
||||
advancement.wizardry:buy_master_spell=知识就是力量
|
||||
advancement.wizardry:buy_master_spell.desc=向巫师购买一个大师级卷轴
|
||||
advancement.wizardry:freeze_blaze=现在不太热了
|
||||
advancement.wizardry:freeze_blaze.desc=把烈焰人冻成傻子
|
||||
advancement.wizardry:charge_creep=它要炸了
|
||||
advancement.wizardry:charge_creeper.desc='意外' 捕获爬行者
|
||||
advancement.wizardry:frankenstein=弗兰肯斯坦
|
||||
advancement.wizardry:frankenstein.desc=用闪电法术将猪变成僵尸猪人
|
||||
advancement.wizardry:special_upgrade=奥术工匠
|
||||
advancement.wizardry:special_upgrade.desc=对法杖进行特殊升级
|
||||
advancement.wizardry:craft_flask=这是魔力,装瓶!
|
||||
advancement.wizardry:craft_flask.desc=制作一个魔力瓶
|
||||
advancement.wizardry:elemental=元素
|
||||
advancement.wizardry:elemental.desc=获得元素法杖
|
||||
advancement.wizardry:armour_set=现在你是一个正确的巫师
|
||||
advancement.wizardry:armour_set.desc=制作并装备全套巫师护具
|
||||
advancement.wizardry:legendary=传奇!
|
||||
advancement.wizardry:legendary.desc=获得一件传奇级装备
|
||||
advancement.wizardry:self_destruct=真是倒霉
|
||||
advancement.wizardry:self_destruct.desc=被自己的魔法杀死
|
||||
advancement.wizardry:pig_tornado=不会再次...
|
||||
advancement.wizardry:pig_tornado.desc=骑着猪卷进飓风
|
||||
advancement.wizardry:jam_wizard=扰乱会议
|
||||
advancement.wizardry:jam_wizard.desc=对一个巫师使用奥术干扰
|
||||
advancement.wizardry:slime_skeleton=棘手局面
|
||||
advancement.wizardry:slime_skeleton.desc=利用史莱姆吞噬骷髅
|
||||
advancement.wizardry:anger_wizard=你会后悔的
|
||||
advancement.wizardry:anger_wizard.desc=使一个巫师发怒
|
||||
advancement.wizardry:defeat_evil_wizard=正义降临
|
||||
advancement.wizardry:defeat_evil_wizard.desc=击败邪恶巫师
|
||||
advancement.wizardry:max_out_wand=整装上阵
|
||||
advancement.wizardry:max_out_wand.desc=将大师级法杖升级到最强
|
||||
advancement.wizardry:element_master=元素掌控
|
||||
advancement.wizardry:element_master.desc=施放任何元素的法术
|
||||
advancement.wizardry:identify_spell=奥术鉴定
|
||||
advancement.wizardry:identify_spell.desc=使用鉴定卷轴来鉴定法术书或卷轴
|
||||
|
||||
tile.ebwizardry:transportation_stone.confirm=施展法术时你将会回到这里 %1$s
|
||||
tile.ebwizardry:transportation_stone.invalid=你必须先将八个传送石围成圆圈!
|
||||
|
||||
container.ebwizardry:arcane_workbench=奥术工作台
|
||||
container.ebwizardry:arcane_workbench.apply=应用
|
||||
container.ebwizardry:arcane_workbench.mana=魔力:
|
||||
container.ebwizardry:arcane_workbench.upgrades=应用升级:
|
||||
|
||||
tier.basic=新手
|
||||
tier.apprentice=学徒
|
||||
tier.advanced=进阶
|
||||
tier.master=大师
|
||||
|
||||
element.simple=无
|
||||
element.fire=火
|
||||
element.ice=冰
|
||||
element.lightning=闪电
|
||||
element.necromancy=死灵
|
||||
element.earth=大地
|
||||
element.sorcery=妖术
|
||||
element.healing=治愈
|
||||
|
||||
element.simple.wizard=巫师
|
||||
element.fire.wizard=烈焰法师
|
||||
element.ice.wizard=冰霜法师
|
||||
element.lightning.wizard=风暴法师
|
||||
element.necromancy.wizard=死灵法师
|
||||
element.earth.wizard=大地法师
|
||||
element.sorcery.wizard=妖术法师
|
||||
element.healing.wizard=治愈法师
|
||||
|
||||
spelltype.attack=攻击
|
||||
spelltype.defence=防御
|
||||
spelltype.utility=实用
|
||||
spelltype.minion=仆从
|
||||
|
||||
spell.disabled=%1$s 已在配置文件中禁用
|
||||
spell.resist=%1$s 排斥 %2$s
|
||||
spell.discover=发现了这个法术 %1$s!
|
||||
|
||||
spell.ebwizardry:agility=敏捷
|
||||
spell.ebwizardry:arc=电弧
|
||||
spell.ebwizardry:arcane_jammer=奥术干扰
|
||||
spell.ebwizardry:arrow_rain=箭雨
|
||||
spell.ebwizardry:banish=驱逐
|
||||
spell.ebwizardry:black_hole=黑洞
|
||||
spell.ebwizardry:blink=闪现
|
||||
spell.ebwizardry:blizzard=暴雪
|
||||
spell.ebwizardry:bubble=气泡
|
||||
spell.ebwizardry:chain_lightning=闪电链条
|
||||
spell.ebwizardry:clairvoyance=千里眼
|
||||
spell.ebwizardry:cobwebs=结网
|
||||
spell.ebwizardry:conjure_armour=唤魔护甲
|
||||
spell.ebwizardry:conjure_bow=唤魔弓
|
||||
spell.ebwizardry:conjure_pickaxe=唤魔镐子
|
||||
spell.ebwizardry:conjure_sword=唤魔剑
|
||||
spell.ebwizardry:cure_effects=治愈效应
|
||||
spell.ebwizardry:curse_of_soulbinding=灵魂绑定
|
||||
spell.ebwizardry:darkness_orb=黑暗宝珠
|
||||
spell.ebwizardry:darkvision=黑暗视觉
|
||||
spell.ebwizardry:dart=飞镖
|
||||
spell.ebwizardry:decay=腐化
|
||||
spell.ebwizardry:decoy=诱饵
|
||||
spell.ebwizardry:detonate=引爆
|
||||
spell.ebwizardry:diamondflesh=金刚不坏
|
||||
spell.ebwizardry:earthquake=地震
|
||||
spell.ebwizardry:entrapment=诱捕
|
||||
spell.ebwizardry:fireball=火球
|
||||
spell.ebwizardry:firebolt=火箭
|
||||
spell.ebwizardry:firebomb=火焰弹
|
||||
spell.ebwizardry:fire_resistance=防火
|
||||
spell.ebwizardry:fire_sigil=火之印记
|
||||
spell.ebwizardry:fireskin=火焰之肤
|
||||
spell.ebwizardry:firestorm=火焰风暴
|
||||
spell.ebwizardry:flame_ray=火焰射线
|
||||
spell.ebwizardry:flaming_axe=赤炎之斧
|
||||
spell.ebwizardry:flaming_weapon=赤炎武器
|
||||
spell.ebwizardry:flight=飞行
|
||||
spell.ebwizardry:font_of_mana=魔力字符
|
||||
spell.ebwizardry:font_of_vitality=活力字符
|
||||
spell.ebwizardry:force_arrow=力量箭矢
|
||||
spell.ebwizardry:forcefield=力场护盾
|
||||
spell.ebwizardry:force_orb=力场宝珠
|
||||
spell.ebwizardry:forests_curse=森林诅咒
|
||||
spell.ebwizardry:freeze=冻结
|
||||
spell.ebwizardry:freezing_weapon=冻结武器
|
||||
spell.ebwizardry:frost_axe=寒霜斧
|
||||
spell.ebwizardry:frost_ray=寒霜射线
|
||||
spell.ebwizardry:frost_sigil=寒霜印记
|
||||
spell.ebwizardry:glide=滑翔
|
||||
spell.ebwizardry:greater_fireball=大型火球
|
||||
spell.ebwizardry:greater_heal=强效治疗
|
||||
spell.ebwizardry:group_heal=团体治疗
|
||||
spell.ebwizardry:growth_aura=生长光环
|
||||
spell.ebwizardry:hailstorm=冰雹风暴
|
||||
spell.ebwizardry:heal=治愈
|
||||
spell.ebwizardry:heal_ally=友军治愈
|
||||
spell.ebwizardry:healing_aura=治愈灵气
|
||||
spell.ebwizardry:homing_spark=跟踪闪电
|
||||
spell.ebwizardry:ice_age=冰霜纪元
|
||||
spell.ebwizardry:ice_charge=冰霜冲击
|
||||
spell.ebwizardry:ice_lance=冰霜刺枪
|
||||
spell.ebwizardry:ice_shard=冰霜碎片
|
||||
spell.ebwizardry:ice_shroud=冰霜护体
|
||||
spell.ebwizardry:ice_spikes=冰霜尖刺
|
||||
spell.ebwizardry:ice_statue=冰雕
|
||||
spell.ebwizardry:ignite=点燃
|
||||
spell.ebwizardry:imbue_weapon=武器同调
|
||||
spell.ebwizardry:intimidate=恐吓
|
||||
spell.ebwizardry:invigorating_presence=振奋
|
||||
spell.ebwizardry:invisibility=隐形
|
||||
spell.ebwizardry:invoke_weather=祈雨
|
||||
spell.ebwizardry:ironflesh=钢筋铁骨
|
||||
spell.ebwizardry:leap=跳跃
|
||||
spell.ebwizardry:levitation=漂浮
|
||||
spell.ebwizardry:life_drain=生命汲取
|
||||
spell.ebwizardry:light=光芒
|
||||
spell.ebwizardry:lightning_arrow=闪电箭矢
|
||||
spell.ebwizardry:lightning_bolt=闪电弩箭
|
||||
spell.ebwizardry:lightning_disc=闪电轮盘
|
||||
spell.ebwizardry:lightning_hammer=雷神之锤
|
||||
spell.ebwizardry:lightning_pulse=闪电脉冲
|
||||
spell.ebwizardry:lightning_ray=闪电射线
|
||||
spell.ebwizardry:lightning_sigil=闪电印记
|
||||
spell.ebwizardry:lightning_web=电网
|
||||
spell.ebwizardry:magic_missile=魔法飞弹
|
||||
spell.ebwizardry:metamorphosis=拟态
|
||||
spell.ebwizardry:meteor=陨星
|
||||
spell.ebwizardry:mind_control=心灵控制
|
||||
spell.ebwizardry:mind_trick=心灵欺诈
|
||||
spell.ebwizardry:none=[空槽]
|
||||
spell.ebwizardry:oakflesh=苍劲如松
|
||||
spell.ebwizardry:petrify=石化
|
||||
spell.ebwizardry:phase_step=相位跳跃
|
||||
spell.ebwizardry:plague_of_darkness=黑暗瘟疫
|
||||
spell.ebwizardry:pocket_furnace=口袋熔炉
|
||||
spell.ebwizardry:pocket_workbench=口袋工作台
|
||||
spell.ebwizardry:poison=毒液
|
||||
spell.ebwizardry:poison_bomb=毒液弹
|
||||
spell.ebwizardry:replenish_hunger=回复饥饿
|
||||
spell.ebwizardry:ring_of_fire=火环
|
||||
spell.ebwizardry:shadow_ward=阴影护盾
|
||||
spell.ebwizardry:shield=护盾
|
||||
spell.ebwizardry:shockwave=冲击波
|
||||
spell.ebwizardry:silverfish_swarm=蠹虫群
|
||||
spell.ebwizardry:sixth_sense=第六感
|
||||
spell.ebwizardry:slime=史莱姆
|
||||
spell.ebwizardry:smoke_bomb=烟雾弹
|
||||
spell.ebwizardry:snare=陷阱
|
||||
spell.ebwizardry:snowball=雪球
|
||||
spell.ebwizardry:spark_bomb=电击弹
|
||||
spell.ebwizardry:spectral_pathway=幽径
|
||||
spell.ebwizardry:spider_swarm=蜘蛛群
|
||||
spell.ebwizardry:static_aura=静态灵气
|
||||
spell.ebwizardry:summon_blaze=召唤烈焰人
|
||||
spell.ebwizardry:summon_ice_giant=召唤冰封巨人
|
||||
spell.ebwizardry:summon_ice_wraith=召唤冰封幽灵
|
||||
spell.ebwizardry:summon_iron_golem=召唤铁傀儡
|
||||
spell.ebwizardry:summon_lightning_wraith=召唤闪电幽灵
|
||||
spell.ebwizardry:summon_phoenix=召唤凤凰
|
||||
spell.ebwizardry:summon_shadow_wraith=召唤阴影幽灵
|
||||
spell.ebwizardry:summon_skeleton=召唤骷髅
|
||||
spell.ebwizardry:summon_skeleton_legion=召唤骷髅军团
|
||||
spell.ebwizardry:summon_snow_golem=召唤雪傀儡
|
||||
spell.ebwizardry:summon_spirit_horse=召唤幽灵马
|
||||
spell.ebwizardry:summon_spirit_wolf=召唤幽灵狼
|
||||
spell.ebwizardry:summon_storm_elemental=召唤风暴元素
|
||||
spell.ebwizardry:summon_wither_skeleton=召唤凋灵骷髅
|
||||
spell.ebwizardry:summon_zombie=召唤僵尸
|
||||
spell.ebwizardry:telekinesis=隔空取物
|
||||
spell.ebwizardry:thunderbolt=雷电
|
||||
spell.ebwizardry:thunderstorm=雷暴
|
||||
spell.ebwizardry:tornado=飓风
|
||||
spell.ebwizardry:transience=金身
|
||||
spell.ebwizardry:transportation=传送
|
||||
spell.ebwizardry:vanishing_box=幻灭之盒
|
||||
spell.ebwizardry:wall_of_frost=冰霜之墙
|
||||
spell.ebwizardry:water_breathing=水下呼吸
|
||||
spell.ebwizardry:whirlwind=旋风
|
||||
spell.ebwizardry:wither=凋零
|
||||
spell.ebwizardry:wither_skull=凋灵头颅
|
||||
|
||||
spell.ebwizardry:agility.desc=为施法者提供更快的移速和更高的跳跃高度,持续时间30秒。
|
||||
spell.ebwizardry:arc.desc=向目标发射闪电,
|
||||
spell.ebwizardry:arcane_jammer.desc=阻止目标15秒使用魔法。
|
||||
spell.ebwizardry:arrow_rain.desc=“弓箭手,射击!”
|
||||
spell.ebwizardry:banish.desc=强制目标传送到某一范围内的随机位置。
|
||||
spell.ebwizardry:black_hole.desc=撕裂现实。
|
||||
spell.ebwizardry:blink.desc=将施法者远距离传送至其指向的地方。
|
||||
spell.ebwizardry:blizzard.desc=创建一个旋转的冰封地带,减缓并持续伤害困在里面的任何东西。施法者免受伤害,但仍然受到减速影响。
|
||||
spell.ebwizardry:bubble.desc=射出一股气泡,击中的目标会无助地向上漂浮。目标将在一段时间后坠落并且受到伤害。
|
||||
spell.ebwizardry:chain_lightning.desc=向目标发射闪电,能够向额外目标跳跃至多两次。
|
||||
spell.ebwizardry:clairvoyance.desc=创建一条通向被记录的的坐标的道路。选择此法术后,潜行右键来点击一个方块设置坐标,通常施展此法术来创建道路。该道路将在90秒后消失。
|
||||
spell.ebwizardry:cobwebs.desc=在你指向的地方生成蜘蛛网,极大减慢被困住的生物的移动速度,如果未被破坏,蛛网将在20秒后消失。
|
||||
spell.ebwizardry:conjure_armour.desc=在施法者身上制造幽冥护甲,与铁护甲等效。护甲持续60秒,施法者必须要有一个空装备槽。
|
||||
spell.ebwizardry:conjure_bow.desc=创建一个无限箭矢的幽冥弓,持续时间30秒。
|
||||
spell.ebwizardry:conjure_pickaxe.desc=创建一个与铁镐等效的幽冥镐,持续时间30秒。
|
||||
spell.ebwizardry:conjure_sword.desc=创建一把与铁剑等效的幽冥剑,持续时间30秒。
|
||||
spell.ebwizardry:cure_effects.desc=移除施法者目前的任何药水效果,不论好坏。
|
||||
spell.ebwizardry:curse_of_soulbinding.desc=使目标的灵魂与施法者的灵魂绑定,意味施法者受到的伤害会转移给受害者,直到受害者或者施法者死亡。
|
||||
spell.ebwizardry:darkness_orb.desc=向你指的方向发射一到移动缓慢的黑暗能量,无论击中什么,其都会凋零。
|
||||
spell.ebwizardry:darkvision.desc=给予施法者夜视45秒。
|
||||
spell.ebwizardry:dart.desc=向你指的方向发射飞镖,伤害并削弱目标。
|
||||
spell.ebwizardry:decay.desc=在地表制造腐化,任何生物接触都会受到感染,随着时间流逝而持续造成伤害,并且受害者行走过的地面会蔓延更多的腐化。
|
||||
spell.ebwizardry:decoy.desc=创建一个虚假的施法者克隆体,用来吸引怪物仇恨,30秒后诱饵消失。
|
||||
spell.ebwizardry:detonate.desc=在你指向的地方发生爆炸,如果附近有生物或者施法者距离太近,也会受到伤害。
|
||||
spell.ebwizardry:diamondflesh.desc=“你的箭矢就是在挠痒痒!”
|
||||
spell.ebwizardry:earthquake.desc=一个真正的大地大法师可以令沧海化为桑田。
|
||||
spell.ebwizardry:entrapment.desc=将目标陷入黑暗,其将被无助地向上牵引而且不断地受到伤害。
|
||||
spell.ebwizardry:fireball.desc=朝你指的方向发射一个火球。
|
||||
spell.ebwizardry:firebolt.desc=向你面前一小段距离喷射火焰。
|
||||
spell.ebwizardry:firebomb.desc=在你指的方向投掷一个燃烧瓶,在撞击时爆炸并让目标着火。
|
||||
spell.ebwizardry:fire_resistance.desc=施法者防火30秒。
|
||||
spell.ebwizardry:fire_sigil.desc=在地上放置一个魔法火焰陷阱,它会伤害并点燃触发它的生物。
|
||||
spell.ebwizardry:fireskin.desc=将施法者笼罩在火焰中30秒,任何攻击都会使攻击者自燃。
|
||||
spell.ebwizardry:firestorm.desc=“吾乃巨龙。”
|
||||
spell.ebwizardry:flame_ray.desc=在你指的方向产生一股火焰,它会持续点燃并伤害目标。
|
||||
spell.ebwizardry:flaming_axe.desc=制造一把燃烧的斧头,击中敌人会使其着火,持续时间30秒。
|
||||
spell.ebwizardry:flaming_weapon.desc=暂时性地将火焰的力量附加在快捷栏的第一件武器上,武器能使受害者着火,法术在45秒后失效。
|
||||
spell.ebwizardry:flight.desc=像鹰一样翱翔。
|
||||
spell.ebwizardry:font_of_mana.desc=“我们充满了强大的魔法能量,它似乎是来自...”-摘自一位被遗忘的法师的日志中,该页面的其余部分已经被烧毁。
|
||||
spell.ebwizardry:font_of_vitality.desc=令人惊讶的感觉。
|
||||
spell.ebwizardry:force_arrow.desc=在你指向的地方射出一根强有力的箭矢。
|
||||
spell.ebwizardry:forcefield.desc=在你的周围生成一个能够排斥生物和偏移弹射物的力场。
|
||||
spell.ebwizardry:force_orb.desc=发射一个力场,在受到撞击时会伤害并排斥附近的生物。
|
||||
spell.ebwizardry:forests_curse.desc=“你胆敢进入我的森林!”
|
||||
spell.ebwizardry:freeze.desc=冰冻目标10秒,也能把水冻结和在地表造雪。
|
||||
spell.ebwizardry:freezing_weapon.desc=暂时性地将冰霜的力量附加在快捷栏的第一件武器上,武器能使受害者冻伤,法术在45秒后失效。
|
||||
spell.ebwizardry:frost_axe.desc=制造一把冰霜之斧,击中敌人时将其冻伤,持续时间30秒。
|
||||
spell.ebwizardry:frost_ray.desc=在你指向的地方制造一股霜冻流,可将目标减慢并持续伤害。
|
||||
spell.ebwizardry:frost_sigil.desc=在地表放置一个魔法冰封陷阱,触发陷阱的生物会被冻结并受到伤害。
|
||||
spell.ebwizardry:glide.desc=允许施法者在空中按住使用按钮向下滑行。
|
||||
spell.ebwizardry:greater_fireball.desc=在你指向的方向发射一个大火球,在受到碰撞时发生爆炸。
|
||||
spell.ebwizardry:greater_heal.desc=治疗施法者四颗心。
|
||||
spell.ebwizardry:group_heal.desc=治疗施法者、附近的盟友和召唤生物三颗心。
|
||||
spell.ebwizardry:growth_aura.desc=加速施法者附近作物的生长,还能在草地上长杂草和花朵。
|
||||
spell.ebwizardry:hailstorm.desc=正是在第三纪元的凛冬,冰霜法师发现了他们真正的力量。
|
||||
spell.ebwizardry:heal.desc=治疗施法者两颗心。
|
||||
spell.ebwizardry:heal_ally.desc=治疗目标两颗半心。
|
||||
spell.ebwizardry:healing_aura.desc=创建一个治疗能量力场,可以治疗内部的任何盟友。治疗力场内任何不死属性的生物都会受到伤害。
|
||||
spell.ebwizardry:homing_spark.desc=制造一个向敌人移动的浮游火花。
|
||||
spell.ebwizardry:ice_age.desc=“你将永远被冰封于此!”
|
||||
spell.ebwizardry:ice_charge.desc=发射一个冰块,撞击时发生爆裂并冻伤附近的生物并向各个方向发射碎片。
|
||||
spell.ebwizardry:ice_lance.desc=向你指的方向发射一支巨大能够穿透目标的冰矛,在此过程中能够伤害并且冻伤目标。
|
||||
spell.ebwizardry:ice_shard.desc=在你指向的方向发射一个冰碎片,在命中目标时会使目标受到伤害并减缓速度。
|
||||
spell.ebwizardry:ice_shroud.desc=在施法者身上产生一股寒气并持续三十秒,任何攻击者都会遭到冻伤。
|
||||
spell.ebwizardry:ice_spikes.desc=锋利的冰刺从你指向的地面升起,刺穿上面的任何生物。
|
||||
spell.ebwizardry:ice_statue.desc=将目标冻住20秒直到其打破束缚,目标被冻结时不能移动或者做任何事情,也不会受到伤害。
|
||||
spell.ebwizardry:ignite.desc=将目标点燃十秒,也能像打火石一样工作。
|
||||
spell.ebwizardry:imbue_weapon.desc=将魔力浸染在施法者快捷栏的第一个武器上,使其更加实用,法术在45秒后失效。
|
||||
spell.ebwizardry:intimidate.desc=发出可怕的咆哮声,附近的生物会在恐惧中逃离。惊恐的生物会在30秒后恢复正常。
|
||||
spell.ebwizardry:invigorating_presence.desc=使施法者和附近的盟友增加攻击力,持续45秒。
|
||||
spell.ebwizardry:invisibility.desc=使施法者隐形30秒。
|
||||
spell.ebwizardry:invoke_weather.desc=改变天气。
|
||||
spell.ebwizardry:ironflesh.desc=极大地提升施法者的抗性,持续30秒。
|
||||
spell.ebwizardry:leap.desc=使施法者向上跳跃几个方块并稍微向前移动。
|
||||
spell.ebwizardry:levitation.desc=按住使用物品按键可以向上飘起。在落地前使用可以免除掉落伤害。
|
||||
spell.ebwizardry:life_drain.desc=在你指向的方向发射一股凋零的能量,它能吸收目标的生命来补充你的生命。
|
||||
spell.ebwizardry:light.desc=创造一簇魔法光芒照亮附近的区域,持续时间30秒。
|
||||
spell.ebwizardry:lightning_arrow.desc=在你指向的方向发射一道闪电。
|
||||
spell.ebwizardry:lightning_bolt.desc=使闪电击中你指向的地方。
|
||||
spell.ebwizardry:lightning_disc.desc=在你指向的方向发射一个闪电轮,并搜寻目标。
|
||||
spell.ebwizardry:lightning_hammer.desc=“以神之愤怒惩戒你!”
|
||||
spell.ebwizardry:lightning_pulse.desc=使施法者附近的地面充能,伤害和排斥附近的生物。
|
||||
spell.ebwizardry:lightning_ray.desc=在你指向的方向制造一股闪电,可以不断地伤害目标。
|
||||
spell.ebwizardry:lightning_sigil.desc=在地上放置一个魔法闪电陷阱,它会对触发它的生物造成伤害并产生闪电链打击附近的生物。
|
||||
spell.ebwizardry:lightning_web.desc=“专注,将你脑海中的风暴通过法杖引导出来,释放它的愤怒。”
|
||||
spell.ebwizardry:magic_missile.desc=在你指向的方向发射一道魔法飞弹。
|
||||
spell.ebwizardry:metamorphosis.desc=将目标变成另一种形态,只适用与某些生物。
|
||||
spell.ebwizardry:meteor.desc=一些巫师只是想看到世界在燃烧...
|
||||
spell.ebwizardry:mind_control.desc=心灵控制目标持续30秒,被控制方会为施法者而战。对于意志强大的生物无效。(心灵终结仪了解下)
|
||||
spell.ebwizardry:mind_trick.desc=使目标迷惑15秒,其无法进行攻击。如果目标受到伤害,效果会被消除。
|
||||
spell.ebwizardry:none.desc=要使用/give命令获取法术书,请使用元数据 /give [player] ebwizardry:spell_book 1 [spell id](如果你发现这本书出现在箱子里,那么说明某些mod将其打乱了)
|
||||
spell.ebwizardry:oakflesh.desc=施法者抗性提升30秒。
|
||||
spell.ebwizardry:petrify.desc=将目标变成石头,直到其打破束缚,束缚在黑暗中有几率会被打破。目标被石化后不能移动或者做任何事情,但也不会受到伤害。
|
||||
spell.ebwizardry:phase_step.desc=传送施法者通过一个方块厚的墙面。范围升级会增加你的传送厚度。
|
||||
spell.ebwizardry:plague_of_darkness.desc=黑暗将把他们全部消灭...
|
||||
spell.ebwizardry:pocket_furnace.desc=在施法者的背包里熔炼多达五个物品。快捷栏的物品会被优先熔炼。
|
||||
spell.ebwizardry:pocket_workbench.desc=允许施法者制作物品,就像在工作台上制作一样。
|
||||
spell.ebwizardry:poison.desc=在你指向的方向发射毒液。
|
||||
spell.ebwizardry:poison_bomb.desc=在你指向的方向发射一枚毒液弹,撞击后爆炸并且毒害附近的生物。
|
||||
spell.ebwizardry:replenish_hunger.desc=补充施法者六格饥饿值。
|
||||
spell.ebwizardry:ring_of_fire.desc=在施法者周围制造一个火圈,对周围的敌人造成伤害并将其点燃。
|
||||
spell.ebwizardry:shadow_ward.desc=在施法者面前制造一堵暗黑墙,所受到伤害的一半都会返回到攻击者身上。
|
||||
spell.ebwizardry:shield.desc=制造一个能够阻挡弹射物和魔法的力场屏障。同时也会使施法者得到虚弱的效果。
|
||||
spell.ebwizardry:shockwave.desc=Boom.
|
||||
spell.ebwizardry:silverfish_swarm.desc="Ahhhh! 他们正在增加!"
|
||||
spell.ebwizardry:sixth_sense.desc=使施法者能够感知到附近的生物的位置,甚至能够透过墙壁,持续20秒。
|
||||
spell.ebwizardry:slime.desc=用史莱姆吞噬目标,减缓目标速度并对其造成伤害。史莱姆在10秒后破裂。
|
||||
spell.ebwizardry:smoke_bomb.desc=在你指向的方向发射一个烟雾弹,能够在短时间内释放出烟雾并且使附近的生物致盲。
|
||||
spell.ebwizardry:snare.desc=在地面放置一个陷阱,触发陷阱的生物会被减缓速度并且受到伤害。
|
||||
spell.ebwizardry:snowball.desc=在你指向的方向发射一个雪球。
|
||||
spell.ebwizardry:spark_bomb.desc=在你指向的方向发射一个电击弹,附近的敌人会受到电击。
|
||||
spell.ebwizardry:spectral_pathway.desc=在你面前制造一个不可破坏的魔法桥梁,能够延伸15个方块,桥会在60秒后消失。
|
||||
spell.ebwizardry:spider_swarm.desc=召唤一群毒蜘蛛为你战斗,如果毒蜘蛛没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:static_aura.desc=用闪电将施法者包围,持续30秒,任何攻击都会使攻击者遭到电击。
|
||||
spell.ebwizardry:summon_blaze.desc=召唤一个烈焰人为你战斗,如果烈焰人没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:summon_ice_giant.desc=“粉碎他们!”
|
||||
spell.ebwizardry:summon_ice_wraith.desc=召唤一个冰封幽灵为你战斗,如果冰封幽灵没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:summon_iron_golem.desc=Automatic automated autonomous automaton.
|
||||
spell.ebwizardry:summon_lightning_wraith.desc=召唤一个闪电幽灵为你战斗,如果闪电幽灵没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:summon_phoenix.desc=自灰烬中重生...
|
||||
spell.ebwizardry:summon_shadow_wraith.desc=召唤一个阴影幽灵为你战斗。
|
||||
spell.ebwizardry:summon_skeleton.desc=召唤一个骷髅为你战斗,如果骷髅没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:summon_skeleton_legion.desc=“复活吧,不死军!”
|
||||
spell.ebwizardry:summon_snow_golem.desc=召唤一个雪傀儡为你战斗。一直持续到雪傀儡死亡为止。
|
||||
spell.ebwizardry:summon_spirit_horse.desc=召唤一匹幽灵马让你乘骑。在下马后幽灵马会消失,你可以用法杖右键来遣散它。
|
||||
spell.ebwizardry:summon_spirit_wolf.desc=召唤一匹幽灵狼为你战斗。幽灵狼只有在被杀死的时候会消失,你可以用法杖右键来遣散它。
|
||||
spell.ebwizardry:summon_storm_elemental.desc=“风暴元素:古老的元素的显现,它难以抑制其中的原始力量。” -巫师手册奥术生物章,卷 I_i
|
||||
spell.ebwizardry:summon_wither_skeleton.desc=召唤一个凋灵骷髅为你战斗,凋灵骷髅会在消亡后消失。
|
||||
spell.ebwizardry:summon_zombie.desc=召唤一个僵尸为你战斗,如果僵尸没有被杀死会在30秒后消失。
|
||||
spell.ebwizardry:telekinesis.desc=移动一个掉落物或其他小物体到你面前,或者远程打开你指向的方块(相当于右击),也可以用来取下玩家的装备。
|
||||
spell.ebwizardry:thunderbolt.desc=发射一道雷击震退目标
|
||||
spell.ebwizardry:thunderstorm.desc="Mwahahahahahaha!"
|
||||
spell.ebwizardry:tornado.desc=在你指向的方向释放一个飓风,在飓风路径上的任何东西都会被抛上天。
|
||||
spell.ebwizardry:transience.desc=使施法者金身20秒,施法者可以免疫所有伤害,但是不能破坏或者放置方块也不能造成任何伤害。
|
||||
spell.ebwizardry:transportation.desc=将施法者传送到已记录的石圈。想要使用此法术,需要制造一个传送石圈,然后用法杖右击。
|
||||
spell.ebwizardry:vanishing_box.desc=允许施法者访问末影箱子。
|
||||
spell.ebwizardry:wall_of_frost.desc=寒冬萦绕于指尖。
|
||||
spell.ebwizardry:water_breathing.desc=允许施法者水下呼吸60秒。
|
||||
spell.ebwizardry:whirlwind.desc=使目标被吹起并快速远离你。
|
||||
spell.ebwizardry:wither.desc=发射一股暗黑射线,任何与其接触的东西都将凋零。
|
||||
spell.ebwizardry:wither_skull.desc=在你指向的方向发射一个凋灵头颅。
|
||||
|
||||
spell.ebwizardry:invoke_weather.sun=雨渐渐停止...
|
||||
spell.ebwizardry:invoke_weather.rain=天堂开启了...
|
||||
spell.ebwizardry:transportation.missing=你的记录石圈遗失或是被阻挡...
|
||||
spell.ebwizardry:transportation.undefined=你必须先记录一个石圈的位置!
|
||||
spell.ebwizardry:transportation.wrongdimension=你的记录石圈在另一个维度里....
|
||||
spell.ebwizardry:clairvoyance.searching=搜寻中...
|
||||
spell.ebwizardry:clairvoyance.confirm=投掷在路径 %1$s 现在返回到这一个点
|
||||
spell.ebwizardry:clairvoyance.outofrange=你记录坐标太远或者无法访问
|
||||
spell.ebwizardry:clairvoyance.undefined=你必须首先记录一个坐标!
|
||||
spell.ebwizardry:clairvoyance.wrongdimension=你的记录坐标在另一个维度里....
|
||||
|
||||
potion.ebwizardry:frost=冻伤
|
||||
potion.ebwizardry:fireskin=火焰之肤
|
||||
potion.ebwizardry:ice_shroud=冰霜护体
|
||||
potion.ebwizardry:static_aura=静态灵气
|
||||
potion.ebwizardry:transience=金身
|
||||
potion.ebwizardry:decay=腐化
|
||||
potion.ebwizardry:sixth_sense=第六感
|
||||
potion.ebwizardry:arcane_jammer=奥术干扰
|
||||
potion.ebwizardry:mind_trick=心灵欺诈
|
||||
potion.ebwizardry:mind_control=心灵控制
|
||||
potion.ebwizardry:font_of_mana=魔力字符
|
||||
potion.ebwizardry:fear=恐惧
|
||||
|
||||
enchantment.ebwizardry:magic_sword=灌注
|
||||
enchantment.ebwizardry:magic_bow=灌注
|
||||
enchantment.ebwizardry:flaming_weapon=火焰灌注
|
||||
enchantment.ebwizardry:freezing_weapon=冰霜灌注
|
||||
|
||||
key.categories.ebwizardry=巫术学
|
||||
|
||||
key.ebwizardry.next_spell=下一个法术
|
||||
key.ebwizardry.previous_spell=上一个法术
|
||||
|
||||
death.attack.wizardry_magic=%1$s 被 %2$s 使用魔法杀死
|
||||
death.attack.indirect_wizardry_magic=%1$s 被 %2$s 使用魔法杀死
|
||||
|
||||
commands.ebwizardry:cast.usage=/%1$s <法术> [玩家] [伤害倍数] [范围倍数] [时限倍数] [爆炸倍数]
|
||||
commands.ebwizardry:cast.success=成功发动 %1$s
|
||||
commands.ebwizardry:cast.success_continuous=成功发动 %1$s ;重复该条指令停止
|
||||
commands.ebwizardry:cast.success_remote=成功发动 %1$s 至 %2$s
|
||||
commands.ebwizardry:cast.success_remote_continuous=成功发动 %1$s 至 %2$s ;重复该条指令停止
|
||||
commands.ebwizardry:cast.fail=无法 %1$s
|
||||
commands.ebwizardry:cast.not_found==没有 %1$s 这种法术ID
|
||||
commands.ebwizardry:cast.tag_error=数据标签解析错误: %s
|
||||
|
||||
commands.ebwizardry:ally.usage=/%1$s <玩家> [玩家]
|
||||
commands.ebwizardry:ally.addally=%1$s 已添加到 %2$s 的盟友列表
|
||||
commands.ebwizardry:ally.removeally=%1$s 已经从 %2$s 的盟友列表中移除
|
||||
commands.ebwizardry:ally.self=玩家不能成为自己的盟友!
|
||||
commands.ebwizardry:ally.permission=你没有权限改变其它玩家的盟友
|
||||
|
||||
commands.ebwizardry:allies.usage=/%1$s [玩家]
|
||||
commands.ebwizardry:allies.list=与你结盟的玩家 %1$s
|
||||
commands.ebwizardry:allies.list_other=玩家结盟 %1$s: %2$s
|
||||
commands.ebwizardry:allies.permission=你没有权限查看其它玩家的盟友
|
||||
commands.ebwizardry:allies.none=无
|
||||
|
||||
commands.ebwizardry:discoverspell.usage=/%1$s <法术/所有/清除> [玩家]
|
||||
commands.ebwizardry:discoverspell.not_found=没有 %1$s 这种法术ID
|
||||
commands.ebwizardry:discoverspell.clear=从 %1$s 中清除所有法术探索数据
|
||||
commands.ebwizardry:discoverspell.all=添加所有的法术到 %1$s 的法术探索数据中
|
||||
commands.ebwizardry:discoverspell.addspell=将 %1$s 添加 %2$s 的法术探索数据中
|
||||
commands.ebwizardry:discoverspell.removespell=将 %1$s 从 %2$s 的法术探索数据中移除
|
||||
|
||||
config.ebwizardry.title.general=Mod 配置
|
||||
|
||||
config.ebwizardry.category.spells=配置法术
|
||||
config.ebwizardry.category.spells.tooltip=选择以启用法术
|
||||
config.ebwizardry.title.spells=法术配置
|
||||
config.ebwizardry.subtitle.spells=将一个法术设置为false以禁用。
|
||||
|
||||
config.ebwizardry.category.resistances=配置抗性
|
||||
config.ebwizardry.category.resistances.tooltip=配置某些怪物对不同属性魔法的抗性
|
||||
config.ebwizardry.title.resistances=抗性配置
|
||||
config.ebwizardry.subtitle.resistances=详情请参考个别选项说明。
|
||||
|
||||
config.ebwizardry.category.ids=配置 IDs
|
||||
config.ebwizardry.category.ids.tooltip=改变巫师的ID
|
||||
config.ebwizardry.title.ids=ID 配置
|
||||
config.ebwizardry.subtitle.ids=如果这些ID与另一个Mod发生冲突,请更改这些ID
|
||||
|
||||
config.ebwizardry.tower_rarity=巫师塔稀有程度
|
||||
config.ebwizardry.ore_dimensions=水晶矿生成维度
|
||||
config.ebwizardry.flower_dimensions=水晶花生成维度
|
||||
config.ebwizardry.tower_dimensions=巫师塔生成维度
|
||||
config.ebwizardry.spell_book_drop_chance=法术书掉落几率
|
||||
config.ebwizardry.generate_loot=生成战利品
|
||||
config.ebwizardry.firebomb_is_craftable=火焰弹制作
|
||||
config.ebwizardry.poison_bomb_is_craftable=毒液弹制作
|
||||
config.ebwizardry.smoke_bomb_is_craftable=烟雾弹制作
|
||||
config.ebwizardry.use_alternate_scroll_recipe=使用替代卷轴合成
|
||||
config.ebwizardry.teleport_through_unbreakable_blocks=传送穿过不可破坏的方块
|
||||
config.ebwizardry.show_summoned_creature_names=显示召唤生物名称
|
||||
config.ebwizardry.friendly_fire=友军伤害
|
||||
config.ebwizardry.telekinetic_disarmament=隔空取物解除装备
|
||||
config.ebwizardry.discovery_mode=探索模式
|
||||
config.ebwizardry.enable_shift_scrolling=启用 Shift-_滚轮
|
||||
config.ebwizardry.minion_revenge_targeting=仆从反击目标
|
||||
config.ebwizardry.player_damage_scaling=玩家伤害比例因数
|
||||
config.ebwizardry.npc_damage_scaling=NPC伤害比例因数
|
||||
config.ebwizardry.cast_command_multiplier_limit=Cast指令倍数限制
|
||||
config.ebwizardry.summoned_creature_targets_whitelist=召唤生物的目标白名单
|
||||
config.ebwizardry.summoned_creature_targets_blacklist=召唤生物的目标黑名单
|
||||
config.ebwizardry.spell_hud_position=法术HUD位置
|
||||
config.ebwizardry.cast_command_name=Cast Spell指令名字
|
||||
config.ebwizardry.discoverspell_command_name=Discover Spell指令名字
|
||||
config.ebwizardry.ally_command_name=设置Ally指令名字
|
||||
config.ebwizardry.allies_command_name=查看Allies指令名字
|
||||
|
||||
config.ebwizardry.mobs_immune_to_fire=免疫火焰的怪物
|
||||
config.ebwizardry.mobs_immune_to_ice=免疫冰冻的怪物
|
||||
config.ebwizardry.mobs_immune_to_lightning=免疫闪电的怪物
|
||||
config.ebwizardry.mobs_immune_to_wither=免疫凋零的怪物
|
||||
config.ebwizardry.mobs_immune_to_poison=免疫毒液的怪物
|
||||
|
||||
config.ebwizardry.tower_rarity.tooltip=巫师塔的稀有度,数字越高越罕见。设置为0完全禁用巫师塔。
|
||||
config.ebwizardry.ore_dimensions.tooltip=水晶矿石生成的维度ID。请注意,从这个列表中删除主世界(id 0)这将使得这个mod非常难玩。
|
||||
config.ebwizardry.flower_dimensions.tooltip=水晶花会自动生成的维度ID。
|
||||
config.ebwizardry.tower_dimensions.tooltip=巫师塔生成维度ID的列表。
|
||||
config.ebwizardry.spell_book_drop_chance.tooltip=怪物死亡时掉落法术书的几率,数字越大,掉的越多。设置为0可以关闭法术书的掉落,设置200保证掉落。
|
||||
config.ebwizardry.generate_loot.tooltip=是否在地牢箱子中生成战利品。
|
||||
config.ebwizardry.firebomb_is_craftable.tooltip=是否可以制造火焰弹。
|
||||
config.ebwizardry.poison_bomb_is_craftable.tooltip=是否可以制造毒液弹。
|
||||
config.ebwizardry.smoke_bomb_is_craftable.tooltip=是否可以制造烟雾弹。
|
||||
config.ebwizardry.use_alternate_scroll_recipe.tooltip=是否需要魔法水晶在空白卷轴中无序合成中,如果另一个mod添加配方冲突,则设置为true。
|
||||
config.ebwizardry.teleport_through_unbreakable_blocks.tooltip=是否允许玩家使用相位来穿过不可破坏的方块(如 基岩)。
|
||||
config.ebwizardry.show_summoned_creature_names.tooltip=是否将召唤的生物名字和所有者显示在头顶。
|
||||
config.ebwizardry.friendly_fire.tooltip=是否允许玩家使用魔法伤害他们的盟友。
|
||||
config.ebwizardry.telekinetic_disarmament.tooltip=是否允许玩家使用隔空取物来解除其他玩家的装备。ebwizardry:设置为false防止物品被盗。
|
||||
config.ebwizardry.discovery_mode.tooltip=对于那些喜欢神秘的人!当设置为true时,你还没施放的法术不可读,知道施放后(基于这个世界)。在创造模式下无效,如果这是false,在生存模式下无法获得待鉴定卷轴。
|
||||
config.ebwizardry.enable_shift_scrolling.tooltip=是否可以在滑翔的时候使用鼠标滚轮切换法杖上的法术。请注意,这只会影响到你,同一个服务器的其他玩家只会按照他们自己的设置。
|
||||
config.ebwizardry.minion_revenge_targeting.tooltip=如果被召唤生物的主人攻击它们,它们是否可以反击它们的主人。
|
||||
config.ebwizardry.player_damage_scaling.tooltip=玩家施放法术造成伤害的比例因数, relative to 1.
|
||||
config.ebwizardry.npc_damage_scaling.tooltip=NPC施放法术造成伤害的比例因数,relative to 1。
|
||||
config.ebwizardry.cast_command_multiplier_limit.tooltip=输入/cast命令的最大倍数的上限,这是为了阻止玩家意外毁坏存档/服务器。大倍数爆炸会造成极大的延迟-你已经被警告过了!
|
||||
config.ebwizardry.summoned_creature_targets_whitelist.tooltip=除了默认外,允许召唤生物和巫师攻击实体名单。如果想让召唤的生物攻击它们。请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.summoned_creature_targets_blacklist.tooltip=不允许召唤生物和巫师进行攻击的默认设置和白名单。如果允许它们进行攻击会导致问题或是太具破坏性(将爬行者移除这个名单后果自负!)。把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.spell_hud_position.tooltip=法术HUD的位置
|
||||
config.ebwizardry.cast_command_name.tooltip=/cast的命令名称。这是你直接输入/后的应该输入的内容。如果这个设置为“magic”,那么不需要输入/cast,而是输入/magic。
|
||||
config.ebwizardry.discoverspell_command_name.tooltip=/discoverspell的命令名称。这是你直接输入/后的应该输入的内容。如果这个设置为“magic”,那么不需要输入/discoverspell,而是输入/magic。
|
||||
config.ebwizardry.ally_command_name.tooltip=/ally的命令名称。这是你直接输入/后的应该输入的内容。如果这个设置为“magic”,那么不需要输入/ally,而是输入/magic。
|
||||
config.ebwizardry.allies_command_name.tooltip=/allies的命令名称。这是你直接输入/后的应该输入的内容。如果这个设置为“magic”,那么不需要输入/allies,而是输入/magic。
|
||||
|
||||
config.ebwizardry.mobs_immune_to_fire.tooltip=除了默认外,不受火焰影响的实体名称列表。如果你想让他们不受火焰魔法影响,请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.mobs_immune_to_ice.tooltip=除了默认外,不受冰冻影响的实体名称列表。如果你想让他们不受冰冻魔法影响,请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.mobs_immune_to_lightning.tooltip=除了默认外,不受闪电影响的实体名称列表。如果你想让他们不受闪电魔法影响,请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.mobs_immune_to_wither.tooltip=除了默认外,不受凋零影响的实体名称列表。如果你想让他们不受凋零魔法影响,请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
config.ebwizardry.mobs_immune_to_poison.tooltip=除了默认外,不受毒液影响的实体名称列表。如果你想让他们不受毒液魔法影响,请把这个mod的生物添加到这个列表中。实体名称不区分大小写。对于mod实体,以mod ID作为前缀(例如 ebwizardry.wizard)。
|
||||
|
||||
wizard.debug=%1$s, %2$s, %3$s
|
||||
@@ -213,10 +213,13 @@ Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
|
||||
@@ -213,10 +213,13 @@ Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
|
||||
@@ -307,10 +307,13 @@ Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
|
||||
@@ -307,10 +307,13 @@ Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
|
||||
@@ -218,10 +218,13 @@ Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
|
||||
@@ -0,0 +1,225 @@
|
||||
PAGEBREAK
|
||||
LINEBREAK
|
||||
|
||||
|
||||
|
||||
|
||||
巫师手册
|
||||
|
||||
|
||||
|
||||
作者 Electroblob
|
||||
PAGEBREAK
|
||||
简介
|
||||
--------------------
|
||||
|
||||
欢迎您,伟大的巫师!本书将会向您阐释奥术的工作原理以及使用它们的方法。
|
||||
|
||||
如果您不慎遗失了本书,您可以在工作台上用书和魔法水晶制作一本新的。
|
||||
PAGEBREAK
|
||||
内容
|
||||
--------------------
|
||||
PAGEBREAK
|
||||
SECTION 准备工作
|
||||
准备工作
|
||||
--------------------
|
||||
要打开通向巫术的大门,您将会需要以下几样东西:
|
||||
|
||||
- 一根法杖,由一粒金粒,一根木棍和一块魔法水晶合成。
|
||||
|
||||
- 一个奥术工作台,由三块石头,一块青金石块,两块魔法水晶,两粒金粒和一块紫色地毯合成。
|
||||
|
||||
- 一本法术书,它们可以在箱子中找到,由怪物掉落或向巫师们购买。当然您也可以用一本书和四块魔法水晶制作一个初学者的法术“魔法飞弹”。
|
||||
|
||||
此外,您将会需要更多的魔法水晶来为您的法杖提供魔力。
|
||||
PAGEBREAK
|
||||
SECTION 魔力
|
||||
魔力
|
||||
--------------------
|
||||
魔力是给予巫师们力量的奥术能量。它在自然界中以水晶的形式存在,这些水晶嵌在石缝中,可以在地下被找到。法杖中可以储存魔力,而这些魔力将被塑造为您施展的法术。不同的法术会消耗不同数量的魔力,这取决于它们有多么强大以及它们会持续多久。
|
||||
|
||||
将鼠标悬停在法杖上就可以看到其中的魔力储量。
|
||||
IMAGE CRYSTAL
|
||||
LINEBREAK
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
魔法
|
||||
水晶矿 水晶
|
||||
PAGEBREAK
|
||||
SECTION 法杖
|
||||
法杖
|
||||
--------------------
|
||||
法杖是一个巫师的实用之选。有了法杖,您就可以施展任何法术,只要法杖能够承受它的力量(更深入的解释在“等级”一节中)。
|
||||
法杖有许多不同的种类,但您将从最基本的法杖开始。
|
||||
|
||||
拿着法杖时,屏幕的角落会出现一个小小的提示,它会显示当前选择的法术及其图标。此外,如果一个法术被施展了,会有一个冷却条显示还有多久才能再次施展这个法术。
|
||||
PAGEBREAK
|
||||
SECTION 法术
|
||||
法术
|
||||
--------------------
|
||||
一根没有法术可施展的法杖是毫无用处的。法术可以通过两种方式被记录下来:永久地记录在书上,或者暂时地记录在卷轴上。
|
||||
|
||||
法术书本身没有什么用处,它们是用来将其中记录的法术绑定到法杖上的。法术书可以在世界各处被发现,而且您肯定很快就会找到一本。当您发现了一本法术书时,您可以将鼠标悬停在上面来看一下法术的基本信息,您也可以拿着法术书按下右键来阅读法术的详细信息。
|
||||
|
||||
与之相反,卷轴的使用方式是不一样的:拿着卷轴右击将会施展其中绑定的法术,而在这个过程中卷轴将会被摧毁。像法术书一样,卷轴可以在世界各处被发现,但您也可以自己制作它们。首先拿一张纸和一些线合成空白卷轴,然后您可以在奥术工作台上将法术绑定到卷轴上,前提是您拥有关于这个法术的知识。这么做将会消耗与法术的魔力消耗相对应数量的魔法水晶(消耗的魔法水晶个数是向上取整的)。
|
||||
|
||||
对于未经训练的人来说,用于书写法术的魔法符文是无法辨识的。为了鉴定一个法术,您当然可以施展它然后看看发生了什么 - 但这么做可能会产生您不想看到的副作用,而且许多法术需要在特定的条件下才能起作用。一种更安全可靠的选择是使用鉴定卷轴,它可以在箱子里找到或向巫师购买。拿着它右击将会鉴定您热键栏中第一个未知的法术书或卷轴,并消耗鉴定卷轴。
|
||||
|
||||
如果您需要在一次探险中使用某个法术一两次但又不希望它占用您法杖的一个槽,那卷轴是十分有用的。但值得注意的是卷轴是一种相当没有效率的施法方式。
|
||||
PAGEBREAK
|
||||
SECTION 奥术工作台
|
||||
奥术工作台
|
||||
--------------------
|
||||
奥术工作台的外观和附魔台很像,您可以在其中给法杖充能、升级或绑定法术。只要放下它并右击,您就会看到一个界面出现,就像右边展示的一样。
|
||||
PAGEBREAK
|
||||
IMAGE WORKBENCH
|
||||
LINEBREAK
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
奥术工作台
|
||||
PAGEBREAK
|
||||
SECTION 绑定法术
|
||||
绑定法术
|
||||
--------------------
|
||||
要把一个法术绑定到法杖上,只要把法杖放在奥术工作台中央的格子里,然后把法术书放在周围的任意一个格子里并按下“应用”。您至多可以在一根法杖上绑定五个法术,当然这一数量可以通过法杖协调升级来增加。拿着法杖时,您可以通过 NEXT_SPELL_KEY 键和 PREVIOUS_SPELL_KEY 键在不同的法术间切换(按键可以在选项 -> 控制里调整)。您也可以在潜行时上下滚动鼠标滚轮来切换法术。
|
||||
|
||||
SECTION 法杖充能
|
||||
法杖充能
|
||||
--------------------
|
||||
要给法杖充能,只要把法杖放在奥术工作台中央的格子里,然后在左侧两个格子靠上的那个放一些魔法水晶并按下“应用”。每个水晶等同于 MANA_PER_CRYSTAL 魔力,而法杖只会吸收它所需要的数量,所以您可以在奥术工作台中储备一些魔力水晶以便随时使用。然而,谨记法杖只能整块地吸收魔法水晶。所以如果法杖仅仅还需要 30 魔力,那么 MANA_PER_CRYSTAL_MINUS_30 魔力就会在充能过程中流失。在内部没有魔力时,所有的法杖都会吸收确定数量的魔法水晶来充能,除非它们拥有法杖存储升级。
|
||||
|
||||
SECTION 升级法杖
|
||||
升级法杖
|
||||
--------------------
|
||||
要升级法杖,您需要一本对应等级的(参见“等级”)奥法宝典或者某种法杖升级。这两种东西都可以作为战利品得到或者向巫师购买。要升级法杖,只要把法杖放在奥术工作台中央的格子里,然后在左侧两个格子靠下的那个放上法杖升级并按下“应用”。
|
||||
|
||||
法杖升级会提升法杖某一方面的性能。每种法杖升级可以叠加至多三次,而法杖能升级的总次数取决于其等级。升级是不可逆的,无法被重新移除。
|
||||
PAGEBREAK
|
||||
SECTION 鲜花与烧瓶
|
||||
鲜花与烧瓶
|
||||
--------------------
|
||||
您很可能时不时在野外见到一些神秘的闪着光芒的花。这些是水晶花,是一种自然产生的魔力来源。它们可以被采集,其中的魔力可以像魔力水晶一样被提取出来。
|
||||
|
||||
需要在路上给您的法杖充能?没问题!魔力现在可以被装瓶了。用一个玻璃瓶和八个魔力水晶制作一个魔力瓶并带在身上,当您需要使用它时,将它和您的法杖放在一起合成,法杖就会回复一些魔力,而魔力瓶会被消耗掉。在装瓶过程中魔力会有耗损。
|
||||
PAGEBREAK
|
||||
SECTION 等级
|
||||
等级
|
||||
--------------------
|
||||
法杖和法术有四个等级:BASIC_COLOUR新手RESET_COLOUR,APPRENTICE_COLOUR学徒RESET_COLOUR,ADVANCED_COLOUR进阶RESET_COLOUR和MASTER_COLOUR大师RESET_COLOUR。每一个等级都比上一个等级更加强大。
|
||||
|
||||
BASIC_COLOUR新手RESET_COLOUR法杖是可以被合成出来的法杖。它们至多储存 BASIC_MAX_CHARGE 魔力,并且只能施展新手级的法术。新手法术非常简单,可以被任何人施展并且一般不消耗很多魔力。然而这并不一定意味着等级很高时他们就毫无用处,它们的低消耗使得一些新手法术在您达到大师级之后仍十分有用。
|
||||
|
||||
APPRENTICE_COLOUR学徒RESET_COLOUR法杖是新手法杖的下一等级。它们至多储存 APPRENTICE_MAX_CHARGE 魔力,并且可以施展新手和学徒级的法术。学徒法术比起新手法术更令人印象深刻,但通常消耗更高。
|
||||
|
||||
ADVANCED_COLOUR进阶RESET_COLOUR法杖十分稀有且比前两级强大得多。它们可以施展除了大师级之外的所有法术,并储存 ADVANCED_MAX_CHARGE 魔力。进阶法术可以赋予巫师超人的力量,例如隐身,并在敌人头上倾泻毁灭。
|
||||
|
||||
MASTER_COLOUR大师RESET_COLOUR法杖是现存最强大的法杖。他们至多储存 MASTER_MAX_CHARGE 魔力,并且可以施展任何法术。大师级法术书非常稀有,而大师级法术可以给敌人带来完全的湮灭,甚至可以摧毁世界本身。慎重使用。
|
||||
PAGEBREAK
|
||||
SECTION 元素
|
||||
元素
|
||||
--------------------
|
||||
法术分属不同的元素,元素表现了法术的本质,并且在被特定的法杖使用时会有额外的效果。
|
||||
|
||||
FIRE_COLOUR火
|
||||
这也许是最具毁灭性的元素。火元素掌控燃烧、熔岩和爆炸。一位强大的烈焰法师能够在敌人头顶打开地狱之门,并能在这个过程中点燃世界。绝大多数火属性攻击法术会点燃其目标,造成持续伤害。但是,注意火属性法术也许对下界生物毫无效果。
|
||||
|
||||
ICE_COLOUR冰
|
||||
冰元素是一切寒冷之物的集合。冰属性法术通常会减速敌人或完全冻住他们,并且对火属性生物极为有效。冰属性魔法在战斗外同样有用,例如冻结水面来顺利过河。
|
||||
|
||||
LIGHTNING_COLOUR闪电
|
||||
这一元素掌控闪电、风暴和天气。一位强大的风暴法师是一股不可忽视的力量,而且他们中的某些人拥有随意降下闪电的能力。闪电法术通常会同时伤害多个敌人并且自动寻找目标,这使它们成为攻击任何生物的有效手段...但小心爬行者。
|
||||
|
||||
NECROMANCY_COLOUR死灵
|
||||
死灵是属于黑暗、混沌和不死生物的元素。死灵法师十分神秘并且常常被认为是邪恶的,虽然一般不是这回事。死灵法术通常被用来召唤为您而战的生物,甚至可以扭曲敌人的意志。
|
||||
|
||||
EARTH_COLOUR大地
|
||||
大地元素专注于自然界:动物,植物,风,凡此种种。大地魔法差异巨大且呈现形式多种多样,从让敌人中毒到释放大气的怒火。大地法术是攻击、防御和实用的综合。
|
||||
|
||||
SORCERY_COLOUR妖术
|
||||
妖术是操纵力和变化的元素。妖术法师操纵光、重力甚至是现实本身来迎合他们的需要。妖术也可以用在别的领域,例如赋予施法者魔法力量或者用意念移动物体。
|
||||
|
||||
HEALING_COLOUR治愈
|
||||
治愈元素掌控防御和再生。治愈法师尽可能地保护他们自己以及他们的盟友,因此可能是非常难缠的对手。尽管一般不用来攻击,某些治愈法术的净化光芒会对不死生物造成可观的伤害。治愈法术在战斗中是不可或缺的。
|
||||
|
||||
不同元素之间并不总是泾渭分明的,并且有些法术展现出除自身外的其他元素的特点。
|
||||
|
||||
如果您很幸运,您可能会邂逅一根元素法杖。这些法杖会让您在施展正确元素的法术时比平时拥有更强的能力。
|
||||
PAGEBREAK
|
||||
SECTION 巫师护甲
|
||||
巫师护甲
|
||||
--------------------
|
||||
作为一名巫师,您需要一些东西来保护您免受与您作战的生物的伤害。普通的护甲无法做到这一点。为了最大化利用您的法术,您将会需要巫师护甲:帽子,法袍,护腿和靴子。不像普通的护甲,这些护甲不会损坏。作为替代,它们使用奥术能量来保护穿戴者。这当然意味着它们需要像法杖一样用魔法水晶充能。幸运的是,这些服装并不会消耗很多魔力。像法杖一样用奥术工作台或魔力瓶充能它们,但小心了 - 如果它们没有了魔力,您将发现自己毫无防御力。
|
||||
|
||||
您可以用魔法丝绸来制作巫师护甲,魔法丝绸可以用线和一块魔法水晶合成。
|
||||
|
||||
那些完全专注于一种元素的巫师有时会穿上特殊的服装来让这一元素获得额外的增强。整套的此类服装十分受某些巫师的追捧而且不容易找到。
|
||||
|
||||
传说中最强大的巫师用一种奥术戳记来极大地强化他们的护甲。
|
||||
PAGEBREAK
|
||||
SECTION 巫师和巫师塔
|
||||
巫师和巫师塔
|
||||
--------------------
|
||||
别害怕 - 您不是这个世界里唯一的魔法使用者。在您的旅途中,您可能会遇到拥有标志性尖顶的高塔。这些是您巫师同僚的居所。孤独的生活有时可能会让巫师们变得有些性情乖戾,但他们通常是友好的人,并且乐意与您分享他们的知识 - 尽管要付出些代价。交给他们一些珍贵的金属和宝石,您将收获数不尽的奥术奇迹作为回报。但如果您要寻找的是大师级的法术,您需要与专家谈谈才行。
|
||||
|
||||
不幸的是,少数巫师并不欢迎访客。这些巫师通常是被放逐的人,并且对任何挡路者都怀有敌意。小心地接近他们,并准备好在强大的魔法洗礼下防卫自己。然而,如果您击败了他们,您就可以将他们的知识全部收入囊中。
|
||||
PAGEBREAK
|
||||
SECTION 合成配方
|
||||
合成配方
|
||||
--------------------
|
||||
PAGEBREAK
|
||||
PAGEBREAK
|
||||
合成配方
|
||||
--------------------
|
||||
PAGEBREAK
|
||||
PAGEBREAK
|
||||
合成配方
|
||||
--------------------
|
||||
PAGEBREAK
|
||||
PAGEBREAK
|
||||
合成配方
|
||||
--------------------
|
||||
PAGEBREAK
|
||||
PAGEBREAK
|
||||
鸣谢
|
||||
--------------------
|
||||
Electroblob's Wizardry
|
||||
Version VERSION
|
||||
For Minecraft MCVERSION
|
||||
|
||||
Designed, coded and textured by Electroblob
|
||||
|
||||
Thanks to Minecraft Forge and MCP, without which this mod would not have been possible.
|
||||
|
||||
Thanks also to the Minecraft modding community, which always has an answer to my modding problems!
|
||||
|
||||
In addition, I'd like to thank the following individuals for their contributions to the mod:
|
||||
|
||||
Code:
|
||||
|
||||
- Corail31
|
||||
- 12foo
|
||||
- Shadows-of-Fire
|
||||
- HellFirePvP
|
||||
|
||||
Translations:
|
||||
|
||||
- Russian: VilagVil
|
||||
- Spanish and Mexican Spanish: MadWrist
|
||||
- Chinese: ZHENGLOC and dragon-evol
|
||||
|
||||
Lightning ray sound effect from OhhWowProductions
|
||||
Reference in New Issue
Block a user