1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

75
data-asia/SV/SV1a/033.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "タイカイデン",
'zh-tw': "大電海燕",
th: "ไทไคเด็น",
id: "Kilowattrel"
},
illustrator: "Pani Kobayashi",
rarity: "Uncommon",
category: "Pokemon",
dexId: [941],
hp: 120,
types: ["Lightning"],
description: {
ja: "のど袋を ふくらませて 電気を 増幅させる。 風に 乗って 1日で 700キロを 飛行する。",
'zh-tw': "會膨脹喉囊來增強電力。可以乘著風在1天內 就飛上700公里。",
th: "พองถุงคอเพื่อเพิ่มกระแสไฟฟ้า โบยบินตามสายลมเป็นระยะทาง 700 กิโลเมตรในหนึ่งวัน",
id: "Kilowattrel menggembungkan kantong tenggorokannya dan menambahkan daya listriknya. Pokémon ini menaiki angin dan terbang sejauh 700 km dalam sehari."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "つつく",
'zh-tw': "啄",
th: "จิก",
id: "Mematuk"
},
damage: 20
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "ジェットウイング",
'zh-tw': "噴射之翼",
th: "เจ็ตวิง",
id: "Jet Wing"
},
damage: 150,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card