Advertisement
Bluefissure

Untitled

Oct 19th, 2019
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'use strict';
  2.  
  3. // Titania Extreme
  4. [{
  5.   zoneRegex: /^(The Dancing Plague \(Extreme\)|缇坦妮雅歼殛战)$/,
  6.   timelineFile: 'titania-ex.txt',
  7.   triggers: [
  8.     {
  9.       id: 'TitaniaEx Bright Sabbath',
  10.       regex: / 14:3D4B:Titania starts using Bright Sabbath/,
  11.       regexCn: / 14:3D4B:缇坦妮雅 starts using 欢快的安息日/,
  12.       regexDe: / 14:3D4B:Titania starts using Leuchtender Sabbat/,
  13.       regexFr: / 14:3D4B:Titania starts using Sabbat En Plein Jour/,
  14.       regexJa: / 14:3D4B:ティターニア starts using ブライトサバト/,
  15.       condition: function(data) {
  16.         return data.role == 'healer';
  17.       },
  18.       infoText: {
  19.         en: 'aoe',
  20.         de: 'AoE',
  21.         fr: 'Dégâts de zone',
  22.         cn: 'AOE',
  23.       },
  24.     },
  25.     {
  26.       id: 'TitaniaEx Phantom Out',
  27.       regex: / 14:3D4C:Titania starts using Phantom Rune/,
  28.       regexCn: / 14:3D4C:缇坦妮雅 starts using 幻之符文/,
  29.       regexDe: / 14:3D4C:Titania starts using Phantomrune/,
  30.       regexFr: / 14:3D4C:Titania starts using Rune D'illusion/,
  31.      regexJa: / 14:3D4C:ティターニア starts using 幻のルーン/,
  32.      alertText: {
  33.        en: 'Out',
  34.        de: 'Raus',
  35.        ja: '外へ',
  36.        fr: 'Dehors',
  37.        cn: '远离',
  38.      },
  39.    },
  40.    {
  41.      id: 'TitaniaEx Phantom In',
  42.      regex: / 14:3D4D:Titania starts using Phantom Rune/,
  43.      regexCn: / 14:3D4D:缇坦妮雅 starts using 幻之符文/,
  44.      regexDe: / 14:3D4D:Titania starts using Phantomrune/,
  45.      regexFr: / 14:3D4D:Titania starts using Rune D'illusion/,
  46.       regexJa: / 14:3D4D:ティターニア starts using 幻のルーン/,
  47.       alertText: {
  48.         en: 'In',
  49.         de: 'Rein',
  50.         ja: '中へ',
  51.         fr: 'Dedans',
  52.         cn: '靠近',
  53.       },
  54.     },
  55.     {
  56.       id: 'TitaniaEx Mist Failure',
  57.       regex: / 03:\y{ObjectId}:Added new combatant Spirit Of Dew\./,
  58.       regexCn: / 03:\y{ObjectId}:Added new combatant 水精\./,
  59.       regexDe: / 03:\y{ObjectId}:Added new combatant Wasserfee\./,
  60.       regexFr: / 03:\y{ObjectId}:Added new combatant Esprit Des Rosées\./,
  61.       regexJa: / 03:\y{ObjectId}:Added new combatant 水の精\./,
  62.       infoText: {
  63.         en: 'Kill Extra Add',
  64.         de: 'Add angreifen',
  65.         ja: '水の精倒して',
  66.         fr: 'Tuez l\'add',
  67.         cn: '攻击小怪',
  68.       },
  69.     },
  70.     {
  71.       id: 'TitaniaEx Mist',
  72.       regex: / 14:3D45:Titania starts using Mist Rune/,
  73.       regexCn: / 14:3D45:缇坦妮雅 starts using 水之符文/,
  74.       regexDe: / 14:3D45:Titania starts using Nebelrune/,
  75.       regexFr: / 14:3D45:Titania starts using Rune D'eau/,
  76.      regexJa: / 14:3D45:ティターニア starts using 水のルーン/,
  77.      infoText: function(data) {
  78.        if (data.seenMistRune) {
  79.          return {
  80.            en: 'In/Out, then Water Positions',
  81.            de: 'Rein/Raus, danach Wasser Positionen',
  82.            ja: '/外避けてポジションへ',
  83.            fr: 'Dedans/Dehors puis position pour l\'eau',
  84.             cn: '靠近/远离, 水圈站位',
  85.           };
  86.         }
  87.         return {
  88.           en: 'Water Positions',
  89.           de: 'Wasser Positionen',
  90.           ja: 'ポジションへ',
  91.           fr: 'Position pour l\'eau',
  92.           cn: '水圈站位',
  93.         };
  94.       },
  95.       run: function(data) {
  96.         data.seenMistRune = true;
  97.       },
  98.     },
  99.     {
  100.       id: 'TitaniaEx Flame',
  101.       regex: / 14:3D47:Titania starts using Flame Rune/,
  102.       regexCn: / 14:3D47:缇坦妮雅 starts using 火之符文/,
  103.       regexDe: / 14:3D47:Titania starts using Flammenrune/,
  104.       regexFr: / 14:3D47:Titania starts using Rune De Feu/,
  105.       regexJa: / 14:3D47:ティターニア starts using 火のルーン/,
  106.       // You have 16.5 seconds until the first stack damage.
  107.       delaySeconds: 8.5,
  108.       alertText: function(data) {
  109.         if (data.seenFlameRune) {
  110.           return {
  111.             en: 'Stack (maybe rotate?)',
  112.             de: 'Sammeln (evtl rotieren?)',
  113.             ja: 'シェア (多分時計回り?)',
  114.             fr: 'Packez-vous (rotation ?)',
  115.             cn: '集合 (可能旋转?)',
  116.           };
  117.         }
  118.         return {
  119.           en: 'Stack Positions',
  120.           de: 'Sammel-Positionen',
  121.           ja: 'シェア',
  122.           fr: 'Packez-vous',
  123.           cn: '集合站位',
  124.         };
  125.       },
  126.       run: function(data) {
  127.         data.seenFlameRune = true;
  128.       },
  129.     },
  130.     {
  131.       id: 'TitaniaEx Divination',
  132.       regex: / 14:3D4A:Titania starts using Divination Rune on (\y{Name})/,
  133.       regexCn: / 14:3D4A:缇坦妮雅 starts using 魔之符文 on (\y{Name})/,
  134.       regexDe: / 14:3D4A:Titania starts using Prophezeiungsrune on (\y{Name})/,
  135.       regexFr: / 14:3D4A:Titania starts using Rune De Malice on (\y{Name})/,
  136.       regexJa: / 14:3D4A:ティターニア starts using 魔のルーン on (\y{Name})/,
  137.       alertText: function(data, matches) {
  138.         if (matches[1] == data.me) {
  139.           return {
  140.             en: 'Tank Cleave on YOU',
  141.             de: 'Tank Cleave auf DIR',
  142.             ja: '自分にタンクバスター',
  143.             fr: 'Tank cleave sur vous',
  144.             cn: '坦克顺劈点名',
  145.           };
  146.         }
  147.       },
  148.       infoText: function(data, matches) {
  149.         if (matches[1] != data.me) {
  150.           return {
  151.             en: 'Tank Cleave on ' + data.ShortName(matches[1]),
  152.             de: 'Tank Cleave auf ' + data.ShortName(matches[1]),
  153.             ja: data.ShortName(matches[1]) + 'にタンクバスター',
  154.             fr: 'Tank cleave sur ' + data.ShortName(matches[1]),
  155.             cn: '坦克顺劈 -> ' + data.ShortName(matches[1]),
  156.           };
  157.         }
  158.       },
  159.     },
  160.     {
  161.       id: 'TitaniaEx Bramble 1',
  162.       regex: / 14:42D7:Titania starts using Chain Of Brambles/,
  163.       regexCn: / 14:42D7:缇坦妮雅 starts using 荆棘链/,
  164.       regexDe: / 14:42D7:Titania starts using Dornenfessel/,
  165.       regexFr: / 14:42D7:Titania starts using Chaînes De Ronces/,
  166.       regexJa: / 14:42D7:ティターニア starts using ブランブルチェーン/,
  167.       infoText: {
  168.         en: 'Wait For Tethers In Center',
  169.         de: 'Auf die Verbindung in der Mitte warten',
  170.         ja: '中央で待機',
  171.         fr: 'Attente des liens au centre',
  172.         cn: '中间集合等待荆棘',
  173.       },
  174.     },
  175.     {
  176.       id: 'TitaniaEx Bramble 2',
  177.       regex: / 14:42D7:Titania starts using Chain Of Brambles/,
  178.       regexCn: / 14:42D7:缇坦妮雅 starts using 荆棘链/,
  179.       regexDe: / 14:42D7:Titania starts using Dornenfessel/,
  180.       regexFr: / 14:42D7:Titania starts using Chaînes De Ronces/,
  181.       regexJa: / 14:42D7:ティターニア starts using ブランブルチェーン/,
  182.       delaySeconds: 3,
  183.       alertText: {
  184.         en: 'Run!',
  185.         de: 'Lauf!',
  186.         ja: '走れ!',
  187.         fr: 'Courez !',
  188.         cn: '跑!',
  189.       },
  190.     },
  191.     {
  192.       id: 'TitaniaEx Bramble Knockback',
  193.       regex: / 15:\y{ObjectId}:Puck:3D42:Puck's Rebuke:/,
  194.      regexCn: / 15:\y{ObjectId}:帕克:3D42:帕克的指责:/,
  195.      regexDe: / 15:\y{ObjectId}:Puck:3D42:Pucks Tadel:/,
  196.      regexFr: / 15:\y{ObjectId}:Puck:3D42:Réprimande De Puck:/,
  197.      regexJa: / 15:\y{ObjectId}:パック:3D42:パックレビューク:/,
  198.      alertText: {
  199.        en: 'Diagonal Knockback Soon',
  200.        de: 'diagonaler Knockback bald',
  201.        ja: '対角に飛ぶ',
  202.        fr: 'Poussée en diagonale bientôt',
  203.        cn: '对角击退准备',
  204.      },
  205.    },
  206.    {
  207.      id: 'TitaniaEx Fae Light',
  208.      regex: / 14:3D2C:Titania starts using Fae Light/,
  209.      regexCn: / 14:3D2C:缇坦妮雅 starts using 妖灵光/,
  210.      regexDe: / 14:3D2C:Titania starts using Feenlicht/,
  211.      regexFr: / 14:3D2C:Titania starts using Lueur Féérique/,
  212.      regexJa: / 14:3D2C:ティターニア starts using 妖精光/,
  213.      alertText: function(data) {
  214.        if (data.role == 'tank' || data.role == 'healer') {
  215.          return {
  216.            en: 'Tank Buster',
  217.            de: 'Tankbuster',
  218.            fr: 'Tankbuster',
  219.            ja: 'タンクバスター',
  220.            cn: '死刑',
  221.          };
  222.        }
  223.      },
  224.      infoText: function(data) {
  225.        if (data.role != 'tank' && data.role != 'healer') {
  226.          return {
  227.            en: 'Tank Cleave',
  228.            de: 'Tank Cleave',
  229.            ja: 'タンクバスター',
  230.            fr: 'Tank cleave',
  231.            cn: '坦克顺劈',
  232.          };
  233.        }
  234.      },
  235.    },
  236.    {
  237.      id: 'TitaniaEx Frost Rune 1',
  238.      regex: / 14:3D2A:Titania starts using Frost Rune/,
  239.      regexCn: / 14:3D2A:缇坦妮雅 starts using 冰之符文/,
  240.      regexDe: / 14:3D2A:Titania starts using Frostrune/,
  241.      regexFr: / 14:3D2A:Titania starts using Rune De Gel/,
  242.      regexJa: / 14:3D2A:ティターニア starts using 氷のルーン/,
  243.      infoText: {
  244.        en: 'Get Middle, Shiva Circles',
  245.        de: 'In die Mitte, Shiva Kreise',
  246.        ja: 'シヴァの輪っか',
  247.        fr: 'Allez au milieu, comme sur Shiva',
  248.        cn: '中间集合, 九连环',
  249.      },
  250.    },
  251.    {
  252.      id: 'TitaniaEx Frost Rune 2',
  253.      regex: / 14:3D2A:Titania starts using Frost Rune/,
  254.      regexCn: / 14:3D2A:缇坦妮雅 starts using 冰之符文/,
  255.      regexDe: / 14:3D2A:Titania starts using Frostrune/,
  256.      regexFr: / 14:3D2A:Titania starts using Rune De Gel/,
  257.      regexJa: / 14:3D2A:ティターニア starts using 氷のルーン/,
  258.      delaySeconds: 6.5,
  259.      infoText: {
  260.        en: 'Run Out',
  261.        de: 'Raus gehen',
  262.        ja: '外へ',
  263.        fr: 'Allez à l\'extérieur',
  264.         cn: '远离',
  265.       },
  266.     },
  267.     {
  268.       id: 'TitaniaEx Frost Rune 3',
  269.       regex: / 1[56]:\y{ObjectId}:Titania:3D2B:Frost Rune:/,
  270.       regexCn: / 1[56]:\y{ObjectId}:缇坦妮雅:3D2B:冰之符文:/,
  271.       regexDe: / 1[56]:\y{ObjectId}:Titania:3D2B:Frostrune:/,
  272.       regexFr: / 1[56]:\y{ObjectId}:Titania:3D2B:Rune De Gel:/,
  273.       regexJa: / 1[56]:\y{ObjectId}:ティターニア:3D2B:氷のルーン:/,
  274.       suppressSeconds: 60,
  275.       infoText: {
  276.         en: 'Run In',
  277.         de: 'Rein gehen',
  278.         ja: '中へ',
  279.         fr: 'Allez au centre',
  280.         cn: '靠近',
  281.       },
  282.     },
  283.     {
  284.       id: 'TitaniaEx Growth Rune',
  285.       regex: / 14:3D2E:Titania starts using Growth Rune/,
  286.       regexCn: / 14:3D2E:缇坦妮雅 starts using 根之符文/,
  287.       regexDe: / 14:3D2E:Titania starts using Wachstumsrune/,
  288.       regexFr: / 14:3D2E:Titania starts using Rune De Racine/,
  289.       regexJa: / 14:3D2E:ティターニア starts using 根のルーン/,
  290.       infoText: {
  291.         en: 'Roots',
  292.         de: 'Ranken',
  293.         ja: '根のルーン',
  294.         fr: 'Racines',
  295.         cn: '根系生长',
  296.       },
  297.     },
  298.     {
  299.       id: 'TitaniaEx Uplift Markers',
  300.       regex: / 1B:\y{ObjectId}:(\y{Name}):....:....:008B:/,
  301.       condition: function(data, matches) {
  302.         return data.me == matches[1];
  303.       },
  304.       infoText: {
  305.         en: 'Spread',
  306.         de: 'Verteilen',
  307.         ja: '散開',
  308.         fr: 'Dispersez-vous',
  309.         cn: '分散',
  310.       },
  311.     },
  312.     {
  313.       id: 'TitaniaEx Hard Swipe',
  314.       regex: / 14:3D36:Peaseblossom starts using Hard Swipe on (\y{Name})/,
  315.       regexCn: / 14:3D36:豌豆花 starts using 强烈重击 on (\y{Name})/,
  316.       regexDe: / 14:3D36:Bohnenblüte starts using Harter Hieb on (\y{Name})/,
  317.       regexFr: / 14:3D36:Fleur-De-Pois starts using Fauchage Brutal on (\y{Name})/,
  318.       regexJa: / 14:3D36:ピーズブロッサム starts using ハードスワイプ on (\y{Name})/,
  319.       condition: function(data, matches) {
  320.         return data.me == matches[1];
  321.       },
  322.       infoText: {
  323.         en: 'Tank Buster',
  324.         de: 'Tankbuster',
  325.         fr: 'Tankbuster',
  326.         ja: 'タンクバスター',
  327.         cn: '死刑',
  328.       },
  329.     },
  330.     {
  331.       id: 'TitaniaEx Pummel',
  332.       regex: / 14:3D37:Puck starts using Pummel on (\y{Name})/,
  333.       regexCn: / 14:3D37:帕克 starts using 殴打 on (\y{Name})/,
  334.       regexDe: / 14:3D37:Puck starts using Deftige Dachtel on (\y{Name})/,
  335.       regexFr: / 14:3D37:Puck starts using Torgnole on (\y{Name})/,
  336.       regexJa: / 14:3D37:パック starts using 殴打 on (\y{Name})/,
  337.       condition: function(data) {
  338.         return data.role == 'tank';
  339.       },
  340.       preRun: function(data) {
  341.         data.pummelCount = data.pummelCount || 0;
  342.         data.pummelCount++;
  343.       },
  344.       infoText: function(data) {
  345.         return {
  346.           en: 'Pummel ' + data.pummelCount,
  347.           de: 'Deftige Dachtel ' + data.pummelCount,
  348.           ja: '殴打 ' + data.pummelCount,
  349.           fr: 'Torgnole ' + data.pummelCount,
  350.           cn: '殴打 ' + data.pummelCount,
  351.         };
  352.       },
  353.     },
  354.     {
  355.       id: 'TitaniaEx Peasebomb',
  356.       regex: / 1B:\y{ObjectId}:(\y{Name}):....:....:00BD:/,
  357.       condition: function(data, matches) {
  358.         return data.me == matches[1];
  359.       },
  360.       infoText: {
  361.         en: 'Spread',
  362.         de: 'Verteilen',
  363.         ja: '散開',
  364.         fr: 'Ecartez-vous',
  365.         cn: '分散',
  366.       },
  367.       run: function(data) {
  368.         data.bomb = data.bomb || {};
  369.         data.bomb[data.me] = true;
  370.       },
  371.     },
  372.     {
  373.       id: 'TitaniaEx Peasebomb Use',
  374.       regex: / 1[56]:\y{ObjectId}:Peaseblossom:3D3F:Peasebomb:/,
  375.       regexCn: / 1[56]:\y{ObjectId}:豌豆花:3D3F:豌豆炸弹:/,
  376.       regexDe: / 1[56]:\y{ObjectId}:Bohnenblüte:3D3F:Bohnenbombe:/,
  377.       regexFr: / 1[56]:\y{ObjectId}:Fleur-de-pois:3D3F:Haricot Explosif:/,
  378.       regexJa: / 1[56]:\y{ObjectId}:ピーズブロッサム:3D3F:ビーズボム:/,
  379.       run: function(data) {
  380.         delete data.bomb;
  381.       },
  382.     },
  383.     {
  384.       id: 'TitaniaEx Adds Stack',
  385.       regex: / 1B:\y{ObjectId}:(\y{Name}):....:....:00A1:/,
  386.       delaySeconds: 0.25,
  387.       alertText: function(data, matches) {
  388.         if (data.me == matches[1]) {
  389.           return {
  390.             en: 'Stack on YOU',
  391.             de: 'Auf DIR sammeln',
  392.             ja: '自分にシェア',
  393.             fr: 'Package sur VOUS',
  394.             cn: '集合点名',
  395.           };
  396.         }
  397.  
  398.         if (data.bomb && data.bomb[data.me])
  399.           return;
  400.  
  401.         return {
  402.           en: 'Stack on ' + data.ShortName(matches[1]),
  403.           de: 'Auf ' + data.ShortName(matches[1]) + ' sammeln',
  404.           fr: 'Package sur ' + data.ShortName(matches[1]),
  405.           cn: '靠近 ' + data.ShortName(matches[1]) + '集合',
  406.         };
  407.       },
  408.     },
  409.     {
  410.       id: 'TitaniaEx Thunder Tether',
  411.       regex: / 23:\y{ObjectId}:Titania:\y{ObjectId}:\y{Name}:....:....:0054:/,
  412.       regexCn: / 23:\y{ObjectId}:缇坦妮雅:\y{ObjectId}:\y{Name}:....:....:0054:/,
  413.       regexDe: / 23:\y{ObjectId}:Titania:\y{ObjectId}:\y{Name}:....:....:0054:/,
  414.       regexFr: / 23:\y{ObjectId}:Titania:\y{ObjectId}:\y{Name}:....:....:0054:/,
  415.       regexJa: / 23:\y{ObjectId}:ティターニア:\y{ObjectId}:\y{Name}:....:....:0054:/,
  416.       suppressSeconds: 60,
  417.       alertText: {
  418.         en: 'Initial Thunder Tether',
  419.         de: 'initiale Blitz Verbindung',
  420.         ja: '線一人目',
  421.         fr: 'Lien de foudre initial',
  422.         cn: '初始雷连线',
  423.       },
  424.     },
  425.     {
  426.       id: 'TitaniaEx Thunder Rune',
  427.       regex: / 1[56]:\y{ObjectId}:Titania:3D29:Thunder Rune:/,
  428.       regexCn: / 1[56]:\y{ObjectId}:缇坦妮雅:3D29:雷之符文:/,
  429.       regexDe: / 1[56]:\y{ObjectId}:Titania:3D29:Donnerrune:/,
  430.       regexFr: / 1[56]:\y{ObjectId}:Titania:3D29:Rune De Foudre:/,
  431.       regexJa: / 1[56]:\y{ObjectId}:ティターニア:3D29:雷のルーン:/,
  432.       preRun: function(data) {
  433.         data.thunderCount = data.thunderCount || 1;
  434.       },
  435.       suppressSeconds: 1,
  436.       infoText: function(data) {
  437.         return {
  438.           en: 'Thunder ' + data.thunderCount,
  439.           de: 'Blitz ' + data.thunderCount,
  440.           ja: '線' + data.thunderCount + '人目',
  441.           fr: 'Foudre ' + data.thunderCount,
  442.           cn: '雷连线 #' + data.thunderCount,
  443.         };
  444.       },
  445.       run: function(data, matches) {
  446.         data.thunderCount++;
  447.         data.thunderTime = matches[1];
  448.       },
  449.     },
  450.     {
  451.       id: 'TitaniaEx Thunder Cleanup',
  452.       regex: / 14:3D32:Titania starts using Being Mortal/,
  453.       regexCn: / 14:3D32:缇坦妮雅 starts using 终有一死/,
  454.       regexDe: / 14:3D32:Titania starts using Sterblichkeit/,
  455.       regexFr: / 14:3D32:Titania starts using Deuil Des Vivants/,
  456.       regexJa: / 14:3D32:ティターニア starts using 死すべき定め/,
  457.       run: function(data) {
  458.         delete data.thunderCount;
  459.       },
  460.     },
  461.   ],
  462.   timelineReplace: [
  463.     {
  464.       'locale': 'de',
  465.       'replaceSync': {
  466.         'Spirit of Flame': 'Feuerfee',
  467.         'Spirit of Wood': 'Holzfee',
  468.         'Titania': 'Titania',
  469.         'Puck': 'Puck',
  470.         'Peaseblossom': 'Bohnenblüte',
  471.         'Mustardseed': 'Senfsamen',
  472.         'Engage!': 'Start!',
  473.       },
  474.       'replaceText': {
  475.         'attack': 'Attacke',
  476.         'Wood\'s Embrace': 'Umarmung des Waldes',
  477.         'Whispering Wind': 'Flüsternde Winde',
  478.         'War and Pease': 'Bohnenkrieg',
  479.         'Wallop': 'Eindreschen',
  480.         'Uplift': 'Feenring',
  481.         'Unknown Ability': 'Unknown Ability',
  482.         'Thunder Rune': 'Donnerrune',
  483.         'Pummel': 'Deftige Dachtel',
  484.         'Puck\'s Rebuke': 'Pucks Tadel',
  485.         'Puck\'s Caprice': 'Pucks Laune',
  486.         'Puck\'s Breath': 'Pucks Atem',
  487.         'Phantom Rune': 'Phantomrune',
  488.         'Peasebomb': 'Bohnenbombe',
  489.         'Pease': 'Bohne',
  490.         'Mist Rune': 'Nebelrune',
  491.         'Midsummer Night\'s Dream': 'Mittsommernachtstraum',
  492.         'Love-in-Idleness': 'Liebevoller Müßiggang',
  493.         'Leafstorm': 'Blättersturm',
  494.         'Hard Swipe': 'Harter Hieb',
  495.         'Growth Rune': 'Wachstumsrune',
  496.         'Gentle Breeze': 'Sanfte Brise',
  497.         'Frost Rune': 'Frostrune',
  498.         'Flame Rune': 'Flammenrune',
  499.         'Flame Hammer': 'Flammenhammer',
  500.         'Fae Light': 'Feenlicht',
  501.         'Enrage': 'Finalangriff',
  502.         'Divination Rune': 'Prophezeiungsrune',
  503.         'Chain Of Brambles': 'Dornenfessel',
  504.         'Bright Sabbath': 'Leuchtender Sabbat',
  505.         'Being Mortal': 'Sterblichkeit',
  506.         '--untargetable--': '--nich anvisierbar--',
  507.         '--targetable--': '--anvisierbar--',
  508.         '--center--': '--Mitte--',
  509.         'Love-In-Idleness': 'Liebevoller Müßiggang',
  510.       },
  511.       '~effectNames': {
  512.         'Thorny Vine': 'Dornenranken',
  513.         'Summon Order': 'Egi-Attacke I',
  514.         'Lightning Resistance Down II': 'Blitzresistenz - (stark)',
  515.         'Fire Resistance Up': 'Feuerresistenz +',
  516.         'Fire Resistance Down II': 'Feuerresistenz - (stark)',
  517.         'Embolden': 'Ermutigen',
  518.         'Blunt Resistance Down': 'Schlagresistenz -',
  519.       },
  520.     },
  521.     {
  522.       'locale': 'fr',
  523.       'replaceSync': {
  524.         'spirit of flame': 'Esprit Des Flammes',
  525.         'Titania': 'Titania',
  526.         'Puck': 'Puck',
  527.         'Peaseblossom': 'Fleur-de-pois',
  528.         'Mustardseed': 'Pousse-de-moutarde',
  529.         'Innocence': 'Innocence',
  530.         'Engage!': 'À l\'attaque',
  531.       },
  532.       'replaceText': {
  533.         'attack': 'Attaque',
  534.         'Wood\'s Embrace': 'Étreinte de la nature',
  535.         'Whispering Wind': 'Vent susurrant',
  536.         'War and Pease': 'La fin des haricots',
  537.         'Wallop': 'Rossée',
  538.         'Uplift': 'Exhaussement',
  539.         'Unknown Ability': 'Unknown Ability',
  540.         'Thunder Rune': 'Rune de foudre',
  541.         'Pummel': 'Torgnole',
  542.         'Puck\'s Rebuke': 'Réprimande de Puck',
  543.         'Puck\'s Caprice': 'Toquade de Puck',
  544.         'Puck\'s Breath': 'Haleine de Puck',
  545.         'Phantom Rune': 'Rune d\'illusion',
  546.         'Peasebomb': 'Haricot explosif',
  547.         'Pease': 'Explosion de haricot',
  548.         'Mist Rune': 'Rune d\'eau',
  549.         'Midsummer Night\'s Dream': 'Songe d\'une nuit d\'été',
  550.         'Love-in-Idleness': 'Pensées sauvages',
  551.         'Leafstorm': 'Tempête de feuilles',
  552.         'Hard Swipe': 'Fauchage brutal',
  553.         'Growth Rune': 'Rune de racine',
  554.         'Gentle Breeze': 'Douce brise',
  555.         'Frost Rune': 'Rune de gel',
  556.         'Flame Rune': 'Rune de feu',
  557.         'Flame Hammer': 'Marteau de feu',
  558.         'Fae Light': 'Lueur féérique',
  559.         'Enrage': 'Enrage',
  560.         'Divination Rune': 'Rune de malice',
  561.         'Chain Of Brambles': 'Chaînes de ronces',
  562.         'Bright Sabbath': 'Sabbat en plein jour',
  563.         'Being Mortal': 'Deuil des vivants',
  564.         '--untargetable--': '--Impossible à cibler--',
  565.         '--targetable--': '--Ciblable--',
  566.         '--sync--': '--Synchronisation--',
  567.         '--Reset--': '--Réinitialisation--',
  568.       },
  569.       '~effectNames': {
  570.         'Thorny Vine': 'Sarment De Ronces',
  571.         'Summon Order': 'Action en attente: 1',
  572.         'Lightning Resistance Down II': 'Résistance à la foudre réduite+',
  573.         'Fire Resistance Up': 'Résistance Au Feu Accrue',
  574.         'Fire Resistance Down II': 'Résistance au feu réduite+',
  575.         'Embolden': 'Enhardissement',
  576.         'Blunt Resistance Down': 'Résistance Au Contondant Réduite',
  577.       },
  578.     },
  579.     {
  580.       'locale': 'ja',
  581.       'replaceSync': {
  582.         'spirit of flame': '火の精',
  583.         'Titania': 'ティターニア',
  584.         'Puck': 'パック',
  585.         'Peaseblossom': 'ピーズブロッサム',
  586.         'Mustardseed': 'マスタードシード',
  587.         'Innocence': 'イノセンス',
  588.         'Engage!': '戦闘開始!',
  589.       },
  590.       'replaceText': {
  591.         'attack': '攻撃',
  592.         'Wood\'s Embrace': '絡みつき',
  593.         'Whispering Wind': 'ウィスパリング・ウィンド',
  594.         'War and Pease': '大豆爆発',
  595.         'Wallop': '叩きつけ',
  596.         'Uplift': '隆起',
  597.         'Unknown Ability': 'Unknown Ability',
  598.         'Thunder Rune': '雷のルーン',
  599.         'Pummel': '殴打',
  600.         'Puck\'s Rebuke': 'パックレビューク',
  601.         'Puck\'s Caprice': 'パック・カプリース',
  602.         'Puck\'s Breath': 'パック・ブレス',
  603.         'Phantom Rune': '幻のルーン',
  604.         'Peasebomb': 'ビーズボム',
  605.         'Pease': '豆爆発',
  606.         'Mist Rune': '水のルーン',
  607.         'Midsummer Night\'s Dream': 'ミッドサマー・ナイツドリーム',
  608.         'Love-in-Idleness': 'ラブ・イン・アイドルネス',
  609.         'Leafstorm': 'リーフストーム',
  610.         'Hard Swipe': 'ハードスワイプ',
  611.         'Growth Rune': '根のルーン',
  612.         'Gentle Breeze': '上風',
  613.         'Frost Rune': '氷のルーン',
  614.         'Flame Rune': '火のルーン',
  615.         'Flame Hammer': 'フレイムハンマー',
  616.         'Fae Light': '妖精光',
  617.         'Divination Rune': '魔のルーン',
  618.         'Chain Of Brambles': 'ブランブルチェーン',
  619.         'Bright Sabbath': 'ブライトサバト',
  620.         'Being Mortal': '死すべき定め',
  621.       },
  622.       '~effectNames': {
  623.         'Thorny Vine': '茨の蔓',
  624.         'Summon Order': 'アクション実行待機I',
  625.         'Lightning Resistance Down II': '雷属性耐性低下[強]',
  626.         'Fire Resistance Up': '火属性耐性向上',
  627.         'Fire Resistance Down II': '火属性耐性低下[強]',
  628.         'Embolden': 'エンボルデン',
  629.         'Blunt Resistance Down': '打属性耐性低下',
  630.       },
  631.     },
  632.     {
  633.       'locale': 'cn',
  634.       'replaceSync': {
  635.         'spirit of flame': '炎精',
  636.         'Spirit of Flame': '炎精',
  637.         'Spirit of Wood': '木精',
  638.         'Titania': '缇坦妮雅',
  639.         'Puck': '帕克',
  640.         'Peaseblossom': '豌豆花',
  641.         'Mustardseed': '芥子',
  642.         'Innocence': '无瑕灵君',
  643.         'Engage!': '战斗开始!',
  644.       },
  645.       'replaceText': {
  646.         'attack': '攻击',
  647.         'Wood\'s Embrace': '缠绕',
  648.         'Whispering Wind': '细语微风',
  649.         'War And Pease': '豌豆大爆炸',
  650.         'War and Pease': '豌豆大爆炸',
  651.         'Wallop': '敲击',
  652.         'Uplift': '隆起',
  653.         'Thunder Rune': '雷之符文',
  654.         'Pummel': '殴打',
  655.         'Puck\'s Rebuke': '帕克的指责',
  656.         'Puck\'s Caprice': '帕克的随想',
  657.         'Puck\'s Breath': '帕克的吐息',
  658.         'Phantom Rune': '幻之符文',
  659.         'Peasebomb': '豌豆炸弹',
  660.         'Pease': '豌豆爆炸',
  661.         'Mist Rune': '水之符文',
  662.         'Midsummer Night\'s Dream': '仲夏夜之梦',
  663.         'Love-in-Idleness': '爱懒花',
  664.         'Love-In-Idleness': '爱懒花',
  665.         'Leafstorm': '绿叶风暴',
  666.         'Hard Swipe': '强烈重击',
  667.         'Growth Rune': '根之符文',
  668.         'Gentle Breeze': '青翠柔风',
  669.         'Frost Rune': '冰之符文',
  670.         'Flame Rune': '火之符文',
  671.         'Flame Hammer': '烈火锤',
  672.         'Fae Light': '妖灵光',
  673.         'Divination Rune': '魔之符文',
  674.         'Chain Of Brambles': '荆棘链',
  675.         'Bright Sabbath Enrage': '欢快的安息日 狂暴',
  676.         'Bright Sabbath': '欢快的安息日',
  677.         'Being Mortal': '终有一死',
  678.         '--center--': '--中场--',
  679.         '--untargetable--': '--无法选中--',
  680.         '--targetable--': '--可选中--',
  681.       },
  682.       '~effectNames': {
  683.         'Thorny Vine': '荆棘丛生',
  684.         'Summon Order': '发动技能待命I',
  685.         'Lightning Resistance Down II': '雷属性耐性大幅降低',
  686.         'Fire Resistance Up': '火属性耐性提升',
  687.         'Fire Resistance Down II': '火属性耐性大幅降低',
  688.         'Embolden': '鼓励',
  689.         'Blunt Resistance Down': '打击耐性降低',
  690.       },
  691.     },
  692.   ],
  693. }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement