1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +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

51
data-asia/SV/SV6/037.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "テツノツツミ",
'zh-tw': "鐵包袱"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "nagimiso",
dexId: [991],
hp: 90,
types: ["Water"],
description: {
ja: "古い 書物に 登場する 謎の 物体に 似た ポケモン。 目撃例は 過去 2件のみ。",
'zh-tw': "與古書裡記載的神秘物體 長得很相像的寶可夢。 過去只被目擊過2次。"
},
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "インタージェット",
'zh-tw': "內部噴射"
},
damage: 60,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。その後、相手は相手自身のバトルポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。然後,對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card