Commit d69727715727c874c83f7e08903500dd483eac17

Authored by DarkGod
1 parent 533d549e

plop

  1 +{
  2 + "22": {
  3 + "id": 22,
  4 + "name": "chat",
  5 + "data": {
  6 + "chatid": "welcome",
  7 + "chat": "**DO NOT TRANSLATE YET**\n<<<You feel a gentle warmth in your mind. Something speaks directly to your mind!>>>\n#YELLOW#WELL MET FRIEND! I AM A FAR AWAY STAR, AND VERY FRIENDLY, ALSO LIBERTY NEEDS TO WRITE ME!\n#LAST#",
  8 + "answer1": "sOUNDS COOL!"
  9 + },
  10 + "class": "chat",
  11 + "html": "chat1",
  12 + "typenode": true,
  13 + "inputs": {
  14 + "input_1": {
  15 + "connections": []
  16 + }
  17 + },
  18 + "outputs": {
  19 + "output_1": {
  20 + "connections": [
  21 + {
  22 + "node": "24",
  23 + "output": "input_1"
  24 + }
  25 + ]
  26 + }
  27 + },
  28 + "pos_x": 213,
  29 + "pos_y": 362
  30 + },
  31 + "24": {
  32 + "id": 24,
  33 + "name": "lua-code",
  34 + "data": {
  35 + "code": "player:callTalent(player.T_AVATAR_DISTANT_SUN_UNLOCK_CHECKER, \"doUnlock\")"
  36 + },
  37 + "class": "lua-code",
  38 + "html": "lua-code",
  39 + "typenode": true,
  40 + "inputs": {
  41 + "input_1": {
  42 + "connections": [
  43 + {
  44 + "node": "22",
  45 + "input": "output_1"
  46 + }
  47 + ]
  48 + }
  49 + },
  50 + "outputs": {
  51 + "output_1": {
  52 + "connections": []
  53 + }
  54 + },
  55 + "pos_x": 775,
  56 + "pos_y": 381
  57 + }
  58 +}
\ No newline at end of file
... ...
  1 +-- ToME - Tales of Maj'Eyal
  2 +-- Copyright (C) 2009 - 2019 Nicolas Casalini
  3 +--
  4 +-- This program is free software: you can redistribute it and/or modify
  5 +-- it under the terms of the GNU General Public License as published by
  6 +-- the Free Software Foundation, either version 3 of the License, or
  7 +-- (at your option) any later version.
  8 +--
  9 +-- This program is distributed in the hope that it will be useful,
  10 +-- but WITHOUT ANY WARRANTY; without even the implied warranty of
  11 +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12 +-- GNU General Public License for more details.
  13 +--
  14 +-- You should have received a copy of the GNU General Public License
  15 +-- along with this program. If not, see <http://www.gnu.org/licenses/>.
  16 +--
  17 +-- Nicolas Casalini "DarkGod"
  18 +-- darkgod@te4.org
  19 +
  20 +return _t"New Class Evolution: #LIGHT_GREEN#Avatar of a Distant Sun (Sun Paladin)",
  21 +_t[[Yuo have been contacted by a sentient star, far away from Eyal. It wants to help you on your journey!
  22 +
  23 +You have unlocked the #LIGHT_GREEN#Avatar of a Distant Sun class evolution#WHITE# for Sun Paladins.
  24 +
  25 +Features:
  26 +- #GOLD#Wield a two-handed weapon and a shield together#LAST#
  27 +- 50%% of all damage dealt is converted to #GOLD#light damage#LAST#
  28 +- #GOLD#Gravitic Effulgence#LAST#: whenever Weapon of Light hits the damage is now a radius 2 sphere and all foes in range 5 are drawn to it
  29 +- The damage and chance to trigger of #GOLD#Searing Sight#LAST# is doubled
  30 +- Whenever #GOLD#Sun's Vengeance#LAST# triggers the remaining cooldown of Judgement is reduced by 6
  31 +- Interacts with #GOLD#Irresistible Sun#LAST#
  32 +
  33 +Class evolutions are selected as prodigies and grant new ways to build and expand your class and are only visible to the concerned class.
  34 +]]
... ...