;-------------------
; character levels
;
; You can define various character 'classes' which control the
; basic limits of a character (what weapon they can hold in their
; right hand, whether they get magic points, the rate at which
; their levels increase, and some other things)
;
; But a character also has a LEVEL which starts at '1' and goes up along
; with experience points.
;
; This section lets you specify the experience points needed to attain each
; level, and lets you associate a name with each level, so your character
; can appear to evolve through various stages (mage, wizard, warlock, sorceror, etc.)
; even though REALLY only the actual level number is important.
;
; The first argument is a number which indicates the class and the level.  
;
;    arg0:		Class+Level (103 = warrior level 3, 203 = wizard level 3)
;    arg1:		[NO LONGER USED] Additional Experience points to attain level from previous level
;	 arg2:		Additional max HP earned when level is attained
;	 arg3:		Additional max MP earned when level is attained
;    arg4:      Level Name (use the same name for several levels in a row)
;
; These arguments are only valid for level 0 in each character class.  They control
; common aspects of the class
;
;	 arg5		(level 0 only)  magic-ratio
;	 arg6		(level 0 only)  right-hand weapon (1 - 8, or 0 if none (will use start_hand_training instead))
;
; Levels run from 1 to 99 maximum.  A bonus level "100" is supplied by the game, but it uses the same
; table entry as level 99.  That is to say, you cannot provide a custom level name for level 100.
;
; You only need to have entries for levels where you want the hp, mp, new spell, or
; level name to change.  Minimum experience levels are now computed automatically
; for you.  If you give an 'empty' level name (except for level 1 where it is
; mandatory) the previous name will be used for that level
;
; Note that LEVEL ZERO (100,200, etc) is a SPECIAL ENTRY which names the actual
; character class, and is not a level in of itself.  I know this is horribly
; confusing, but it is just so dang CONVENIENT to do it this way!
; So, for LEVEL 0 ONLY:  maxHP and maxMP are the starting levels of a new character
; in that class, level_name is the 'character class name' which appears in the
; new soul dialog box.  
;
; LEVEL ZERO is where you define a characters magic-ration and right-hand weapon.
; Their 'magic ratio' determines what percentage of their attack points are used for magic versus sword attack;
;
; Hence a MAGIC-USER would have a high magic ratio (80-90) while a SWORD-USER
; would have lower one (10-20), and some other characters might be more 50-50
; A character needs to be more than 50% in the respective sense in order to 
; equip swords or staffs.  For example a magic ratio > 50 would allow staff,
; < 50 would allow sword, and == 50 would allow both.
;
; The right-hand weapon controls which class of EQUIP item they can hold in their
; right hand (each class is hard-wired to a single right-hand item, but the
; world designer can define what those actual items are).  Between the combination
; of magic-ratio and right-hand you can create some interesting classes.  For example
; an ARCHER and a MAGIC-ARCHER might both have right-hand set to 'BOW' but different
; magic-ratios.  The magic-archer (with the higher magic-ratio) would be better at
; casting spells, but his actual bow-use would be weaker.
;
; The default (used in Evergreen) right-hand weapons are:
;
;	1	Z Warrior
;	2	Power Pole
;	3	Archery
;	4	Loud Noise
;   5   Fighting
;   6   Ninjetsu
;   7   Ki
;   8   Saiyan
; 
; if you set arg6 to a value between 1 and 8, then characters of that class will always
; be born with level 5 training in that hand, no matter what the start_hand_pp option
; is for that hand. 
;
; But if you set this field to 0 (Version A57 and later, only), then no hand will be
; pre-trained unless you specifically use the start_hand_pp option.
;
; Setting this field to zero in versions of WoS before A57 will lead to a bug which can
; render the character unusable.  If you publish your world later than July 2001, you can
; probably ignore this comment :)
;
; OPTIONAL CHARACTER LIMITATIONS
;
; If you (as the world designer) like, you can apply certain special commands to each
; character class, generally to limit its access to element and hand training,  You
; place these commands (one per line) just after the introductory line of the class
; For example:
;
; The class name
;	100,	0,			20,		0,		"Dingle-User",   10,				1
;    DESCRIPTION	"Dingle Users are known for their mad dingling skillz...."
;    MAGIC_RATIO	10
;    HAND_RATIO		90
;    MAX_ABILITY 100,100,50,255,0
;    START_ELEMENT_PP 556,1251,2143,3334,5001,7501,11667,20001		<-- no particular sense to these example values, just levels in order
;    MAX_ELEMENT_PP 1251,2143,3334,5001,7501,11667,20001,45001
;    START_HAND_PP 557,1251,2143,3334,5001,7501,11667,20001
;    MAX_HAND_PP 1251,2143,3334,5001,7501,11667,20001,45001
; now the class level names
;	101,	0,			1,		0,		"Dinglet"
;   etc.
;	198,	0,			1,		0,		"El Dinglo"
;	199,	0,			1,		0,		"Dingle King"
;
; Each command is optional and applies only to the class within which is is embedded.  See how
; all the commands appear between line 100 and line 101? 
; You must provide the information in a fixed syntax, as shown.
;
; Here are the available commands:
;
;   DESCRIPTION	 "This class sucks.  People who pick it are losers"		
;	A short text which appears on character creation dialog.  Put text in double quotes
;
;	MAGIC_RATIO	n		
;	Where n is a number from 0 to 100, specifies effectiveness with magical attacks
;
;   HAND_RATIO	n
;	Where n is a number from 1-100, specifies effectiveness of non-magical attacks.  
;   If you set to '0' it will use "100 - magic ratio" for "balanced" classes.
;
;   MAX_ABILITY str, wis, sta, agi, dex  
;	Provide all 5 ability values in order, giving the maximum level allowed for each.
;   Valid max levels are 0 to 255.
;
;   START_ELEMENT_PP  0,1,2,3,4,5,6,7
;	Must have 8 values, in order of +ELEMENTS table.  Sets initial elemental training.
;   Values range from 0 to 1000000 as described later (PP Levels).
;
;   MAX_ELEMENT_PP 0,1,2,3,4,5,6,7 
;	Must have 8 values, in order of +ELEMENTS table.  Sets max possible elemental training
;   Values range from 0 to 1000000 as described later (PP Levels).
;
;   START_HAND_PP 0,1,2,3,4,5,6,7  
;	Must have 8 values, in order of +HANDS table. Sets initial right-hand training
;   Values range from 0 to 1000000 as described later (PP Levels).
;
;   MAX_HAND_PP 0,1,2,3,4,5,6,7   
;	Must have 8 values, in order of +HANDS table. Sets maximum right-hand training.
;   Values range from 0 to 1000000 as described later (PP Levels).
;
;   AUTO_MAX minHP, maxHP, minMP, maxMP, startMPLevel 
;	Must have all five values.  Sets the max HP and MP levels for each level of the character.
;   That is to say, you are setting the maxHP and maxMP for level 1 and level 100, and the intermediate levels are
;   then computed automatically to span those maximums "appropriately" (semi-logarithmic algorithm)
;	The initial level 1 HP will be minHP, final level 100 HP will be maxHP
;	The fifth arg (startMPLevel) lets you postpone first MP (maxMP will stay 0 until that level).
;	NOTE: Actual maximums will be a little lower than you specify because of curve-shaping
;	If you use this command, the HP and MP entries in your level table for that class will be ignored.
;
;	START_LOCATION  <map>, <link>  
;	Lets you set where a newly created character will appear on their first
;	incarnation, based on class.  (so all elves can be born in Elf Town, for example).  Otherwise, they
;	will appear above link 0 on map 0.  It is your responsibility to make sure the map and link specified
;	actually exist and 'make sense' (it would be cruel to incarnate a newbie in a tough spot)
;
;   MAX_WALLET n 
; 	Further limits wallet size to n (0 to 1000000). (cannot make wallets BIGGER than
;	normal game restrictions.)  Normally characters start off with a wallet holding 20K GP at level 1, with
;   an additional 10K added for each level, until they reach one million at level 99.
;
;   NO_GIFTS
;	(No arguments). Indicates that class cannot receive money or items from other players.  (but from scripts is OK)
;
;   START_ITEMS 1, 2, 3, ...
;	Lets you give character up to 8 items right at start of game.  
;	Use valid Item numbers only
;
;	START_SPELLS 1, 2, 3, .. 
;	Lets you give characters up to 8 spells right at start of game
;	 Use valid Spell IDs only.
;
;   START_TOKENS 1, 2, 3...  
;	Lets you give character up to 8 tokens right at start of game.  
;	Use valid token numbers only
;
;	HIDDEN_CLASS  <startLevel>
;   (startLevel optional). Class doesn't show up on New Character dialog as an available choice.
;   You have to be morphed into such a class via "SET num.hostClass, <class#>" script
;   command. If the <startlevel> argument is included, then the character will be changed to that
;   level (so long as it is less than their current level).  Hence "HIDDEN_CLASS 20" would lower
;   a level 40 character to level 20 in the new class, but would NOT raise a level 5 character to
;   level 20 in the new class.
;
; Note that the 'preferred right hand training' of each class will always be level 5 at start, no 
; matter what START_HAND_PP says.  This is for compatibility with existing worlds.  Sorry.
;
; PP Levels
;
; The PP required for each level grows according to a nasty equation, but here are the PP
; limits as of the time of this writing.
;
; level 0		PP 0 - 554
; level 1		PP 555 - 1249
; level 2		PP 1250 - 2141
; level 3		PP 2142 - 3332
; level 4		PP 3333 - 4999
; level 5		PP 5000 - 7499
; level 6		PP 7500 - 11665
; level 7		PP 11666 - 19999
; level 8		PP 20000 - 44999
; level 9		PP 45000 - 1000000 (one million)(you approach level 9.9999999 asymptotically)
;
; Note that is the total PP which affects your skill and the level numbers are somewhat arbitrary
; so a training level 3 with 3333 PP will hit harder than a training level 3 with 2143 PP
;
; To protect yourself against floating point round off issues from one version of windows to
; another, I recommend not using these exact values, but include a safety buffer.  So, for example
; if you wanted a STARTING level of 4, use 3350 instead of 3333.  And if you want a MAXIMUM level
; of 4, use 4970, not 4999.  A 20 unit buffer should not be noticeable by the user and might make
; your world more reliable.
;




;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; First the Warrior levels (100 + level #)
;  CCLL	    ???????.	MaxHP	maxMP	Level_name		Magic Ratio		Right-Hand
;	0		1			2		3		4				5				6
;
; The class name (sword user, magic ratio of 10.. ergo hand ratio of 90.. preferred right-hand weapon is #1 (sword))
	100,	0,			20,		0,		"Z Warrior",   10,				1

; Next the special commands for the sword-user class.  These come between line nn00 and line nn01
	DESCRIPTION	"Z Warriors of long ago were the strongest of sword skills."
	AUTO_MAX	50, 16550,  90, 32000,  0
    HAND_RATIO 100
    MAGIC_RATIO 60		

; now the class level names.. note that since I used the AUTO_MAX command, the maxHP and maxMP values shown in this
; table are actually ignored.  If I weren't so lazy, I would change them all to 0.

	101,	0,			1,		0,		"Z Warrior"
	105,	0,			2,		0,		"Z Warrior"
	110,	0,			5,		0,		"Z Warrior"
	120,	0,			8,		10,		"Z Warrior"
	130,	0,			10,		0,		"Z Warrior"
	140,	0,			14,		10,		"Z Warrior"
	150,	0,			22,		0,		"Z Warrior"
	160,	0,			28,		20,		"Z Warrior"
	170,	0,			36,		0,		"Z Warrior"
	180,	0,			50,		20,		"Z Warrior"
	190,	0,			65,		0,		"Z Warrior X"
;
;---
; Now the Wizard levels (200 + level #)
;  CCLL	    ???			MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	200,	0,			15,		5,		"Kai",		90,				2

; now the special commands for the magic user class.  These also come between line nn00 and nn01 (200 and 201 for this
; class)

	DESCRIPTION	"A Kai which were the protectors of the galaxies."
	AUTO_MAX	1000, 15000,  9000, 32000,  0
    START_HAND_PP 0, 1, 2, 3, 4, 5, 6, 7
    START_HAND_PP 0, 0, 0, 0, 0, 0, 1000000, 0
    MAX_HAND_PP 0, 1, 2, 3, 4, 5, 6, 7,
    MAX_HAND_PP 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 0	
    START_ELEMENT_PP
    HAND_RATIO 50
    MAGIC_RATIO 100
     
; the class level names for the magic-user class
	201,	0,			1,		2,		"Kai"
	205,	0,			2,		5,		"Kai",		
	210,	0,			4,		10,		"Kai",			
	220,	0,			7,		15,		"Kai",			
	230,	0,			8,		15,		"King Kai",				
	240,	0,			11,		20,		"King Kai",			
	250,	0,			18,		25,		"King Kai",			
	260,	0,			22,		30,		"Grand Kai",		
	270,	0,			28,		35,		"Grand Kai",		
	280,	0,			40,		40,		"Grand Kai"
	290,	0,			55,		55,		"Supreme Kai",
;			
;---
; Now the Archer levels (300 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	300,	0,			18,		2,		"Bow-User",			40,				3

	DESCRIPTION	"Archers tend to be aloof, as their elegant weapons do not require such closed quarters. But only a narrow shaft stands between them and their doom."
	AUTO_MAX	20, 3656,  10, 32000,  5	

; the class levels
	301,	0,			2,		2,		"Stringer"			
	305,	0,			4,		3,		"Shafter",		
	310,	0,			6,		6,		"Bowman",			
	320,	0,			9,		9,		"Arrow Head",			
	330,	0,			12,		11,		"Archer",				
	340,	0,			15,		16,		"Long Arrow",			
	350,	0,			20,		20,		"Boltman",			
	360,	0,			25,		22,		"Master Bowman",		
	370,	0,			32,		27,		"Arbelest",		
	380,	0,			48,		32,		"Master Archer"
	390,	0,			65,		40,		"Quiver Lord",
;
;	
;---
; Now the MUSE levels (400 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	400,	0,			18,		2,		"Human",		60,				4

	DESCRIPTION	"If you want to be the great Hercule, well here he is."
	AUTO_MAX	20, 9999,  10, 32000,  5	

; the class levels
	401,	0,			1,		2,		"Castrati"			
	405,	0,			2,		5,		"Novice",		
	410,	0,			5,		10,		"Hummer",			
	420,	0,			8,		15,		"Yodeler",			
	430,	0,			10,		15,		"Crooner",				
	440,	0,			12,		20,		"Chanter",			
	450,	0,			15,		25,		"Singer",			
	460,	0,			20,		30,		"Musician",		
	470,	0,			30,		35,		"Troubador",		
	480,	0,			50,		40,		"Virtuoso"
	490,	0,			65,		55,		"Muse",

;
;	
;---
; Now the FIST levels (500 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	500,	0,			20,		0,		"Fighter",		5,				5

	DESCRIPTION	"Martial Artists with talented skills...NOT LIKE HERCULE BUT STRONGER."
	AUTO_MAX	60, 13550,  80, 32000,  10

; the class levels
	501,	0,			2,		1,		"Fighter"			
	505,	0,			3,		2,		"Street Fighter",		
	510,	0,			7,		4,		"Street Fighter",			
	520,	0,			10,		7,		"Student Fighter",			
	530,	0,			12,		9,		"Martial Artist",				
	540,	0,			14,		11,		"Martial Artist",			
	550,	0,			22,		15,		"Martial Artist",			
	560,	0,			28,		18,		"Martial Artist",		
	570,	0,			36,		21,		"Martial Artist",		
	580,	0,			50,		24,		"Martial Artist"
	590,	0,			65,		27,		"Martial Arts Champion",


;
;	
;---
; Now the DART levels (600 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	600,	0,			18,		0,		"Konoha Ninja",		20,				6

	DESCRIPTION	"Konoha Ninjas, you know, from that show, NARUTO!!!"
	AUTO_MAX	60, 17000,  50, 32000,  0	
	HAND_RATIO  80
    MAGIC_RATIO 80
    MAX_ABILITY 60,100,60,70,60
    START_ABILITY 10,30,10,20,10
; the class levels
	601,	0,			1,		1,		"Genin",			
	605,	0,			2,		2,		"Genin",		
	610,	0,			5,		4,		"Genin",			
	620,	0,			8,		6,		"Genin",			
	630,	0,			10,		8,		"Genin",				
	640,	0,			12,		11,		"Genin",			
	650,	0,			15,		15,		"Genin",			
	660,	0,			20,		20,		"Genin",		
	670,	0,			30,		25,		"Genin",		
	680,	0,			50,		30,		"Genin",
	690,	0,			65,		35,		"Genin",


;
;	
;---
; Now the BOOK levels (700 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	700,	0,			10,		8,		"Namek",		70,				7

	DESCRIPTION	"Nameks are strange aliens but powerful."
	AUTO_MAX	50, 16000,  900, 32000,  0	
    MAGIC_RATIO 70
    HAND_RATIO  70

; the class levels
	701,	0,			1,		2,		"Namek"			
	705,	0,			2,		5,		"Namek",		
	710,	0,			5,		8,		"Namek",			
	720,	0,			8,		12,		"Namek",			
	730,	0,			10,		14,		"Namek",				
	740,	0,			12,		16,		"Namek",			
	750,	0,			15,		19,		"Namek",			
	760,	0,			20,		23,		"Namek",		
	770,	0,			30,		30,		"Fused Namek",		
	780,	0,			50,		35,		"Fused Namek"
	790,	0,			65,		55,		"Super Namek",


;
;	
;---
; Now the SAIYAN levels (800 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			9		0		4					5				  6
;
; The class name
	800,	0,			8,		20,		"Saiyan",	-200,		          500, 

	DESCRIPTION	"These saiyans have great power to destroy the world. They are considered the strongest."
	AUTO_MAX	50, 20000, 20, 32000,  0	
    MAGIC_RATIO 100
    
; the class levels
	801,	0,			1,		5,		"Saiyan"			
	805,	0,			2,		8,		"Saiyan 2",		
	810,	0,			4,		15,		"Saiyan 3",			
	820,	0,			6,		20,		"Saiyan 4",			
	830,	0,			8,		25,		"Saiyan 5",				
	840,	0,			10,		30,		"Super Saiyan",			
	850,	0,			13,		35,		"Accended Saiyan",			
	860,	0,			16,		40,		"Super Saiyan 2",		
	870,	0,			19,		45,		"Super Saiyan 3",		
	880,	0,			24,		50,		"Super Saiyan 4"
	890,	0,			65,		55,		"Super Saiyan 5",


; Now the SAIYAN levels (800 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			9		0		4					5				  6
;
; The class name
	900,	0,			8,		20,		"Saiyan",	      -300,		          800, 

	DESCRIPTION	"Secret mode to Saiyans. They are the REAL strongest Saiyans."
	AUTO_MAX	30000, 30000, 32000, 32000,  0	
    HIDDEN_CLASS 101
    MAGIC_RATIO 100
;   START_ELEMENT_PP  0,1,2,3,4,5,6,7
    START_ELEMENT_PP  1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000
;   START_HAND_PP     0,1,2,3,4,5,6,7
    START_HAND_PP     1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000
    
; the class levels
	901,	0,			90,		90,		"Dragontenks"			



; Now the SAIYAN levels (800 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			9		0		4					5				  6
;
; The class name
	1100,	0,			8,		20,		"Saiyan",	      0,		            8, 

	DESCRIPTION	"Mystic Saiyans are no ordinary Saiyans, they are the Saiyans Powered up by great ancestors of Kais."
	AUTO_MAX	500, 28595, 600, 32000,  0	
    HIDDEN_CLASS 
    MAGIC_RATIO 100
    HAND_RATIO 100
;   START_ELEMENT_PP  0,1,2,3,4,5,6,7
    START_ELEMENT_PP  1000000,0,0,0,500000,0,1000000,0
;   START_HAND_PP     0,1,2,3,4,5,6,7
    START_HAND_PP     1000000,1000000,0,0,1000000,0,1000000,1000000
    START_ITEMS 399    

; the class levels
	1101,	0,			70,		70,		"Mystic Saiyan"			

	

;------------------------------------------
; Now the ULTIAMTE levels (800 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			9		0		4					5				  6
;
; The class name
	1000,	0,			8,		20,		"Saiyan God",	      -300,		          800, 

	DESCRIPTION	"Final Form of Dragontenks, only Saiyan Gods have this power."
	AUTO_MAX	32000, 32000, 32000, 32000,  0	
    HIDDEN_CLASS 101
    MAGIC_RATIO 100
;   START_ELEMENT_PP  0,1,2,3,4,5,6,7
    START_ELEMENT_PP  1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000
;   START_HAND_PP     0,1,2,3,4,5,6,7
    START_HAND_PP     1000000,1000000,1000000,1000000,1000000,1000000,1000000,1000000
    START_ABILITY     255, 255, 255, 255, 255
; the class levels
	1001,	0,			90,		90,		"Dragontenks 20"			
    1002,   0,          101,    101,    "Final Dragontenks"
	
;
;	
;---
; Now the Chuunin levels (600 + level #)
;  CCLL	    Exp_Pts.	MaxHP	maxMP	Level_name			Magic-ratio		Right-Hand
;	0		1			2		3		4					5				6
;
; The class name
	1200,	0,			18,		0,		"Konoha Ninja",		20,				6

	DESCRIPTION	"Konoha Ninjas, you know, from that show, NARUTO!!!"
	AUTO_MAX	65, 17500,  70, 32000,  0	
	HAND_RATIO  80
    MAGIC_RATIO 80
    HIDDEN_CLASS
    MAX_ABILITY 120,140,120,135,120
;the class levels
    1201,  0,           90,     90,      "Chuunin",    





; i have a comment..............comment

	
	

