X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FResources.cpp;h=621f61ed745186bbf1a44bbb407167d00f61a666;hb=77b070e782e664f9906487d6ee71010f659ce8b5;hp=d50571f10bb3fd1c20686b3174ac61ff49b0d0ef;hpb=b9e715649b41cb69ea1b2d2a588522541eb87b46;p=l2e.git diff --git a/src/battle/Resources.cpp b/src/battle/Resources.cpp index d50571f..621f61e 100644 --- a/src/battle/Resources.cpp +++ b/src/battle/Resources.cpp @@ -84,6 +84,23 @@ Resources::Resources() , ikariLabelCol(0) , ikariLabelRow(0) +, victoryGetsText(0) +, victoryExpText(0) +, victoryGoldText(0) +, victoryLevelUpText(0) +, victoryUpgradeText(0) +, victoryNextLevelText(0) + +, victoryMHPText(0) +, victoryMMPText(0) +, victoryATPText(0) +, victoryDFPText(0) +, victorySTRText(0) +, victoryAGLText(0) +, victoryINTText(0) +, victoryGUTText(0) +, victoryMGRText(0) + { } @@ -160,6 +177,23 @@ void Resources::CreateTypeDescription() { td.AddField("ikariLabelCol", FieldDescription(((char *)&r.ikariLabelCol) - ((char *)&r), Interpreter::NUMBER_ID).SetDescription("row of the ikari label in heroTagLabels")); td.AddField("heroesBgColor", FieldDescription(((char *)&r.heroesBgColor) - ((char *)&r), Interpreter::COLOR_ID).SetDescription("background color of the small tags during attack animation")); + + td.AddField("victoryGetsText", FieldDescription(((char *)&r.victoryGetsText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryExpText", FieldDescription(((char *)&r.victoryExpText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryGoldText", FieldDescription(((char *)&r.victoryGoldText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryLevelUpText", FieldDescription(((char *)&r.victoryLevelUpText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryUpgradeText", FieldDescription(((char *)&r.victoryUpgradeText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryNextLevelText", FieldDescription(((char *)&r.victoryNextLevelText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + + td.AddField("victoryMHPText", FieldDescription(((char *)&r.victoryMHPText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryMMPText", FieldDescription(((char *)&r.victoryMMPText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryATPText", FieldDescription(((char *)&r.victoryATPText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryDFPText", FieldDescription(((char *)&r.victoryDFPText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victorySTRText", FieldDescription(((char *)&r.victorySTRText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryAGLText", FieldDescription(((char *)&r.victoryAGLText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryINTText", FieldDescription(((char *)&r.victoryINTText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryGUTText", FieldDescription(((char *)&r.victoryGUTText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); + td.AddField("victoryMGRText", FieldDescription(((char *)&r.victoryMGRText) - ((char *)&r), Interpreter::STRING_ID).SetReferenced()); } void Resources::Construct(void *data) {