Package me.vudu.Conflict.Blocks

Source Code of me.vudu.Conflict.Blocks.DamageTowerBlock

package me.vudu.Conflict.Blocks;

import me.vudu.Conflict.ConflictPlugin;

import org.bukkit.plugin.Plugin;
import org.getspout.spoutapi.block.design.Texture;
import org.getspout.spoutapi.material.block.GenericCubeCustomBlock;

/**
* verwaltet einen Block, der den Damage in der eigenen Basis auf campende Gegner erh�ht
* @author vwendel
*
*/
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);
  }

 
 
}
TOP

Related Classes of me.vudu.Conflict.Blocks.DamageTowerBlock

TOP
Copyright © 2018 www.massapi.com. 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.