mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
fixes, localization, chimney
This commit is contained in:
parent
61132bd310
commit
7c1d5bd3e3
@ -946,6 +946,7 @@ public class ModBlocks {
|
||||
public static Block machine_fracking_tower;
|
||||
|
||||
public static Block machine_flare;
|
||||
public static Block chimney_brick;
|
||||
|
||||
public static Block machine_refinery;
|
||||
public static Block machine_vacuum_distill;
|
||||
@ -2185,6 +2186,7 @@ public class ModBlocks {
|
||||
machine_fracking_tower = new MachineFrackingTower().setBlockName("machine_fracking_tower").setHardness(5.0F).setResistance(60.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel");
|
||||
oil_pipe = new BlockNoDrop(Material.iron).setBlockName("oil_pipe").setHardness(5.0F).setResistance(10.0F).setCreativeTab(null).setBlockTextureName(RefStrings.MODID + ":oil_pipe");
|
||||
machine_flare = new MachineGasFlare(Material.iron).setBlockName("machine_flare").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel");
|
||||
chimney_brick = new MachineChimneyBrick(Material.iron).setBlockName("chimney_brick").setHardness(5.0F).setResistance(100.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":brick_fire");
|
||||
machine_refinery = new MachineRefinery(Material.iron).setBlockName("machine_refinery").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":machine_refinery");
|
||||
machine_vacuum_distill = new MachineVacuumDistill(Material.iron).setBlockName("machine_vacuum_distill").setHardness(5.0F).setResistance(20.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel");
|
||||
machine_fraction_tower = new MachineFractionTower(Material.iron).setBlockName("machine_fraction_tower").setHardness(5.0F).setResistance(10.0F).setCreativeTab(MainRegistry.machineTab).setBlockTextureName(RefStrings.MODID + ":block_steel");
|
||||
@ -3257,6 +3259,7 @@ public class ModBlocks {
|
||||
register(machine_pumpjack);
|
||||
register(machine_fracking_tower);
|
||||
register(machine_flare);
|
||||
register(chimney_brick);
|
||||
register(machine_refinery);
|
||||
register(machine_vacuum_distill);
|
||||
register(machine_fraction_tower);
|
||||
|
||||
@ -0,0 +1,44 @@
|
||||
package com.hbm.blocks.machine;
|
||||
|
||||
import com.hbm.blocks.BlockDummyable;
|
||||
import com.hbm.tileentity.TileEntityProxyCombo;
|
||||
import com.hbm.tileentity.machine.TileEntityChimneyBrick;
|
||||
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.util.ForgeDirection;
|
||||
|
||||
public class MachineChimneyBrick extends BlockDummyable {
|
||||
|
||||
public MachineChimneyBrick(Material mat) {
|
||||
super(mat);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TileEntity createNewTileEntity(World world, int meta) {
|
||||
|
||||
if(meta >= 12) return new TileEntityChimneyBrick();
|
||||
if(meta >= 6) return new TileEntityProxyCombo().fluid();
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int[] getDimensions() {
|
||||
return new int[] {12, 0, 1, 1, 1, 1};
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getOffset() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fillSpace(World world, int x, int y, int z, ForgeDirection dir, int o) {
|
||||
super.fillSpace(world, x, y, z, dir, o);
|
||||
this.makeExtra(world, x + dir.offsetX * o + 1, y, z + dir.offsetZ * o);
|
||||
this.makeExtra(world, x + dir.offsetX * o - 1, y, z + dir.offsetZ * o);
|
||||
this.makeExtra(world, x + dir.offsetX * o, y, z + dir.offsetZ * o + 1);
|
||||
this.makeExtra(world, x + dir.offsetX * o, y, z + dir.offsetZ * o - 1);
|
||||
}
|
||||
}
|
||||
@ -5,8 +5,6 @@ import java.util.List;
|
||||
|
||||
import com.hbm.blocks.IBlockMulti;
|
||||
import com.hbm.blocks.ILookOverlay;
|
||||
import com.hbm.inventory.fluid.FluidType;
|
||||
import com.hbm.inventory.fluid.Fluids;
|
||||
import com.hbm.lib.Library;
|
||||
import com.hbm.lib.RefStrings;
|
||||
import com.hbm.tileentity.network.TileEntityPipeBaseNT;
|
||||
@ -73,14 +71,7 @@ public class FluidDuctBox extends FluidDuctBase implements IBlockMulti, ILookOve
|
||||
@SideOnly(Side.CLIENT)
|
||||
public IIcon getIcon(IBlockAccess world, int x, int y, int z, int side) {
|
||||
|
||||
FluidType type = Fluids.NONE;
|
||||
|
||||
TileEntity te = world.getTileEntity(x, y, z);
|
||||
|
||||
if(te instanceof TileEntityPipeBaseNT) {
|
||||
TileEntityPipeBaseNT pipe = (TileEntityPipeBaseNT) te;
|
||||
type = pipe.getType();
|
||||
}
|
||||
|
||||
boolean nX = canConnectTo(world, x, y, z, Library.NEG_X, te);
|
||||
boolean pX = canConnectTo(world, x, y, z, Library.POS_X, te);
|
||||
|
||||
@ -10,7 +10,6 @@ import com.hbm.util.I18nUtil;
|
||||
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import net.minecraft.block.BlockContainer;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IIconRegister;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
@ -19,7 +18,7 @@ import net.minecraft.util.IIcon;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre;
|
||||
|
||||
public class FluidSwitch extends BlockContainer implements ILookOverlay {
|
||||
public class FluidSwitch extends FluidDuctBase implements ILookOverlay {
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
private IIcon iconOn;
|
||||
|
||||
@ -11,7 +11,6 @@ import com.hbm.util.I18nUtil;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockContainer;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IIconRegister;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
@ -19,7 +18,7 @@ import net.minecraft.util.IIcon;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre;
|
||||
|
||||
public class FluidValve extends BlockContainer implements ILookOverlay {
|
||||
public class FluidValve extends FluidDuctBase implements ILookOverlay {
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
private IIcon iconOn;
|
||||
|
||||
@ -212,6 +212,7 @@ public class ClientProxy extends ServerProxy {
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineCyclotron.class, new RenderCyclotron());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineOilWell.class, new RenderDerrick());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineGasFlare.class, new RenderGasFlare());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityChimneyBrick.class, new RenderChimneyBrick());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineMiningDrill.class, new RenderMiningDrill());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineMiningLaser.class, new RenderLaserMiner());
|
||||
ClientRegistry.bindTileEntitySpecialRenderer(TileEntityMachineAssembler.class, new RenderAssembler());
|
||||
|
||||
@ -81,6 +81,7 @@ public class ResourceManager {
|
||||
|
||||
//Flare Stack
|
||||
public static final IModelCustom oilflare = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/flare_stack.obj"));
|
||||
public static final IModelCustom chimney_brick = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/machines/chimney_brick.obj"));
|
||||
|
||||
//Tank
|
||||
public static final IModelCustom fluidtank = new HFRWavefrontObject(new ResourceLocation(RefStrings.MODID, "models/fluidtank.obj"));
|
||||
@ -413,6 +414,7 @@ public class ResourceManager {
|
||||
|
||||
//Flare Stack
|
||||
public static final ResourceLocation oilflare_tex = new ResourceLocation(RefStrings.MODID, "textures/models/machines/flare_stack.png");
|
||||
public static final ResourceLocation chimney_brick_tex = new ResourceLocation(RefStrings.MODID, "textures/models/machines/chimney_brick.png");
|
||||
|
||||
//Tank
|
||||
public static final ResourceLocation tank_tex = new ResourceLocation(RefStrings.MODID, "textures/models/tank.png");
|
||||
|
||||
@ -0,0 +1,56 @@
|
||||
package com.hbm.render.tileentity;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
import com.hbm.blocks.ModBlocks;
|
||||
import com.hbm.main.ResourceManager;
|
||||
import com.hbm.render.item.ItemRenderBase;
|
||||
|
||||
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraftforge.client.IItemRenderer;
|
||||
|
||||
public class RenderChimneyBrick extends TileEntitySpecialRenderer implements IItemRendererProvider {
|
||||
|
||||
@Override
|
||||
public void renderTileEntityAt(TileEntity tileEntity, double x, double y, double z, float f) {
|
||||
|
||||
GL11.glPushMatrix();
|
||||
GL11.glTranslated(x + 0.5D, y, z + 0.5D);
|
||||
GL11.glEnable(GL11.GL_LIGHTING);
|
||||
GL11.glRotatef(180, 0F, 1F, 0F);
|
||||
|
||||
GL11.glDisable(GL11.GL_CULL_FACE);
|
||||
GL11.glShadeModel(GL11.GL_SMOOTH);
|
||||
bindTexture(ResourceManager.chimney_brick_tex);
|
||||
ResourceManager.chimney_brick.renderAll();
|
||||
GL11.glShadeModel(GL11.GL_FLAT);
|
||||
GL11.glEnable(GL11.GL_CULL_FACE);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Item getItemForRenderer() {
|
||||
return Item.getItemFromBlock(ModBlocks.chimney_brick);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IItemRenderer getRenderer() {
|
||||
return new ItemRenderBase() {
|
||||
public void renderInventory() {
|
||||
GL11.glTranslated(0, -5, 0);
|
||||
GL11.glScaled(2.25, 2.25, 2.25);
|
||||
}
|
||||
public void renderCommon() {
|
||||
GL11.glScaled(0.5, 0.5, 0.5);
|
||||
GL11.glDisable(GL11.GL_CULL_FACE);
|
||||
GL11.glShadeModel(GL11.GL_SMOOTH);
|
||||
bindTexture(ResourceManager.chimney_brick_tex);
|
||||
ResourceManager.chimney_brick.renderAll();
|
||||
GL11.glShadeModel(GL11.GL_FLAT);
|
||||
GL11.glEnable(GL11.GL_CULL_FACE);
|
||||
}};
|
||||
}
|
||||
}
|
||||
@ -314,6 +314,7 @@ public class TileMappings {
|
||||
put(TileEntityMachineCatalyticCracker.class, "tileentity_catalytic_cracker");
|
||||
put(TileEntityMachineCatalyticReformer.class, "tileentity_catalytic_reformer");
|
||||
put(TileEntityMachineCoker.class, "tileentity_coker");
|
||||
put(TileEntityChimneyBrick.class, "tileentity_chimney_brick");
|
||||
|
||||
put(TileEntityReactorZirnox.class, "tileentity_zirnox");
|
||||
put(TileEntityZirnoxDestroyed.class, "tileentity_zirnox_destroyed");
|
||||
|
||||
@ -0,0 +1,80 @@
|
||||
package com.hbm.tileentity.machine;
|
||||
|
||||
import com.hbm.inventory.fluid.FluidType;
|
||||
import com.hbm.inventory.fluid.Fluids;
|
||||
import com.hbm.inventory.fluid.tank.FluidTank;
|
||||
import com.hbm.lib.Library;
|
||||
import com.hbm.tileentity.TileEntityLoadedBase;
|
||||
|
||||
import api.hbm.fluid.IFluidUser;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraftforge.common.util.ForgeDirection;
|
||||
|
||||
public class TileEntityChimneyBrick extends TileEntityLoadedBase implements IFluidUser {
|
||||
|
||||
@Override
|
||||
public void updateEntity() {
|
||||
|
||||
if(!worldObj.isRemote) {
|
||||
|
||||
if(worldObj.getTotalWorldTime() % 20 == 0) {
|
||||
FluidType[] types = new FluidType[] {Fluids.SMOKE, Fluids.SMOKE_LEADED, Fluids.SMOKE_POISON};
|
||||
|
||||
for(FluidType type : types) {
|
||||
this.trySubscribe(type, worldObj, xCoord + 2, yCoord, zCoord, Library.POS_X);
|
||||
this.trySubscribe(type, worldObj, xCoord - 2, yCoord, zCoord, Library.NEG_X);
|
||||
this.trySubscribe(type, worldObj, xCoord, yCoord, zCoord + 2, Library.POS_Z);
|
||||
this.trySubscribe(type, worldObj, xCoord, yCoord, zCoord - 2, Library.NEG_Z);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canConnect(FluidType type, ForgeDirection dir) {
|
||||
return (dir == ForgeDirection.NORTH || dir == ForgeDirection.SOUTH || dir == ForgeDirection.EAST || dir == ForgeDirection.WEST) &&
|
||||
(type == Fluids.SMOKE || type == Fluids.SMOKE_LEADED || type == Fluids.SMOKE_POISON);
|
||||
}
|
||||
|
||||
@Override
|
||||
public long transferFluid(FluidType type, int pressure, long fluid) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getDemand(FluidType type, int pressure) {
|
||||
return 1_000_000;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FluidTank[] getAllTanks() {
|
||||
return new FluidTank[] {};
|
||||
}
|
||||
|
||||
AxisAlignedBB bb = null;
|
||||
|
||||
@Override
|
||||
public AxisAlignedBB getRenderBoundingBox() {
|
||||
|
||||
if(bb == null) {
|
||||
bb = AxisAlignedBB.getBoundingBox(
|
||||
xCoord - 1,
|
||||
yCoord,
|
||||
zCoord - 1,
|
||||
xCoord + 2,
|
||||
yCoord + 13,
|
||||
zCoord + 2
|
||||
);
|
||||
}
|
||||
|
||||
return bb;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public double getMaxRenderDistanceSquared() {
|
||||
return 65536.0D;
|
||||
}
|
||||
}
|
||||
@ -1,8 +1,5 @@
|
||||
package com.hbm.tileentity.network;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map.Entry;
|
||||
|
||||
import com.hbm.inventory.fluid.FluidType;
|
||||
import com.hbm.inventory.fluid.Fluids;
|
||||
import com.hbm.util.Compat;
|
||||
@ -15,22 +12,24 @@ import net.minecraftforge.common.util.ForgeDirection;
|
||||
|
||||
public class TileEntityPipeExhaust extends TileEntity implements IFluidConductor {
|
||||
|
||||
public HashMap<FluidType, IPipeNet> nets = new HashMap();
|
||||
public IPipeNet[] nets = new IPipeNet[3];
|
||||
|
||||
public FluidType[] getSmokes() {
|
||||
return new FluidType[] {Fluids.SMOKE, Fluids.SMOKE_LEADED, Fluids.SMOKE_POISON};
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateEntity() {
|
||||
|
||||
if(!worldObj.isRemote && canUpdate()) {
|
||||
|
||||
//we got here either because the net doesn't exist or because it's not valid, so that's safe to assume
|
||||
this.nets.clear();
|
||||
|
||||
for(Entry<FluidType, IPipeNet> entry : nets.entrySet()) {
|
||||
for(int i = 0; i < 3; i++) nets[i] = null;
|
||||
|
||||
for(FluidType type : getSmokes()) {
|
||||
this.connect(type);
|
||||
|
||||
this.connect(entry.getKey());
|
||||
|
||||
if(this.getPipeNet(entry.getKey()) == null) {
|
||||
this.setPipeNet(entry.getKey(), new PipeNet(entry.getKey()).joinLink(this));
|
||||
if(this.getPipeNet(type) == null) {
|
||||
this.setPipeNet(type, new PipeNet(type).joinLink(this));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -59,10 +58,37 @@ public class TileEntityPipeExhaust extends TileEntity implements IFluidConductor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invalidate() {
|
||||
super.invalidate();
|
||||
|
||||
if(!worldObj.isRemote) {
|
||||
|
||||
for(int i = 0; i < 3; i++) {
|
||||
if(nets[i] != null) {
|
||||
nets[i].destroy();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public boolean canUpdate() {
|
||||
|
||||
if(this.isInvalid()) return false;
|
||||
|
||||
for(IPipeNet net : nets) {
|
||||
if(net == null || !net.isValid()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canConnect(FluidType type, ForgeDirection dir) {
|
||||
return type == Fluids.SMOKE || type == Fluids.SMOKE_LEADED || type == Fluids.SMOKE_POISON;
|
||||
return dir != ForgeDirection.UNKNOWN && (type == Fluids.SMOKE || type == Fluids.SMOKE_LEADED || type == Fluids.SMOKE_POISON);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -72,11 +98,18 @@ public class TileEntityPipeExhaust extends TileEntity implements IFluidConductor
|
||||
|
||||
@Override
|
||||
public IPipeNet getPipeNet(FluidType type) {
|
||||
return nets.get(type);
|
||||
|
||||
if(type == Fluids.SMOKE) return nets[0];
|
||||
if(type == Fluids.SMOKE_LEADED) return nets[1];
|
||||
if(type == Fluids.SMOKE_POISON) return nets[2];
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPipeNet(FluidType type, IPipeNet network) {
|
||||
nets.put(type, network);
|
||||
|
||||
if(type == Fluids.SMOKE) nets[0] = network;
|
||||
if(type == Fluids.SMOKE_LEADED) nets[1] = network;
|
||||
if(type == Fluids.SMOKE_POISON) nets[2] = network;
|
||||
}
|
||||
}
|
||||
|
||||
@ -313,57 +313,97 @@ book.starter.page18=v?r只是一个被困在"传声头像"的§o《一生一次
|
||||
book_lore.author=By %s
|
||||
book_lore.test.name=测试
|
||||
book_lore.test.author=那个家伙
|
||||
book_lore.test.page.0=>hello anons before i begin let me clarify that i'm not gay. >Be me >This night >18 > At hanging out with my best friend with my parents gone for a few days >We've been best friends for a year now >Been drinking a bit and playing lots of video games and ordered a pizza >We were having a blast >At a certain point in the night like around 9:00 he makes a really funny joke that I don't remember but I know that it made us both laugh really hard > With out thinking I brush my right hand through his semi-curly black hair and call him a funny boy >He blushes >I realize I'm feeling flustered >We're kinda close >All of the sudden he kisses me and for some reason I kiss him back >We make love >Cuddle together and fall asleep >Wake up in the middle of the night with his head snuggled up on my chest and neck area >It feels nice but I'm not a homosexual
|
||||
book_lore.test.page.1=>你好,在我开始之前,让我澄清我不是同性恋。>做我>今天晚上>18>和我最好的朋友和我的父母出去玩了几天>我们已经是最好的朋友一年了>喝了点酒,玩了很多电子游戏,还点了一份披萨>我们玩得很开心>在晚上的某个时候,比如9点左右,他开了一个非常有趣的玩笑,我不记得了,但我知道这让我们俩都笑得很厉害>没有我想我用右手摸了摸他那半卷曲的黑发,然后叫他一个有趣的男孩>他脸红了>我意识到我很慌张>我们有点亲密>突然他吻了我,出于某种原因我又吻了他>我们做爱>拥抱在一起睡着了>半夜醒来时,他的头贴在我的胸部和颈部>感觉很好,但我不是同性恋
|
||||
book_lore.test.page.2=他在我怀里睡着时,我正在打字。我怎么才能让我最好的朋友失望呢?我不想成为[编辑]/b/
|
||||
book_lore.test.page.3=3
|
||||
book_lore.test.page.4=4
|
||||
book_lore.test.page.5=5
|
||||
book_lore.book_iodine.name=笔记
|
||||
book_lore.book_iodine.author=戴夫
|
||||
book_lore.book_iodine.page.0=alright you will not believe this, but old man weathervane finally managed to show up again since he left two weeks ago and what's more surprising is the fact that he actually decided to spill the beans on what they were doing in the canyon:
|
||||
book_lore.book_iodine.page.1=alright you will not believe this, but old man weathervane finally managed to show up again since he left two weeks ago and what's more surprising is the fact that he actually decided to spill the beans on what they were doing in the canyon:
|
||||
book_lore.book_iodine.page.2=apparently the morons from R&D discovered a compound that is mostly inorganic, pretty much like a toxin in nature, but get this: the dying cells will reproduce said toxin and excrete it through the skin, creating an aerosol that is highly contagious.
|
||||
book_lore.book_iodine.page.3=it's just like a virus, but not a virus. the composition is weird, you can mix it in any household bottle but you do have to get the order right. the doc told me that the first ingredient which is just powdered iodine crystals goes into slot %d
|
||||
book_lore.book_phosphorous.name=笔记
|
||||
book_lore.book_phosphorous.author=戴夫
|
||||
book_lore.book_phosphorous.page.0=heyo, it's me again. i assume you got my last memo, the doc wasn't too happy about it. i'll have to do this quick, the dunderheads from R&D are currently moaning again, probably over money. again. anyway, doc weathervane found that the second
|
||||
book_lore.book_phosphorous.page.1=heyo, it's me again. i assume you got my last memo, the doc wasn't too happy about it. i'll have to do this quick, the dunderheads from R&D are currently moaning again, probably over money. again. anyway, doc weathervane found that the second
|
||||
book_lore.book_phosphorous.page.2=ingredient is red phosphorous, whihc has to be mixed into slot %d
|
||||
book_lore.book_dust.name=笔记
|
||||
book_lore.book_dust.author=戴夫
|
||||
book_lore.book_dust.page.0=the doc was furious when he found out that the R&D dorks kept the one remaining sample, ranting about gross negligence this and a doomsday scenario that. i told him to chill for a minute, getting all worked up isn't good for his blood pressure, not
|
||||
book_lore.book_dust.page.1=the doc was furious when he found out that the R&D dorks kept the one remaining sample, ranting about gross negligence this and a doomsday scenario that. i told him to chill for a minute, getting all worked up isn't good for his blood pressure, not
|
||||
book_lore.book_dust.page.2=that he has much blood left to begin with. one of the R&D morons slipped some more info into last week's circular, they call their little concoction \"MKU\" whatever that means, and that it contains actual household lint. can you believe that? one of the most
|
||||
book_lore.book_dust.page.3=dangerous inventions of theirs and it contains dust. strangely they also mentioned that it goes into slot %d
|
||||
book_lore.book_mercury.name=笔记
|
||||
book_lore.book_mercury.author=戴夫
|
||||
book_lore.book_mercury.page.0=well that settles that. not counting the vomitting blood part, the toxicological report mostly resembles that of mercury poisoning. why? because our little mix also contains mercury! i just wonder where all that stuff comes from when being
|
||||
book_lore.book_mercury.page.1=well that settles that. not counting the vomitting blood part, the toxicological report mostly resembles that of mercury poisoning. why? because our little mix also contains mercury! i just wonder where all that stuff comes from when being
|
||||
book_lore.book_mercury.page.2=replicated by the body? whatever, the mercury goes into slot %d
|
||||
book_lore.book_flower.name=笔记
|
||||
book_lore.book_flower.author=戴夫
|
||||
book_lore.book_flower.page.0=remember when i mentioned in my first memo that the compound is mostly anorganic? well guess what, the old man shared the fourth ingredient: ipomoea nil, a genus of flower. morning glory! it might be due to its low sulfur content, whatever might be the case,
|
||||
book_lore.book_flower.page.1=remember when i mentioned in my first memo that the compound is mostly anorganic? well guess what, the old man shared the fourth ingredient: ipomoea nil, a genus of flower. morning glory! it might be due to its low sulfur content, whatever might be the case,
|
||||
book_lore.book_flower.page.2=it does not work with other flowers. the morning glory goes into slot %d
|
||||
book_lore.book_syringe.name=笔记
|
||||
book_lore.book_syringe.author=戴夫
|
||||
book_lore.book_syringe.page.0=a little addendum to my fifth message, obviously you have to store this MKU stuff in a container. the R&D nuts used regular metal syringes that they got from medical. surplus ware i presume, they got thousands of needles just lying around. the metal
|
||||
book_lore.book_syringe.page.1=a little addendum to my fifth message, obviously you have to store this MKU stuff in a container. the R&D nuts used regular metal syringes that they got from medical. surplus ware i presume, they got thousands of needles just lying around. the metal
|
||||
book_lore.book_syringe.page.2=syringe goes into slot %d
|
||||
book_lore.resignation_note.name=辞职信
|
||||
book_lore.resignation_note.author=科斯马
|
||||
book_lore.resignation_note.page.0=Management downsized our department again yesterday. Those idiots only have themselves to blame, I don't know what they were expecting after that fiasco. Who the hell leaks that sort of information? We're losing millions and
|
||||
book_lore.resignation_note.page.1=管理层昨天又对我们的部门进行裁员了。那群白痴要怪只能怪他们自己,我都不知道他们在那场惨败后还在期待什么。到底是谁他妈泄露了那种程度的信息?
|
||||
book_lore.resignation_note.page.2=我们损失了几百万,而且现在失业的还是爷。老子希望你们这帮混蛋最后能从你们的一堆问题中学到点教训然后给爷滚去自闭。
|
||||
book_lore.resignation_note.page.3=我周五不回来了。工资寄过来就行。
|
||||
book_lore.memo_stocks.name=公司内部备忘录
|
||||
book_lore.memo_stocks.page.1=投资者报告 - $$最新的季度报告中提供的数据存在一些明显的差异。财政部所作出一些调整是明智的,因此不必有任何担忧。
|
||||
book_lore.memo_stocks.page.0=Investor Relations - $ $ There's been some glaring discrepancies in the figures provided for the latest quarterly report. It would be prudent for the financial department to make some adjustments, so there won't be any concern.
|
||||
book_lore.memo_schrab_gsa.name=内部备忘录
|
||||
book_lore.memo_schrab_gsa.page.0=Contract Management - $ $ Legal has made a breakthrough with the DLA. They've awarded us with a 45 BILLION GSA Schedule for further procurement and research of saralloy. At current estimates, that would be at minimum
|
||||
book_lore.memo_schrab_gsa.page.1=合同管理记录 - 法务部在与美国国防部后勤局的谈判中取得了突破。他们批准了450亿的联邦采购服务总署投资资金用于异变金属的采购与研究。
|
||||
book_lore.memo_schrab_gsa.page.2=就目前预期来看,这将至少产生40%的利润,更不必说以后行动所产生的利润,同时这将使我们未来有机会签订更多合同。鉴于此事的保密性质,所有财政证据都将为机密级别
|
||||
book_lore.memo_schrab_rd.name=内部备忘录
|
||||
book_lore.memo_schrab_rd.page.0=Research & Development - $ $ Our main production method of saralloy has been through the new particle accelerator. However, the energy costs are exorbitantly high compared to the amount of output.
|
||||
book_lore.memo_schrab_rd.page.1=研发 - 目前我们主要生产方法是使用新型粒子加速器。然而,与产出量相比,能源成本高得惊人。
|
||||
book_lore.memo_schrab_rd.page.2=然而,Schrabauer博士发现了一种全新的相互作用——暂称为“奇异轻子振荡”——该作用可以显著降低生产成本。通过一个目前未被完全理解的的过程,提供的电子被一种奇特的“魔力”转化为极高能量的光子。
|
||||
book_lore.memo_schrab_rd.page.3=这是许多已明确的粒子转换定律的极端例外。但初步实验证明,这些质子先转变为上下夸克,最终形成了异变金属。奇怪的是,原型机中需要钨与少量异变金属合金化所得到的合金。
|
||||
book_lore.memo_schrab_rd.page.4=除此之外,还需要一个特殊的电容器用来抵消掉多余的正电荷。
|
||||
book_lore.memo_schrab_nuke.name=研究报告
|
||||
book_lore.memo_schrab_nuke.author=Schrabauer博士
|
||||
book_lore.memo_schrab_nuke.page.0=Our most recent investigation led us to the effects of nuclear explosions on materials. Thanks to our grant money, we *accidentally* tested our theory on direct saralloy synthesis from uranium.
|
||||
book_lore.memo_schrab_nuke.page.1=最近的调查使我们了解了核爆炸对材料造成的影响。多亏外界给我们的赠款,我们*意外地*测试了铀直接合成异变金属的理论。
|
||||
book_lore.memo_schrab_nuke.page.2=而此前我们只在回旋加速器中制作出异变金属。但这次,我们在对Everwerpen的地下拍摄中,在该地点的铀矿石中发现了微量的异变金属。其附近所有的纯金属铀则都发生了裂变。
|
||||
book_lore.memo_schrab_nuke.page.3=因此,如果有足够多的铀矿石集中在核弹周围,甚至可能只需要一个富含裂变物质废料的脏弹,就有可能制造出质量大到可以被直接收集的异变金属。
|
||||
book_lore.bf_bomb_1.name=私人笔记
|
||||
book_lore.bf_bomb_1.author=M. 波特
|
||||
book_lore.bf_bomb_1.page.0=Took long enough, but my transfer was accepted. Those new grads were already hard to handle, let alone all the unprofessionalism of the lead. $ Not all good news - this lab was withholding further detail, and I didn't need more chaos over another magic new discovery.
|
||||
book_lore.bf_bomb_1.page.1=Of course that was the case. The alumni had their doubts (surprising, considering how bright-eyed they were), but my only... competent? colleague actually got his hands on the primer hand-out. Must have more connections than I thought. His memo is discouraging:
|
||||
book_lore.bf_bomb_1.page.2=apparently, there's yet ANOTHER miracle material that they prodded out of some concoction of antimatter and a fringe isotope. The brochure calls it "SWIRLMAT" - hell if I know - and that's it. No wonder they wanted a theoretical physicist,
|
||||
book_lore.bf_bomb_1.page.3=they don't even know what it is yet. Either way, practically any job would be better than my old position, so I can't complain much about sketchiness.
|
||||
book_lore.bf_bomb_2.name=私人笔记
|
||||
book_lore.bf_bomb_2.author=M. 波特
|
||||
book_lore.bf_bomb_2.page.0=Despite the absence of information in that primer, I still had some hope they knew a bit more. Not at all. Every other senior researcher has a blind faith in this material; their propositions were practically biblical. I was near speechless.
|
||||
book_lore.bf_bomb_2.page.1=And yet I can't even blame them. Swirlmat makes no goddamn sense - it is completely unlike any other substance I've seen before. Its appearance was near frightening, a literal mass of swirling colors, with darker lines permeating through the neon green surface.
|
||||
book_lore.bf_bomb_2.page.2=Even worse, this thing is an energy source. The existence of our sample is a violation of ALARA: the lab was vacated when it arrived, and the only person brave enough (one Dr. Melfyn) donned a level A hazmat just to carry it 20 meters.
|
||||
book_lore.bf_bomb_2.page.3=The empirical data isn't better, as we're breaking the first law of thermodynamics with how much energy it radiates. Being anywhere near that thing - even behind a meter of lead - was terrifying. We sprinted out of the chamber upon conclusion of the spectroscopy
|
||||
book_lore.bf_bomb_2.page.4=and we got nothing new out of it. Those idiots in the science team, god, did not even waver after all that. Sitting through those "discussions" was horrible; that quack of a head researcher even rumored that the test ban would be lifted, that we could be
|
||||
book_lore.bf_bomb_2.page.5=building bombs out of the shit in the coming weeks, who in their right mind would work on that? Hell, the one sane assistant (an Andrew) nicknamed it "balefire" - because burning to death on a funeral pyre would be painless by comparison.
|
||||
book_lore.bf_bomb_3.name=私人笔记
|
||||
book_lore.bf_bomb_3.author=M. 波特
|
||||
book_lore.bf_bomb_3.page.0=The team and I have made some breakthroughs. Emphasis on the separation - isolating myself from the more devout has made working there so much more bearable. While we still have no idea about the actual properties of balefire (it's difficult to analyze
|
||||
book_lore.bf_bomb_3.page.1=a sample that fries your equipment) its interactions with other matter has proved fruitful. Notably, they synthesized a "gaseous" form: Andrew, of all people, informed me that it was really a colloid consisting of microscopic balefire particles, suspended in some
|
||||
book_lore.bf_bomb_3.page.2=noble gas. Each particle is enveloped by a positively-charged 'bubble' of ionized gas, preventing it from settling. Who could've guessed that fatal gamma radiation had a benefit? Not me. $ I'm choosing not to think about how they transformed the sample into
|
||||
book_lore.bf_bomb_3.page.3=particulate, but I can't understate the utility of this gaseous balefire - it's made it much safer to experiment on. $ Speaking of safety, the head researcher (in an act of callous disregard) made a discovery that also nearly took his head off.
|
||||
book_lore.bf_bomb_3.page.4=He decided to get "dirty" by letting a cell of our new colloid interact directly with some very expensive antimatter: the resulting explosion turned the table it was on into a piece of radiation-bleached slag, carved a near-perfect hemisphere through
|
||||
book_lore.bf_bomb_3.page.5=the top, and gave the head a healthy dose of ARS. I guess we know how to make it explode now, but god, some people...
|
||||
book_lore.bf_bomb_4.name=私人笔记
|
||||
book_lore.bf_bomb_4.author=M. 波特
|
||||
book_lore.bf_bomb_4.page.0=I just can't escape my old work. They're the only place that's hiring despite all this godforsaken turmoil, but I'm not going back into that hole. $ They only tempted me because I need out, fast. Remember that atmospheric testing treaty we withdrew from a week ago?
|
||||
book_lore.bf_bomb_4.page.1=Well, the dipshit in charge of our lab got something right for once. The denunciation came with a flurry of new "scientists" joining, just so we could weaponize balefire. The lack of critical thought here is honestly baffling - bless him, Andrew even jumped ship the
|
||||
book_lore.bf_bomb_4.page.2=second the first fucking BOMB DESIGN was drafted. That ass Melfyn looked so happy with his little mechanism - perhaps he got brainworms from carrying that sample? - which involved some stupid shit using the solidified, base balefire and an HV
|
||||
book_lore.bf_bomb_4.page.3=battery. $ Apparently, the form matters for energy output and activation method or whatever, kind of like uranium versus plutonium in regular nukes, but the end result is an initial shock starting the explosion. I find it funny, hilarious even.
|
||||
book_lore.bf_bomb_4.page.4=All of them place such emphasis on the activation; they ignore the actual mechanism of it all because they don't have a single clue how it works! It may as well be magic at this point, and yet they're still trying to twist and bend it - just for more weapons of war.
|
||||
book_lore.bf_bomb_5.name=私人笔记
|
||||
book_lore.bf_bomb_5.author=M. 波特
|
||||
book_lore.bf_bomb_5.page.0=I just... can't come to grips with it, even days after. It was a foregone conclusion, really, with how flippant the science team was with safety. $ $ Doctor Melfyn, M.S., is gone. Dead, maybe. I saw it happen before my own eyes, in their test chamber.
|
||||
book_lore.bf_bomb_5.page.1=We had just gotten another batch of pure balefire, and he had recovered electrical equipment and an energy source to test his proposal. I don't know what caused it (was the power on? had he begun too soon?), but it seemingly progressed in agonizingly slow motion,
|
||||
book_lore.bf_bomb_5.page.2=as the green-tinted light consumed the table, the battery, and Dr. Melfyn standing only a meter away. Even when the table had degraded into a pool of broiling metal on the floor, he did not burn. I don't know what I saw in his eyes... $ $ Terror, or awe
|
||||
book_lore.bf_bomb_5.page.3=over his continued survival, maybe? Whatever our "miracle" material was, it didn't care. With a bright blaze of light, he disappeared in the next moment. Was he evaporated? incinerated? annihilated? sent to fucking hell itself, I don't know anymore!
|
||||
book_lore.bf_bomb_5.page.4=The head researcher sickens me. Said we could be more careful, keep trucking, whatever other morale-improving filth he spewed. That dipshit won't ever figure out that playing with fire will get you burned. $ I didn't bother
|
||||
book_lore.bf_bomb_5.page.5=resigning, I just grabbed my shit and ran for the hills. Not like it matters, anyway; considering the lack of calls, and the mushroom cloud that rose over my (now former) workplace, they've either blown everything up or entered full-on military jurisdiction.
|
||||
book_lore.bf_bomb_5.page.6=There's a vital distinction to be made between dissection and VIVISECTION, one which was clearly lost on them. They can dissect metal or atoms as much as they like, but tearing into, vivisecting reality itself is only going to end in more Dr. Melfyns. Who knows!
|
||||
book_lore.bf_bomb_5.page.7=The government wants to put this shit into bombs after all, maybe we'll see a couple more wars, couple more million resigned to a fate worse than death. They can't hide this forever. $ $ I don't care. Not anymore. Please, god, let me go back
|
||||
book_lore.bf_bomb_5.page.8=to actual science. $ $ Goddamnit, Mae, get ahold of yourself...
|
||||
cannery.f1=[按F1键获取帮助]
|
||||
cannery.centrifuge=气体离心机
|
||||
cannery.centrifuge.0=气体离心机可以使用通用流体管道传输流体。
|
||||
@ -394,7 +434,7 @@ cannery.firebox.0=燃烧室通过燃烧可燃物品产生热量。
|
||||
cannery.firebox.1=它可以燃烧任何可燃物品,但更高质量的燃料如煤、焦炭和固体燃料燃烧时间更长,温度更高。
|
||||
cannery.firebox.2=燃烧室顶部的铜触点可以传导热量。底部具有相同触点的机器可以通过放置在燃烧室顶部来接收热量。
|
||||
cannery.firebox.3=如果热量没有用完,且热量缓冲器变满,燃烧室将暂停运行,以防止燃料浪费。
|
||||
cannery.firebox.4=一种这样的机器是斯特林发动机,它将热量直接转化为能量。
|
||||
cannery.firebox.4=一种这样的机器是斯特林发电机,它将热量直接转化为能量。
|
||||
cannery.foundryChannel=铸造通道
|
||||
cannery.foundryChannel.0=铸造通道用于将熔融材料从坩埚或储罐输送到模具中。
|
||||
cannery.foundryChannel.1=通道可以通过从顶部(通过出口或直接连接坩埚)或从其他通道的侧面倾倒来接收材料。
|
||||
@ -412,7 +452,7 @@ cannery.silex.6=除了侧面的两个连接口之外,底部还有第三个隐
|
||||
cannery.silex.7=每个配方都需要特定的激光类型。使用比所需类型更强的激光将更快地处理项目。
|
||||
cannery.silex.8=一台FEL最多可以为5台SILEX供能。每个SILEX之间必须间隔一个方块。
|
||||
cannery.stirling=斯特林发电机
|
||||
cannery.stirling.0=斯特林发动机使用来自外部的热能来产生能量。
|
||||
cannery.stirling.0=斯特林发电机使用来自外部的热能来产生能量。
|
||||
cannery.stirling.1=它需要放置在发热机器的顶部,如燃烧室。
|
||||
cannery.stirling.2=然而,它可以利用的热量有限,过旋转可能导致灾难性故障。
|
||||
cannery.stirling.3=升级版可以在不损坏的情况下承受更多热量。
|
||||
@ -434,6 +474,8 @@ chem.BALEFIRE=野火火箭燃料混合
|
||||
chem.BP_BIOFUEL=生物燃料酯化
|
||||
chem.BP_BIOGAS=沼气生产
|
||||
chem.C4=C-4合成
|
||||
chem.CC_CENTRIFUGE=氯方解石分离
|
||||
chem.CC_ELECTROLYSIS=氯化钙电解
|
||||
chem.CC_HEATING=高级煤液化
|
||||
chem.CC_HEAVY=初级煤液化
|
||||
chem.CC_I=强化煤液化
|
||||
@ -485,6 +527,7 @@ chem.NITAN=NITAN牌超级燃料混合
|
||||
chem.NITRIC_ACID=硝酸生产
|
||||
chem.OIL_SAND=沥青砂提取
|
||||
chem.OSMIRIDIUM_DEATH=锇酸溶液生产
|
||||
chem.PC_ELECTROLYSIS=氯化钾电解
|
||||
chem.PEROXIDE=过氧化氢生产
|
||||
chem.PET=PET合成
|
||||
chem.PETROIL_LEADED=含铅石油混合
|
||||
@ -589,10 +632,11 @@ container.machineBoiler=锅炉
|
||||
container.machineCMB=CMB炼钢炉
|
||||
container.machineCoal=火力发电机
|
||||
container.machineCoker=焦化装置
|
||||
container.machineCompressor=压缩机
|
||||
container.machineCrucible=坩埚
|
||||
container.machineDiesel=柴油发电机
|
||||
container.machineElectricBoiler=电锅炉
|
||||
container.machineFEL=FEL自由电子激光器
|
||||
container.machineFEL=FEL
|
||||
container.machineITER=聚变反应堆
|
||||
container.machineLargeTurbine=工业汽轮机
|
||||
container.machineLiquefactor=液化机
|
||||
@ -600,7 +644,7 @@ container.machineMixer=工业搅拌机
|
||||
container.machineRefinery=炼油厂
|
||||
container.machineSelenium=星型发动机
|
||||
container.machineShredder=粉碎机
|
||||
container.machineSILEX=SILEX激光同位素分离室
|
||||
container.machineSILEX=激光同位素分离室
|
||||
container.machineSolidifier=固化机
|
||||
container.machineTurbine=汽轮机
|
||||
container.machineTurbofan=涡扇发动机
|
||||
@ -911,6 +955,14 @@ digamma.title=玩家F-迪伽马辐射自检器
|
||||
entity.entity_cyber_crab.name=赛博螃蟹
|
||||
entity.entity_elder_one.name=上古鸭神
|
||||
entity.entity_fucc_a_ducc.name=鸭子
|
||||
entity.entity_glyphid.name=异虫
|
||||
entity.entity_glyphid_behemoth.name=巨兽异虫
|
||||
entity.entity_glyphid_blaster.name=爆破异虫
|
||||
entity.entity_glyphid_bombardier.name=投弹手异虫
|
||||
entity.entity_glyphid_brawler.name=狂战士异虫
|
||||
entity.entity_glyphid_brenda.name=布伦达
|
||||
entity.entity_glyphid_nuclear.name=大个子强森
|
||||
entity.entity_glyphid_scout.name=侦察异虫
|
||||
entity.entity_ntm_fbi.name=FBI探员
|
||||
entity.entity_ntm_radiation_blaze.name=核融元素
|
||||
entity.hbm.entity_ntm_ufo.name=火星入侵者飞船
|
||||
@ -1130,8 +1182,13 @@ hbmfluid.biogas=沼气
|
||||
hbmfluid.bitumen=沥青
|
||||
hbmfluid.blood=血
|
||||
hbmfluid.blood_hot=热的血
|
||||
hbmfluid.calcium_chloride=氯化钙溶液
|
||||
hbmfluid.calcium_solution=钙溶液
|
||||
hbmfluid.carbondioxide=二氧化碳
|
||||
hbmfluid.chlorine=氯气
|
||||
hbmfluid.chlorocalcite_cleaned=纯净氯方解石溶液
|
||||
hbmfluid.chlorocalcite_mix=混合氯方解石溶液
|
||||
hbmfluid.chlorocalcite_solution=氯方解石溶液
|
||||
hbmfluid.cholesterol=胆固醇溶液
|
||||
hbmfluid.coalcreosote=煤焦杂酚油
|
||||
hbmfluid.coalgas=煤汽油
|
||||
@ -1203,6 +1260,7 @@ hbmfluid.plasma_dt=氘-氚等离子体
|
||||
hbmfluid.plasma_hd=氢-氘等离子体
|
||||
hbmfluid.plasma_ht=氢-氚等离子体
|
||||
hbmfluid.plasma_xm=氙-汞等离子体
|
||||
hbmfluid.potassium_chloride=氯化钾溶液
|
||||
hbmfluid.puf6=六氟化钚
|
||||
hbmfluid.radiosolvent=高性能溶剂
|
||||
hbmfluid.reclaimed=再生油
|
||||
@ -1290,7 +1348,7 @@ hbmmat.lithium=锂
|
||||
hbmmat.magnetizedtungsten=磁化钨
|
||||
hbmmat.malachite=孔雀石
|
||||
hbmmat.meteoriciron=陨铁
|
||||
hbmmat.mingrade=工业级铜
|
||||
hbmmat.mingrade=紫铜
|
||||
hbmmat.neptunium237=镎-237
|
||||
hbmmat.niobium=铌
|
||||
hbmmat.obsidian=黑曜岩
|
||||
@ -1471,11 +1529,14 @@ item.ammo_9mm_du.name=9mm子弹[贫铀]
|
||||
item.ammo_9mm_rocket.name=9mm火箭弹
|
||||
item.ammo_arty.name=16英寸炮弹
|
||||
item.ammo_arty_cargo.name=16英寸快递炮弹
|
||||
item.ammo_arty_chlorine.name=16英寸氯气炮弹
|
||||
item.ammo_arty_classic.name=16英寸炮弹 (特制)
|
||||
item.ammo_arty_he.name=16英寸高爆炮弹
|
||||
item.ammo_arty_mini_nuke.name=16英寸微型核炮弹
|
||||
item.ammo_arty_mini_nuke_multi.name=16英寸多弹头微型核炮弹
|
||||
item.ammo_arty_mustard_gas.name=16英寸芥子气炮炮弹
|
||||
item.ammo_arty_nuke.name=16英寸核炮弹
|
||||
item.ammo_arty_phosgene.name=16英寸光气炮弹
|
||||
item.ammo_arty_phosphorus.name=16英寸磷炮弹
|
||||
item.ammo_arty_phosphorus_multi.name=16英寸多弹头磷炮弹
|
||||
item.ammo_cell.name=能量单元
|
||||
@ -1508,6 +1569,7 @@ item.ammo_grenade_toxic.name=40mm榴弹[化学]
|
||||
item.ammo_grenade_tracer.name=40mm训练榴弹
|
||||
item.ammo_himars_standard.name=M28制导火箭炮系统火箭弹舱
|
||||
item.ammo_himars_standard_he.name=227毫米制导火箭炮系统火箭吊舱(HE)
|
||||
item.ammo_himars_standard_lava.name=227毫米制导火箭炮系统火箭吊舱(熔岩)
|
||||
item.ammo_himars_standard_mini_nuke.name=227毫米制导火箭炮系统火箭吊舱(迷你核弹)
|
||||
item.ammo_himars_standard_tb.name=227毫米制导火箭炮系统火箭吊舱(温压弹)
|
||||
item.ammo_himars_standard_wp.name=227毫米制导火箭炮系统火箭吊舱(白磷)
|
||||
@ -1672,6 +1734,7 @@ item.battery_steam_large.name=大型蒸汽动力储能罐
|
||||
item.battery_su.name=SU-电池
|
||||
item.battery_su_l.name=大型SU-电池
|
||||
item.battery_trixite.name=杂牌Spark电池
|
||||
item.bdcl.name=BDCL
|
||||
item.beta.name=Bata测试版功能
|
||||
item.big_sword.name=大剑
|
||||
item.billet_actinium.name=锕-227坯料
|
||||
@ -1818,7 +1881,7 @@ item.canister_ethanol.name=桶装乙醇
|
||||
item.canister_fracksol.name=桶装压裂液
|
||||
item.canister_fuel.name=桶装柴油
|
||||
item.canister_fuel.desc=大家欢呼吧!
|
||||
item.canister_full.name=容器:
|
||||
item.canister_full.name=油桶:
|
||||
item.canister_gasoline.name=桶装含铅汽油
|
||||
item.canister_gasoline.desc=铅就是朋友$让朋友进入你的血液$*上膛声*现在就做
|
||||
item.canister_heatingoil.name=桶装燃油
|
||||
@ -2076,8 +2139,8 @@ item.coffee.name=咖啡
|
||||
item.coffee_radium.name=加镭咖啡
|
||||
item.coil_advanced_alloy.name=超导线圈
|
||||
item.coil_advanced_torus.name=超导环形线圈
|
||||
item.coil_copper.name=铜线圈
|
||||
item.coil_copper_torus.name=铜环形线圈
|
||||
item.coil_copper.name=紫铜线圈
|
||||
item.coil_copper_torus.name=紫铜环形线圈
|
||||
item.coil_gold.name=金线圈
|
||||
item.coil_gold_torus.name=金环形线圈
|
||||
item.coil_magnetized_tungsten.name=4000K高温超导线圈
|
||||
@ -2254,6 +2317,8 @@ item.energy_core.name=临时能源核心
|
||||
item.entanglement_kit.name=纠缠部件
|
||||
item.entanglement_kit.desc=传送机制作零件$通过$铍增强型资源扫描仪实现尺寸转换。
|
||||
item.euphemium_boots.name=Ep靴子
|
||||
item.euphemium_capacitor.name=Ep电容
|
||||
item.euphemium_capacitor.desc=允许被动分散累积的正能量。
|
||||
item.euphemium_helmet.name=Ep头盔
|
||||
item.euphemium_kit.name=Ep工具箱
|
||||
item.euphemium_legs.name=Ep护腿
|
||||
@ -2340,7 +2405,7 @@ item.gadget_kit.name=小玩意 套件
|
||||
item.gadget_wireing.name=线路
|
||||
item.gas_biogas.name=沼气罐
|
||||
item.gas_empty.name=空气罐
|
||||
item.gas_full.name=气体罐
|
||||
item.gas_full.name=气体罐:
|
||||
item.gas_lpg.name=液化石油气罐
|
||||
item.gas_mask.name=防毒面具
|
||||
item.gas_mask_filter.name=防毒面具过滤器
|
||||
@ -2609,7 +2674,7 @@ item.ingot_co60.name=钴-60锭
|
||||
item.ingot_cobalt.name=钴锭
|
||||
item.ingot_combine_steel.name=CMB钢锭
|
||||
item.ingot_combine_steel.desc=*在此处插入民事保护参考*
|
||||
item.ingot_copper.name=工业级铜
|
||||
item.ingot_copper.name=工业级铜锭
|
||||
item.ingot_daffergon.name=达夫贡锭
|
||||
item.ingot_desh.name=Desh锭
|
||||
item.ingot_dineutronium.name=双聚中子态素锭
|
||||
@ -2656,7 +2721,7 @@ item.ingot_pu240.name=钚-240锭
|
||||
item.ingot_pu241.name=钚-241锭
|
||||
item.ingot_pvc.name=聚氯乙烯锭(PVC)
|
||||
item.ingot_ra226.name=镭-226锭
|
||||
item.ingot_red_copper.name=紫铜
|
||||
item.ingot_red_copper.name=紫铜锭
|
||||
item.ingot_reiium.name=雷恩锭
|
||||
item.ingot_rubber.name=橡胶锭
|
||||
item.ingot_saturnite.name=土星锭
|
||||
@ -3295,6 +3360,7 @@ item.plate_schrabidium.name=Sa326板
|
||||
item.plate_steel.name=钢板
|
||||
item.plate_titanium.name=钛板
|
||||
item.polaroid.name=偏光片
|
||||
item.pollution_detector.name=污染探测器
|
||||
item.powder_actinium.name=锕粉
|
||||
item.powder_actinium_tiny.name=小撮锕粉
|
||||
item.powder_advanced_alloy.name=高级合金粉
|
||||
@ -3455,7 +3521,7 @@ item.rbmk_fuel_mox.name=MOX RBMK反应堆燃料棒
|
||||
item.rbmk_fuel_po210be.name=钋210-铍 RBMK反应堆中子源
|
||||
item.rbmk_fuel_pu238be.name=钚238-铍 RBMK反应堆中子源
|
||||
item.rbmk_fuel_ra226be.name=镭226-铍 RBMK反应堆中子源
|
||||
item.rbmk_fuel_thmeu.name=ThMEU RBMK反应堆中浓缩度铀-235导向钍燃料棒
|
||||
item.rbmk_fuel_thmeu.name=ThMEU RBMK反应堆中浓缩度铀-233导向钍燃料棒
|
||||
item.rbmk_fuel_ueu.name=NU RBMK反应堆未浓缩铀燃料棒
|
||||
item.rbmk_fuel_zfb_am_mix.name=ZFB 燃料级镅RBMK反应堆燃料棒
|
||||
item.rbmk_fuel_zfb_bismuth.name=ZFB 铋RBMK反应堆燃料棒
|
||||
@ -3792,12 +3858,16 @@ item.spider_milk.name=一瓶蜘蛛奶
|
||||
item.spongebob_macaroni.name=海绵宝宝通心粉
|
||||
item.stamp_357.name=.357马格南锻模
|
||||
item.stamp_44.name=.44马格南锻模
|
||||
item.stamp_50.name=大口径锻模
|
||||
item.stamp_9.name=小口径锻模
|
||||
item.stamp_50.name=大口径弹壳锻模
|
||||
item.stamp_9.name=小口径弹壳锻模
|
||||
item.stamp_desh_circuit.name=Desh电路板锻模
|
||||
item.stamp_desh_flat.name=Desh锻模
|
||||
item.stamp_desh_plate.name=Desh板锻模
|
||||
item.stamp_desh_wire.name=Desh电线锻模
|
||||
item.stamp_desh_357.name=.357马格南锻模 (Desh)
|
||||
item.stamp_desh_44.name=.44马格南锻模 (Desh)
|
||||
item.stamp_desh_50.name=大口径弹壳锻模(Desh)
|
||||
item.stamp_desh_9.name=小口径弹壳锻模(Desh)
|
||||
item.stamp_iron_circuit.name=铁质电路板锻模
|
||||
item.stamp_iron_flat.name=铁质锻模
|
||||
item.stamp_iron_plate.name=铁质板锻模
|
||||
@ -4110,7 +4180,7 @@ rbmk.screen.rod=控制:%s
|
||||
rbmk.screen.temp=温度:%s
|
||||
rbmk.screen.xenon=氙:%s
|
||||
shape.billet=钢坯
|
||||
shape.blade=刀身
|
||||
shape.blade=扇叶
|
||||
shape.blades=切碎机刀片
|
||||
shape.block=块
|
||||
shape.dust=粉末
|
||||
@ -4337,6 +4407,13 @@ tile.c4.name=C-4
|
||||
tile.cable_detector.name=红石电源开关
|
||||
tile.cable_diode.name=紫铜二极管
|
||||
tile.cable_switch.name=电源开关
|
||||
tile.capacitor_bus.name=电容总线
|
||||
tile.capacitor_bus.desc=电容器的输出方块$可以连成一条直线
|
||||
tile.capacitor_copper.name=铜电容
|
||||
tile.capacitor_gold.name=金电容
|
||||
tile.capacitor_niobium.name=铌电容
|
||||
tile.capacitor_tantalium.name=钽电容
|
||||
tile.capacitor.desc=输入:顶部$输出:底部,通过电容总线
|
||||
tile.charge_c4.name=炸药包
|
||||
tile.charge_dynamite.name=定时炸弹
|
||||
tile.charge_miner.name=定时采矿炸药
|
||||
@ -4543,6 +4620,7 @@ tile.furnace_steel.name=钢炉
|
||||
tile.furnace_steel.desc=非常大的熔炉,冶炼矿石时可提供加成。$这需要外部热源$传热率:ΔT*0.05tu/T$(Δ表示差值,T表示温度)
|
||||
tile.fusion_center.name=中心磁铁
|
||||
tile.fusion_conductor.name=超导磁体
|
||||
tile.fusion_conductor_welded.name=超导磁体(焊接)
|
||||
tile.fusion_core.name=聚变反应堆控制器
|
||||
tile.fusion_hatch.name=聚变反应堆端口
|
||||
tile.fusion_heater.name=等离子加热器
|
||||
@ -4574,6 +4652,8 @@ tile.glass_polonium.name=钋玻璃
|
||||
tile.glass_quartz.name=石英玻璃
|
||||
tile.glass_trinitite.name=核融玻璃
|
||||
tile.glass_uranium.name=铀玻璃
|
||||
tile.glyphid_base.name=异虫蜂巢块
|
||||
tile.glyphid_spawner.name=异虫蜂巢繁殖方块
|
||||
tile.gneiss_brick.name=页岩砖
|
||||
tile.gneiss_chiseled.name=錾制页岩砖
|
||||
tile.gneiss_tile.name=页岩瓷砖
|
||||
@ -4668,6 +4748,7 @@ tile.machine_coker.name=焦化装置
|
||||
tile.machine_coker.desc=炼焦,并产生各类流体副产品$需要外部热源$传热速率:ΔT*0.025 TU/T
|
||||
tile.machine_combine_factory.name=CMB炼钢炉
|
||||
tile.machine_combustion_engine.name=工业内燃机
|
||||
tile.machine_compressor.name=压缩机
|
||||
tile.machine_condenser.name=蒸汽冷凝器
|
||||
tile.machine_controller.name=反应堆遥控模块
|
||||
tile.machine_converter_he_rf.name=HE→RF转换器
|
||||
@ -4724,7 +4805,7 @@ tile.machine_radar.name=雷达
|
||||
tile.machine_radgen.name=辐射能量发电机
|
||||
tile.machine_radiolysis.name=放射性同位素热电机和辐射裂解室
|
||||
tile.machine_reactor.name=增殖反应堆
|
||||
tile.machine_reactor_small.name=核反应堆
|
||||
tile.machine_reactor_small.name=研究型反应堆
|
||||
tile.machine_refinery.name=炼油厂
|
||||
tile.machine_reix_mainframe.name=Rei-X主机[开发中]
|
||||
tile.machine_rtg_blue.name=对流发电机
|
||||
@ -4744,7 +4825,7 @@ tile.machine_schrabidium_battery.name=Sa326蓄电池
|
||||
tile.machine_schrabidium_transmutator.name=Sa326嬗变装置
|
||||
tile.machine_selenium.name=星型发动机
|
||||
tile.machine_shredder.name=粉碎机
|
||||
tile.machine_silex.name=激光同位素分离室
|
||||
tile.machine_silex.name=SILEX激光同位素分离室
|
||||
tile.machine_siren.name=警报器
|
||||
tile.machine_solar_boiler.name=太阳能锅炉
|
||||
tile.machine_solidifier.name=工业固化机
|
||||
@ -4755,7 +4836,7 @@ tile.machine_steam_engine.name=蒸汽机
|
||||
tile.machine_steam_engine.desc=效率:85%
|
||||
tile.machine_stirling.name=斯特林发电机
|
||||
tile.machine_stirling.desc=它将热量转化为能量。这需要外部热源$传热率:T*0.1 TU/T$最大进气量:300 TU/T$效率:50%
|
||||
tile.machine_stirling_steel.name=重型斯特林发动机
|
||||
tile.machine_stirling_steel.name=重型斯特林发电机
|
||||
tile.machine_stirling_steel.desc=它将热量转化为能量。这需要外部热源$使用更重的齿轮来支持更高的温度$传热率:T*0.1 TU/T$最大进气量:1500 TU/T$效率:50%
|
||||
tile.machine_storage_drum.name=核废料处理桶
|
||||
tile.machine_telelinker.name=炮塔ID管理器
|
||||
@ -4965,8 +5046,8 @@ tile.reinforced_light.name=强化萤石
|
||||
tile.reinforced_sand.name=强化砂石
|
||||
tile.reinforced_stone.name=致密石头
|
||||
tile.reinforced_stone_stairs.name=致密石头楼梯
|
||||
tile.reinforced_laminate.name=强化层压板
|
||||
tile.reinforced_laminate_pane.name=强化层压板隔板
|
||||
tile.reinforced_laminate.name=强化夹层玻璃
|
||||
tile.reinforced_laminate_pane.name=强化夹层隔板
|
||||
tile.rejuvinator.name=再生装置
|
||||
tile.residue.name=云残留
|
||||
tile.safe.name=保险箱
|
||||
|
||||
704
src/main/resources/assets/hbm/models/machines/chimney_brick.obj
Normal file
704
src/main/resources/assets/hbm/models/machines/chimney_brick.obj
Normal file
@ -0,0 +1,704 @@
|
||||
# Blender v2.79 (sub 0) OBJ File: 'chimney_brick.blend'
|
||||
# www.blender.org
|
||||
o Plane
|
||||
v -1.500000 0.000000 1.500000
|
||||
v 1.500000 0.000000 1.500000
|
||||
v -1.500000 0.000000 -1.500000
|
||||
v 1.500000 0.000000 -1.500000
|
||||
v -1.500000 2.000000 1.500000
|
||||
v 1.500000 2.000000 1.500000
|
||||
v -1.500000 2.000000 -1.500000
|
||||
v 1.500000 2.000000 -1.500000
|
||||
v 1.500000 0.687500 0.187500
|
||||
v 1.500000 0.312500 0.187500
|
||||
v 1.500000 0.687500 -0.187500
|
||||
v 1.500000 0.312500 -0.187500
|
||||
v 1.500000 0.875000 0.375000
|
||||
v 1.500000 0.125000 0.375000
|
||||
v 1.500000 0.875000 -0.375000
|
||||
v 1.500000 0.125000 -0.375000
|
||||
v 1.375000 0.312500 0.187500
|
||||
v 1.375000 0.125000 0.375000
|
||||
v 1.375000 0.312500 -0.187500
|
||||
v 1.375000 0.125000 -0.375000
|
||||
v 1.375000 0.687500 -0.187500
|
||||
v 1.375000 0.875000 -0.375000
|
||||
v 1.375000 0.687500 0.187500
|
||||
v 1.375000 0.875000 0.375000
|
||||
v 0.187500 0.687500 -1.500000
|
||||
v 0.187500 0.312500 -1.500000
|
||||
v -0.187500 0.687500 -1.500000
|
||||
v -0.187500 0.312500 -1.500000
|
||||
v 0.375000 0.875000 -1.500000
|
||||
v 0.375000 0.125000 -1.500000
|
||||
v -0.375000 0.875000 -1.500000
|
||||
v -0.375000 0.125000 -1.500000
|
||||
v 0.187500 0.312500 -1.375000
|
||||
v 0.375000 0.125000 -1.375000
|
||||
v -0.187500 0.312500 -1.375000
|
||||
v -0.375000 0.125000 -1.375000
|
||||
v -0.187500 0.687500 -1.375000
|
||||
v -0.375000 0.875000 -1.375000
|
||||
v 0.187500 0.687500 -1.375000
|
||||
v 0.375000 0.875000 -1.375000
|
||||
v -1.500000 0.687500 -0.187500
|
||||
v -1.500000 0.312500 -0.187500
|
||||
v -1.500000 0.687500 0.187500
|
||||
v -1.500000 0.312500 0.187500
|
||||
v -1.500000 0.875000 -0.375000
|
||||
v -1.500000 0.125000 -0.375000
|
||||
v -1.500000 0.875000 0.375000
|
||||
v -1.500000 0.125000 0.375000
|
||||
v -1.375000 0.312500 -0.187500
|
||||
v -1.375000 0.125000 -0.375000
|
||||
v -1.375000 0.312500 0.187500
|
||||
v -1.375000 0.125000 0.375000
|
||||
v -1.375000 0.687500 0.187500
|
||||
v -1.375000 0.875000 0.375000
|
||||
v -1.375000 0.687500 -0.187500
|
||||
v -1.375000 0.875000 -0.375000
|
||||
v -0.187500 0.687500 1.500000
|
||||
v -0.187500 0.312500 1.500000
|
||||
v 0.187500 0.687500 1.500000
|
||||
v 0.187500 0.312500 1.500000
|
||||
v -0.375000 0.875000 1.500000
|
||||
v -0.375000 0.125000 1.500000
|
||||
v 0.375000 0.875000 1.500000
|
||||
v 0.375000 0.125000 1.500000
|
||||
v -0.187500 0.312500 1.375000
|
||||
v -0.375000 0.125000 1.375000
|
||||
v 0.187500 0.312500 1.375000
|
||||
v 0.375000 0.125000 1.375000
|
||||
v 0.187500 0.687500 1.375000
|
||||
v 0.375000 0.875000 1.375000
|
||||
v -0.187500 0.687500 1.375000
|
||||
v -0.375000 0.875000 1.375000
|
||||
v 0.000000 2.000000 -1.250000
|
||||
v -0.478354 2.000000 -1.154849
|
||||
v -0.883883 2.000000 -0.883883
|
||||
v -1.154849 2.000000 -0.478354
|
||||
v -1.250000 2.000000 0.000000
|
||||
v -1.154849 2.000000 0.478354
|
||||
v -0.883883 2.000000 0.883883
|
||||
v -0.478354 2.000000 1.154849
|
||||
v -0.000000 2.000000 1.250000
|
||||
v 0.478354 2.000000 1.154850
|
||||
v 0.883883 2.000000 0.883884
|
||||
v 1.154849 2.000000 0.478354
|
||||
v 1.250000 2.000000 -0.000000
|
||||
v 1.154849 2.000000 -0.478355
|
||||
v 0.883883 2.000000 -0.883884
|
||||
v 0.478354 2.000000 -1.154850
|
||||
v 0.000000 13.000000 -0.750000
|
||||
v -0.287013 13.000000 -0.692910
|
||||
v -0.530330 13.000000 -0.530330
|
||||
v -0.692910 13.000000 -0.287013
|
||||
v -0.750000 13.000000 0.000000
|
||||
v -0.692910 13.000000 0.287013
|
||||
v -0.530330 13.000000 0.530330
|
||||
v -0.287013 13.000000 0.692910
|
||||
v -0.000000 13.000000 0.750000
|
||||
v 0.287012 13.000000 0.692910
|
||||
v 0.530330 13.000000 0.530330
|
||||
v 0.692910 13.000000 0.287013
|
||||
v 0.750000 13.000000 -0.000000
|
||||
v 0.692910 13.000000 -0.287013
|
||||
v 0.530330 13.000000 -0.530330
|
||||
v 0.287012 13.000000 -0.692910
|
||||
v -0.000000 13.000000 -0.500000
|
||||
v -0.191342 13.000000 -0.461940
|
||||
v -0.353553 13.000000 -0.353553
|
||||
v -0.461940 13.000000 -0.191342
|
||||
v -0.500000 13.000000 0.000000
|
||||
v -0.461940 13.000000 0.191342
|
||||
v -0.353553 13.000000 0.353553
|
||||
v -0.191342 13.000000 0.461940
|
||||
v -0.000000 13.000000 0.500000
|
||||
v 0.191342 13.000000 0.461940
|
||||
v 0.353553 13.000000 0.353554
|
||||
v 0.461940 13.000000 0.191342
|
||||
v 0.500000 13.000000 -0.000000
|
||||
v 0.461940 13.000000 -0.191342
|
||||
v 0.353553 13.000000 -0.353554
|
||||
v 0.191341 13.000000 -0.461940
|
||||
v -0.000000 11.000000 -0.500000
|
||||
v -0.191342 11.000000 -0.461940
|
||||
v -0.353553 11.000000 -0.353553
|
||||
v -0.461940 11.000000 -0.191342
|
||||
v -0.500000 11.000000 0.000000
|
||||
v -0.461940 11.000000 0.191342
|
||||
v -0.353553 11.000000 0.353553
|
||||
v -0.191342 11.000000 0.461940
|
||||
v -0.000000 11.000000 0.500000
|
||||
v 0.191342 11.000000 0.461940
|
||||
v 0.353553 11.000000 0.353554
|
||||
v 0.461940 11.000000 0.191342
|
||||
v 0.500000 11.000000 -0.000000
|
||||
v 0.461940 11.000000 -0.191342
|
||||
v 0.353553 11.000000 -0.353554
|
||||
v 0.191341 11.000000 -0.461940
|
||||
vt 0.272727 0.000000
|
||||
vt 0.000000 0.265193
|
||||
vt 0.000000 0.000000
|
||||
vt 0.000000 0.441989
|
||||
vt 0.272727 0.707182
|
||||
vt 0.000000 0.707182
|
||||
vt 0.181818 0.895028
|
||||
vt 0.130682 0.911602
|
||||
vt 0.113636 0.895028
|
||||
vt 0.130682 0.955801
|
||||
vt 0.119318 0.922652
|
||||
vt 0.130682 0.922652
|
||||
vt 0.164773 0.922652
|
||||
vt 0.176136 0.955801
|
||||
vt 0.164773 0.955801
|
||||
vt 0.090909 0.906077
|
||||
vt 0.102273 0.972376
|
||||
vt 0.090909 0.972376
|
||||
vt 0.204545 0.972376
|
||||
vt 0.193182 0.906077
|
||||
vt 0.204545 0.906077
|
||||
vt 0.113636 0.983425
|
||||
vt 0.164773 0.966851
|
||||
vt 0.181818 0.983425
|
||||
vt 0.193182 0.972376
|
||||
vt 0.176136 0.922652
|
||||
vt 0.102273 0.906077
|
||||
vt 0.181818 0.883978
|
||||
vt 0.113636 0.883978
|
||||
vt 0.113636 0.994475
|
||||
vt 0.181818 0.994475
|
||||
vt 0.164773 0.911602
|
||||
vt 0.130682 0.966851
|
||||
vt 0.181818 0.895028
|
||||
vt 0.130682 0.911602
|
||||
vt 0.113636 0.895028
|
||||
vt 0.130682 0.955801
|
||||
vt 0.119318 0.922652
|
||||
vt 0.130682 0.922652
|
||||
vt 0.164773 0.922652
|
||||
vt 0.176136 0.955801
|
||||
vt 0.164773 0.955801
|
||||
vt 0.090909 0.906077
|
||||
vt 0.102273 0.972376
|
||||
vt 0.090909 0.972376
|
||||
vt 0.204545 0.972376
|
||||
vt 0.193182 0.906077
|
||||
vt 0.204545 0.906077
|
||||
vt 0.113636 0.983425
|
||||
vt 0.164773 0.966851
|
||||
vt 0.181818 0.983425
|
||||
vt 0.193182 0.972376
|
||||
vt 0.176136 0.922652
|
||||
vt 0.102273 0.906077
|
||||
vt 0.181818 0.883978
|
||||
vt 0.113636 0.883978
|
||||
vt 0.113636 0.994475
|
||||
vt 0.181818 0.994475
|
||||
vt 0.164773 0.911602
|
||||
vt 0.130682 0.966851
|
||||
vt 0.181818 0.895028
|
||||
vt 0.130682 0.911602
|
||||
vt 0.113636 0.895028
|
||||
vt 0.130682 0.955801
|
||||
vt 0.119318 0.922652
|
||||
vt 0.130682 0.922652
|
||||
vt 0.164773 0.922652
|
||||
vt 0.176136 0.955801
|
||||
vt 0.164773 0.955801
|
||||
vt 0.090909 0.906077
|
||||
vt 0.102273 0.972376
|
||||
vt 0.090909 0.972376
|
||||
vt 0.204545 0.972376
|
||||
vt 0.193182 0.906077
|
||||
vt 0.204545 0.906077
|
||||
vt 0.113636 0.983425
|
||||
vt 0.164773 0.966851
|
||||
vt 0.181818 0.983425
|
||||
vt 0.193182 0.972376
|
||||
vt 0.176136 0.922652
|
||||
vt 0.102273 0.906077
|
||||
vt 0.181818 0.883978
|
||||
vt 0.113636 0.883978
|
||||
vt 0.113636 0.994475
|
||||
vt 0.181818 0.994475
|
||||
vt 0.164773 0.911602
|
||||
vt 0.130682 0.966851
|
||||
vt 0.181818 0.895028
|
||||
vt 0.130682 0.911602
|
||||
vt 0.113636 0.895028
|
||||
vt 0.130682 0.955801
|
||||
vt 0.119318 0.922652
|
||||
vt 0.130682 0.922652
|
||||
vt 0.164773 0.922652
|
||||
vt 0.176136 0.955801
|
||||
vt 0.164773 0.955801
|
||||
vt 0.090909 0.906077
|
||||
vt 0.102273 0.972376
|
||||
vt 0.090909 0.972376
|
||||
vt 0.204545 0.972376
|
||||
vt 0.193182 0.906077
|
||||
vt 0.204545 0.906077
|
||||
vt 0.113636 0.983425
|
||||
vt 0.164773 0.966851
|
||||
vt 0.181818 0.983425
|
||||
vt 0.193182 0.972376
|
||||
vt 0.176136 0.922652
|
||||
vt 0.102273 0.906077
|
||||
vt 0.181818 0.883978
|
||||
vt 0.113636 0.883978
|
||||
vt 0.113636 0.994475
|
||||
vt 0.181818 0.994475
|
||||
vt 0.164773 0.911602
|
||||
vt 0.130682 0.966851
|
||||
vt 0.272727 0.265193
|
||||
vt 0.102273 0.276243
|
||||
vt 0.102273 0.342541
|
||||
vt 0.272727 0.441989
|
||||
vt 0.102273 0.342541
|
||||
vt 0.272727 0.441989
|
||||
vt -0.000000 0.441989
|
||||
vt 0.272727 0.265193
|
||||
vt 0.102273 0.276243
|
||||
vt -0.000000 0.265193
|
||||
vt 0.170455 0.342541
|
||||
vt 0.170455 0.276243
|
||||
vt 0.170455 0.342541
|
||||
vt 0.102273 0.342541
|
||||
vt 0.272727 0.441989
|
||||
vt -0.000000 0.441989
|
||||
vt 0.272727 0.265193
|
||||
vt 0.170455 0.342541
|
||||
vt 0.170455 0.276243
|
||||
vt 0.102273 0.276243
|
||||
vt -0.000000 0.265193
|
||||
vt 0.272727 0.265193
|
||||
vt 0.102273 0.276243
|
||||
vt -0.000000 0.265193
|
||||
vt 0.170455 0.342541
|
||||
vt 0.272727 0.441989
|
||||
vt 0.102273 0.342541
|
||||
vt -0.000000 0.441989
|
||||
vt 0.630682 0.972376
|
||||
vt 0.607955 1.000000
|
||||
vt 0.602273 0.972376
|
||||
vt 0.647727 0.972376
|
||||
vt 0.670455 1.000000
|
||||
vt 0.653409 1.000000
|
||||
vt 0.721591 0.972376
|
||||
vt 0.698864 1.000000
|
||||
vt 0.693182 0.972376
|
||||
vt 0.767045 0.972376
|
||||
vt 0.744318 1.000000
|
||||
vt 0.738636 0.972376
|
||||
vt 0.812500 0.972376
|
||||
vt 0.789773 1.000000
|
||||
vt 0.784091 0.972376
|
||||
vt 0.857955 0.972376
|
||||
vt 0.835227 1.000000
|
||||
vt 0.829545 0.972376
|
||||
vt 0.903409 0.972376
|
||||
vt 0.880682 1.000000
|
||||
vt 0.875000 0.972376
|
||||
vt 0.948864 0.972376
|
||||
vt 0.926136 1.000000
|
||||
vt 0.920455 0.972376
|
||||
vt 0.994318 0.972376
|
||||
vt 0.971591 1.000000
|
||||
vt 0.965909 0.972376
|
||||
vt 0.312500 0.972376
|
||||
vt 0.289773 1.000000
|
||||
vt 0.284091 0.972376
|
||||
vt 0.329545 0.972376
|
||||
vt 0.352273 1.000000
|
||||
vt 0.335227 1.000000
|
||||
vt 0.375000 0.972376
|
||||
vt 0.397727 1.000000
|
||||
vt 0.380682 1.000000
|
||||
vt 0.420455 0.972376
|
||||
vt 0.443182 1.000000
|
||||
vt 0.426136 1.000000
|
||||
vt 0.465909 0.972376
|
||||
vt 0.488636 1.000000
|
||||
vt 0.471591 1.000000
|
||||
vt 0.511364 0.972376
|
||||
vt 0.534091 1.000000
|
||||
vt 0.517045 1.000000
|
||||
vt 0.585227 0.972376
|
||||
vt 0.562500 1.000000
|
||||
vt 0.556818 0.972376
|
||||
vt 0.090053 0.936803
|
||||
vt 0.070717 0.964941
|
||||
vt 0.036583 0.971543
|
||||
vt 0.119318 0.955801
|
||||
vt 0.119318 0.955801
|
||||
vt 0.119318 0.955801
|
||||
vt 0.119318 0.955801
|
||||
vt 0.170455 0.276243
|
||||
vt 0.170455 0.276243
|
||||
vt 0.625000 1.000000
|
||||
vt 0.676136 0.972376
|
||||
vt 0.715909 1.000000
|
||||
vt 0.761364 1.000000
|
||||
vt 0.806818 1.000000
|
||||
vt 0.852273 1.000000
|
||||
vt 0.897727 1.000000
|
||||
vt 0.943182 1.000000
|
||||
vt 0.988636 1.000000
|
||||
vt 0.306818 1.000000
|
||||
vt 0.357955 0.972376
|
||||
vt 0.403409 0.972376
|
||||
vt 0.448864 0.972376
|
||||
vt 0.494318 0.972376
|
||||
vt 0.539773 0.972376
|
||||
vt 0.579545 1.000000
|
||||
vt 0.020192 0.964941
|
||||
vt 0.007646 0.952742
|
||||
vt 0.000856 0.936803
|
||||
vt 0.000856 0.919551
|
||||
vt 0.007646 0.903612
|
||||
vt 0.020192 0.891413
|
||||
vt 0.036583 0.884810
|
||||
vt 0.054326 0.884810
|
||||
vt 0.070717 0.891413
|
||||
vt 0.083263 0.903612
|
||||
vt 0.090053 0.919551
|
||||
vt 0.083263 0.952742
|
||||
vt 0.054326 0.971543
|
||||
vt 0.681818 -0.000000
|
||||
vt 0.636364 -0.000000
|
||||
vt 0.727273 -0.000000
|
||||
vt 0.772727 -0.000000
|
||||
vt 0.818182 0.000000
|
||||
vt 0.863636 0.000000
|
||||
vt 0.909091 0.000000
|
||||
vt 0.954545 0.000000
|
||||
vt 1.000000 -0.000000
|
||||
vt 0.318182 0.000000
|
||||
vt 0.272727 0.000000
|
||||
vt 0.363636 0.000000
|
||||
vt 0.409091 -0.000000
|
||||
vt 0.454545 -0.000000
|
||||
vt 0.500000 0.000000
|
||||
vt 0.545455 0.000000
|
||||
vt 0.590909 0.000000
|
||||
vt 0.102273 0.707182
|
||||
vt 0.085227 0.883978
|
||||
vt 0.085227 0.707182
|
||||
vt 0.255682 0.707182
|
||||
vt 0.238636 0.883978
|
||||
vt 0.238636 0.707182
|
||||
vt 0.119318 0.707182
|
||||
vt 0.102273 0.883978
|
||||
vt 0.272727 0.707182
|
||||
vt 0.255682 0.883978
|
||||
vt 0.136364 0.707182
|
||||
vt 0.119318 0.883978
|
||||
vt 0.017045 0.707182
|
||||
vt 0.000000 0.883978
|
||||
vt -0.000000 0.707182
|
||||
vt 0.153409 0.707182
|
||||
vt 0.136364 0.883978
|
||||
vt 0.034091 0.707182
|
||||
vt 0.017045 0.883978
|
||||
vt 0.170455 0.707182
|
||||
vt 0.153409 0.883978
|
||||
vt 0.051136 0.707182
|
||||
vt 0.034091 0.883978
|
||||
vt 0.187500 0.707182
|
||||
vt 0.170455 0.883978
|
||||
vt 0.068182 0.707182
|
||||
vt 0.051136 0.883978
|
||||
vt 0.221591 0.707182
|
||||
vt 0.204545 0.883978
|
||||
vt 0.204545 0.707182
|
||||
vt 0.187500 0.883978
|
||||
vt 0.068182 0.883978
|
||||
vt 0.221591 0.883978
|
||||
vt 0.272727 0.883978
|
||||
vn 0.0000 -1.0000 0.0000
|
||||
vn 0.0000 1.0000 0.0000
|
||||
vn 1.0000 -0.0000 0.0000
|
||||
vn 0.0000 0.0000 1.0000
|
||||
vn 0.0000 0.0000 -1.0000
|
||||
vn -1.0000 0.0000 0.0000
|
||||
vn 0.9229 0.0454 -0.3823
|
||||
vn 0.9990 0.0454 0.0000
|
||||
vn 0.7064 0.0454 -0.7064
|
||||
vn 0.3823 0.0454 -0.9229
|
||||
vn -0.0000 0.0454 -0.9990
|
||||
vn -0.3823 0.0454 -0.9229
|
||||
vn -0.7064 0.0454 -0.7064
|
||||
vn -0.9229 0.0454 -0.3823
|
||||
vn -0.9990 0.0454 0.0000
|
||||
vn -0.9229 0.0454 0.3823
|
||||
vn -0.7064 0.0454 0.7064
|
||||
vn -0.3823 0.0454 0.9229
|
||||
vn 0.0000 0.0454 0.9990
|
||||
vn 0.3823 0.0454 0.9229
|
||||
vn 0.7064 0.0454 0.7064
|
||||
vn 0.9229 0.0454 0.3823
|
||||
vn -0.7071 0.0000 -0.7071
|
||||
vn -0.3827 0.0000 -0.9239
|
||||
vn 0.9239 0.0000 0.3827
|
||||
vn 0.7071 0.0000 0.7071
|
||||
vn -0.9239 0.0000 -0.3827
|
||||
vn 0.9239 0.0000 -0.3827
|
||||
vn -0.9239 0.0000 0.3827
|
||||
vn 0.7071 0.0000 -0.7071
|
||||
vn -0.7071 0.0000 0.7071
|
||||
vn 0.3827 0.0000 -0.9239
|
||||
vn -0.3827 0.0000 0.9239
|
||||
vn 0.3827 0.0000 0.9239
|
||||
s off
|
||||
f 3/1/1 2/2/1 1/3/1
|
||||
f 6/4/2 7/5/2 5/6/2
|
||||
f 20/7/3 17/8/3 18/9/3
|
||||
f 9/10/4 17/11/4 10/12/4
|
||||
f 12/13/5 21/14/5 11/15/5
|
||||
f 14/16/5 24/17/5 13/18/5
|
||||
f 10/12/3 11/15/3 9/10/3
|
||||
f 15/19/4 20/20/4 16/21/4
|
||||
f 24/22/3 21/23/3 22/24/3
|
||||
f 22/25/3 19/26/3 20/20/3
|
||||
f 17/11/3 24/17/3 18/27/3
|
||||
f 16/28/2 18/9/2 14/29/2
|
||||
f 13/30/1 22/24/1 15/31/1
|
||||
f 10/12/1 19/32/1 12/13/1
|
||||
f 11/15/2 23/33/2 9/10/2
|
||||
f 36/34/5 33/35/5 34/36/5
|
||||
f 25/37/3 33/38/3 26/39/3
|
||||
f 28/40/6 37/41/6 27/42/6
|
||||
f 30/43/6 40/44/6 29/45/6
|
||||
f 26/39/5 27/42/5 25/37/5
|
||||
f 31/46/3 36/47/3 32/48/3
|
||||
f 40/49/5 37/50/5 38/51/5
|
||||
f 38/52/5 35/53/5 36/47/5
|
||||
f 33/38/5 40/44/5 34/54/5
|
||||
f 32/55/2 34/36/2 30/56/2
|
||||
f 29/57/1 38/51/1 31/58/1
|
||||
f 26/39/1 35/59/1 28/40/1
|
||||
f 27/42/2 39/60/2 25/37/2
|
||||
f 52/61/6 49/62/6 50/63/6
|
||||
f 41/64/5 49/65/5 42/66/5
|
||||
f 44/67/4 53/68/4 43/69/4
|
||||
f 46/70/4 56/71/4 45/72/4
|
||||
f 42/66/6 43/69/6 41/64/6
|
||||
f 47/73/5 52/74/5 48/75/5
|
||||
f 56/76/6 53/77/6 54/78/6
|
||||
f 54/79/6 51/80/6 52/74/6
|
||||
f 49/65/6 56/71/6 50/81/6
|
||||
f 48/82/2 50/63/2 46/83/2
|
||||
f 45/84/1 54/78/1 47/85/1
|
||||
f 42/66/1 51/86/1 44/67/1
|
||||
f 43/69/2 55/87/2 41/64/2
|
||||
f 68/88/4 65/89/4 66/90/4
|
||||
f 57/91/6 65/92/6 58/93/6
|
||||
f 60/94/3 69/95/3 59/96/3
|
||||
f 62/97/3 72/98/3 61/99/3
|
||||
f 58/93/4 59/96/4 57/91/4
|
||||
f 63/100/6 68/101/6 64/102/6
|
||||
f 72/103/4 69/104/4 70/105/4
|
||||
f 70/106/4 67/107/4 68/101/4
|
||||
f 65/92/4 72/98/4 66/108/4
|
||||
f 64/109/2 66/90/2 62/110/2
|
||||
f 61/111/1 70/105/1 63/112/1
|
||||
f 58/93/1 67/113/1 60/94/1
|
||||
f 59/96/2 71/114/2 57/91/2
|
||||
f 4/115/3 14/116/3 2/2/3
|
||||
f 13/117/3 8/118/3 6/4/3
|
||||
f 45/119/6 5/120/6 7/121/6
|
||||
f 1/122/6 46/123/6 3/124/6
|
||||
f 45/119/6 3/124/6 46/123/6
|
||||
f 1/122/6 47/125/6 48/126/6
|
||||
f 13/117/3 2/2/3 14/116/3
|
||||
f 15/127/3 4/115/3 8/118/3
|
||||
f 29/128/5 7/129/5 8/130/5
|
||||
f 3/131/5 31/132/5 32/133/5
|
||||
f 3/131/5 30/134/5 4/135/5
|
||||
f 29/128/5 4/135/5 30/134/5
|
||||
f 2/136/4 62/137/4 1/138/4
|
||||
f 63/139/4 2/136/4 6/140/4
|
||||
f 61/141/4 6/140/4 5/142/4
|
||||
f 61/141/4 1/138/4 62/137/4
|
||||
f 101/143/2 116/144/2 100/145/2
|
||||
f 101/146/2 118/147/2 117/148/2
|
||||
f 103/149/2 118/150/2 102/151/2
|
||||
f 104/152/2 119/153/2 103/154/2
|
||||
f 89/155/2 120/156/2 104/157/2
|
||||
f 90/158/2 105/159/2 89/160/2
|
||||
f 91/161/2 106/162/2 90/163/2
|
||||
f 92/164/2 107/165/2 91/166/2
|
||||
f 93/167/2 108/168/2 92/169/2
|
||||
f 94/170/2 109/171/2 93/172/2
|
||||
f 94/173/2 111/174/2 110/175/2
|
||||
f 95/176/2 112/177/2 111/178/2
|
||||
f 96/179/2 113/180/2 112/181/2
|
||||
f 97/182/2 114/183/2 113/184/2
|
||||
f 98/185/2 115/186/2 114/187/2
|
||||
f 100/188/2 115/189/2 99/190/2
|
||||
f 133/191/2 135/192/2 121/193/2
|
||||
f 3/1/1 4/115/1 2/2/1
|
||||
f 6/4/2 8/118/2 7/5/2
|
||||
f 20/7/3 19/32/3 17/8/3
|
||||
f 9/10/4 23/194/4 17/11/4
|
||||
f 12/13/5 19/26/5 21/14/5
|
||||
f 14/16/5 18/27/5 24/17/5
|
||||
f 10/12/3 12/13/3 11/15/3
|
||||
f 15/19/4 22/25/4 20/20/4
|
||||
f 24/22/3 23/33/3 21/23/3
|
||||
f 22/25/3 21/14/3 19/26/3
|
||||
f 17/11/3 23/194/3 24/17/3
|
||||
f 16/28/2 20/7/2 18/9/2
|
||||
f 13/30/1 24/22/1 22/24/1
|
||||
f 10/12/1 17/8/1 19/32/1
|
||||
f 11/15/2 21/23/2 23/33/2
|
||||
f 36/34/5 35/59/5 33/35/5
|
||||
f 25/37/3 39/195/3 33/38/3
|
||||
f 28/40/6 35/53/6 37/41/6
|
||||
f 30/43/6 34/54/6 40/44/6
|
||||
f 26/39/5 28/40/5 27/42/5
|
||||
f 31/46/3 38/52/3 36/47/3
|
||||
f 40/49/5 39/60/5 37/50/5
|
||||
f 38/52/5 37/41/5 35/53/5
|
||||
f 33/38/5 39/195/5 40/44/5
|
||||
f 32/55/2 36/34/2 34/36/2
|
||||
f 29/57/1 40/49/1 38/51/1
|
||||
f 26/39/1 33/35/1 35/59/1
|
||||
f 27/42/2 37/50/2 39/60/2
|
||||
f 52/61/6 51/86/6 49/62/6
|
||||
f 41/64/5 55/196/5 49/65/5
|
||||
f 44/67/4 51/80/4 53/68/4
|
||||
f 46/70/4 50/81/4 56/71/4
|
||||
f 42/66/6 44/67/6 43/69/6
|
||||
f 47/73/5 54/79/5 52/74/5
|
||||
f 56/76/6 55/87/6 53/77/6
|
||||
f 54/79/6 53/68/6 51/80/6
|
||||
f 49/65/6 55/196/6 56/71/6
|
||||
f 48/82/2 52/61/2 50/63/2
|
||||
f 45/84/1 56/76/1 54/78/1
|
||||
f 42/66/1 49/62/1 51/86/1
|
||||
f 43/69/2 53/77/2 55/87/2
|
||||
f 68/88/4 67/113/4 65/89/4
|
||||
f 57/91/6 71/197/6 65/92/6
|
||||
f 60/94/3 67/107/3 69/95/3
|
||||
f 62/97/3 66/108/3 72/98/3
|
||||
f 58/93/4 60/94/4 59/96/4
|
||||
f 63/100/6 70/106/6 68/101/6
|
||||
f 72/103/4 71/114/4 69/104/4
|
||||
f 70/106/4 69/95/4 67/107/4
|
||||
f 65/92/4 71/197/4 72/98/4
|
||||
f 64/109/2 68/88/2 66/90/2
|
||||
f 61/111/1 72/103/1 70/105/1
|
||||
f 58/93/1 65/89/1 67/113/1
|
||||
f 59/96/2 69/104/2 71/114/2
|
||||
f 4/115/3 16/198/3 14/116/3
|
||||
f 13/117/3 15/127/3 8/118/3
|
||||
f 45/119/6 47/125/6 5/120/6
|
||||
f 1/122/6 48/126/6 46/123/6
|
||||
f 45/119/6 7/121/6 3/124/6
|
||||
f 1/122/6 5/120/6 47/125/6
|
||||
f 13/117/3 6/4/3 2/2/3
|
||||
f 15/127/3 16/198/3 4/115/3
|
||||
f 29/128/5 31/132/5 7/129/5
|
||||
f 3/131/5 7/129/5 31/132/5
|
||||
f 3/131/5 32/133/5 30/134/5
|
||||
f 29/128/5 8/130/5 4/135/5
|
||||
f 2/136/4 64/199/4 62/137/4
|
||||
f 63/139/4 64/199/4 2/136/4
|
||||
f 61/141/4 63/139/4 6/140/4
|
||||
f 61/141/4 5/142/4 1/138/4
|
||||
f 101/143/2 117/200/2 116/144/2
|
||||
f 101/146/2 102/201/2 118/147/2
|
||||
f 103/149/2 119/202/2 118/150/2
|
||||
f 104/152/2 120/203/2 119/153/2
|
||||
f 89/155/2 105/204/2 120/156/2
|
||||
f 90/158/2 106/205/2 105/159/2
|
||||
f 91/161/2 107/206/2 106/162/2
|
||||
f 92/164/2 108/207/2 107/165/2
|
||||
f 93/167/2 109/208/2 108/168/2
|
||||
f 94/170/2 110/209/2 109/171/2
|
||||
f 94/173/2 95/210/2 111/174/2
|
||||
f 95/176/2 96/211/2 112/177/2
|
||||
f 96/179/2 97/212/2 113/180/2
|
||||
f 97/182/2 98/213/2 114/183/2
|
||||
f 98/185/2 99/214/2 115/186/2
|
||||
f 100/188/2 116/215/2 115/189/2
|
||||
f 121/193/2 122/216/2 123/217/2
|
||||
f 123/217/2 124/218/2 125/219/2
|
||||
f 125/219/2 126/220/2 127/221/2
|
||||
f 127/221/2 128/222/2 129/223/2
|
||||
f 129/223/2 130/224/2 131/225/2
|
||||
f 131/225/2 132/226/2 133/191/2
|
||||
f 133/191/2 134/227/2 135/192/2
|
||||
f 135/192/2 136/228/2 121/193/2
|
||||
f 121/193/2 123/217/2 125/219/2
|
||||
f 125/219/2 127/221/2 121/193/2
|
||||
f 127/221/2 129/223/2 121/193/2
|
||||
f 129/223/2 131/225/2 121/193/2
|
||||
f 131/225/2 133/191/2 121/193/2
|
||||
s 1
|
||||
f 86/229/7 101/146/8 85/230/8
|
||||
f 87/231/9 102/151/7 86/229/7
|
||||
f 88/232/10 103/154/9 87/231/9
|
||||
f 73/233/11 104/157/10 88/232/10
|
||||
f 74/234/12 89/160/11 73/233/11
|
||||
f 75/235/13 90/163/12 74/234/12
|
||||
f 76/236/14 91/166/13 75/235/13
|
||||
f 77/237/15 92/169/14 76/236/14
|
||||
f 78/238/16 93/172/15 77/239/15
|
||||
f 79/240/17 94/173/16 78/238/16
|
||||
f 80/241/18 95/176/17 79/240/17
|
||||
f 81/242/19 96/179/18 80/241/18
|
||||
f 82/243/20 97/182/19 81/242/19
|
||||
f 83/244/21 98/185/20 82/243/20
|
||||
f 84/245/22 99/190/21 83/244/21
|
||||
f 85/230/8 100/145/22 84/245/22
|
||||
f 115/246/23 130/247/24 114/248/24
|
||||
f 108/249/25 123/250/26 107/251/26
|
||||
f 116/252/27 131/253/23 115/246/23
|
||||
f 109/254/3 124/255/25 108/249/25
|
||||
f 117/256/6 132/257/27 116/252/27
|
||||
f 110/258/28 125/259/3 109/260/3
|
||||
f 118/261/29 133/262/6 117/256/6
|
||||
f 111/263/30 126/264/28 110/258/28
|
||||
f 119/265/31 134/266/29 118/261/29
|
||||
f 112/267/32 127/268/30 111/263/30
|
||||
f 120/269/33 135/270/31 119/265/31
|
||||
f 113/271/5 128/272/32 112/267/32
|
||||
f 106/273/34 121/274/4 105/275/4
|
||||
f 105/275/4 136/276/33 120/269/33
|
||||
f 114/248/24 129/277/5 113/271/5
|
||||
f 107/251/26 122/278/34 106/273/34
|
||||
f 86/229/7 102/201/7 101/146/8
|
||||
f 87/231/9 103/149/9 102/151/7
|
||||
f 88/232/10 104/152/10 103/154/9
|
||||
f 73/233/11 89/155/11 104/157/10
|
||||
f 74/234/12 90/158/12 89/160/11
|
||||
f 75/235/13 91/161/13 90/163/12
|
||||
f 76/236/14 92/164/14 91/166/13
|
||||
f 77/237/15 93/167/15 92/169/14
|
||||
f 78/238/16 94/170/16 93/172/15
|
||||
f 79/240/17 95/210/17 94/173/16
|
||||
f 80/241/18 96/211/18 95/176/17
|
||||
f 81/242/19 97/212/19 96/179/18
|
||||
f 82/243/20 98/213/20 97/182/19
|
||||
f 83/244/21 99/214/21 98/185/20
|
||||
f 84/245/22 100/188/22 99/190/21
|
||||
f 85/230/8 101/143/8 100/145/22
|
||||
f 115/246/23 131/253/23 130/247/24
|
||||
f 108/249/25 124/255/25 123/250/26
|
||||
f 116/252/27 132/257/27 131/253/23
|
||||
f 109/254/3 125/279/3 124/255/25
|
||||
f 117/256/6 133/262/6 132/257/27
|
||||
f 110/258/28 126/264/28 125/259/3
|
||||
f 118/261/29 134/266/29 133/262/6
|
||||
f 111/263/30 127/268/30 126/264/28
|
||||
f 119/265/31 135/270/31 134/266/29
|
||||
f 112/267/32 128/272/32 127/268/30
|
||||
f 120/269/33 136/276/33 135/270/31
|
||||
f 113/271/5 129/277/5 128/272/32
|
||||
f 106/273/34 122/278/34 121/274/4
|
||||
f 105/275/4 121/274/4 136/276/33
|
||||
f 114/248/24 130/247/24 129/277/5
|
||||
f 107/251/26 123/250/26 122/278/34
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
Loading…
x
Reference in New Issue
Block a user