#include <iostream>
#include "cs.hpp"
#include "ss.hpp"
#include "map.hpp"
#include <string>
using namespace std;

ss::ss(){
    
}


void ss::ssf(cs cso){
    
    
    switch(cso.nc){   //start of switch
            
        case(1):
            
            health = 11;
            dexterity = 6;
            heal = 3;
            damage = 10;
            mana = 2;
            
            break;
        
            
            
            
        case(2):
            
            health = 20;
            dexterity = 1;
            heal = 1;
            damage = 8;
            mana = 2;
            
            break;
            
            
        case(3):
            
            health = 9;
            dexterity = 12;
            heal = 2;
            damage = 7;
            mana = 4;
            
            break;
            
            
            
            
        case(4):
            
            health = 15;
            dexterity = 3;
            heal = 8;
            damage = 4;
            mana = 3;
            
            break;
            
            
    }  //end of switch
    
}