Seems to have good wings now need to work on visual

This commit is contained in:
Emilia(SleepeeSoftware) 2026-02-21 20:38:34 +01:00
parent 522c2d0a22
commit a4ffb92332

View File

@ -24,46 +24,8 @@ namespace Emiliasmod.Content.Items.Accessories
public override void UpdateAccessory(Player player, bool hideVisual) {
player.empressBrooch = true;
player.moonLordLegs = true;
player.moveSpeed += 0.35f;
player.dashType = 1;
//if (player.TryingToHoverUp)
//{
// player.velocity.Y -= 0.4f * player.gravDir;
// if (player.gravDir == 1f)
// {
// if (player.velocity.Y > 0f)
// {
// player.velocity.Y -= 1f;
// }
// else if (player.velocity.Y > 0f - jumpSpeed)
// {
// player.velocity.Y -= 0.2f;
// }
// if (player.velocity.Y < (0f - jumpSpeed) * 3f)
// {
// player.velocity.Y = (0f - jumpSpeed) * 3f;
// }
// }
// else
// {
// if (player.velocity.Y < 0f)
// {
// player.velocity.Y += 1f;
// }
// else if (player.velocity.Y < jumpSpeed)
// {
// player.velocity.Y += 0.2f;
// }
// if (player.velocity.Y > jumpSpeed * 3f)
// {
// player.velocity.Y = jumpSpeed * 3f;
// }
// }
//}
//if (player.TryingToHoverDown && !player.controlJump && player.velocity.Y != 0f)
//{
// player.velocity.Y += 0.4f;
//}
//player.moveSpeed += 0.15f;
//player.dashType = 1;
}
public override void AddRecipes() {
@ -72,7 +34,7 @@ namespace Emiliasmod.Content.Items.Accessories
recipe.AddIngredient(ItemID.EmpressFlightBooster, 1);
recipe.AddIngredient(ItemID.MoonLordLegs, 1);
recipe.AddIngredient(ItemID.LongRainbowTrailWings, 1);
recipe.AddIngredient(ItemID.MasterNinjaGear, 1);
//recipe.AddIngredient(ItemID.MasterNinjaGear, 1);
recipe.Register();
}
}