generated from Jaysyn/ModuleTemplate
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the sword card has the same suit with the shield card.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetLocalString(OBJECT_SELF, "sSwordSuit") == GetLocalString(OBJECT_SELF, "sShieldSuit"));
|
|
return iResult;
|
|
}
|