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

74
data-asia/SV/SV5a/027.ts Normal file
View File

@ -0,0 +1,74 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "サンダー",
'zh-tw': "閃電鳥",
th: "ธันเดอร์"
},
illustrator: "GOSSAN",
rarity: "Rare",
category: "Pokemon",
dexId: [145],
hp: 120,
types: ["Lightning"],
description: {
ja: "電気を 自在に 操る。 真っ黒な 雷雲の 中に 巣があると 言い伝えられている。",
'zh-tw': "能夠自在地操縱雷電。相傳牠的巢穴就在 烏黑的雷雲之中。",
th: "ควบคุมไฟฟ้าได้ดั่งใจนึก เป็นที่เล่าขานกันว่าภายในเมฆฝนฟ้าคะนองสีดำสนิทนั้นมีรังของมันอยู่"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "でんじは",
'zh-tw': "電磁波",
th: "คลื่นแม่เหล็กไฟฟ้า"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "10まんボルト",
'zh-tw': "十萬伏特",
th: "หนึ่งแสนโวลต์"
},
damage: 190,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。",
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card