mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
featurecomplete spellparsing? MADNESS!
jk, it's probably not complete ... and probably even worse to understand than the previous version, BUT
- it documents all variables, constructs and functions i've seen used
- it can and will evaluate variables from SpellDescriptionVariables.dbc
- it will try to solve formulas as far as possible and respect modifiers for float-precision
e.g.: ${(1+6)/3}.2 should resolve to 2.33
what's missing: the if-constructs that check for auras and known spells may be parsed to html-comments and manipulated by javascript .. welllllow priority
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -263,6 +263,7 @@ $lang = array(
|
||||
),
|
||||
'spell' => array(
|
||||
'remaining' => "Noch %s",
|
||||
'untilCanceled' => "bis Abbruch",
|
||||
'castIn' => "Wirken in %s Sek.",
|
||||
'instantPhys' => "Sofort",
|
||||
'instantMagic' => "Spontanzauber",
|
||||
@@ -271,6 +272,7 @@ $lang = array(
|
||||
'meleeRange' => "Nahkampfreichweite",
|
||||
'reagents' => "Reagenzien",
|
||||
'tools' => "Extras",
|
||||
'home' => "%lt;Gasthaus>",
|
||||
'pctCostOf' => "vom Grund%s",
|
||||
'costPerSec' => ", plus %s pro Sekunde",
|
||||
'costPerLevel' => ", plus %s pro Stufe",
|
||||
|
||||
@@ -265,6 +265,7 @@ $lang = array(
|
||||
),
|
||||
'spell' => array(
|
||||
'remaining' => "%s remaining",
|
||||
'untilCanceled' => "until canceled",
|
||||
'castIn' => "%s sec cast",
|
||||
'instantPhys' => "Instant",
|
||||
'instantMagic' => "Instant cast",
|
||||
@@ -273,6 +274,7 @@ $lang = array(
|
||||
'meleeRange' => "Melee Range",
|
||||
'reagents' => "Reagents",
|
||||
'tools' => "Tools",
|
||||
'home' => "<Inn>",
|
||||
'pctCostOf' => "of base %s",
|
||||
'costPerSec' => ", plus %s per second",
|
||||
'costPerLevel' => ", plus %s per level",
|
||||
|
||||
@@ -160,6 +160,7 @@ $lang = array(
|
||||
),
|
||||
'spell' => array(
|
||||
'remaining' => "%s restantes",
|
||||
'untilCanceled' => "hasta que se cancela",
|
||||
'castIn' => "Hechizo de %s seg",
|
||||
'instantPhys' => "Instante",
|
||||
'instantMagic' => "Hechizo instantáneo",
|
||||
@@ -168,6 +169,7 @@ $lang = array(
|
||||
'meleeRange' => "Alcance de ataques cuerpo a cuerpo",
|
||||
'reagents' => "Componentes",
|
||||
'tools' => "Herramientas",
|
||||
'home' => "<Posada>",
|
||||
'pctCostOf' => "del %s base",
|
||||
'costPerSec' => ", mas %s por segundo",
|
||||
'costPerLevel' => ", mas %s por nivel",
|
||||
|
||||
@@ -164,6 +164,7 @@ $lang = array(
|
||||
),
|
||||
'spell' => array(
|
||||
'remaining' => "%s restantes",
|
||||
'untilCanceled' => "jusqu’à annulation",
|
||||
'castIn' => "%s s d'incantation",
|
||||
'instantPhys' => "Incantation immédiate",
|
||||
'instantMagic' => "Instantanée",
|
||||
@@ -172,6 +173,7 @@ $lang = array(
|
||||
'meleeRange' => "Allonge",
|
||||
'reagents' => "Composants",
|
||||
'tools' => "Outils",
|
||||
'home' => "%lt;Auberge>",
|
||||
'pctCostOf' => "de la %s de base",
|
||||
'costPerSec' => ", plus %s par seconde",
|
||||
'costPerLevel' => ", plus %s par niveau",
|
||||
|
||||
@@ -164,6 +164,7 @@ $lang = array(
|
||||
),
|
||||
'spell' => array(
|
||||
'remaining' => "Осталось: %s",
|
||||
'untilCanceled' => "до отмены",
|
||||
'castIn' => "Применение: %s сек.",
|
||||
'instantPhys' => "Мгновенное действие",
|
||||
'instantMagic' => "Мгновенное действие",
|
||||
@@ -171,6 +172,7 @@ $lang = array(
|
||||
'range' => "Радиус действия: %s м",
|
||||
'meleeRange' => "Дистанция ближнего боя",
|
||||
'reagents' => "Реагент",
|
||||
'home' => "%lt;Гостиница>",
|
||||
'tools' => "Инструменты",
|
||||
'pctCostOf' => "от базовой %s",
|
||||
'costPerSec' => ", плюс %s в секунду",
|
||||
|
||||
Reference in New Issue
Block a user