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

52 lines
1.3 KiB
TypeScript
Raw Permalink 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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "タマンタ",
'zh-tw': "小球飛魚",
th: "ทาแมนทา"
},
illustrator: "rika",
category: "Pokemon",
dexId: [458],
hp: 30,
types: ["Water"],
description: {
ja: "テッポウオの 群れに 混ざって 泳ぐ。 敵に 襲われると 群れと いっしょに 戦うよ。",
'zh-tw': "混在鐵炮魚的大群裡游泳。受到敵人襲擊的時候, 會和鐵炮魚們並肩作戰。",
th: "ว่ายน้ำรวมกับฝูงเทปโปโอ เมื่อถูกศัตรูโจมตีจะต่อสู้ด้วยกันเป็นฝูง"
},
stage: "Basic",
attacks: [{
name: {
ja: "ぷかぷかヒーリング",
'zh-tw': "吐泡泡治療",
th: "ลอยตุ๊บป่องฟื้นพลัง"
},
effect: {
ja: "自分のベンチポケモン1匹のHPを「120」回復する。",
'zh-tw': "將自己的1隻備戰寶可夢恢復「120」HP。",
th: "ฟื้นฟู HP ของโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว [120]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card