Skip to content

Instantly share code, notes, and snippets.

@caferrari
Created April 24, 2013 14:56
Show Gist options
  • Save caferrari/5452774 to your computer and use it in GitHub Desktop.
Save caferrari/5452774 to your computer and use it in GitHub Desktop.
Neverwinter classes
var characterData = [
{
'class' : 'Great Weapon Fighter',
'skills' : [
{
name: 'Reaping Strike',
type: 'atwill',
description: 'Hold the button to prepare a powerful sweeping strike that grows in strength the longer you charge it up. While charging your swing, you gain more Determination from taking damage.',
icon: 'reaping_strike.png',
enableAt: 0,
},
{
name: 'Sure Strike',
type: 'atwill',
description: 'Swing your blades in a series of narrow slashes, followed by a powerful downward slam. Damage is slightly reduced for every target you hit beyond the first.',
icon: 'sure_strike.png',
enableAt: 0,
},
{
name: 'Not So Fast',
type: 'encounter',
description: 'Release a fast spinning slice to the legs of enemies around you, briefly Slowing them.',
icon: 'reaping_strike.png',
enableAt: 0
}
],
'feats' : [
{
name: 'Unstoppable Action',
image: 'unstoppable_action.png',
description: 'You gain 5/10/15/20/25% bonus Action Points for dealing damage while you are Unstoppable.',
effects: [
{ action_points: '*=1.05' },
{ action_points: '*=1.10' },
{ action_points: '*=1.15' },
{ action_points: '*=1.20' },
{ action_points: '*=1.25' },
],
'enebleAt' : 0,
'require': []
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment