Loadout for non-zones maps (#535)

* Loadout for non-zones maps

* Requested Changes

* Fixed Import

* Requested Changes #2
This commit is contained in:
Franciszek Zaranowicz
2019-07-13 18:28:04 +02:00
committed by Anuken
parent ad39a51fe8
commit f2d67d0a5d
6 changed files with 84 additions and 23 deletions

View File

@@ -2,7 +2,9 @@ package io.anuke.mindustry.game;
import io.anuke.annotations.Annotations.Serialize;
import io.anuke.arc.collection.Array;
import io.anuke.mindustry.content.Items;
import io.anuke.mindustry.io.JsonIO;
import io.anuke.mindustry.type.ItemStack;
import io.anuke.mindustry.type.Zone;
/**
@@ -63,6 +65,8 @@ public class Rules{
public boolean attackMode = false;
/** Whether this is the editor gamemode. */
public boolean editor = false;
/** Starting items put in cores */
public Array<ItemStack> loadout = Array.with(ItemStack.with(Items.copper, 200));
/** Copies this ruleset exactly. Not very efficient at all, do not use often. */
public Rules copy(){