Added hull stairs
This commit is contained in:
parent
a7d783a6a4
commit
7395d72fda
10 changed files with 325 additions and 10 deletions
|
@ -6,13 +6,16 @@ import java.util.UUID;
|
|||
|
||||
import com.mojang.authlib.GameProfile;
|
||||
import cr0s.warpdrive.block.forcefield.*;
|
||||
import cr0s.warpdrive.block.hull.BlockHullStairs;
|
||||
import cr0s.warpdrive.item.*;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockColored;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.command.ICommandSender;
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemArmor.ArmorMaterial;
|
||||
import net.minecraft.item.ItemDye;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.util.ChatComponentText;
|
||||
|
@ -166,8 +169,8 @@ public class WarpDrive implements LoadingCallback {
|
|||
public static BlockDecorative blockDecorative;
|
||||
public static Block[] blockHulls_plain;
|
||||
public static Block[] blockHulls_glass;
|
||||
public static Block[] blockHulls_stair;
|
||||
public static Block[] blockHulls_slab;
|
||||
public static Block[][] blockHulls_stairs;
|
||||
public static Block[][] blockHulls_slab;
|
||||
|
||||
public static Item itemIC2reactorLaserFocus;
|
||||
public static ItemComponent itemComponent;
|
||||
|
@ -433,8 +436,8 @@ public class WarpDrive implements LoadingCallback {
|
|||
// HULL BLOCKS
|
||||
blockHulls_plain = new Block[3];
|
||||
blockHulls_glass = new Block[3];
|
||||
blockHulls_stair = new Block[3 * 16];
|
||||
blockHulls_slab = new Block[3 * 16];
|
||||
blockHulls_stairs = new Block[3][16];
|
||||
blockHulls_slab = new Block[3][16];
|
||||
|
||||
for(int tier = 1; tier <= 3; tier++) {
|
||||
int index = tier - 1;
|
||||
|
@ -442,6 +445,10 @@ public class WarpDrive implements LoadingCallback {
|
|||
blockHulls_glass[index] = new BlockHullGlass(tier);
|
||||
GameRegistry.registerBlock(blockHulls_plain[index], ItemBlockHull.class, "blockHull" + tier + "_plain");
|
||||
GameRegistry.registerBlock(blockHulls_glass[index], ItemBlockHull.class, "blockHull" + tier + "_glass");
|
||||
for (int woolColor = 0; woolColor <= 15; woolColor++) {
|
||||
blockHulls_stairs[index][woolColor] = new BlockHullStairs(blockHulls_plain[index], woolColor, tier);
|
||||
GameRegistry.registerBlock(blockHulls_stairs[index][woolColor], ItemBlockHull.class, "blockHull" + tier + "_stairs_" + ItemDye.field_150923_a[BlockColored.func_150031_c(woolColor)]);
|
||||
}
|
||||
}
|
||||
|
||||
// REACTOR LASER FOCUS
|
||||
|
|
|
@ -14,7 +14,7 @@ import cr0s.warpdrive.api.IDamageReceiver;
|
|||
import cr0s.warpdrive.config.WarpDriveConfig;
|
||||
|
||||
public class BlockHullGlass extends BlockColored implements IDamageReceiver {
|
||||
private int tier;
|
||||
private final int tier;
|
||||
|
||||
public BlockHullGlass(final int tier) {
|
||||
super(Material.glass);
|
||||
|
|
|
@ -23,7 +23,7 @@ import cr0s.warpdrive.config.WarpDriveConfig;
|
|||
public class BlockHullPlain extends Block implements IDamageReceiver {
|
||||
@SideOnly(Side.CLIENT)
|
||||
private IIcon[] icons;
|
||||
private int tier;
|
||||
private final int tier;
|
||||
|
||||
public BlockHullPlain(final int tier) {
|
||||
super(Material.rock);
|
||||
|
|
55
src/main/java/cr0s/warpdrive/block/hull/BlockHullStairs.java
Normal file
55
src/main/java/cr0s/warpdrive/block/hull/BlockHullStairs.java
Normal file
|
@ -0,0 +1,55 @@
|
|||
package cr0s.warpdrive.block.hull;
|
||||
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import cr0s.warpdrive.WarpDrive;
|
||||
import cr0s.warpdrive.api.IDamageReceiver;
|
||||
import cr0s.warpdrive.config.WarpDriveConfig;
|
||||
import cr0s.warpdrive.data.Vector3;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockColored;
|
||||
import net.minecraft.block.BlockStairs;
|
||||
import net.minecraft.item.ItemDye;
|
||||
import net.minecraft.util.DamageSource;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class BlockHullStairs extends BlockStairs implements IDamageReceiver {
|
||||
@SideOnly(Side.CLIENT)
|
||||
private final int tier;
|
||||
private final Block blockHull;
|
||||
private final int metaHull;
|
||||
|
||||
public BlockHullStairs(final Block blockHull, final int metaHull, final int tier) {
|
||||
super(blockHull, metaHull);
|
||||
this.blockHull = blockHull;
|
||||
this.metaHull = metaHull;
|
||||
this.tier = tier;
|
||||
setCreativeTab(WarpDrive.creativeTabWarpDrive);
|
||||
setBlockName("warpdrive.hull" + tier + ".stairs." + ItemDye.field_150923_a[BlockColored.func_150031_c(metaHull)]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getMobilityFlag() {
|
||||
return 2;
|
||||
}
|
||||
|
||||
@Override
|
||||
public float getBlockHardness(World world, int x, int y, int z, DamageSource damageSource, int damageParameter, Vector3 damageDirection, int damageLevel) {
|
||||
// TODO: adjust hardness to damage type/color
|
||||
return WarpDriveConfig.HULL_HARDNESS[tier - 1];
|
||||
}
|
||||
|
||||
@Override
|
||||
public int applyDamage(World world, int x, int y, int z, DamageSource damageSource, int damageParameter, Vector3 damageDirection, int damageLevel) {
|
||||
if (damageLevel <= 0) {
|
||||
return 0;
|
||||
}
|
||||
if (tier == 1) {
|
||||
world.setBlockToAir(x, y, z);
|
||||
} else {
|
||||
int metadata = world.getBlockMetadata(x, y, z);
|
||||
world.setBlock(x, y, z, WarpDrive.blockHulls_stairs[tier - 2][metaHull], metadata, 2);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
|
@ -31,7 +31,7 @@ public class ItemBlockHull extends ItemBlock {
|
|||
|
||||
@Override
|
||||
public String getUnlocalizedName(ItemStack itemstack) {
|
||||
if (itemstack == null) {
|
||||
if (itemstack == null || field_150939_a instanceof BlockHullStairs) {
|
||||
return getUnlocalizedName();
|
||||
}
|
||||
return getUnlocalizedName() + ItemDye.field_150923_a[BlockColored.func_150031_c(itemstack.getItemDamage())];
|
||||
|
|
|
@ -1383,6 +1383,7 @@ public class Recipes {
|
|||
for (int woolColor = 0; woolColor < 16; woolColor++) {
|
||||
OreDictionary.registerOre("blockHull" + tier + "_plain", new ItemStack(WarpDrive.blockHulls_plain[index], 1, woolColor));
|
||||
OreDictionary.registerOre("blockHull" + tier + "_glass", new ItemStack(WarpDrive.blockHulls_glass[index], 1, woolColor));
|
||||
OreDictionary.registerOre("blockHull" + tier + "_stairs", new ItemStack(WarpDrive.blockHulls_stairs[index][woolColor], 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1513,6 +1514,17 @@ public class Recipes {
|
|||
'p', new ItemStack(WarpDrive.blockHulls_plain[index], 8, BlockColored.func_150031_c(woolColor)),
|
||||
'F', "dustGlowstone" ));
|
||||
|
||||
// crafting stairs
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(WarpDrive.blockHulls_stairs[index][woolColor], 4), false, "p ", "pp ", "ppp",
|
||||
'p', new ItemStack(WarpDrive.blockHulls_plain[index], 8, BlockColored.func_150031_c(woolColor)) ));
|
||||
|
||||
// uncrafting
|
||||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(WarpDrive.blockHulls_plain[index], 6, BlockColored.func_150031_c(woolColor)),
|
||||
WarpDrive.blockHulls_stairs[index][woolColor],
|
||||
WarpDrive.blockHulls_stairs[index][woolColor],
|
||||
WarpDrive.blockHulls_stairs[index][woolColor],
|
||||
WarpDrive.blockHulls_stairs[index][woolColor] ));
|
||||
|
||||
// changing colors
|
||||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(WarpDrive.blockHulls_plain[index], 1, BlockColored.func_150031_c(woolColor)),
|
||||
"dye" + BlockHullPlain.getDyeColorName(woolColor),
|
||||
|
@ -1520,12 +1532,18 @@ public class Recipes {
|
|||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(WarpDrive.blockHulls_glass[index], 1, BlockColored.func_150031_c(woolColor)),
|
||||
"dye" + BlockHullPlain.getDyeColorName(woolColor),
|
||||
"blockHull" + tier + "_glass"));
|
||||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(WarpDrive.blockHulls_stairs[index][woolColor], 1),
|
||||
"dye" + BlockHullPlain.getDyeColorName(woolColor),
|
||||
"blockHull" + tier + "_stairs"));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(WarpDrive.blockHulls_plain[index], 8, BlockColored.func_150031_c(woolColor)), false, "###", "#X#", "###",
|
||||
'#', "blockHull" + tier + "_plain",
|
||||
'X', oreDyes[woolColor] ));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(WarpDrive.blockHulls_glass[index], 8, BlockColored.func_150031_c(woolColor)), false, "###", "#X#", "###",
|
||||
'#', "blockHull" + tier + "_glass",
|
||||
'X', oreDyes[woolColor] ));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(WarpDrive.blockHulls_stairs[index][woolColor], 8), false, "###", "#X#", "###",
|
||||
'#', "blockHull" + tier + "_stairs",
|
||||
'X', oreDyes[woolColor] ));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -106,6 +106,16 @@ item.warpdrive.upgrade.Range.name=Reichweiten Upgrade
|
|||
item.warpdrive.upgrade.Energy.name=Energie Upgrade
|
||||
|
||||
|
||||
item.warpdrive.tool.crystalToken.name=Crystal token !!!
|
||||
item.warpdrive.tool.crystalToken.tooltip=Crystal encapsulation of ship '%1$s'\n§bEnter the scanner field§7 to build your ship !!!
|
||||
item.warpdrive.tool.crystalToken0.name=Crystal token #0 !!!
|
||||
item.warpdrive.tool.crystalToken1.name=Crystal token #1 !!!
|
||||
item.warpdrive.tool.crystalToken2.name=Crystal token #2 !!!
|
||||
item.warpdrive.tool.crystalToken3.name=Crystal token #3 !!!
|
||||
item.warpdrive.tool.crystalToken4.name=Crystal token #4 !!!
|
||||
item.warpdrive.tool.crystalToken5.name=Crystal token #5 !!!
|
||||
|
||||
|
||||
item.warpdrive.tool.TuningFork.name=Stimmgabel
|
||||
item.warpdrive.tool.TuningFork.white.name=Weiße Stimmgabel
|
||||
item.warpdrive.tool.TuningFork.orange.name=Orange Stimmgabel
|
||||
|
@ -226,6 +236,23 @@ tile.warpdrive.hull1.glass.green.name=Grüner Standard Glasrumpf
|
|||
tile.warpdrive.hull1.glass.red.name=Roter Standard Glasrumpf
|
||||
tile.warpdrive.hull1.glass.black.name=Schwarzer Standard Glasrumpf
|
||||
|
||||
tile.warpdrive.hull1.stairs.white.name=Weißer Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.orange.name=Oranger Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.magenta.name=Magenta Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.lightBlue.name=Hellblauer Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.yellow.name=Gelber Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.lime.name=Hellgrüner Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.pink.name=Rosa Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.gray.name=Grauer Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.silver.name=Silberner Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.cyan.name=Cyan Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.purple.name=Lila Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.blue.name=Blauer Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.brown.name=Brauner Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.green.name=Grüner Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.red.name=Roter Standard Treppe!!!
|
||||
tile.warpdrive.hull1.stairs.black.name=Schwarzer Standard Treppe!!!
|
||||
|
||||
tile.warpdrive.hull2.plain.white.name=Weißer weiterentwickelter Rumpf
|
||||
tile.warpdrive.hull2.plain.orange.name=Oranger weiterentwickelter Rumpf
|
||||
tile.warpdrive.hull2.plain.magenta.name=Magenta weiterentwickelter Rumpf
|
||||
|
@ -260,6 +287,23 @@ tile.warpdrive.hull2.glass.green.name=Grüner weiterentwickelter Glasrumpf
|
|||
tile.warpdrive.hull2.glass.red.name=Roter weiterentwickelter Glasrumpf
|
||||
tile.warpdrive.hull2.glass.black.name=Schwarzer weiterentwickelter Glasrumpf
|
||||
|
||||
tile.warpdrive.hull2.stairs.white.name=Weißer weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.orange.name=Oranger weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.magenta.name=Magenta weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.lightBlue.name=Hellblauer weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.yellow.name=Gelber weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.lime.name=Lime weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.pink.name=Rosa weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.gray.name=Grauer weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.silver.name=Silberner weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.cyan.name=Cyan weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.purple.name=Lila weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.blue.name=Blauer weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.brown.name=Brauner weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.green.name=Grüner weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.red.name=Roter weiterentwickelter Treppe!!!
|
||||
tile.warpdrive.hull2.stairs.black.name=Schwarzer weiterentwickelter Treppe!!!
|
||||
|
||||
tile.warpdrive.hull3.plain.white.name=Weißer überlegener Rumpf
|
||||
tile.warpdrive.hull3.plain.orange.name=Oranger überlegener Rumpf
|
||||
tile.warpdrive.hull3.plain.magenta.name=Magenta überlegener Rumpf
|
||||
|
@ -294,6 +338,23 @@ tile.warpdrive.hull3.glass.green.name=Grüner überlegener Glasrumpf
|
|||
tile.warpdrive.hull3.glass.red.name=Roter überlegener Glasrumpf
|
||||
tile.warpdrive.hull3.glass.black.name=Schwarzer überlegener Glasrumpf
|
||||
|
||||
tile.warpdrive.hull3.stairs.white.name=Weißer überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.orange.name=Oranger überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.magenta.name=Magenta überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.lightBlue.name=Hellblauer überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.yellow.name=Gelber überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.lime.name=Lime überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.pink.name=Rosa überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.gray.name=Grauer überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.silver.name=Silberner überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.cyan.name=Cyan überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.purple.name=Lila überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.blue.name=Blauer überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.brown.name=Brauner überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.green.name=Grüner überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.red.name=Roter überlegener Treppe!!!
|
||||
tile.warpdrive.hull3.stairs.black.name=Schwarzer überlegener Treppe!!!
|
||||
|
||||
|
||||
warpdrive.guide.prefix=§6%1$s:§r
|
||||
warpdrive.error.badTileEntity=§cDieser Block benötigt ein Update, durch zerstören und neu setzen.
|
||||
|
|
|
@ -105,15 +105,17 @@ item.warpdrive.upgrade.Speed.name=Speed Upgrade
|
|||
item.warpdrive.upgrade.Range.name=Range Upgrade
|
||||
item.warpdrive.upgrade.Energy.name=Energy Upgrade
|
||||
|
||||
|
||||
item.warpdrive.tool.crystalToken.name=Crystal token
|
||||
item.warpdrive.tool.crystalToken.tooltip=Crystal encapsulation of ship '%1$s'\n§bStand in the beam§7 to build your ship
|
||||
item.warpdrive.tool.crystalToken.tooltip=Crystal encapsulation of ship '%1$s'\n§bEnter the scanner field§7 to build your ship
|
||||
item.warpdrive.tool.crystalToken0.name=Crystal token #0
|
||||
item.warpdrive.tool.crystalToken1.name=Crystal token #1
|
||||
item.warpdrive.tool.crystalToken1.name=Crystal token #1
|
||||
item.warpdrive.tool.crystalToken2.name=Crystal token #2
|
||||
item.warpdrive.tool.crystalToken3.name=Crystal token #3
|
||||
item.warpdrive.tool.crystalToken4.name=Crystal token #4
|
||||
item.warpdrive.tool.crystalToken5.name=Crystal token #5
|
||||
|
||||
|
||||
item.warpdrive.tool.TuningFork.name=Tuning Fork
|
||||
item.warpdrive.tool.TuningFork.white.name=White Tuning Fork
|
||||
item.warpdrive.tool.TuningFork.orange.name=Orange Tuning Fork
|
||||
|
@ -234,6 +236,23 @@ tile.warpdrive.hull1.glass.green.name=Green Stained Basic Hull Glass
|
|||
tile.warpdrive.hull1.glass.red.name=Red Stained Basic Hull Glass
|
||||
tile.warpdrive.hull1.glass.black.name=Black Stained Basic Hull Glass
|
||||
|
||||
tile.warpdrive.hull1.stairs.white.name=White Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.orange.name=Orange Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.magenta.name=Magenta Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.lightBlue.name=Light Blue Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.yellow.name=Yellow Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.lime.name=Lime Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.pink.name=Pink Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.gray.name=Gray Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.silver.name=Silver Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.cyan.name=Cyan Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.purple.name=Purple Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.blue.name=Blue Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.brown.name=Brown Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.green.name=Green Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.red.name=Red Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.black.name=Black Stained Basic Hull Stairs
|
||||
|
||||
tile.warpdrive.hull2.plain.white.name=White Stained Advanced Hull
|
||||
tile.warpdrive.hull2.plain.orange.name=Orange Stained Advanced Hull
|
||||
tile.warpdrive.hull2.plain.magenta.name=Magenta Stained Advanced Hull
|
||||
|
@ -268,6 +287,23 @@ tile.warpdrive.hull2.glass.green.name=Green Stained Advanced Hull Glass
|
|||
tile.warpdrive.hull2.glass.red.name=Red Stained Advanced Hull Glass
|
||||
tile.warpdrive.hull2.glass.black.name=Black Stained Advanced Hull Glass
|
||||
|
||||
tile.warpdrive.hull2.stairs.white.name=White Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.orange.name=Orange Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.magenta.name=Magenta Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.lightBlue.name=Light Blue Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.yellow.name=Yellow Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.lime.name=Lime Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.pink.name=Pink Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.gray.name=Gray Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.silver.name=Silver Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.cyan.name=Cyan Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.purple.name=Purple Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.blue.name=Blue Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.brown.name=Brown Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.green.name=Green Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.red.name=Red Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.black.name=Black Stained Advanced Hull Stairs
|
||||
|
||||
tile.warpdrive.hull3.plain.white.name=White Stained Superior Hull
|
||||
tile.warpdrive.hull3.plain.orange.name=Orange Stained Superior Hull
|
||||
tile.warpdrive.hull3.plain.magenta.name=Magenta Stained Superior Hull
|
||||
|
@ -302,6 +338,23 @@ tile.warpdrive.hull3.glass.green.name=Green Stained Superior Hull Glass
|
|||
tile.warpdrive.hull3.glass.red.name=Red Stained Superior Hull Glass
|
||||
tile.warpdrive.hull3.glass.black.name=Black Stained Superior Hull Glass
|
||||
|
||||
tile.warpdrive.hull3.stairs.white.name=White Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.orange.name=Orange Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.magenta.name=Magenta Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.lightBlue.name=Light Blue Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.yellow.name=Yellow Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.lime.name=Lime Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.pink.name=Pink Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.gray.name=Gray Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.silver.name=Silver Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.cyan.name=Cyan Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.purple.name=Purple Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.blue.name=Blue Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.brown.name=Brown Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.green.name=Green Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.red.name=Red Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.black.name=Black Stained Superior Hull Stairs
|
||||
|
||||
|
||||
warpdrive.guide.prefix=§6%1$s:§r
|
||||
warpdrive.error.badTileEntity=§cThis block needs an update by breaking and placing it.
|
||||
|
|
|
@ -76,7 +76,6 @@ item.warpdrive.forcefield.upgrade.inversion.name=Augmentation d'inversion
|
|||
item.warpdrive.forcefield.upgrade.inversion.tooltip=§4En cours d'implémentation\nModifie la zone d'effet de surface en volume. Utilise le pour cibler des entités à l'intérieur du champ ou effectuer une terraformation.
|
||||
item.warpdrive.forcefield.upgrade.itemPort.name=Augmentation de port d'item
|
||||
item.warpdrive.forcefield.upgrade.itemPort.tooltip=S'interface avec des conteneurs attachés. Ajoutes une Augmentation d'attraction pour collecter les items du Casseur de block. Ajoutes une augmentation de répulsion pour fournir les blocks à placer avec l'augmentation de stabilisation.
|
||||
Interface with attached containers. Add an Attraction upgrade to collect Block breaker drops.
|
||||
item.warpdrive.forcefield.upgrade.pumping.name=Augmentation de pompage
|
||||
item.warpdrive.forcefield.upgrade.pumping.tooltip=§4En cours d'implémentation\nPompe des liquides à l'emplacement du champ de force. Ajoute d'autres pompes pour supporter des fluides plus visceux tels que la lave.
|
||||
item.warpdrive.forcefield.upgrade.range.name=Augmentation de portée
|
||||
|
@ -107,6 +106,16 @@ item.warpdrive.upgrade.Range.name=Amélioration de portée
|
|||
item.warpdrive.upgrade.Energy.name=Amélioration d'énergie
|
||||
|
||||
|
||||
item.warpdrive.tool.crystalToken.name=Crystal jeton
|
||||
item.warpdrive.tool.crystalToken.tooltip=Vaisseau '%1$s' encapsulé dans un crystal\n§bEntre dans le champ du scanner§7 pour construire ton vaisseau
|
||||
item.warpdrive.tool.crystalToken0.name=Crystal jeton #0
|
||||
item.warpdrive.tool.crystalToken1.name=Crystal jeton #1
|
||||
item.warpdrive.tool.crystalToken2.name=Crystal jeton #2
|
||||
item.warpdrive.tool.crystalToken3.name=Crystal jeton #3
|
||||
item.warpdrive.tool.crystalToken4.name=Crystal jeton #4
|
||||
item.warpdrive.tool.crystalToken5.name=Crystal jeton #5
|
||||
|
||||
|
||||
item.warpdrive.tool.TuningFork.name=Diapason
|
||||
item.warpdrive.tool.TuningFork.white.name=Diapason blanc
|
||||
item.warpdrive.tool.TuningFork.orange.name=Diapason orange
|
||||
|
@ -227,6 +236,23 @@ tile.warpdrive.hull1.glass.green.name=Vitre de coque élémentaire verte
|
|||
tile.warpdrive.hull1.glass.red.name=Vitre de coque élémentaire rouge
|
||||
tile.warpdrive.hull1.glass.black.name=Vitre de coque élémentaire noire
|
||||
|
||||
tile.warpdrive.hull1.stairs.white.name=Escalier de coque élémentaire blanche
|
||||
tile.warpdrive.hull1.stairs.orange.name=Escalier de coque élémentaire orange
|
||||
tile.warpdrive.hull1.stairs.magenta.name=Escalier de coque élémentaire magenta
|
||||
tile.warpdrive.hull1.stairs.lightBlue.name=Escalier de coque élémentaire bleu claire
|
||||
tile.warpdrive.hull1.stairs.yellow.name=Escalier de coque élémentaire jaune
|
||||
tile.warpdrive.hull1.stairs.lime.name=Escalier de coque élémentaire citron vert
|
||||
tile.warpdrive.hull1.stairs.pink.name=Escalier de coque élémentaire rose
|
||||
tile.warpdrive.hull1.stairs.gray.name=Escalier de coque élémentaire grise
|
||||
tile.warpdrive.hull1.stairs.silver.name=Escalier de coque élémentaire argentée
|
||||
tile.warpdrive.hull1.stairs.cyan.name=Escalier de coque élémentaire cyan
|
||||
tile.warpdrive.hull1.stairs.purple.name=Escalier de coque élémentaire violette
|
||||
tile.warpdrive.hull1.stairs.blue.name=Escalier de coque élémentaire bleue
|
||||
tile.warpdrive.hull1.stairs.brown.name=Escalier de coque élémentaire marron
|
||||
tile.warpdrive.hull1.stairs.green.name=Escalier de coque élémentaire verte
|
||||
tile.warpdrive.hull1.stairs.red.name=Escalier de coque élémentaire rouge
|
||||
tile.warpdrive.hull1.stairs.black.name=Escalier de coque élémentaire noire
|
||||
|
||||
tile.warpdrive.hull2.plain.white.name=Coque avancée blanche
|
||||
tile.warpdrive.hull2.plain.orange.name=Coque avancée orange
|
||||
tile.warpdrive.hull2.plain.magenta.name=Coque avancée magenta
|
||||
|
@ -261,6 +287,23 @@ tile.warpdrive.hull2.glass.green.name=Vitre de coque avancée verte
|
|||
tile.warpdrive.hull2.glass.red.name=Vitre de coque avancée rouge
|
||||
tile.warpdrive.hull2.glass.black.name=Vitre de coque avancée noire
|
||||
|
||||
tile.warpdrive.hull2.stairs.white.name=Escalier de coque avancée blanche
|
||||
tile.warpdrive.hull2.stairs.orange.name=Escalier de coque avancée orange
|
||||
tile.warpdrive.hull2.stairs.magenta.name=Escalier de coque avancée magenta
|
||||
tile.warpdrive.hull2.stairs.lightBlue.name=Escalier de coque avancée bleu claire
|
||||
tile.warpdrive.hull2.stairs.yellow.name=Escalier de coque avancée jaune
|
||||
tile.warpdrive.hull2.stairs.lime.name=Escalier de coque avancée citron vert
|
||||
tile.warpdrive.hull2.stairs.pink.name=Escalier de coque avancée rose
|
||||
tile.warpdrive.hull2.stairs.gray.name=Escalier de coque avancée grise
|
||||
tile.warpdrive.hull2.stairs.silver.name=Escalier de coque avancée argentée
|
||||
tile.warpdrive.hull2.stairs.cyan.name=Escalier de coque avancée cyan
|
||||
tile.warpdrive.hull2.stairs.purple.name=Escalier de coque avancée violette
|
||||
tile.warpdrive.hull2.stairs.blue.name=Escalier de coque avancée bleue
|
||||
tile.warpdrive.hull2.stairs.brown.name=Escalier de coque avancée marron
|
||||
tile.warpdrive.hull2.stairs.green.name=Escalier de coque avancée verte
|
||||
tile.warpdrive.hull2.stairs.red.name=Escalier de coque avancée rouge
|
||||
tile.warpdrive.hull2.stairs.black.name=Escalier de coque avancée noire
|
||||
|
||||
tile.warpdrive.hull3.plain.white.name=Coque supérieure blanche
|
||||
tile.warpdrive.hull3.plain.orange.name=Coque supérieure orange
|
||||
tile.warpdrive.hull3.plain.magenta.name=Coque supérieure magenta
|
||||
|
@ -295,6 +338,23 @@ tile.warpdrive.hull3.glass.green.name=Vitre de coque supérieure verte
|
|||
tile.warpdrive.hull3.glass.red.name=Vitre de coque supérieure rouge
|
||||
tile.warpdrive.hull3.glass.black.name=Vitre de coque supérieure noire
|
||||
|
||||
tile.warpdrive.hull3.stairs.white.name=Escalier de coque supérieure blanche
|
||||
tile.warpdrive.hull3.stairs.orange.name=Escalier de coque supérieure orange
|
||||
tile.warpdrive.hull3.stairs.magenta.name=Escalier de coque supérieure magenta
|
||||
tile.warpdrive.hull3.stairs.lightBlue.name=Escalier de coque supérieure bleu claire
|
||||
tile.warpdrive.hull3.stairs.yellow.name=Escalier de coque supérieure jaune
|
||||
tile.warpdrive.hull3.stairs.lime.name=Escalier de coque supérieure citron vert
|
||||
tile.warpdrive.hull3.stairs.pink.name=Escalier de coque supérieure rose
|
||||
tile.warpdrive.hull3.stairs.gray.name=Escalier de coque supérieure grise
|
||||
tile.warpdrive.hull3.stairs.silver.name=Escalier de coque supérieure argentée
|
||||
tile.warpdrive.hull3.stairs.cyan.name=Escalier de coque supérieure cyan
|
||||
tile.warpdrive.hull3.stairs.purple.name=Escalier de coque supérieure violette
|
||||
tile.warpdrive.hull3.stairs.blue.name=Escalier de coque supérieure bleue
|
||||
tile.warpdrive.hull3.stairs.brown.name=Escalier de coque supérieure marron
|
||||
tile.warpdrive.hull3.stairs.green.name=Escalier de coque supérieure verte
|
||||
tile.warpdrive.hull3.stairs.red.name=Escalier de coque supérieure rouge
|
||||
tile.warpdrive.hull3.stairs.black.name=Escalier de coque supérieure noire
|
||||
|
||||
|
||||
warpdrive.guide.prefix=§6%1$s:§r
|
||||
warpdrive.error.badTileEntity=§cCe bloc requiers une mise à jour par dépose puis repose.
|
||||
|
|
|
@ -106,6 +106,16 @@ item.warpdrive.upgrade.Range.name=Улучшение - Радиус
|
|||
item.warpdrive.upgrade.Energy.name=Улучшение - Хранилище энергии
|
||||
|
||||
|
||||
item.warpdrive.tool.crystalToken.name=Crystal token
|
||||
item.warpdrive.tool.crystalToken.tooltip=Crystal encapsulation of ship '%1$s'\n§bEnter the scanner field§7 to build your ship
|
||||
item.warpdrive.tool.crystalToken0.name=Crystal token #0
|
||||
item.warpdrive.tool.crystalToken1.name=Crystal token #1
|
||||
item.warpdrive.tool.crystalToken2.name=Crystal token #2
|
||||
item.warpdrive.tool.crystalToken3.name=Crystal token #3
|
||||
item.warpdrive.tool.crystalToken4.name=Crystal token #4
|
||||
item.warpdrive.tool.crystalToken5.name=Crystal token #5
|
||||
|
||||
|
||||
item.warpdrive.tool.TuningFork.name=Камертон
|
||||
item.warpdrive.tool.TuningFork.white.name=Белый камертон
|
||||
item.warpdrive.tool.TuningFork.orange.name=Оранжевый камертон
|
||||
|
@ -226,6 +236,23 @@ tile.warpdrive.hull1.glass.green.name=Зеленое базовое корабе
|
|||
tile.warpdrive.hull1.glass.red.name=Красное базовое корабельное стекло
|
||||
tile.warpdrive.hull1.glass.black.name=Черное базовое корабельное стекло
|
||||
|
||||
tile.warpdrive.hull1.stairs.white.name=White Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.orange.name=Orange Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.magenta.name=Magenta Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.lightBlue.name=Light Blue Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.yellow.name=Yellow Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.lime.name=Lime Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.pink.name=Pink Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.gray.name=Gray Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.silver.name=Silver Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.cyan.name=Cyan Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.purple.name=Purple Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.blue.name=Blue Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.brown.name=Brown Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.green.name=Green Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.red.name=Red Stained Basic Hull Stairs
|
||||
tile.warpdrive.hull1.stairs.black.name=Black Stained Basic Hull Stairs
|
||||
|
||||
tile.warpdrive.hull2.plain.white.name=Белый улучшенный корабельный корпус
|
||||
tile.warpdrive.hull2.plain.orange.name=Оранжевый улучшенный корабельный корпус
|
||||
tile.warpdrive.hull2.plain.magenta.name=Пурпурный улучшенный корабельный корпус
|
||||
|
@ -260,6 +287,23 @@ tile.warpdrive.hull2.glass.green.name=Зеленое улучшенное кор
|
|||
tile.warpdrive.hull2.glass.red.name=Красное улучшенное корабельное стекло
|
||||
tile.warpdrive.hull2.glass.black.name=Черное улучшенное корабельное стекло
|
||||
|
||||
tile.warpdrive.hull2.stairs.white.name=White Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.orange.name=Orange Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.magenta.name=Magenta Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.lightBlue.name=Light Blue Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.yellow.name=Yellow Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.lime.name=Lime Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.pink.name=Pink Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.gray.name=Gray Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.silver.name=Silver Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.cyan.name=Cyan Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.purple.name=Purple Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.blue.name=Blue Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.brown.name=Brown Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.green.name=Green Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.red.name=Red Stained Advanced Hull Stairs
|
||||
tile.warpdrive.hull2.stairs.black.name=Black Stained Advanced Hull Stairs
|
||||
|
||||
tile.warpdrive.hull3.plain.white.name=Белый высококачественный корабельный корпус
|
||||
tile.warpdrive.hull3.plain.orange.name=Оранжевый высококачественный корабельный корпус
|
||||
tile.warpdrive.hull3.plain.magenta.name=Пурпурный высококачественный корабельный корпус
|
||||
|
@ -294,6 +338,23 @@ tile.warpdrive.hull3.glass.green.name=Зеленое высококачеств
|
|||
tile.warpdrive.hull3.glass.red.name=Красное высококачественное корабельное стекло
|
||||
tile.warpdrive.hull3.glass.black.name=Черное высококачественное корабельное стекло
|
||||
|
||||
tile.warpdrive.hull3.stairs.white.name=White Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.orange.name=Orange Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.magenta.name=Magenta Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.lightBlue.name=Light Blue Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.yellow.name=Yellow Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.lime.name=Lime Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.pink.name=Pink Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.gray.name=Gray Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.silver.name=Silver Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.cyan.name=Cyan Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.purple.name=Purple Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.blue.name=Blue Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.brown.name=Brown Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.green.name=Green Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.red.name=Red Stained Superior Hull Stairs
|
||||
tile.warpdrive.hull3.stairs.black.name=Black Stained Superior Hull Stairs
|
||||
|
||||
|
||||
warpdrive.guide.prefix=§6%1$s:§r
|
||||
warpdrive.error.badTileEntity=§cэтот блок нужно сломать и поставить заново.
|
||||
|
|
Loading…
Reference in a new issue