-
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.
Merge pull request #45 from Our-Magic-Journey/teleport
Teleport
- Loading branch information
Showing
51 changed files
with
461 additions
and
74 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
31 changes: 31 additions & 0 deletions
31
core/src/xyz/magicjourney/nebulaquest/entity/entities/EmergencySignal.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,31 @@ | ||
package xyz.magicjourney.nebulaquest.entity.entities; | ||
|
||
import java.util.Optional; | ||
|
||
import com.badlogic.gdx.assets.AssetManager; | ||
|
||
import xyz.magicjourney.nebulaquest.board.field.Field; | ||
import xyz.magicjourney.nebulaquest.entity.Entity; | ||
import xyz.magicjourney.nebulaquest.player.Player; | ||
|
||
public class EmergencySignal extends Entity { | ||
protected int value; | ||
protected Optional<Player> owner; | ||
|
||
public EmergencySignal() { | ||
super("Emergency\nsignal", ""); | ||
} | ||
|
||
@Override | ||
public void onEnter(Player player) { | ||
} | ||
|
||
@Override | ||
public void onPass(Player player) { | ||
} | ||
|
||
@Override | ||
public Field toField(AssetManager assets) { | ||
return new Field(this, "images/event", assets); | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
core/src/xyz/magicjourney/nebulaquest/entity/entities/Mine.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,26 @@ | ||
package xyz.magicjourney.nebulaquest.entity.entities; | ||
|
||
import com.badlogic.gdx.assets.AssetManager; | ||
|
||
import xyz.magicjourney.nebulaquest.board.field.Field; | ||
import xyz.magicjourney.nebulaquest.entity.Entity; | ||
import xyz.magicjourney.nebulaquest.player.Player; | ||
|
||
public class Mine extends Entity { | ||
public Mine() { | ||
super("Asteroid Mine", ""); | ||
} | ||
|
||
@Override | ||
public void onEnter(Player player) { | ||
} | ||
|
||
@Override | ||
public void onPass(Player player) { | ||
} | ||
|
||
@Override | ||
public Field toField(AssetManager assets) { | ||
return new Field(this, "images/mine", assets); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
core/src/xyz/magicjourney/nebulaquest/entity/entities/Nebula.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 @@ | ||
package xyz.magicjourney.nebulaquest.entity.entities; | ||
|
||
import com.badlogic.gdx.assets.AssetManager; | ||
|
||
import xyz.magicjourney.nebulaquest.board.field.BigField; | ||
import xyz.magicjourney.nebulaquest.board.field.Field; | ||
import xyz.magicjourney.nebulaquest.entity.Entity; | ||
import xyz.magicjourney.nebulaquest.player.Player; | ||
|
||
public class Nebula extends Entity { | ||
public Nebula() { | ||
super("Nebula", ""); | ||
} | ||
|
||
@Override | ||
public void onEnter(Player player) { | ||
} | ||
|
||
@Override | ||
public void onPass(Player player) { | ||
} | ||
|
||
@Override | ||
public Field toField(AssetManager assets) { | ||
return new BigField(this, "images/nebula", assets); | ||
} | ||
} |
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
27 changes: 27 additions & 0 deletions
27
core/src/xyz/magicjourney/nebulaquest/entity/entities/TeleportHub.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 @@ | ||
package xyz.magicjourney.nebulaquest.entity.entities; | ||
|
||
import com.badlogic.gdx.assets.AssetManager; | ||
|
||
import xyz.magicjourney.nebulaquest.board.field.BigField; | ||
import xyz.magicjourney.nebulaquest.board.field.Field; | ||
import xyz.magicjourney.nebulaquest.entity.Entity; | ||
import xyz.magicjourney.nebulaquest.player.Player; | ||
|
||
public class TeleportHub extends Entity { | ||
public TeleportHub() { | ||
super("Teleport Hub", ""); | ||
} | ||
|
||
@Override | ||
public void onEnter(Player player) { | ||
} | ||
|
||
@Override | ||
public void onPass(Player player) { | ||
} | ||
|
||
@Override | ||
public Field toField(AssetManager assets) { | ||
return new BigField(this, "images/hiper-hub", assets); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
core/src/xyz/magicjourney/nebulaquest/entity/entities/UnknownJump.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 @@ | ||
package xyz.magicjourney.nebulaquest.entity.entities; | ||
|
||
import com.badlogic.gdx.assets.AssetManager; | ||
|
||
import xyz.magicjourney.nebulaquest.board.field.BigField; | ||
import xyz.magicjourney.nebulaquest.board.field.Field; | ||
import xyz.magicjourney.nebulaquest.entity.Entity; | ||
import xyz.magicjourney.nebulaquest.player.Player; | ||
|
||
public class UnknownJump extends Entity { | ||
public UnknownJump() { | ||
super("UnknownJump", ""); | ||
} | ||
|
||
@Override | ||
public void onEnter(Player player) { | ||
} | ||
|
||
@Override | ||
public void onPass(Player player) { | ||
} | ||
|
||
@Override | ||
public Field toField(AssetManager assets) { | ||
return new BigField(this, "images/unknown-jump", assets); | ||
} | ||
} |
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.