1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

51 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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