1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SV1S/024.ts Normal file
View File

@ -0,0 +1,57 @@
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