Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 18.37 KB | None | 0 0
  1.  
  2. --[[
  3.  
  4. HERO_TYPE_ALL = 0               --全部
  5. HERO_TYPE_ADC = 1               --射手
  6. HERO_TYPE_AP = 2                --法师
  7. HERO_TYPE_WARRIOR = 3           --战士
  8. HERO_TYPE_ASSASSIN = 4          --刺客
  9. HERO_TYPE_TANK = 5              --坦克
  10. HERO_TYPE_SUP = 6               --辅助
  11.  
  12. HERO_POSITION_TOP = 1               --上路
  13. HERO_POSITION_JUNGLE = 2            --打野
  14. HERO_POSITION_MID = 3               --中路
  15. HERO_POSITION_BELOW = 4             --下路
  16. HERO_POSITION_SWIM = 5              --游走
  17. HERO_POSITION_ALL = 6               --全能
  18.  
  19. --]]
  20.  
  21. --ability = {控制,灵活,防御,输出,难度}
  22.  
  23. --[[
  24.     获取方式配置 get_type
  25.     GETTYPE_SHOP = 0               --商城
  26.     GETTYPE_EXTINCT = 1            --绝版
  27.     GETTYPE_GIFT = 2               --商城礼包
  28.     GETTYPE_HOLYCUP = 3            --圣杯商店
  29.     GETTYPE_GASHAPON = 4           --占星屋
  30.     GETTYPE_VSINGER = 5            --Vsinger全家福
  31.     GETTYPE_YEARCARD = 6           --天选之人
  32.     GETTYPE_ACTIVITY = 7           --活动投放(RMB礼包)
  33. --]]
  34.  
  35. HeroTable= {}
  36. HeroTable = {
  37.    
  38.     [70]=
  39.     {
  40.         name = "李逍遥",
  41.         title = "剑 侠",
  42.         label = "技能搭配 经典还原",
  43.         ntype = HERO_TYPE_WARRIOR,
  44.         position = HERO_POSITION_ALL,
  45.         pinyin = "lixiaoyao",
  46.         sell_time = "2018-12-29",
  47.         get_type = GETTYPE_EXTINCT,
  48.         -- ability = {4,4,4,4,2},
  49.     },
  50.     [80]=
  51.     {
  52.         name = "赵灵儿",
  53.         title = "女娲后裔",
  54.         label = "技能搭配 经典还原",
  55.         ntype = HERO_TYPE_AP,
  56.         position = HERO_POSITION_MID,
  57.         pinyin = "zhaolinger",
  58.         sell_time = "2019-2-1",
  59.         get_type = GETTYPE_EXTINCT,
  60.         -- ability = {3,3,3,3,3},
  61.     },
  62.     [90]=
  63.     {
  64.         name = "林月如",
  65.         title = "林家千金",
  66.         label = "技能搭配 经典还原",
  67.         ntype = HERO_TYPE_WARRIOR,
  68.         position = HERO_POSITION_TOP,
  69.         pinyin = "linyueru",
  70.         sell_time = "2019-2-1",
  71.         get_type = GETTYPE_EXTINCT,
  72.         -- ability = {3,3,3,3,3},
  73.     },
  74.    
  75.     [102]=
  76.     {
  77.         name = "千代",
  78.         title = "蜻蜓切",
  79.         label = "超强生存 稳定爆发",
  80.         ntype = HERO_TYPE_WARRIOR,
  81.         position = HERO_POSITION_JUNGLE,
  82.         pinyin = "qiandai",
  83.         sell_time = "2018-8-17",
  84.         dialogue = {
  85.             [1] = "千代小姐姐真好看",
  86.             [2] = "我喜欢飞鸟小姐姐很久了",
  87.             [3] = "300大作战真好玩",
  88.         }
  89.         -- ability = {3,3,3,3,1},
  90.     }, 
  91.  
  92.     [103]=
  93.     {
  94.         name = "千月",
  95.         title = "天舟维摩那",
  96.         label = "强力控制 稳定爆发",
  97.         ntype = HERO_TYPE_SUP,
  98.         position = HERO_POSITION_SWIM,
  99.         pinyin = "qianyue",
  100.         sell_time = "2018-8-17",
  101.         -- ability = {3,1,3,3,2},
  102.     }, 
  103.  
  104.     [104]=
  105.     {
  106.         name = "佩姬",
  107.         title = "Plague",
  108.         label = "强力控制 爆炸输出",
  109.         ntype = HERO_TYPE_AP,
  110.         position = HERO_POSITION_MID,
  111.         pinyin = "peiji",
  112.         sell_time = "2018-11-20",
  113.         -- ability = {3,1,3,3,2},
  114.     }, 
  115.  
  116.     [105]=
  117.     {
  118.         name = "雷奥",
  119.         title = "半神手甲",
  120.         label = "超强生存 强力控制",
  121.         ntype = HERO_TYPE_TANK,
  122.         position = HERO_POSITION_TOP,
  123.         pinyin = "leiao",
  124.         sell_time = "2018-8-17",
  125.         -- ability = {5,3,4,2,1},
  126.     },
  127.  
  128.     [106]=
  129.     {
  130.         name = "缇米",
  131.         title = "自律净化系统",
  132.         label = "新颖操作 爆炸输出",
  133.         ntype = HERO_TYPE_AP,
  134.         position = HERO_POSITION_MID,
  135.         pinyin = "timi",
  136.         sell_time = "2018-8-17",
  137.         -- ability = {1,1,3,4,3},
  138.     }, 
  139.  
  140.     [107]=
  141.     {
  142.         name = "风信",
  143.         title = "迷宫生命线",
  144.         label = "极限操作 爆炸输出",
  145.         ntype = HERO_TYPE_ASSASSIN,
  146.         position = HERO_POSITION_SWIM,
  147.         pinyin = "fengxin",
  148.         sell_time = "2018-8-17",
  149.         get_type = GETTYPE_GIFT,
  150.         gift_id = 36002,
  151.         -- ability = {0,5,2,4,5},
  152.     }, 
  153.  
  154.     [108]=
  155.     {
  156.         name = "樱山水",
  157.         title = "幸若舞扇",
  158.         label = "简单操作 爆炸输出",
  159.         ntype = HERO_TYPE_AP,
  160.         position = HERO_POSITION_MID,
  161.         pinyin = "yingshanshui",
  162.         sell_time = "2018-8-17",
  163.         -- ability = {2,3,2,5,2},
  164.     }, 
  165.  
  166.     [109]=
  167.     {
  168.         name = "秀吉",
  169.         title = "天守日轮",
  170.         label = "超远距离 爆炸输出",
  171.         ntype = HERO_TYPE_AP,
  172.         position = HERO_POSITION_MID,
  173.         pinyin = "xiuji",
  174.         sell_time = "2018-8-17",
  175.         -- ability = {1,1,1,5,1},
  176.     }, 
  177.  
  178.     [111]=
  179.     {
  180.         name = "梦狐",
  181.         title = "伊甸炎剑",
  182.         label = "范围伤害 持续暴击",
  183.         ntype = HERO_TYPE_ADC,
  184.         position = HERO_POSITION_BELOW,
  185.         pinyin = "menghu",
  186.         sell_time = "2018-8-17",
  187.         -- ability = {1,2,1,4,1},
  188.     }, 
  189.  
  190.     [113]=
  191.     {
  192.         name = "伊莎",
  193.         title = "自律执行系统",
  194.         label = "灵活机动,追击无敌",
  195.         ntype = HERO_TYPE_WARRIOR,
  196.         position  = HERO_POSITION_TOP,
  197.         pinyin = "yisha",
  198.         sell_time = "2018-8-17",
  199.         ability = {5,5,3,3,3},
  200.     }, 
  201.  
  202.     [114]=
  203.     {
  204.         name = "樱庭云",
  205.         title = "干将莫邪",
  206.         label = "超强生存 稳定爆发",
  207.         ntype = HERO_TYPE_WARRIOR,
  208.         position = HERO_POSITION_JUNGLE,
  209.         pinyin = "yingtingyun",
  210.         sell_time = "2018-8-17",
  211.         -- ability = {1,1,3,5,4},
  212.     }, 
  213.  
  214.     [115]=
  215.     {
  216.         name = "泷村",
  217.         title = "加州清光",
  218.         label = "超强生存 连续控制",
  219.         ntype = HERO_TYPE_WARRIOR,
  220.         position = HERO_POSITION_TOP,
  221.         pinyin = "longcun",
  222.         sell_time = "2018-8-17",
  223.         -- ability = {5,3,4,2,3},
  224.     }, 
  225.  
  226.     [116]=
  227.     {
  228.         name = "浅井",
  229.         title = "真十字架",
  230.         label = "稳定回血 辅助控制",
  231.         ntype = HERO_TYPE_SUP,
  232.         position = HERO_POSITION_SWIM,
  233.         pinyin = "qianjing",
  234.         sell_time = "2018-8-17",
  235.         -- ability = {3,1,4,3,2},
  236.     }, 
  237.  
  238.     [117]=
  239.     {
  240.         name = "谦信",
  241.         title = "折魂式神",
  242.         label = "简单操作 全团增益",
  243.         ntype = HERO_TYPE_AP,
  244.         position = HERO_POSITION_MID,
  245.         pinyin = "qianxin",
  246.         sell_time = "2018-8-17",
  247.         -- ability = {2,1,1,4,2},
  248.     }, 
  249.  
  250.     [119]=
  251.     {
  252.         name = "半藏",
  253.         title = "天之迦久矢",
  254.         label = "稳定伤害 持续输出",
  255.         ntype = HERO_TYPE_ADC,
  256.         position = HERO_POSITION_BELOW,
  257.         pinyin = "banzang",
  258.         sell_time = "2018-8-17",
  259.         ability = {2,1,1,5,1},
  260.     }, 
  261.  
  262.     [120]=
  263.     {
  264.         name = "本多",
  265.         title = "宙斯盾",
  266.         label = "超强生存 稳定控制",
  267.         ntype = HERO_TYPE_TANK,
  268.         position = HERO_POSITION_TOP,
  269.         pinyin = "benduo",
  270.         sell_time = "2018-8-17",
  271.         -- ability = {3,2,5,2,2},
  272.     }, 
  273.  
  274.     [121]=
  275.     {
  276.         name = "剑姬",
  277.         title = "天丛云剑",
  278.         label = "极限操作 突入刺杀",
  279.         ntype = HERO_TYPE_ASSASSIN,
  280.         position = HERO_POSITION_JUNGLE,
  281.         pinyin = "jianji",
  282.         sell_time = "2018-8-17",
  283.         get_type = GETTYPE_GIFT,
  284.         gift_id = 36001,
  285.         -- ability = {2,3,1,4,4},
  286.     }, 
  287.  
  288.     [123]=
  289.     {
  290.         name = "晴明",
  291.         title = "阴阳道符",
  292.         label = "召唤式神 协同作战",
  293.         ntype = HERO_TYPE_AP,
  294.         position = HERO_POSITION_JUNGLE,
  295.         pinyin = "qingming",
  296.         sell_time = "2018-8-17",
  297.         -- ability = {2,1,1,3,5},
  298.     }, 
  299.  
  300.     [124]=
  301.     {
  302.         name = "绘梨衣",
  303.         title = "佛骨舍利",
  304.         label = "极限输出 强力炮台",
  305.         ntype = HERO_TYPE_AP,
  306.         position = HERO_POSITION_MID,
  307.         pinyin = "huiliyi",
  308.         sell_time = "2018-8-17",
  309.         -- ability = {1,1,2,5,3},
  310.     }, 
  311.  
  312.     [125]=
  313.     {
  314.         name = "无名",
  315.         title = "无名之剑",
  316.         label = "灵活机动,突入刺杀",
  317.         ntype = HERO_TYPE_ASSASSIN,
  318.         position = HERO_POSITION_JUNGLE,
  319.         pinyin = "wuming",
  320.         sell_time = "2018-8-17",
  321.         get_type = GETTYPE_GIFT,
  322.         gift_id = 36004,
  323.         -- ability = {2,5,1,3,2},
  324.     }, 
  325.  
  326.     [126]=
  327.     {
  328.         name = "左目",
  329.         title = "妖刀妙法村正",
  330.         label = "正面对拼 火力全开",
  331.         ntype = HERO_TYPE_WARRIOR,
  332.         position = HERO_POSITION_TOP,
  333.         pinyin = "zuomu",
  334.         sell_time = "2018-8-17",
  335.         -- ability = {1,2,2,4,3},
  336.     }, 
  337.  
  338.     [127]=
  339.     {
  340.         name = "龙牙",
  341.         title = "涯角枪",
  342.         label = "灵活机动 突入刺杀",
  343.         ntype = HERO_TYPE_WARRIOR,
  344.         position = HERO_POSITION_JUNGLE,
  345.         pinyin = "longya",
  346.         sell_time = "2018-8-17",
  347.         -- ability = {4,3,3,3,2},
  348.     }, 
  349.  
  350.     [129]=
  351.     {
  352.         name = "诸葛",
  353.         title = "羽扇纶巾",
  354.         label = "全新体验 爆炸输出",
  355.         ntype = HERO_TYPE_AP,
  356.         position = HERO_POSITION_MID,
  357.         pinyin = "zhuge",
  358.         sell_time = "2018-8-17",
  359.         -- ability = {1,1,1,4,2},
  360.     }, 
  361.  
  362.     [131]=
  363.     {
  364.         name = "艾露",
  365.         title = "无暇之月",
  366.         label = "灵活机动 突入刺杀",
  367.         ntype = HERO_TYPE_AP,
  368.         position = HERO_POSITION_MID,
  369.         pinyin = "ailu",
  370.         sell_time = "2019-1-3",
  371.         -- ability = {0,3,2,5,1},
  372.     },
  373.  
  374.     [132]=
  375.     {
  376.         name = "芬里尔",
  377.         title = "魔狼利爪",
  378.         label = "极限续命 突入刺杀",
  379.         ntype = HERO_TYPE_WARRIOR,
  380.         position = HERO_POSITION_TOP,
  381.         pinyin = "fenlier",
  382.         sell_time = "2018-8-17",
  383.         -- ability = {0,3,2,5,1},
  384.     }, 
  385.  
  386.     [133]=
  387.     {
  388.         name = "琳恩",
  389.         title = "卡尔重炮",
  390.         label = "灵活机动,持续输出",
  391.         ntype = HERO_TYPE_ADC,
  392.         position = HERO_POSITION_BELOW,
  393.         pinyin = "linen",
  394.         sell_time = "2018-8-17",
  395.         -- ability = {0,4,1,4,1},
  396.     }, 
  397.  
  398.     [134]=
  399.     {
  400.         name = "伪神",
  401.         title = "伪神之镰",
  402.         label = "超强生存 稳定控制",
  403.         ntype = HERO_TYPE_TANK,
  404.         position = HERO_POSITION_TOP,
  405.         pinyin = "weishen",
  406.         sell_time = "2018-8-17",
  407.         -- ability = {4,1,5,2,2},
  408.     }, 
  409.  
  410.     [135]=
  411.     {
  412.         name = "诺斯III号",
  413.         title = "雷神之锤",
  414.         label = "多面全能 灵活战士",
  415.         ntype = HERO_TYPE_WARRIOR,
  416.         position = HERO_POSITION_TOP,
  417.         pinyin = "nuosisanhao",
  418.         sell_time = "2018-8-17",
  419.         -- ability = {3,3,3,3,3},
  420.     }, 
  421.  
  422.     [137]=
  423.     {
  424.         name = "白沙",
  425.         title = "冈格尼尔",
  426.         label = "极限操作 稳定输出",
  427.         ntype = HERO_TYPE_ADC,
  428.         position = HERO_POSITION_JUNGLE,
  429.         pinyin = "baisha",
  430.         sell_time = "2018-8-17",
  431.         -- ability = {0,3,2,4,3},
  432.     }, 
  433.  
  434.     [138]=
  435.     {
  436.         name = "梅蒂尔",
  437.         title = "伊卡洛斯之羽",
  438.         label = "灵活机动,追击无敌",
  439.         ntype = HERO_TYPE_AP,
  440.         position = HERO_POSITION_TOP,
  441.         pinyin = "meidier",
  442.         sell_time = "2018-8-17",
  443.         -- ability = {0,4,3,3,3},
  444.     }, 
  445.  
  446.     [139]=
  447.     {
  448.         name = "克拉拉",
  449.         title = "吃货教授",
  450.         label = "古灵精怪 控制追击",
  451.         ntype = HERO_TYPE_TANK,
  452.         position = HERO_POSITION_SWIM,
  453.         pinyin = "kelala",
  454.         sell_time = "2018-11-20",
  455.         -- ability = {0,4,3,3,3},
  456.     },
  457.  
  458.     [140]=
  459.     {
  460.         name = "哈莉",
  461.         title = "四次元空间袋",
  462.         label = "古灵精怪 强制遣返",
  463.         ntype = HERO_TYPE_SUP,
  464.         position = HERO_POSITION_SWIM,
  465.         pinyin = "halli",
  466.         sell_time = "2018-8-17",
  467.         -- ability = {4,3,1,2,3},
  468.     }, 
  469.  
  470.     [141]=
  471.     {
  472.         name = "飞鸟",
  473.         title = "雷枪维加亚",
  474.         label = "超远距离 瞬间爆炸",
  475.         ntype = HERO_TYPE_AP,
  476.         position = HERO_POSITION_MID,
  477.         pinyin = "feiniao",
  478.         sell_time = "2018-8-17",
  479.         -- ability = {1,3,1,5,2},
  480.     }, 
  481.  
  482.     [142]=
  483.     {
  484.         name = "莉娅",
  485.         title = "选王之圣剑",
  486.         label = "超强生存 稳定爆发",
  487.         ntype = HERO_TYPE_TANK,
  488.         position = HERO_POSITION_TOP,
  489.         pinyin = "liya",
  490.         sell_time = "2018-8-17",
  491.         -- ability = {2,3,5,5,2},
  492.     }, 
  493.  
  494.     [143]=
  495.     {
  496.         name = "咻咿",
  497.         title = "魔矿多面体",
  498.         label = "灵活机动,潜入刺杀",
  499.         ntype = HERO_TYPE_ASSASSIN,
  500.         position = HERO_POSITION_JUNGLE,
  501.         pinyin = "xiuyi",
  502.         sell_time = "2018-8-17",
  503.         get_type = GETTYPE_GIFT,
  504.         gift_id = 36003,
  505.         -- ability = {4,2,1,4,1},
  506.     }, 
  507.  
  508.     [145]=
  509.     {
  510.         name = "挽歌",
  511.         title = "该隐之棺",
  512.         label = "心灵痛击 粉碎灵魂",
  513.         ntype = HERO_TYPE_TANK,
  514.         position = HERO_POSITION_TOP,
  515.         pinyin = "wange",
  516.         sell_time = "2018-8-17",
  517.         ability = {4,2,4,3,3},
  518.     }, 
  519.    
  520.     [146]=
  521.     {
  522.         name = "铃兰",
  523.         title = "圣灵巫女",
  524.         label = "圣物召唤 变化全能",
  525.         ntype = HERO_TYPE_AP,
  526.         position = HERO_POSITION_MID,
  527.         pinyin = "linglan",
  528.         sell_time = "2018-10-20",
  529.         ability = {3,2,4,4,5},
  530.     }, 
  531.    
  532.     [148]=
  533.     {
  534.         name = "杰西卡",
  535.         title = "002号",
  536.         label = "分割战场 超强控制",
  537.         ntype = HERO_TYPE_TANK,
  538.         position = HERO_POSITION_TOP,
  539.         pinyin = "jiexika",
  540.         sell_time = "2018-2-20",
  541.         -- ability = {0,4,3,3,3},
  542.     },
  543.  
  544.     [149]=
  545.     {
  546.         name = "特蕾莎",
  547.         title = "黑暗圣杯",
  548.         label = "狂暴蛛群 汹涌来袭",
  549.         ntype = HERO_TYPE_AP,
  550.         position = HERO_POSITION_SWIM,
  551.         pinyin = "teleisha",
  552.         sell_time = "2018-11-17",
  553.         ability = {5,2,3,4,5},
  554.         --ability = {控制,灵活,防御,输出,难度}
  555.     },
  556.  
  557.     [151]=
  558.     {
  559.         name = "卡娅",
  560.         title = "黑龙法夫纳",
  561.         label = "稳定伤害 持续输出",
  562.         ntype = HERO_TYPE_ADC,
  563.         position = HERO_POSITION_BELOW,
  564.         pinyin = "kaya",
  565.         sell_time = "2018-8-17",
  566.         -- ability = {3,1,1,4,3},
  567.     }, 
  568.  
  569.     [152]=
  570.     {
  571.         name = "PART—B",
  572.         title = "记忆金属",
  573.         label = "团队辅助 稳定控制",
  574.         ntype = HERO_TYPE_SUP,
  575.         position = HERO_POSITION_SWIM,
  576.         pinyin = "part-b",
  577.         sell_time = "2018-8-17",
  578.         -- ability = {4,1,4,2,4},
  579.     }, 
  580.  
  581.     [153]=
  582.     {
  583.         name = "曾小贤",
  584.         title = "好男人",
  585.         label = "灵活机动 爆炸输出",
  586.         ntype = HERO_TYPE_AP,
  587.         position = HERO_POSITION_MID,
  588.         pinyin = "zengxiaoxian",
  589.         sell_time = "2018-9-17",
  590.         -- ability = {1,3,1,5,2},
  591.     }, 
  592.  
  593.     [154]=
  594.     {
  595.         name = "胡一菲",
  596.         title = "弹一闪",
  597.         label = "侵略性强,单杀一切",
  598.         ntype = HERO_TYPE_ASSASSIN,
  599.         position = HERO_POSITION_SWIM,
  600.         pinyin = "huyifei",
  601.         sell_time = "2018-9-17",
  602.         -- ability = {4,2,1,4,1},
  603.     }, 
  604.  
  605.     [157]=
  606.     {
  607.         name = "阿库玛",
  608.         title = "300队长",
  609.         label = "灵活机动 超强生存",
  610.         ntype = HERO_TYPE_TANK,
  611.         position  = HERO_POSITION_TOP,
  612.         pinyin = "akuma",
  613.         sell_time = "2018-10-1",
  614.         ability = {5,4,4,2,3},
  615.     }, 
  616.  
  617.     [159]=
  618.     {
  619.         name = "千穗",
  620.         title = "银杏鼗鼓",
  621.         label = "灵活机动 超强控场",
  622.         ntype = HERO_TYPE_SUP,
  623.         position  = HERO_POSITION_SWIM,
  624.         pinyin = "qiansui",
  625.         sell_time = "2019-6-13",
  626.         ability = {4,3,2,2,2},
  627.     }, 
  628.  
  629.  
  630.     [160]=
  631.     {
  632.         name = "君莫笑",
  633.         title = "散人",
  634.         label = "千机百变,神秘莫测!",
  635.         skill =
  636.         {
  637.             [1] = {
  638.                 des = "神秘而又强大的千机伞能够随意变化自身形态,从而施放出不同职业的技能。这将会是你从未体验过的全新Moba英雄!",
  639.                 id = 4602,
  640.             },
  641.         },
  642.         ntype = HERO_TYPE_WARRIOR,
  643.         position = HERO_POSITION_ALL,
  644.         pinyin = "junmoxiao",
  645.         sell_time = "2018-8-17",
  646.         get_type = GETTYPE_EXTINCT,
  647.         ability = {5,5,5,5,10},
  648.     }, 
  649.  
  650.     [161]=
  651.     {  
  652.         name = "夜雨声烦",
  653.         title = "剑圣",
  654.         label = "灵活机动,追击无敌",
  655.         skill =
  656.         {
  657.             [1] = {
  658.                 des = "夜雨声烦是最擅长把握稍纵即逝的战机的人,虽然他的废话太多常常让对手抓狂。",
  659.                 id = 4403,
  660.             },
  661.             [2] = {
  662.                 des = "三段斩技能是直线式的,但是夜雨声烦通过微操可以使技能在每次攻击之后进行变向。",
  663.                 id = 4404,
  664.             },
  665.             [3] = {
  666.                 des = "银光落刃原本是个需要在空中释放的击飞技能,但是夜雨声烦在使用时,会在刚一离地时便完成操作,甚至让人感觉不到他有起落。",
  667.                 id = 4409,
  668.             },
  669.             [4] = {
  670.                 des = "幻影无形剑需要通过玩家的操作来完成技能的释放,该技能的收招是一计强力的击飞,之后是1秒左右的僵直时间",
  671.                 id = 4411,
  672.             },
  673.         },
  674.         ntype = HERO_TYPE_ASSASSIN,
  675.         position = HERO_POSITION_JUNGLE,
  676.         pinyin = "yeyushengfan",
  677.         sell_time = "2018-8-17",
  678.         get_type = GETTYPE_EXTINCT,
  679.         ability = {4,5,2,5,2},
  680.     }, 
  681.  
  682.     [170]=
  683.     {
  684.         name = "小K",
  685.         title = "98K",
  686.         label = "大吉大利 今晚吃鸡",
  687.         ntype = HERO_TYPE_ADC,
  688.         position = HERO_POSITION_JUNGLE,
  689.         pinyin = "xiaoK",
  690.         sell_time = "2018-8-17",
  691.     },
  692.  
  693.     [185]=
  694.     {
  695.         name = "八神庵",
  696.         title = "终焉之炎",
  697.         label = "经典再现 格斗之王",
  698.         ntype = HERO_TYPE_WARRIOR,
  699.         position = HERO_POSITION_TOP,
  700.         pinyin = "bashenan",
  701.         sell_time = "2018-10-29",
  702.         -- get_type = GETTYPE_ACTIVITY,
  703.         ability = {5,5,5,5,8},
  704.     },
  705.  
  706.     [188]=
  707.     {
  708.         name = "雪",
  709.         title = "封印之巫女",
  710.         label = "灵活机动,格斗连击",
  711.         ntype = HERO_TYPE_WARRIOR,
  712.         position = HERO_POSITION_TOP,
  713.         pinyin = "xue",
  714.         sell_time = "2019-4-26",
  715.         -- get_type = GETTYPE_ACTIVITY,
  716.         ability = {5,4,2,3,3},
  717.     },
  718.    
  719.     [190]=
  720.     {
  721.         name = "洛天依",
  722.         title = "华风夏韵",
  723.         label = "华风夏韵 洛水天依",
  724.         ntype = HERO_TYPE_SUP,
  725.         position = HERO_POSITION_SWIM,
  726.         pinyin = "luotianyi",
  727.         -- get_type = GETTYPE_VSINGER,
  728.         sell_time = "2018-8-17",
  729.     },
  730.    
  731.     [192]=
  732.     {
  733.         name = "炎霜",
  734.         title = "冰火交融",
  735.         label = "烈火炎炎 寒霜凛冽",
  736.         ntype = HERO_TYPE_AP,
  737.         position = HERO_POSITION_JUNGLE,
  738.         pinyin = "yanshuang",
  739.         sell_time = "2018-9-10",
  740.         ability = {4,4,1,3,4},
  741.     },
  742.     [194]=
  743.     {
  744.         name = "希尔德",
  745.         title = "永恒之枪",
  746.         label = "左右横跳 追击控制",
  747.         ntype = HERO_TYPE_ADC,
  748.         position = HERO_POSITION_BELOW,
  749.         pinyin = "xierde",
  750.         sell_time = "2019-7-1",
  751.         ability = {4,4,1,3,4},
  752.     },
  753.     [196]=
  754.     {
  755.         name = "阿童木",
  756.         title = "正义の铁拳",
  757.         label = "超强支援 连续控制",
  758.         ntype = HERO_TYPE_TANK,
  759.         position = HERO_POSITION_SWIM,
  760.         pinyin = "atongmu",
  761.         sell_time = "2019-3-20",
  762.         get_type = GETTYPE_YEARCARD,
  763.         ability = {4,4,1,3,4},
  764.     },
  765.  
  766.     [198]=
  767.     {
  768.         name = "葫芦爷爷",
  769.         title = "山中老者",
  770.         label = "葫芦兄弟 齐心协力",
  771.         ntype = HERO_TYPE_AP,
  772.         position = HERO_POSITION_MID,
  773.         pinyin = "huluyeye",
  774.         sell_time = "2019-5-30",
  775.         -- get_type = GETTYPE_ACTIVITY,
  776.         ability = {3,2,3,4,2},
  777.     },
  778.  
  779.     [241]=
  780.     {
  781.         name = "潘多拉",
  782.         title = "灾难之心",
  783.         label = "灾难汇聚 毁天灭地",
  784.         ntype = HERO_TYPE_AP,
  785.         position = HERO_POSITION_MID,
  786.         pinyin = "panduola",
  787.         sell_time = "2019-3-7",
  788.         ability = {4,1,1,5,4},
  789.     },
  790.    
  791.     [260]=
  792.     {
  793.         name = "乐正绫",
  794.         title = "绫动天下",
  795.         label = "乐正司百曲 绫曲万年红",
  796.         ntype = HERO_TYPE_ADC,
  797.         position = HERO_POSITION_BELOW,
  798.         pinyin = "yuezhengling",
  799.         sell_time = "2019-4-12",
  800.         -- get_type = GETTYPE_VSINGER,
  801.         ability = {3,3,1,5,3},
  802.     },
  803.  
  804.     [263]=
  805.     {
  806.         name = "墨清弦",
  807.         title = "清墨书弦",
  808.         label = "蘸以清墨 书我弦歌",
  809.         ntype = HERO_TYPE_AP,
  810.         position = HERO_POSITION_MID,
  811.         pinyin = "moqingxian",
  812.         sell_time = "2019-5-16",
  813.         -- get_type = GETTYPE_VSINGER,
  814.         ability = {3,3,1,5,3},
  815.     },
  816.  
  817.     [266]=
  818.     {
  819.         name = "言和",
  820.         title = "天使之翼",
  821.         label = "言出一人歌 歌起万人和",
  822.         ntype = HERO_TYPE_ADC,
  823.         position = HERO_POSITION_BELOW,
  824.         pinyin = "yanhe",
  825.         sell_time = "2019-7-11",
  826.         get_type = GETTYPE_VSINGER,
  827.         ability = {3,3,1,5,3},
  828.     },
  829.  
  830.     [286]=
  831.     {
  832.         name = "巴巴六",
  833.         title = "野蛮人",
  834.         label = "吃吃吃 砍砍砍",
  835.         ntype = HERO_TYPE_WARRIOR,
  836.         position = HERO_POSITION_JUNGLE,
  837.         pinyin = "babaliu",
  838.         sell_time = "2019-4-26",
  839.         -- ability = {1,1,3,5,4},
  840.     }, 
  841.  
  842.     [290]=
  843.     {
  844.         name = "洛天依SP",
  845.         title = "心意共鸣",
  846.         label = "万千心意 铸造奇迹",
  847.         ntype = HERO_TYPE_ASSASSIN,
  848.         position = HERO_POSITION_SWIM,
  849.         pinyin = "luotianyisp",
  850.         sell_time = "2019-7-11",
  851.         get_type = GETTYPE_VSINGER,
  852.         -- ability = {1,1,3,5,4},
  853.     }, 
  854.  
  855. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement