-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: effects color
- Loading branch information
Showing
24 changed files
with
132 additions
and
17 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
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectInfestedType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectInfestedType extends AbstractEffectType { | ||
public static final EffectInfestedType INFESTED_TYPE = new EffectInfestedType(); | ||
|
||
private EffectInfestedType() { | ||
super(35, new Identifier("minecraft:infested"), new Color(140, 155, 140), true); | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectOozingType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectOozingType extends AbstractEffectType { | ||
public static final EffectOozingType OOZING_TYPE = new EffectOozingType(); | ||
|
||
private EffectOozingType() { | ||
super(34, new Identifier("minecraft:oozing"), new Color(153, 255, 163), true); | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectRaidOmenType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectRaidOmenType extends AbstractEffectType { | ||
public static final EffectRaidOmenType RAID_OMEN_TYPE = new EffectRaidOmenType(); | ||
|
||
private EffectRaidOmenType() { | ||
super(36, new Identifier("minecraft:raid_omen"), new Color(222, 64, 88)); | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectTrialOmenType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectTrialOmenType extends AbstractEffectType { | ||
public static final EffectTrialOmenType TRIAL_OMEN_TYPE = new EffectTrialOmenType(); | ||
|
||
private EffectTrialOmenType() { | ||
super(31, new Identifier("minecraft:trial_omen"), new Color(22, 166, 166)); | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectWeavingType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectWeavingType extends AbstractEffectType { | ||
public static final EffectWeavingType WEAVING_OMEN_TYPE = new EffectWeavingType(); | ||
|
||
private EffectWeavingType() { | ||
super(33, new Identifier("minecraft:weaving"), new Color(120, 105, 90), true); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
Allay-API/src/main/java/org/allaymc/api/entity/effect/type/EffectWindChargedType.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,19 @@ | ||
package org.allaymc.api.entity.effect.type; | ||
|
||
import org.allaymc.api.entity.effect.AbstractEffectType; | ||
import org.allaymc.api.utils.Identifier; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* Allay Project 23/06/2024 | ||
* | ||
* @author IWareQ | ||
*/ | ||
public class EffectWindChargedType extends AbstractEffectType { | ||
public static final EffectWindChargedType WIND_CHARGED_TYPE = new EffectWindChargedType(); | ||
|
||
private EffectWindChargedType() { | ||
super(32, new Identifier("minecraft:wind_charged"), new Color(189, 201, 255), true); | ||
} | ||
} |
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