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

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