Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
33
Projects/Scripts/Items/Wands/RandomWand.cs
Normal file
33
Projects/Scripts/Items/Wands/RandomWand.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
namespace Server.Items
|
||||
{
|
||||
public class RandomWand
|
||||
{
|
||||
public static BaseWand CreateWand()
|
||||
{
|
||||
return CreateRandomWand();
|
||||
}
|
||||
|
||||
public static BaseWand CreateRandomWand()
|
||||
{
|
||||
return Loot.RandomWand();
|
||||
|
||||
/*
|
||||
switch ( Utility.Random( 11 ) )
|
||||
{
|
||||
default:
|
||||
case 0: return new ClumsyWand();
|
||||
case 1: return new FeebleWand();
|
||||
case 2: return new FireballWand();
|
||||
case 3: return new GreaterHealWand();
|
||||
case 4: return new HarmWand();
|
||||
case 5: return new HealWand();
|
||||
case 6: return new IDWand();
|
||||
case 7: return new LightningWand();
|
||||
case 8: return new MagicArrowWand();
|
||||
case 9: return new ManaDrainWand();
|
||||
case 10: return new WeaknessWand();
|
||||
}
|
||||
*/
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue