-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: modules/EchoPet/pom.xml
- Loading branch information
Showing
70 changed files
with
4,557 additions
and
37 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
24 changes: 24 additions & 0 deletions
24
.../API/src/main/java/com/dsh105/echopet/compat/api/entity/type/nms/IEntityEndermitePet.java
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,24 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.nms; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IEntityPet; | ||
|
||
public interface IEntityEndermitePet extends IEntityPet { | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
...s/API/src/main/java/com/dsh105/echopet/compat/api/entity/type/nms/IEntityGuardianPet.java
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,27 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.nms; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IEntityPet; | ||
|
||
public interface IEntityGuardianPet extends IEntityPet { | ||
|
||
boolean isElder(); | ||
|
||
void setElder(boolean flag); | ||
} |
28 changes: 28 additions & 0 deletions
28
...les/API/src/main/java/com/dsh105/echopet/compat/api/entity/type/nms/IEntityRabbitPet.java
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,28 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.nms; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IEntityAgeablePet; | ||
import org.bukkit.entity.Rabbit; | ||
|
||
public interface IEntityRabbitPet extends IEntityAgeablePet { | ||
|
||
Rabbit.Type getRabbitType(); | ||
|
||
void setRabbitType(Rabbit.Type type); | ||
} |
24 changes: 24 additions & 0 deletions
24
modules/API/src/main/java/com/dsh105/echopet/compat/api/entity/type/pet/IEndermitePet.java
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,24 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.pet; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IPet; | ||
|
||
public interface IEndermitePet extends IPet { | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
modules/API/src/main/java/com/dsh105/echopet/compat/api/entity/type/pet/IGuardianPet.java
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,27 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.pet; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IPet; | ||
|
||
public interface IGuardianPet extends IPet { | ||
|
||
boolean isElder(); | ||
|
||
void setElder(boolean flag); | ||
} |
28 changes: 28 additions & 0 deletions
28
modules/API/src/main/java/com/dsh105/echopet/compat/api/entity/type/pet/IRabbitPet.java
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,28 @@ | ||
/* | ||
* This file is part of EchoPet. | ||
* | ||
* EchoPet is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* EchoPet is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with EchoPet. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.dsh105.echopet.compat.api.entity.type.pet; | ||
|
||
import com.dsh105.echopet.compat.api.entity.IAgeablePet; | ||
import org.bukkit.entity.Rabbit; | ||
|
||
public interface IRabbitPet extends IAgeablePet { | ||
|
||
void setRabbitType(Rabbit.Type type); | ||
|
||
Rabbit.Type getRabbitType(); | ||
} |
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 |
---|---|---|
|
@@ -70,6 +70,7 @@ public enum DataMenuType { | |
HORSE_TYPE, | ||
HORSE_VARIANT, | ||
HORSE_MARKING, | ||
HORSE_ARMOUR | ||
HORSE_ARMOUR, | ||
RABBIT_TYPE | ||
} | ||
} |
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
Oops, something went wrong.