ModernUO/Projects/UOContent/Items/Special/Valentines/2007/RoseInAVase.cs
Kamron Batman 127ca5e51e
fix: Fixes veteran rewards (#1374)
### Summary
- [X] Fixes a bug in wall banner East setter: [[ServerUO#5046]](https://github.com/ServUO/ServUO/pull/5046)
- [X] Eliminates the timer in tree stump.
- [X] Codegens the rewards
2023-03-12 17:28:51 -07:00

16 lines
412 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class RoseInAVase : Item /* TODO: when dye tub changes are implemented, furny dyable this */
{
[Constructible]
public RoseInAVase() : base(0x0EB0)
{
Hue = 0x20;
LootType = LootType.Blessed;
}
public override int LabelNumber => 1023760; // A Rose in a Vase 1023760
}