mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4K"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "タッツー",
|
||
'zh-tw': "墨海馬",
|
||
th: "ทัททู"
|
||
},
|
||
|
||
illustrator: "HYOGONOSUKE",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [116],
|
||
hp: 60,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "水中を 踊るように 泳いで 渦を つくる。 仲間と 渦の 大きさを 競って 遊ぶ。",
|
||
'zh-tw': "會在水中跳舞似地游動來製造漩渦。玩耍時會和夥伴 比賽誰做出的漩渦比較大。",
|
||
th: "ว่ายน้ำราวกับเต้นระบำอยู่ในน้ำทำให้เกิดน้ำวน จะแข่งกับพวกพ้องสร้างน้ำวนขนาดใหญ่เล่นกัน"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Water"],
|
||
|
||
name: {
|
||
ja: "ひっかける",
|
||
'zh-tw': "鉤住",
|
||
th: "จับแขวน"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |