Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanNikaloasTheFirst committed Dec 2, 2022
0 parents commit d79f967
Show file tree
Hide file tree
Showing 9 changed files with 465 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### IntelliJ IDEA ###
out/
!**/src/main/**/out/
!**/src/test/**/out/

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions pokemon.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
81 changes: 81 additions & 0 deletions src/Pokemon.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
public class Pokemon {
private String name;
private String type;
private int healthPoints;

private String moveOne;

private String moveTwo;

private String moveThree;


public Pokemon() {
name = "null";
type = "null";
healthPoints = 0;
moveOne = "null";
moveTwo = "null";
moveThree = "null";

}

public Pokemon(String Name,String Type,int HealthPoints,String MoveOne, String MoveTwo, String MoveThree){
name = Name;
type = Type;
healthPoints = HealthPoints;
moveOne = MoveOne;
moveTwo = MoveTwo;
moveThree = MoveThree;

}
// Getters
public String getName()
{
return name;
}
public String getType()
{
return type;
}
public int getHealthPoints()
{
return healthPoints;
}
public String getMoveOne()
{
return moveOne;
}
public String getMoveTwo()
{
return moveTwo;
}
public String getMoveThree()
{
return moveThree;
}

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

public void setType(String type){
this.type = type;
}

public void setHealthPoints(int HealthPoints){
this.healthPoints = HealthPoints;
}
public void setMoveOne(String MoveOne){
this.moveOne = MoveOne;
}
public void setMoveTwo(String MoveTwo){
this.moveTwo = MoveTwo;
}
public void setMoveThree(String MoveThree){
this.moveTwo = MoveThree;
}


}
Loading

0 comments on commit d79f967

Please sign in to comment.