public Nuclearbombmonster(double lv, Nuclearbomb load) : base(lv) { this.load = load; name = "Nuclearbombmonster"; calcstats(); HP = mxHP; }
public Nuclearbomb make_nuclearbomb(List <string> fissionfuelperstage, List <List <string> > fusionfuelsperstage, List <string> mainTamperperstage, List <bool> useDTBoostingperstage, double bombmass, List <string> shapeperstage) { Nuclearbomb bomb = new Nuclearbomb(); for (int i = 0; i < shapeperstage.Count; i++) { if (i == 0) { bomb.KT +=; } else { } } return(bomb); }
public void selfdestroy() { load.attack(px, py); load = null; checkdeath(); }