1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

71 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "シャンデラ",
'zh-tw': "水晶燈火靈",
th: "แชนเดลา"
},
category: "Pokemon",
rarity: "Rare",
illustrator: "saino misaki",
dexId: [609],
hp: 130,
types: ["Fire"],
description: {
ja: "魂を 吸い取って 燃やす。 腕の 炎を 揺らして 相手を 催眠状態に する。",
'zh-tw': "會吸走並燃燒掉靈魂。 透過搖晃手臂的火焰 讓對手陷入催眠狀態。",
th: "สูบวิญญาณและเผาให้มอดไหม้ สั่นเปลวเพลิงบนแขนเพื่อทำให้อีกฝ่ายตกอยู่ในสภาวะถูกสะกดจิต"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "いざなうあかり",
'zh-tw': "勸誘亮光",
th: "แสงไฟล่อหลอก"
},
effect: {
ja: "自分の番に1回使える。おたがいのプレイヤーは、それぞれ山札を1枚引く。",
'zh-tw': "在自己的回合時可使用1次。雙方玩家各從牌庫抽出1張卡。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ผู้เล่นทั้งสองฝ่าย แต่ละฝ่ายจั่วการ์ด 1 ใบจากสำรับการ์ด"
}
}],
attacks: [{
cost: ["Fire"],
name: {
ja: "マインドルーラー",
'zh-tw': "意志統治者",
th: "มายด์รูลเลอร์"
},
damage: "30×",
effect: {
ja: "相手の手札の枚数×30ダメージ。",
'zh-tw': "造成對手的手牌的張數×30點傷害。",
th: "แดเมจจะเท่ากับจำนวนการ์ดบนมือฝ่ายตรงข้าม x30"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card