Snowballs

Most snowballs I tested are single use weapons and are removed from the game after use.

NameRarityDamage IconsTotal IconsNotes
Wet Snowball
r60 1.4 1.42.8Single Use.
Poison Snowball
r70 1.8 1.8 0.1-1.813.7-5.4 Single Use. Will give the defender a case of Hoochie Coochies if he has not already been inflicted with any other disease from another weapon.
Evil Snowball
r75 2.2 2.2 0.2-2.214.6-6.6Single Use.
Yellow Snowball
r80 2.6 2.6 0.2-2.615.4-7.8Single Use.
Peach Snowball
r85 3 3 0.3-316.3-9Single Use.
Exploding Snowball
r90 3.4 3.4 0.3-3.417.1-10.2Single Use.
Icy Snowball
r95 3.8 3.8 0.3-3.817.9-11.4Single Use.
Sticky Snowball
r100 4.2 4.2 0.4-4.218.8-12.6Single Use.
Snow Mudball
r105 4.6 4.6 0.4-4.619.6-14.4Single Use.
Stone Snowball
r110 5.8 0.5-5.816.3-11.6Single Use.
Brown Snowball
r101 2.5 2.55Single Use.
Ugly Snowball
r101 3 36Single Use.
Extra Evil Snowball
r101 3.5 3.57Single Use.
Jhudoras Snowball
r101 4 48Single Use.
Icy Eye Snowball
r101 4.5 4.59Single Use.
Tortured Snowball
r101 5 510Single Use.
Molasses Snowball
r86 3 3 39Single Use.
Pink Faerie Snowball
r89 3.22 3.226.44Single Use.
Sand Snowball
r101 5 49Single Use.
Spiky Snowball
r90 3.67 3.677.34Single Use.
Remote Control Virtupets Snowball
r92 50% 3 2 0.3-31
else 2 2 0.2-21
4.2-8Multiple Use.
Void Snowball
r88 2 2 2 2 210Single Use.
Fiery Snowball
r92 3.67 3.677.34Single Use. Called Firey Snowball in battledome.
Coconut Flake Snowball
r94 3 36Single Use.
Bullseye Snowball
r94 3.22 3.226.44Single Use.
Hairy Snowball
r93 4.11 4.118.22Single Use.
Pebble Snowball
r96 4.56 4.569.12Single Use.
Snot JubJub Snowball
r91 3 2.6 0.3-315.9-8.6If you are a JubJub, does damage and Once per Battle, else does nothing.
Tartan Snowball
r95 4.56 4.569.12Single Use.
Ice JubJub Snowball
r90 3 2.6 0.3-315.9-8.6If you are a JubJub, does damage and Once per Battle, else does nothing.
Frozen Snowball
r94 6.11 511.11Single Use.
Minty Snowball
r96 4.11 4.118.22Single Use.
Mighty Flying Snowball
r101 -untested-  
Itsy Bitsy Tiny Snowball
r98 -untested-  
Spicy Snowball
r98 -untested-  
Good Snowball
r101 -untested-  
Taelias Snowball
r99 -untested-  

These items are each related to snowballs in their own way.

NameRarityDamageTotal IconsNotes
Snowball Slingshot
r91 50% 3 3 0.3-31
else 2 2 0.2-21
4.2-9
Snowball Club
r93 3 36
Wet Snowball Wand
r91    Creates one Wet Snowball per use. 10% chance destroyed per use.
Poison Snowball Wand
r92    Creates one Poison Snowball per use. 10% chance destroyed per use.
Evil Snowball Wand
r93    Creates one Evil Snowball per use. 10% chance destroyed per use.
Snowball Machine
r200 -untested-  

1Physical damage modified by function 'hit()'. Hit() reduces damage/defence by 0 to 90 percent in 10 percent increments.

A portion of the script for the Poison Snowball follows:

$pet1_scriptoutput="You throw a Poison Snowball at $pet2->name"; 
$pet2_scriptoutput="$pet1->name throws a Poison Snowball at you!"; 
$pet2_damage[water]+=scale($pet1_attack_strength,2,10); 
$pet2_damage[darkness]+=scale($pet1_attack_strength,2,10); 
$pet2_damage[physical]+=hit(scale($pet1_attack_strength,2,10)); 
if ($pet2->attacked == 0) { 
	$pet2->attacked = 954; 
} 
$delete_bdequip=true; 
$delete_equip=true;
<- Text for attacker
<- Text for defender
<- Water damage
<- Dark damage
<- Physical damage

<- Inflict Hoochie Coochies

<- Delete from battle at end of round
<- Delete from game at end of battle

Home