mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Added an ability for pegasi to instantly start and stop flying
This commit is contained in:
parent
82f6ce746d
commit
4cf03f452f
5 changed files with 88 additions and 7 deletions
|
@ -43,6 +43,7 @@ public interface Abilities {
|
|||
|
||||
// pegasus / bat / alicorn / changeling
|
||||
Ability<?> CARRY = register(new CarryAbility(), "carry", AbilitySlot.PASSIVE);
|
||||
Ability<?> TOGGLE_SLIGHT = register(new PegasusFlightToggleAbility(), "toggle_flight", AbilitySlot.TERTIARY);
|
||||
|
||||
// changeling
|
||||
Ability<?> DISGUISE = register(new ChangelingDisguiseAbility(), "disguise", AbilitySlot.SECONDARY);
|
||||
|
|
|
@ -0,0 +1,79 @@
|
|||
package com.minelittlepony.unicopia.ability;
|
||||
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import com.minelittlepony.unicopia.Race;
|
||||
import com.minelittlepony.unicopia.ability.data.Hit;
|
||||
import com.minelittlepony.unicopia.client.render.PlayerPoser.Animation;
|
||||
import com.minelittlepony.unicopia.entity.Living;
|
||||
import com.minelittlepony.unicopia.entity.player.Pony;
|
||||
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class PegasusFlightToggleAbility implements Ability<Hit> {
|
||||
|
||||
@Override
|
||||
public int getWarmupTime(Pony player) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getCooldownTime(Pony player) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canUse(Race race) {
|
||||
return race.canFly();
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public Hit tryActivate(Pony player) {
|
||||
return player.getMaster().isCreative() ? null : Hit.INSTANCE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Hit.Serializer<Hit> getSerializer() {
|
||||
return Hit.SERIALIZER;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Identifier getIcon(Pony player, boolean swap) {
|
||||
Identifier id = Abilities.REGISTRY.getId(this);
|
||||
return new Identifier(id.getNamespace(), "textures/gui/ability/" + id.getPath() + (player.getPhysics().isFlying() ? "_land" : "_takeoff") + ".png");
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getCostEstimate(Pony player) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void apply(Pony player, Hit data) {
|
||||
if (player.getMaster().isCreative()) {
|
||||
return;
|
||||
}
|
||||
|
||||
player.subtractEnergyCost(1);
|
||||
|
||||
if (!player.getPhysics().isFlying()) {
|
||||
player.getEntity().addVelocity(0, player.getPhysics().getGravitySignum() * 0.7F, 0);
|
||||
Living.updateVelocity(player.getEntity());
|
||||
player.getPhysics().startFlying(true);
|
||||
} else {
|
||||
player.getPhysics().cancelFlight(true);
|
||||
}
|
||||
player.setDirty();
|
||||
player.setAnimation(Animation.SPREAD_WINGS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void preApply(Pony player, AbilitySlot slot) {
|
||||
player.getMagicalReserves().getExertion().add(6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void postApply(Pony player, AbilitySlot slot) {
|
||||
}
|
||||
}
|
|
@ -286,17 +286,18 @@
|
|||
"ability.unicopia.cast": "Cast Spell",
|
||||
"ability.unicopia.dispell": "Dispell Magic",
|
||||
"ability.unicopia.teleport": "Teleport",
|
||||
"ability.unicopia.teleport_group": "Teleport (Group)",
|
||||
"ability.unicopia.grow": "Earthly Nourishment",
|
||||
"ability.unicopia.teleport_group": "Group Teleport",
|
||||
"ability.unicopia.grow": "Nourish Earth",
|
||||
"ability.unicopia.stomp": "Ground Pound",
|
||||
"ability.unicopia.kick": "Crushing Blow",
|
||||
"ability.unicopia.pummel": "Crushing Blow",
|
||||
"ability.unicopia.pummel": "Devestating Smash",
|
||||
"ability.unicopia.carry": "Pickup/Drop Passenger",
|
||||
"ability.unicopia.toggle_flight": "Take-off/Land",
|
||||
"ability.unicopia.hang": "Cling to Ceiling",
|
||||
"ability.unicopia.eee": "Deafening Screech",
|
||||
"ability.unicopia.feed": "Collect Love",
|
||||
"ability.unicopia.capture_cloud": "Cloudbust",
|
||||
"ability.unicopia.disguise": "Shapeshift",
|
||||
"ability.unicopia.eee": "Screech",
|
||||
"ability.unicopia.feed": "Siphon Love",
|
||||
"ability.unicopia.capture_cloud": "Bust Cloud",
|
||||
"ability.unicopia.disguise": "Change Form",
|
||||
"ability.unicopia.rainboom": "Sonic Rainboom",
|
||||
|
||||
"gui.unicopia": "Unicopia...",
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
Loading…
Reference in a new issue