-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Taoi
committed
Apr 26, 2024
1 parent
e9c3d92
commit 4d37312
Showing
6 changed files
with
150 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package com.example.proj2.Classes; | ||
|
||
public class Item { | ||
String Name; | ||
double AD = 0; | ||
double AP = 0; | ||
double HP = 0; | ||
double MR = 0; | ||
double ARMOR = 0; | ||
double Haste = 0; | ||
|
||
public String getName() { | ||
return Name; | ||
} | ||
|
||
public void setName(String name) { | ||
Name = name; | ||
} | ||
|
||
public double getAD() { | ||
return AD; | ||
} | ||
|
||
public void setAD(double AD) { | ||
this.AD = AD; | ||
} | ||
|
||
public double getAP() { | ||
return AP; | ||
} | ||
|
||
public void setAP(double AP) { | ||
this.AP = AP; | ||
} | ||
|
||
public double getHP() { | ||
return HP; | ||
} | ||
|
||
public void setHP(double HP) { | ||
this.HP = HP; | ||
} | ||
|
||
public double getMR() { | ||
return MR; | ||
} | ||
|
||
public void setMR(double MR) { | ||
this.MR = MR; | ||
} | ||
|
||
public double getARMOR() { | ||
return ARMOR; | ||
} | ||
|
||
public void setARMOR(double ARMOR) { | ||
this.ARMOR = ARMOR; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters