This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
8eedadd
commit ed2c502
Showing
12 changed files
with
397 additions
and
11 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
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,42 @@ | ||
package fr.mineral.Utils.Player; | ||
|
||
import org.bukkit.Material; | ||
|
||
public class ArmorItem { | ||
private int type; | ||
private String auto_equip; | ||
private String when; | ||
private Material item_name; | ||
|
||
public void setType(int type) { | ||
this.type = type; | ||
} | ||
|
||
public void setAuto_equip(String auto_equip) { | ||
this.auto_equip = auto_equip; | ||
} | ||
|
||
public void setWhen(String when) { | ||
this.when = when; | ||
} | ||
|
||
public void setItem_name(Material item_name) { | ||
this.item_name = item_name; | ||
} | ||
|
||
public int getType() { | ||
return type; | ||
} | ||
|
||
public String getAuto_equip() { | ||
return auto_equip; | ||
} | ||
|
||
public String getWhen() { | ||
return when; | ||
} | ||
|
||
public Material getItem_name() { | ||
return item_name; | ||
} | ||
} |
Oops, something went wrong.