Skip to content
Snippets Groups Projects
Commit 6930725a authored by Luca Nittscher's avatar Luca Nittscher :speech_balloon:
Browse files

Aktuellesmodel in intelliJ übertragen

parent 49b38117
No related branches found
No related tags found
No related merge requests found
No preview for this file type
package com.galaxytrucker.galaxytruckerreloaded.Model.Map;
import jdk.internal.util.xml.impl.Pair;
import java.util.HashMap;
public class Overworld {
private HashMap<Pair,Planet> planetMap;
public Overworld(int seed) {
planetMap = new HashMap<>();
}
}
package com.galaxytrucker.galaxytruckerreloaded.Model.Planet;
package com.galaxytrucker.galaxytruckerreloaded.Model.Map;
public abstract class Planet {
/** Planet name */
/** Map name */
private String name;
/** Horizontale Position auf der Karte */
private float posX;
......
package com.galaxytrucker.galaxytruckerreloaded.Model.Planet;
package com.galaxytrucker.galaxytruckerreloaded.Model.Map;
public enum PlanetEvent {
......
package com.galaxytrucker.galaxytruckerreloaded.Model;
import jdk.internal.util.xml.impl.Pair;
public class Ship {
/**
* HP
*/
private int hp;
private int health;
/**
* Resources are stored in ship
*/
private int money;
private int missiles;
private int fuel;
/**
* Energy to be distributed
*/
private int energy;
/**
* Shields that are currently active
*/
private int shieldCharge;
/**
* Total number of Shields that are powered. Possibly redundant through Shield.getEnergy/2
*/
private int maxShieldCharge;
/**
* chance for the ship to dodge incoming attacks
*/
private float evasion;
/**
* X and Y coordinates on the map
*/
private Pair position;
/**
* Shields
* time needed until position can be changed again
*/
private int shields;
private int FTLcharge;
/**
* Take damage
......
package com.galaxytrucker.galaxytruckerreloaded.Model.ShipLayout;
public abstract class Room {
public abstract class Section {
/**
* Höhe des Raumes. Räume sind immer rechteckig.
*/
......
package com.galaxytrucker.galaxytruckerreloaded.Model.ShipLayout;
public abstract class System extends Room {
public abstract class System extends Section {
private int energy;
private int maxEnergy;
private int damage;
......
......@@ -14,6 +14,10 @@ public abstract class Weapon {
private int missileCost;
private float dropchance;
private int crewdamage;
/**
* Amount of shields ignored by attack
*/
private int piercing;
/**
* How many projectiles are fired per burst
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment