Bugfixes / Built-in rate limits
This commit is contained in:
@@ -1317,10 +1317,10 @@ public class Blocks implements ContentList{
|
||||
}};
|
||||
|
||||
launchPad = new LaunchPad("launch-pad"){{
|
||||
requirements(Category.effect, BuildVisibility.campaignOnly, ItemStack.with(Items.copper, 250, Items.silicon, 75, Items.lead, 100));
|
||||
requirements(Category.effect, BuildVisibility.campaignOnly, ItemStack.with(Items.copper, 350, Items.silicon, 140, Items.lead, 200, Items.titanium, 150));
|
||||
size = 3;
|
||||
itemCapacity = 100;
|
||||
launchTime = 60*3;//60f * 15;
|
||||
launchTime = 60f * 15;
|
||||
hasPower = true;
|
||||
consumes.power(4f);
|
||||
}};
|
||||
|
||||
@@ -161,7 +161,7 @@ public class Fx{
|
||||
|
||||
rocketSmoke = new Effect(120, e -> {
|
||||
color(Color.gray);
|
||||
alpha(Mathf.clamp(e.fout()*1.6f - e.rotation*0.8f));
|
||||
alpha(Mathf.clamp(e.fout()*1.6f - Interp.pow3In.apply(e.rotation)*1.2f));
|
||||
Fill.circle(e.x, e.y, (1f + 6f * e.rotation) - e.fin()*2f);
|
||||
}),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user