import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class NapCapital extends Structure {


	int numberOfSoldier;	//兵士数
	int numberOfHorse;	//馬の数
	int numberOfArchery;	//弓の数

	public NapCapital(int x, int y, Board board, int nationality) {
		this.x = x;
		this.y = y;
		this.board = board;

		this.nationality = nationality;

		init();
	}

	public void init() {
		hp = 100;

		numberOfSoldier = 4800;	//兵士数
		numberOfHorse = 1000;	//馬の数
		numberOfArchery = 1000;	//弓の数
	}

	public void show(Graphics g, int x, int y, Component view) {
		uge.show(g, x,y, this, view);
	}

	/** この建築物を通過するには、どのくらいの移動力を消費するか。 */
	public int getRestraint() {

		return 1;
	}
}
