342 lines
7.5 KiB
C
342 lines
7.5 KiB
C
![]() |
#ifndef _BATTLE_MAGIC_H_
|
|||
|
#define _BATTLE_MAGIC_H_
|
|||
|
|
|||
|
#define MAGIC_EFFECT_USER 100600
|
|||
|
#define SPR_heal 100601
|
|||
|
#define SPR_heal2 100602
|
|||
|
#define SPR_heal3 100603
|
|||
|
#define SPR_tyusya 100604
|
|||
|
#define SPR_hoshi 100605
|
|||
|
|
|||
|
|
|||
|
#define MAGIC_ID_RECOVERY 1
|
|||
|
#define MAGIC_ID_STATUS_RECOVERY 3
|
|||
|
#define MAGIC_ID_FIELD_CHANGE 4
|
|||
|
#define MAGIC_ID_BADSTATUS 5
|
|||
|
|
|||
|
enum{
|
|||
|
BFUKI_CAPTUREUP,
|
|||
|
BFUKI_END
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
enum{
|
|||
|
PC_KIND_NONE,
|
|||
|
PC_KIND_ATTACK,
|
|||
|
PC_KIND_DEFENSE,
|
|||
|
PC_KIND_QUICK,
|
|||
|
PC_KIND_CHARM,
|
|||
|
PC_KIND_CAPTURE,
|
|||
|
PC_KIND_END
|
|||
|
};
|
|||
|
|
|||
|
int MAGIC_Recovery_Battle(
|
|||
|
int charaindex,
|
|||
|
int toindex,
|
|||
|
int magicindex,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
int MAGIC_FieldAttChange_Battle(
|
|||
|
int charaindex,
|
|||
|
int toindex,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
int MAGIC_StatusChange_Battle(
|
|||
|
int charaindex,
|
|||
|
int toindex,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
#ifdef _MAGIC_DEEPPOISON
|
|||
|
int MAGIC_StatusChange_Battle2(
|
|||
|
int charaindex,
|
|||
|
int toindex,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
int MAGIC_MagicStatusChange_Battle( int charaindex, int toNo, int marray, int mp );
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
int MAGIC_MagicDef_Battle(
|
|||
|
int charaindex,
|
|||
|
int toNo,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
void BATTLE_MultiRecovery(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int kind,
|
|||
|
int power,
|
|||
|
int per,
|
|||
|
int UseEffect,
|
|||
|
#ifdef _CHANGEITEMUSE // Syu ADD <20><><EFBFBD><EFBFBD>ս<EFBFBD><D5BD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>趨
|
|||
|
int RecevEffect,
|
|||
|
int power1
|
|||
|
#else
|
|||
|
int RecevEffect
|
|||
|
#endif
|
|||
|
|
|||
|
);
|
|||
|
|
|||
|
#ifdef _IMPRECATE_ITEM
|
|||
|
void BATTLE_ImprecateRecovery(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int kind,
|
|||
|
int powers,
|
|||
|
int rounds,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
#endif
|
|||
|
void BATTLE_MultiStatusChange(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int status,
|
|||
|
int turn,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect,
|
|||
|
int Success
|
|||
|
);
|
|||
|
|
|||
|
#ifdef _OTHER_MAGICSTAUTS
|
|||
|
void BATTLE_MultiMagicStatusChange(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int status,
|
|||
|
int turn,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect,
|
|||
|
int nums
|
|||
|
);
|
|||
|
#endif
|
|||
|
|
|||
|
void BATTLE_MultiMagicDef(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int kind,
|
|||
|
int count,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
|
|||
|
void BATTLE_MultiParamChange(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int kind,
|
|||
|
int power,
|
|||
|
int par,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
|
|||
|
int MAGIC_FieldAttChange_Battle(
|
|||
|
int charaindex,
|
|||
|
int toNo,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
int BATTLE_FieldAttChange(
|
|||
|
int charaindex,
|
|||
|
char *pArg
|
|||
|
);
|
|||
|
|
|||
|
void BATTLE_MultiAttReverse(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
|
|||
|
|
|||
|
void BATTLE_MultiStatusRecovery(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int status,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
|
|||
|
int MAGIC_StatusRecovery_Battle(
|
|||
|
int charaindex,
|
|||
|
int toNo,
|
|||
|
int marray,
|
|||
|
int mp
|
|||
|
);
|
|||
|
|
|||
|
void BATTLE_MultiRessurect(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int power,
|
|||
|
int per,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
|
|||
|
void BATTLE_MultiCaptureUp(
|
|||
|
int battleindex,
|
|||
|
int attackNo,
|
|||
|
int toNo,
|
|||
|
int power,
|
|||
|
int UseEffect,
|
|||
|
int RecevEffect
|
|||
|
);
|
|||
|
//
|
|||
|
//***********************************************************
|
|||
|
|
|||
|
//****************************************************************
|
|||
|
//
|
|||
|
// <20><>姾<EFBFBD><E5A7BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int MAGIC_Ressurect_Battle(
|
|||
|
int charaindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int toNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int marray, // magicindex
|
|||
|
int mp // MP
|
|||
|
);
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE
|
|||
|
//****************************************************************
|
|||
|
|
|||
|
//****************************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD>뼰 <20><>ë<EFBFBD><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int MAGIC_AttReverse_Battle(
|
|||
|
int charaindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int toNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int marray, // magicindex
|
|||
|
int mp // MP
|
|||
|
);
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE
|
|||
|
//****************************************************************
|
|||
|
//****************************************************************
|
|||
|
//
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int MAGIC_CaptureUp_Battle(
|
|||
|
int charaindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int toNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int marray, // magicindex
|
|||
|
int mp // MP
|
|||
|
);
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE
|
|||
|
//****************************************************************
|
|||
|
|
|||
|
//***********************************************************
|
|||
|
//
|
|||
|
// ܷ<><DCB7>ƥ <20>Ѽ<EFBFBD>ƽ<EFBFBD>ҷ<EFBFBD><D2B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><C3AB><EFBFBD>ٽ<EFBFBD><D9BD><EFBFBD><EFBFBD>½<EFBFBD><C2BD>ձ<EFBFBD> ܷ <20><>ëܰ<C3AB><DCB0>
|
|||
|
//
|
|||
|
void BATTLE_MultiResAndDef(
|
|||
|
int battleindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int attackNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> į
|
|||
|
int toNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD><EFBFBD> į
|
|||
|
int power, // <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int per, // <20>Ѿ<EFBFBD><D1BE><EFBFBD>
|
|||
|
int kind, // ܷ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int count, // <20>ϼ<EFBFBD> ʲ<><CAB2>
|
|||
|
int UseEffect, // <20><><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC>ް<EFBFBD><DEB0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
int RecevEffect // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>м<EFBFBD><D0BC>ް<EFBFBD><DEB0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
);
|
|||
|
//
|
|||
|
//***********************************************************
|
|||
|
//****************************************************************
|
|||
|
//
|
|||
|
// <20><><EFBFBD>١<EFBFBD> ܷ <20><>ëܸ<C3AB><DCB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
int MAGIC_ResAndDef_Battle(
|
|||
|
int charaindex, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int toNo, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>м<EFBFBD><D0BC>̼<EFBFBD><CCBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
int marray, // magicindex
|
|||
|
int mp // MP
|
|||
|
);
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE
|
|||
|
// <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE
|
|||
|
//****************************************************************
|
|||
|
|
|||
|
#ifdef __ATTACK_MAGIC
|
|||
|
int MAGIC_AttMagic_Battle( int charaindex , int toNo , int marray , int mp );
|
|||
|
#ifdef _FIX_MAGICDAMAGE
|
|||
|
void BATTLE_MultiAttMagic( int battleindex, int attackNo, int toNo,
|
|||
|
int attIdx ,int FieldAttr ,int Power, int MagicLv);
|
|||
|
|
|||
|
#else
|
|||
|
void BATTLE_MultiAttMagic( int battleindex , int attackNo , int toNo , int attIdx , int FieldAttr , int Power );
|
|||
|
#endif
|
|||
|
int MAGIC_AttMagic_Battle( int charaindex , int toNo , int marray , int mp );
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifdef _MAGIC_TOCALL
|
|||
|
int MAGIC_ToCallDragon_Battle( int charaindex , int toNo , int marray , int mp );
|
|||
|
|
|||
|
void BATTLE_MultiToCallDragonMagic( int battleindex, int attackNo, int toNo,
|
|||
|
int attIdx ,int FieldAttr ,int Power, int ImageNo);
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _Item_ReLifeAct
|
|||
|
void BATTLE_MultiReLife( int battleindex, int attackNo, int toNo, int power, int RecevEffect );
|
|||
|
#endif
|
|||
|
#ifdef _MAGIC_WEAKEN
|
|||
|
int MAGIC_ParamChange_Turn_Battle(int charaindex,int toNo,int marray,int mp);
|
|||
|
void BATTLE_MultiParamChangeTurn( int battleindex,int attackNo,int toNo,int status,int UseEffect,int RecevEffect,int turn, int Success);
|
|||
|
#endif
|
|||
|
int BATTLE_MagicEffect( int battleindex,int attackNo,int ToList[],int MyEffect,int ToEffect );
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifdef _PROFESSION_SKILL // WON ADD <20><><EFBFBD><EFBFBD>ְҵ<D6B0><D2B5><EFBFBD><EFBFBD>
|
|||
|
void PROFESSION_MAGIC_ATTAIC( int battleindex, int attackNo, int toNo, int attIdx, int FieldAttr, int skill);
|
|||
|
int PROFESSION_MAGIC_ATTAIC_Effect( int battleindex, int attackNo, int ToList[], int AttackMgcNo );
|
|||
|
int analysis_profession_parameter( int attIdx, int skill, int toNo, int charaindex );
|
|||
|
void PROFESSION_MAGIC_GET_PRACTICE( float *hp_power, float *mp_power, float *dec_hp, float *dec_mp, int charaindex );
|
|||
|
void PROFESSION_MAGIC_TOLIST_SORT( int *list, int *listidx, int charaindex );
|
|||
|
void PROFESSION_MAGIC_CHANGE_STATUS( int charaindex, int hp_power, float mp_power, float *add_hp, float *add_mp );
|
|||
|
void PROFESSION_MAGIC_GET_IMG2( int toNo, int charaindex, int attIdx, char *pszOption );
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
int PROFESSION_MAGIC_GET_DAMAGE( int attackindex, int defindex, int magic_type, int power, int command );
|
|||
|
#else
|
|||
|
int PROFESSION_MAGIC_GET_DAMAGE( int attackindex, int defindex, int magic_type, int power );
|
|||
|
#endif
|
|||
|
int PROFESSION_MAGIC_DODGE( int atk_index, int def_index, int magic_type );
|
|||
|
void PROFESSION_MAGIC_CHANG_IMG2( int img2, char *pszOption, int attIdx );
|
|||
|
int PROFESSION_MAGIC_CHANG_STATUS(int command,int battleindex, int charaindex, int charaidx, int power, int no);
|
|||
|
int PROFESSION_MAGIC_GET_ICE_MIRROR_DAMAGE( int attackindex, int defindex, int command, int power );
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PETSKILL_FIREKILL
|
|||
|
void BATTLE_MultiAttMagic_Fire( int battleindex, int attackNo, int defNo,
|
|||
|
int FieldAttr , int Power);
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef _PROFESSION_ADDSKILL
|
|||
|
unsigned int GET_PROFESSION_magic_uiSpriteNum(int idx);
|
|||
|
#endif
|
|||
|
|
|||
|
#endif
|