Fix: CavePaintings, Hunt
This commit is contained in:
@@ -11,13 +11,11 @@ import it.polimi.ingsw.gc14.Model.Player;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class CavePaintings extends EventCard {
|
||||
private int NUpper;
|
||||
private int NLower;
|
||||
private int NPrestigeRem; // NPrestigeLower
|
||||
private int NPrestigeMul; // NPrestigeUpper
|
||||
public CavePaintings(int Era, int NUpper, int NLower, int NPrestigeRem, int NPrestigeMul) {
|
||||
super(Era, EventType.CAVE_PAINTINGS);
|
||||
this.NUpper = NUpper;
|
||||
this.NLower = NLower;
|
||||
this.NPrestigeRem = NPrestigeRem;
|
||||
this.NPrestigeMul = NPrestigeMul;
|
||||
|
||||
@@ -12,9 +12,8 @@ import java.util.ArrayList;
|
||||
public class Hunt extends EventCard {
|
||||
int foodToAdd;
|
||||
int prestigeMultiplicator;
|
||||
public Hunt(int Era, int foodToAdd, int prestigeMultiplicator) {
|
||||
public Hunt(int Era, int prestigeMultiplicator) {
|
||||
super(Era, EventType.HUNT);
|
||||
this.foodToAdd = foodToAdd;
|
||||
this.prestigeMultiplicator = prestigeMultiplicator;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user