Package org.getspout.spoutapi.block.design

Examples of org.getspout.spoutapi.block.design.Texture


*/
public class DefenseTowerBlock extends GenericCubeCustomBlock{

  public DefenseTowerBlock(Plugin plugin) {   
     super(plugin, "DefenseTowerBrick", ConflictPlugin.DEFENSETOWERBLOCKID, "", 16);
     this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/defblock.png", 16, 16, 16));
     this.setHardness(ConflictPlugin.deffBlockHardness);
  }
View Full Code Here


 
  public VirusBlock(ConflictPlugin plugin) {
     
      super(plugin, "VirusBlock", ConflictPlugin.VIRUSBLOCKID, "", 16);
      this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/stonebrick.png", 16, 16, 16));  
  }
View Full Code Here

public class RadarBlock extends GenericCubeCustomBlock{
 
 
  public RadarBlock(Plugin plugin){
    super(plugin, "RadarBlock", ConflictPlugin.RADARBLOCKID, "", 16)
    this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/radarblock2.png", 16, 16, 16));
    this.setHardness(ConflictPlugin.deffBlockHardness);
  }
View Full Code Here

*/
public class DamageTowerBlock extends GenericCubeCustomBlock{

  public DamageTowerBlock(Plugin plugin) {   
     super(plugin, "DamageTowerBrick", ConflictPlugin.DAMAGETOWERBLOCKID, "", 16);
     this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/offblock.png", 16, 16, 16));
     this.setHardness(ConflictPlugin.deffBlockHardness);
  }
View Full Code Here

   */
  public BaseBlock(ConflictPlugin plugin, String baseColor) {
     
        super(plugin, "BaseBlock"+baseColor, ConflictPlugin.BASEBLOCKID, "", 16);
        this.plugin=plugin;
        this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/base"+baseColor+"16x16.png", 16, 16, 16));
        this.setHardness(60000);
        this.color=baseColor;
       
    }
View Full Code Here

   */
  public ArtifactBlock(Plugin plugin, int stage, int grow) {
   
        super(plugin, "ArtifactBlock0"+Integer.toString(stage)+"_0"+Integer.toString(grow), ConflictPlugin.ARTIFACTBLOCKID, "", 16);
      
        this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/step"+stage+"_"+grow+".png", 16, 16, 16));
        this.stage = stage;
        this.grow  = grow;
        this.setHardness(ConflictPlugin.artBlockHardness);
        this.timeForGrow=1000*ConflictPlugin.blockGrowTime;
        ConflictPlugin.allArtifacts.add(this);
View Full Code Here

public class VuduBrick extends GenericCubeCustomBlock{

 
  public VuduBrick(Plugin plugin) {
      super(plugin, "VuduBrick", ConflictPlugin.VUDUBRICKID, "", 16);
      this.getBlockDesign().setTexture(plugin, new Texture(plugin, "http://tossat.de/~mcbukkit/images/vudubrick.png", 16, 16, 16));
      this.setHardness(ConflictPlugin.vuduBrickHardness);
  }
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.block.design.Texture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.