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

57 lines
1.4 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 "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "カイデン",
'zh-tw': "電海燕",
th: "ไคเด็น",
id: "Wattrel"
},
illustrator: "Shin Nagasawa",
rarity: "Common",
category: "Pokemon",
dexId: [940],
hp: 60,
types: ["Lightning"],
description: {
ja: "翼の 骨は 風を 受けると 電気を 作る。 海に 飛び込み 獲物を 感電させて 捕らえる。",
'zh-tw': "當翅膀的骨頭受到風吹時,就能製造出電力。會衝進 海裡讓獵物觸電後將其捕獲。",
th: "กระดูกที่ปีกจะผลิตกระแสไฟฟ้าเมื่อได้รับลม จะดำดิ่งลงสู่ทะเลเพื่อจับเหยื่อด้วยการช็อตด้วยไฟฟ้า",
id: "Kerangka sayap Wattrel menciptakan listrik jika menerima angin. Pokémon ini terjun ke laut, menyetrum mangsa, dan menangkapnya."
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "バチバチ",
'zh-tw': "劈哩啪啦",
th: "ประกายไฟ",
id: "Berpijar-pijar"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card