Launch animation
This commit is contained in:
@@ -1786,8 +1786,10 @@ public class Blocks implements ContentList{
|
||||
coreSilo = new CoreLauncher("core-silo"){{
|
||||
requirements(Category.effect, BuildVisibility.campaignOnly, ItemStack.with(Items.copper, 350, Items.silicon, 140, Items.lead, 200, Items.titanium, 150));
|
||||
size = 5;
|
||||
itemCapacity = 1000;
|
||||
itemCapacity = 500;
|
||||
hasPower = true;
|
||||
|
||||
consumes.items(ItemStack.with(Items.copper, 500));
|
||||
consumes.power(4f);
|
||||
}};
|
||||
|
||||
|
||||
@@ -180,6 +180,12 @@ public class Fx{
|
||||
Fill.circle(e.x, e.y, (1f + 6f * e.rotation) - e.fin()*2f);
|
||||
}),
|
||||
|
||||
rocketSmokeLarge = new Effect(220, e -> {
|
||||
color(Color.gray);
|
||||
alpha(Mathf.clamp(e.fout()*1.6f - Interp.pow3In.apply(e.rotation)*1.2f));
|
||||
Fill.circle(e.x, e.y, (1f + 6f * e.rotation * 1.3f) - e.fin()*2f);
|
||||
}),
|
||||
|
||||
magmasmoke = new Effect(110, e -> {
|
||||
color(Color.gray);
|
||||
Fill.circle(e.x, e.y, e.fslope() * 6f);
|
||||
|
||||
Reference in New Issue
Block a user