Skip to content

Commit

Permalink
Updates to wellspring
Browse files Browse the repository at this point in the history
  • Loading branch information
ScalarVector1 committed May 28, 2024
1 parent d230023 commit e49da1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Binary file modified Assets/Abilities/Wellspring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions Content/Abilities/Hint/Wellspring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using StarlightRiver.Content.Backgrounds;
using StarlightRiver.Content.Dusts;
using StarlightRiver.Content.Items.Misc;
using StarlightRiver.Content.Tiles.Underground;
using StarlightRiver.Content.Tiles.Vitric.Temple;
using StarlightRiver.Core.Systems.ScreenTargetSystem;
using System;
Expand Down Expand Up @@ -261,14 +262,15 @@ public override void SetDefaults()
Item.height = 14;
Item.rare = ItemRarityID.Green;

color = new Color(100, 200, 250);
color = new Color(80, 250, 250);
}

public override void AddRecipes()
{
Recipe recipe = CreateRecipe();
recipe.AddIngredient<BasicInfusion>(1);
recipe.AddIngredient<StaminaGel>(25);
recipe.AddIngredient(ItemID.HealingPotion, 10);
recipe.AddIngredient(ItemID.ManaPotion, 10);
recipe.AddTile(ModContent.TileType<MainForge>());
recipe.Register();
}
Expand Down

0 comments on commit e49da1e

Please sign in to comment.