package loon.srpg.actor;
/**
* Copyright 2008 - 2011
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* @project loonframework
* @author chenpeng
* @email:ceponline@yahoo.com.cn
* @version 0.1
*/
public class SRPGActorStatus {
public String status_jobname;
public String status_jobabout;
public float[] status_max_hp;
public float[] status_max_mp;
public float[] status_power;
public float[] status_vitality;
public float[] status_agility;
public float[] status_magic;
public float[] status_resume;
public float[] status_mind;
public float[] status_sp;
public float[] status_dexterity;
public float[] status_regeneration;
public float[] status_move;
public int[] status_guardelement;
public int[] immunity;
public int[] ability;
public int[] computer;
public int status_movetype;
}