The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
807 B
46 lines
807 B
#include "Class.h"
|
|
|
|
std::map<Class,ClassData>CLASS_DATA={
|
|
{WARRIOR,{
|
|
"Warrior",WARRIOR,
|
|
{"Block",15,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"Battlecry",12},
|
|
{"Ground Slam",15},
|
|
{"Sonic Slash",40}
|
|
}},
|
|
{THIEF,{
|
|
"Thief",THIEF,
|
|
{"???",15,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"???",12},
|
|
{"???",15},
|
|
{"???",40}
|
|
}},
|
|
{RANGER,{
|
|
"Ranger",RANGER,
|
|
{"Retreat",7,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"Rapid Fire",12},
|
|
{"Charged Shot",15},
|
|
{"Multishot",25}
|
|
}},
|
|
{BARD,{
|
|
"Bard",BARD,
|
|
{"???",7,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"???",12},
|
|
{"???",15},
|
|
{"???",25}
|
|
}},
|
|
{WIZARD,{
|
|
"Wizard",WIZARD,
|
|
{"Teleport",8,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"Firebolt",6},
|
|
{"Lightning Bolt",6},
|
|
{"Meteor",40}
|
|
}},
|
|
{WITCH,{
|
|
"Witch",WITCH,
|
|
{"???",8,VERY_DARK_BLUE,DARK_BLUE},
|
|
{"???",6},
|
|
{"???",6},
|
|
{"???",40}
|
|
}},
|
|
}; |