mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
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 |