面向对象练习坦克大兵游戏

游戏玩家(名称,生命值,等级),坦克,大兵类,玩家之间可以相互攻击,大兵拥有武器,用枪弹和反坦克炮弹,造成攻击不同,坦克攻击值固定,请设计玩家互相攻击的过程,实现坦克A大兵,大兵打坦克,大兵用枪打坦克,大兵用反坦克导弹打坦克。

bash 复制代码
大兵被坦克攻击了,从200到0
坦克被反坦克炮弹攻击了,从1000到500
坦克被手枪攻击了,从500到400
java 复制代码
package com;

public class Tank extends Player{

	public Tank() {
			this.setName("坦克");
			this.setBlood(1000);
			this.setAtackvalue(200);
	}
	
}
java 复制代码
package com;

public class Soldier extends Player {

	private Weapon wp;
	
	public Soldier() {
		this.setName("大兵");
		this.setAtackvalue(20);
		this.setBlood(200);
		
	}
	
	public void setWeapon(Weapon wp ) {
		
		this.wp=wp;
	}
	
	public void fire(Player target) {
	
		if(wp==null) {
			
			int blood0,blood;
			blood0=target.getBlood();
			blood=blood0-this.getAtackvalue();
			target.setBlood(blood);
			System.out.println(target.getName()+"被"+this.getName()+"攻击了,从"+blood0+"到"+target.getBlood());
			
			
		}
		else {			
			wp.fire(target);
		}
	}
	
	
}
java 复制代码
package com;

public class Player {

	private String name; // 名称
	private int blood ; // 生命值
	private int level; // 等级默认为1,所有输出值为等级x数值
	private int atackvalue;  //攻击值
	
	public int getAtackvalue() {
		return atackvalue;
	}
	public void setAtackvalue(int atackvalue) {
		this.atackvalue = atackvalue;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getBlood() {
		return blood;
	}
	public void setBlood(int blood) {
		this.blood = blood;
	}
	public int getLevel() {
		return level;
	}
	public void setLevel(int level) {
		this.level = level;
	}
	
	public void fire(Player target) {
		int blood,blood0;
		blood0=target.getBlood();
		blood =blood0 - this.getAtackvalue();
		target.setBlood(blood);
        System.out.println(target.getName()+"被"+this.getName()+"攻击了,从"+blood0+"到"+target.getBlood());
	}
	
	
	

}
java 复制代码
package com;

public  class Weapon {
	private String name ; //武器名称
	private  int atackvalue;  //攻击值
		
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAtackvalue() {
		return atackvalue;
	}

	public void setAtackvalue(int atackvalue) {
		this.atackvalue = atackvalue;
	}

	public void fire(Player target) {
		int blood0,blood;
		blood0=target.getBlood();
		blood =blood0  - this.getAtackvalue();
		target.setBlood(blood);

		System.out.println(target.getName()+"被"+this.getName()+"攻击了,从"+blood0+"到"+target.getBlood());
	}



	
}
java 复制代码
package com;

public class Bullet extends Weapon {

	public Bullet() {

		this.setAtackvalue(100);
		this.setName("手枪");
	}




}
java 复制代码
package com;

public class Shell extends Weapon {

	public Shell() {

		this.setAtackvalue(500);
		this.setName("反坦克炮弹");
	}


	
	
	

}
java 复制代码
package com;

public class Test {

	public static void main(String[] args) {
		 	
      Tank tk=new Tank();
      Soldier s=new Soldier();
      tk.fire(s);
      
      Soldier s2=new Soldier();
      Shell shell=new Shell();
      s2.setWeapon(shell);
      s2.fire(tk);
      Bullet bl=new Bullet();
      s2.setWeapon(bl);
      s2.fire(tk);

		
		
	}

}
相关推荐
Bugabooo12 分钟前
python打卡DAY22
开发语言·python
wjm04100613 分钟前
C++中的容器
开发语言·c++
caihuayuan415 分钟前
鸿蒙AI开发:10-多模态大模型与原子化服务的集成
java·大数据·sql·spring·课程设计
张哈大27 分钟前
【 Redis | 实战篇 秒杀优化 】
java·数据库·redis·笔记·缓存
低维歌者33 分钟前
python训练营day27
java·开发语言·python
大帅不是我42 分钟前
Python多进程编程执行任务
java·前端·python
Fu_lucas1 小时前
Python Logging 模块完全指南
开发语言·python
Eiceblue1 小时前
Python 在Excel单元格中应用多种字体样式
开发语言·vscode·python·pycharm·excel
purrrew2 小时前
【Java ee初阶】jvm(3)
java·jvm
Hello World......3 小时前
互联网大厂Java面试:从Spring到微服务的全面探讨
java·spring boot·spring cloud·微服务·面试·技术栈·互联网大厂