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.

30 lines
552 B

3 years ago
package org.poopki.duckdns.user_db;
public class Status {
int m_HP;
int m_MP;
int m_Level;
int m_STR;
int m_DEX;
int m_INT;
int m_LUK;
int m_PATK;
int m_PDEF;
int m_MATK;
int m_MDEF;
//방어율 = (방어력 / (100 + 방어력)
//Add Equipment Class instance
public Status(int HP, int MP, int Level, int STR, int DEX, int INT, int LUK){
m_HP = HP;
m_MP = MP;
m_Level = Level;
m_STR = STR;
m_DEX = DEX;
m_INT = INT;
m_LUK = LUK;
}
}