]> git.localhorst.tv Git - l2e.git/blobdiff - test-data/test.l2s
added basic defeat state
[l2e.git] / test-data / test.l2s
index 944a14992464733d3b59f1daa99733646cccdbf2..59de5240c90524a28cdcef31b4200c4ff51de2a8 100644 (file)
@@ -45,6 +45,8 @@ export Monster lizard {
                gut:  6,
                mgr:  6
        },
+       expReward: 8,
+       goldReward: 5,
        attackAnimation: ComplexAnimation {
                sprite: lizardSprite,
                frametime: fourFramesTime,
@@ -89,8 +91,9 @@ export Hero maxim {
                gut: 100,
                mgr:  10
        },
-       ladder: [
-               10
+       ladder: [ LevelUp
+               // insensible test data
+               { exp: 10, maxHP: 5, maxMP: 3, atp: 2, str: 1 }
        ],
        useMask: maskMaxim,
        attackAnimation: ComplexAnimation {
@@ -647,7 +650,25 @@ export BattleResources battleResources {
        },
        noEquipmentText: "No equip",
 
-       escapeText: "Escapes."
+       escapeText: "Escapes.",
+       defeatText: "Total Defeat.",
+
+       victoryGetsText: "Gets",
+       victoryExpText: "EXP",
+       victoryGoldText: "GOLD",
+       victoryLevelUpText: "levels up",
+       victoryUpgradeText: "increases by",
+       victoryNextLevelText: "NXT.LEVEL",
+
+       victoryMHPText: "Max. HP",
+       victoryMMPText: "Max. MP",
+       victoryATPText: "ATP",
+       victoryDFPText: "DFP",
+       victorySTRText: "STR",
+       victoryAGLText: "AGL",
+       victoryINTText: "INT",
+       victoryGUTText: "GUT",
+       victoryMGRText: "MGR"
 }
 
 Font menuFont {
@@ -678,11 +699,25 @@ SimpleAnimation menuCursorAnimation {
        framecount: 6,
        repeat: true
 }
-SimpleAnimation menuActiveCursorAnimation {
+ComplexAnimation menuActiveCursorAnimation {
        sprite: menuActiveCursor,
        frametime: fourFramesTime,
-       framecount: 5,
-       repeat: true
+       repeat: true,
+       frames:
+       [ ComplexAnimationFrame
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 0 },
+               { row: 1 },
+               { row: 2 },
+               { row: 3 },
+               { row: 4 }
+       ]
 }
 
 export MenuResources menuResources {