Bruteforce crater emoji

This commit is contained in:
Patrick 'Quezler' Mounier
2020-01-27 18:40:40 +01:00
parent 9a289c83e6
commit 883a2a9b59
9 changed files with 855 additions and 821 deletions

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 481 B

+1
View File
@@ -219,3 +219,4 @@
63525=cryofluid|liquid-cryofluid-icon 63525=cryofluid|liquid-cryofluid-icon
63524=underflow-gate|block-underflow-gate-medium 63524=underflow-gate|block-underflow-gate-medium
63523=plastanium-conveyor|block-plastanium-conveyor-medium 63523=plastanium-conveyor|block-plastanium-conveyor-medium
63522=crater|item-crater-icon
File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 726 KiB

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 893 KiB

After

Width:  |  Height:  |  Size: 898 KiB

+6 -1
View File
@@ -7,7 +7,7 @@ import mindustry.type.ItemType;
public class Items implements ContentList{ public class Items implements ContentList{
public static Item scrap, copper, lead, graphite, coal, titanium, thorium, silicon, plastanium, phasefabric, surgealloy, public static Item scrap, copper, lead, graphite, coal, titanium, thorium, silicon, plastanium, phasefabric, surgealloy,
sporePod, sand, blastCompound, pyratite, metaglass; sporePod, sand, blastCompound, pyratite, metaglass, crater;
@Override @Override
public void load(){ public void load(){
@@ -97,5 +97,10 @@ public class Items implements ContentList{
flammability = 1.4f; flammability = 1.4f;
explosiveness = 0.4f; explosiveness = 0.4f;
}}; }};
// this is just to add the crater emoji, can't live without <3
crater = new Item("crater", Color.valueOf("989aa3")){
public boolean isHidden(){return true;}
};
} }
} }
@@ -36,7 +36,7 @@ public class CraterConveyor extends BaseConveyor{
start = Core.atlas.find(name + "-5-0"); start = Core.atlas.find(name + "-5-0");
end = Core.atlas.find(name + "-6-0"); end = Core.atlas.find(name + "-6-0");
crater = Core.atlas.find("crater"); crater = Core.atlas.find("item-crater");
} }
@Override @Override