forked from leafreynolds/cosmere
-
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
1 parent
f4ea6b4
commit d82d85e
Showing
10 changed files
with
199 additions
and
2 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeAbrasion.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,21 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeAbrasion extends SurgebindingBase | ||
{ | ||
public SurgeAbrasion(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//change frictional force | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeAdhesion.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 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import leaf.cosmere.utils.helpers.LogHelper; | ||
import net.minecraft.entity.player.PlayerEntity; | ||
import net.minecraft.item.ItemStack; | ||
import net.minecraftforge.event.entity.living.LivingHurtEvent; | ||
import net.minecraftforge.eventbus.api.SubscribeEvent; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeAdhesion extends SurgebindingBase | ||
{ | ||
public SurgeAdhesion(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
//bind things together | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeCohesion.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,22 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeCohesion extends SurgebindingBase | ||
{ | ||
public SurgeCohesion(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
// alter objects at a molecular level? | ||
// moving through stone? | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeDivision.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,20 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeDivision extends SurgebindingBase | ||
{ | ||
public SurgeDivision(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
//power over destruction and decay | ||
|
||
} |
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
21 changes: 21 additions & 0 deletions
21
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeIllumination.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,21 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeIllumination extends SurgebindingBase | ||
{ | ||
public SurgeIllumination(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//illusions | ||
|
||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeProgression.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,21 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeProgression extends SurgebindingBase | ||
{ | ||
public SurgeProgression(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//alter growth and healing | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeTension.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,23 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeTension extends SurgebindingBase | ||
{ | ||
public SurgeTension(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//repair inanimate objects for bondsmiths? | ||
|
||
//making things rigid. | ||
|
||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeTransformation.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,21 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeTransformation extends SurgebindingBase | ||
{ | ||
public SurgeTransformation(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//soulcasting, changing one thing into another | ||
|
||
} |
21 changes: 21 additions & 0 deletions
21
src/main/java/leaf/cosmere/manifestation/surgebinding/SurgeTransportation.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,21 @@ | ||
/* | ||
* File created ~ 24 - 4 - 2021 ~ Leaf | ||
*/ | ||
|
||
package leaf.cosmere.manifestation.surgebinding; | ||
|
||
import leaf.cosmere.Cosmere; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber(modid = Cosmere.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) | ||
public class SurgeTransportation extends SurgebindingBase | ||
{ | ||
public SurgeTransportation(int color) | ||
{ | ||
super(color); | ||
} | ||
|
||
|
||
//travel between realms or locations | ||
|
||
} |