diff --git a/Scripts/Holiday Stuff/Halloween/2006/Items/HalloweenPumpkin.cs b/Scripts/Holiday Stuff/Halloween/2006/Items/HalloweenPumpkin.cs index dab75c6a4..f809e6ef4 100644 --- a/Scripts/Holiday Stuff/Halloween/2006/Items/HalloweenPumpkin.cs +++ b/Scripts/Holiday Stuff/Halloween/2006/Items/HalloweenPumpkin.cs @@ -8,7 +8,7 @@ namespace Server.Items { private readonly string[] staff = { - "Ryan", "Mark", "Eos", "Athena", "Xavier", "Krrios" + "Ryan", "Mark", "Eos", "Athena", "Xavier", "Krrios", "Zippy" }; [Constructable] @@ -65,7 +65,7 @@ namespace Server.Items } else { - Name = String.Format( "{0}'s Jack-O-antern", staff[ Utility.Random( staff.Length ) ] ); + Name = String.Format( "{0}'s Jack-O-antern", staff[ Utility.Random( staff.Length ) ] ); } } } diff --git a/Scripts/Holiday Stuff/Halloween/2011/Items/BasePaintedMask.cs b/Scripts/Holiday Stuff/Halloween/2011/Items/BasePaintedMask.cs index f57cd6e4d..7d1e828d9 100644 --- a/Scripts/Holiday Stuff/Halloween/2011/Items/BasePaintedMask.cs +++ b/Scripts/Holiday Stuff/Halloween/2011/Items/BasePaintedMask.cs @@ -29,9 +29,9 @@ namespace Server.Items.Holiday "Ryan", "Mark", "Krrios", - "EOS", + "Zippy", "Athena", - "EoS", + "Eos", "Xavier" }; diff --git a/Scripts/Holiday Stuff/Halloween/2011/Mobiles/PumpkinHead.cs b/Scripts/Holiday Stuff/Halloween/2011/Mobiles/PumpkinHead.cs index 2ec391019..2723031ad 100644 --- a/Scripts/Holiday Stuff/Halloween/2011/Mobiles/PumpkinHead.cs +++ b/Scripts/Holiday Stuff/Halloween/2011/Mobiles/PumpkinHead.cs @@ -1,6 +1,7 @@ using System; using Server; using Server.Items; +using Server.Items.Holiday; using Server.Mobiles; namespace Server.Mobiles @@ -59,7 +60,17 @@ namespace Server.Mobiles { if( Utility.RandomDouble() < .05 ) { - PackItem( new TwilightLantern() ); + //PackItem( new TwilightLantern() ); OLD Halloween + + switch( Utility.Random( 50 ) ) + { + case 0: PackItem( new PaintedEvilClownMask() ); break; + case 1: PackItem( new PaintedDaemonMask() ); break; + case 2: PackItem( new PaintedPlagueMask() ); break; + case 3: PackItem( new PaintedEvilJesterMask() ); break; + case 4: PackItem( new PaintedPorcelainMask() ); break; + default: break; + } } PackItem( new WrappedCandy() );