import java.util.*;
import javax.swing.*;
import java.io.*;
public class Superstars{
/*
public ArrayList superstar ;
public CreateWrestler temp;
CreateWrestler newWres;
public void addSuperstar() throws IOException, FileNotFoundException{
superstar = new ArrayList();
temp = new CreateWrestler();
temp.setName(JOptionPane.showInputDialog("Name: "));
temp.setHeight(JOptionPane.showInputDialog("Format this way(6'6\")Height: "));
temp.setWeight(Integer.parseInt(JOptionPane.showInputDialog("Weight: ")));
temp.setFrom(JOptionPane.showInputDialog("From: "));
superstar.add(temp);
File myFile = new File("superstar.dat");
FileOutputStream myFileOutputStream = new FileOutputStream(myFile);
ObjectOutputStream myObjectOutputStream = new ObjectOutputStream(myFileOutputStream);
myObjectOutputStream.writeObject(superstar);
superstarReader();
}*/
public String getTrippleH(){
String trippleH = "General Information"+"\nHeight: 6'4\""+"\nWeight: 255 lbs."+"\nFrom: Greenwich, Conn."+
"\nSignature Move: Pedigree"+"\nCareer Highlights: WWE Champion, World Heavyweight Champion,"+"\nIntercontinental Champion, Unified WWE Tag Team Champion,"+
"\nWorld Tag Team Champion, European Champion, 1997 King of the Ring,"+"\n2002 Royal Rumble Match winner, WWE Chief Operating Officer.";
return trippleH;
}
public String getStoneCold(){
String stoneCold = "General Information\n"+"Height: 6'2\""+"\nWeight: 252 lbs"+"\nFrom: Victoria, Texas"+
"\nSignature Move: Stone Cold Stunner"+"\nCareer Highlights: WWE Champion, Intercontinental Champion,"+"\nWorld Tag Team Champion, King of the Ring (1996)"+
"\nRoyal Rumble winner (1997, 1998, 2001), WCW U.S. Champion"+"\nWCW Tag Team Champion, WWE Hall of Fame Class of 2009\n"+
"\nQuote: \"And thats the bottom line because Stone Cold said so!\"";
return stoneCold;
}
public String getTheRock(){
String theRock = "General Information"+"\nHeight: 6'5\""+"\nWeight: 260 lbs"+"\nFrom: Miami, Fla"+
"\nSignature Move: Rock Bottom, People's Elbow"+"\nCareer Highlights: WWE Championship, Intercontinental Champion, \nWorld Tag Team Champion, Royal Rumble winner (2000)"+
"\nWCW Champion\n"+"\nQuote: \"If you smell what the Rock is cooking\"";
return theRock;
}
public String getTheUndertaker(){
String theUndertaker = "General Information"+"\nHeight: 6'10\""+"\nWeight: 299 lbs"+"\nFrom: Death Valley"+
"\nSignature Move: Chokeslam, Tombstone, Last Ride"+"\nCareer Highlights: WWE Champion, World Heavyweight Champion,"+
"\nWorld Tag Team Champion, WCW Tag Team Champion,"+"\nHardcore Champion, undefeated at WrestleMania (20-0). ";
return theUndertaker;
}
public String getRyback(){
String ryback = "General Information"+"\nHeight: 6'3\""+"\nWeight: 291 lbs."+"\nFrom: Sin City"+
"\nSignature Move: Shell Shocked\n"+"\nQuotes:\"FEED ME MORE\""+"\n\"FINISH IT....DONE!!!!\"";
return ryback;
}
public String getCMPunk(){
String cmPunk = "General Information"+"\n"+"\nHeight: 6'2\""+"\nWeight: 218 lbs"+"\nFrom: Chicago, IL"+
"\nSignature Move: G.T.S. (Go to Sleep), Anaconda Vise"+"\nCareer Highlights: WWE Champion; World Heavyweight Champion"+
"\nECW Champion; World Tag Team Champion"+"\nIntercontinental Champion, Raw commentator.";
return cmPunk;
}
public String getJohnCena(){
String johnCena = "General Information"+"\nHeight: 6'1\""+"\nWeight: 251 lbs"+"\nFrom: West Newbury, Mass"+
"\nSignature Move: Attitude Adjustment, STF"+"\nCareer Highlights: World Heavyweight Champion, WWE Champion,"+"\nU.S. Champion, World Tag Team Champion"+
"\nWWE Tag Team Champion, 2008 Royal Rumble Winner,"+"\n2012 Money in the Bank Ladder Match winner for a WWE Championship Contract\n "+"\nQuuote: \"The champ is here\"";
return johnCena;
}
public String getSheamus(){
String sheamus = "General Information"+"\nHeight: 6'4\""+"\nWeight: 267 lbs"+"\nFrom: Dublin, Ireland"+
"\nSignature Move: High Cross, Brogue Kick, Irish Curse"+"\nCareer Highlights: WWE Champion, U.S. Champion,"+
"\n2010 King of the Ring, 2012 Royal Rumble Match winner"+"\nWorld Heavyweight Champion";
return sheamus;
}[COLOR="Silver"]
[/COLOR]