mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-03-15 19:30:51 -07:00
113 lines
3.1 KiB
Java
113 lines
3.1 KiB
Java
package mindustry.content;
|
|
|
|
import arc.graphics.*;
|
|
import mindustry.ctype.*;
|
|
import mindustry.type.*;
|
|
|
|
public class Items implements ContentList{
|
|
public static Item
|
|
scrap, copper, lead, graphite, coal, titanium, thorium, silicon, plastanium,
|
|
phaseFabric, surgeAlloy, sporePod, sand, blastCompound, pyratite, metaglass,
|
|
beryllium, fissileMatter, dormantCyst, tungsten;
|
|
|
|
@Override
|
|
public void load(){
|
|
copper = new Item("copper", Color.valueOf("d99d73")){{
|
|
hardness = 1;
|
|
cost = 0.5f;
|
|
alwaysUnlocked = true;
|
|
}};
|
|
|
|
lead = new Item("lead", Color.valueOf("8c7fa9")){{
|
|
hardness = 1;
|
|
cost = 0.7f;
|
|
alwaysUnlocked = true;
|
|
}};
|
|
|
|
metaglass = new Item("metaglass", Color.valueOf("ebeef5")){{
|
|
cost = 1.5f;
|
|
}};
|
|
|
|
graphite = new Item("graphite", Color.valueOf("b2c6d2")){{
|
|
cost = 1f;
|
|
}};
|
|
|
|
sand = new Item("sand", Color.valueOf("f7cba4")){{
|
|
alwaysUnlocked = true;
|
|
lowPriority = true;
|
|
}};
|
|
|
|
coal = new Item("coal", Color.valueOf("272727")){{
|
|
explosiveness = 0.2f;
|
|
flammability = 1f;
|
|
hardness = 2;
|
|
}};
|
|
|
|
titanium = new Item("titanium", Color.valueOf("8da1e3")){{
|
|
hardness = 3;
|
|
cost = 1f;
|
|
}};
|
|
|
|
thorium = new Item("thorium", Color.valueOf("f9a3c7")){{
|
|
explosiveness = 0.2f;
|
|
hardness = 4;
|
|
radioactivity = 1f;
|
|
cost = 1.1f;
|
|
}};
|
|
|
|
scrap = new Item("scrap", Color.valueOf("777777")){{
|
|
|
|
}};
|
|
|
|
silicon = new Item("silicon", Color.valueOf("53565c")){{
|
|
cost = 0.8f;
|
|
}};
|
|
|
|
plastanium = new Item("plastanium", Color.valueOf("cbd97f")){{
|
|
flammability = 0.1f;
|
|
explosiveness = 0.2f;
|
|
cost = 1.3f;
|
|
}};
|
|
|
|
phaseFabric = new Item("phase-fabric", Color.valueOf("f4ba6e")){{
|
|
cost = 1.3f;
|
|
radioactivity = 0.6f;
|
|
}};
|
|
|
|
surgeAlloy = new Item("surge-alloy", Color.valueOf("f3e979")){{
|
|
cost = 1.2f;
|
|
charge = 0.75f;
|
|
}};
|
|
|
|
sporePod = new Item("spore-pod", Color.valueOf("7457ce")){{
|
|
flammability = 1.15f;
|
|
}};
|
|
|
|
blastCompound = new Item("blast-compound", Color.valueOf("ff795e")){{
|
|
flammability = 0.4f;
|
|
explosiveness = 1.2f;
|
|
}};
|
|
|
|
pyratite = new Item("pyratite", Color.valueOf("ffaa5f")){{
|
|
flammability = 1.4f;
|
|
explosiveness = 0.4f;
|
|
}};
|
|
|
|
beryllium = new Item("beryllium", Color.valueOf("3a8f64")){{
|
|
hardness = 5;
|
|
cost = 1.3f;
|
|
}};
|
|
|
|
fissileMatter = new Item("fissile-matter", Color.valueOf("536631")){{
|
|
radioactivity = 1.5f;
|
|
}};
|
|
|
|
dormantCyst = new Item("dormant-cyst", Color.valueOf("df824d")){{
|
|
flammability = 0.1f;
|
|
}};
|
|
|
|
tungsten = new Item("tungsten", Color.valueOf("768a9a")){{
|
|
hardness = 5;
|
|
}};
|
|
}
|
|
}
|