Re: Anyone want to help with the combat simulator?
stats=new String[] {"aprot=9", "def=-1", "enc=2"};
put(new Item("Scale Mail Hauberk", stats, null));
stats=new String[] {"dam=0", "att=0", "def=0", "length=0", "hands=1", "hits=1"};
put(new Weapon("Claw", stats, null));
stats=new String[] {"dam=7", "att=0", "def=0", "length=4", "hands=2", "hits=1"};
put(new Weapon("Trident", stats, null));
stats=new String[] {"dam=9", "att=-1", "def=0", "length=5", "hands=1", "hits=1"};
put(new Weapon("Whip", stats, null)); // Strength of wielder not added to damage.
stats=new String[] {"dam=4", "att=0", "def=0", "length=1", "hands=1", "hits=1"};
put(new Weapon("Mace", stats, null));
stats=new String[] {"dam=2", "att=1", "def=0", "length=0", "hands=1", "hits=1"};
put(new Weapon("Poison Dagger", stats, null));//Strong Poison
stats=new String[] {"dam=2", "att=0", "def=-1", "length=0", "hands=o", "hits=1"};
put(new Weapon("Bite", stats, null));//
stats=new String[] {"dam=2", "att=0", "def=-1", "length=0", "hands=0", "hits=1"};
put(new Weapon("Venomous Fangs", stats, null));//Strong Poison
Erm, here are missile weapon;
stats=new String[] {"dam=5", "att=0", "def=0", "length=0", "hands=1", "hits=1", "aoe=1", "rng=13", "pre=-4", "amm=6"};
put(new Weapon("Poison Sling", stats, null));//Armor Negating, Strength of Wielder not added to damage.
stats=new String[] {"dam=3", "att=0", "def=0", "length=0", "hands=1", "hits=1", "aoe=0", "rng=str", "pre=-2", "amm=3"};
put(new Weapon("Javelin", stats, null));
[ December 13, 2003, 18:09: Message edited by: Zen ]
|