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

83 lines
2.7 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "シャワーズ",
id: "Vaporeon",
th: "ชาวเวอร์ส",
'zh-tw': "水伊布",
'zh-cn': "水伊布"
},
illustrator: "Taira Akitsu",
rarity: "None",
category: "Pokemon",
dexId: [134],
hp: 130,
types: ["Water"],
description: {
ja: "水辺に 棲むが 尻尾には 魚のような ひれが 残っていて 人魚と 間違う 人もいる。",
id: "Vaporeon hidup di dekat air. Karena terdapat sirip seperti ikan pada ekornya, ada manusia yang menyangka Pokémon ini adalah putri duyung.",
th: "อาศัยอยู่ริมน้ำ เพราะหางมีครีบเหมือนปลาอยู่เลยมีคนเข้าใจผิดคิดว่าเป็นเงือก",
'zh-tw': "雖然棲息在水邊, 但由於尾巴上有像是魚的鰭, 因此有的人會把牠誤認成人魚。",
'zh-cn': "雖然棲息在水邊, 但由於尾巴上有像是魚的鰭, 因此有的人會把牠誤認成人魚。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "スパイラルドレイン",
id: "Spiral Drain",
th: "สไปรัลเดรน",
'zh-tw': "螺旋吸取",
'zh-cn': "螺旋吸取"
},
damage: 30,
effect: {
ja: "このポケモンのHPを「30」回復する。",
id: "Pulihkan HP Pokémon ini sejumlah 30.",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]",
'zh-tw': "將這隻寶可夢恢復「30」HP。",
'zh-cn': "將這隻寶可夢恢復「30」HP。"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "とうしのうずしお",
id: "Pusaran Air Semangat Petarung",
th: "น้ำวนนักสู้",
'zh-tw': "鬥志潮旋",
'zh-cn': "鬥志潮旋"
},
damage: "90+",
effect: {
ja: "相手のバトルポケモンが「ポケモンex・V」なら、90ダメージ追加。",
id: "Jika Pokémon Bertarung lawan adalah Pokémon {ex}/{V}, kerusakan yang diberikan bertambah sejumlah 90.",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็น [โปเกมอน【ex】 /【V】] การโจมตีนี้จะเพิ่มแดเมจอีก 90",
'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」則增加90點傷害。",
'zh-cn': "若對手的戰鬥寶可夢為「寶可夢【ex】・【V】」則增加90點傷害。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card