Description
The most filling WCS race I've ever conceived. There are likely to be even more skills in future releases.
[syntax="python"]z = 'Hunter'
race = wcs.Race(z)
raceskill = wcs.Race(z).registerSkill
raceskill("Aspect of the Hawk", 4, 1, "Increases the damage you deal by [2..8]")
raceskill("Survivalist", 4, 1, "Increases your health by [5..20]")
raceskill("Viper Sting", 2, 5, "Your attacks drain [1..2] (pistols) or [2..4] (other) bullets from your opponents' clips", 5)
raceskill("Concussive Barrage", 3, 2, "Your attacks have a [4..12]% chance of dazing your opponent for 3s", 2)
raceskill("Master Marksman", 5, 2, "Your attacks have a [1..5]% chance of being a critical hit", 4)
uName = "Bestial Wrath"
race.registerUltimate(uName, 6, 1, 1, "The hunter goes into a rage, dealing 20% extra damage for 18s (1m cooldown)")
race.registerMinLevel(1)[/syntax]