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

60 lines
1.3 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 "../SVDs"
const card: Card = {
set: Set,
name: {
th: "ไคเด็น",
id: "Wattrel"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
hp: 50,
types: ["Lightning"],
description: {
th: "กระดูกที่ปีกจะผลิตกระแสไฟฟ้าเมื่อได้รับลม จะดำดิ่งลงสู่ทะเลเพื่อจับเหยื่อด้วยการช็อตด้วยไฟฟ้า",
id: "Kerangka sayap Wattrel menciptakan listrik jika menerima angin. Pokémon ini terjun ke laut, menyetrum mangsa, dan menangkapnya."
},
stage: "Basic",
attacks: [{
name: {
th: "รวบรวม",
id: "Mengumpulkan"
},
effect: {
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Ambil 1 kartu dari atas Deck sendiri."
},
cost: ["Colorless"]
}, {
name: {
th: "ถลาลม",
id: "Melayang Rendah"
},
damage: 20,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card