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

70 lines
1.7 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ヤドラン",
'zh-tw': "呆殼獸",
id: "Slowbro"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [80],
hp: 100,
types: ["Water"],
description: {
ja: "激しい 戦いで 尻尾に 噛みついた シェルダーが 外れると もとの ヤドンに 戻ってしまう。",
'zh-tw': "在激烈的戰鬥中,如果咬著自己尾巴的大舌貝 脫落,就會變回呆呆獸。",
id: "Dalam pertarungan sengit, Slowbro akan kembali menjadi Slowpoke jika Shellder yang menggigit ekornya lepas."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "へんなこうどう",
'zh-tw': "混亂行動",
id: "Perilaku Aneh"
},
effect: {
ja: "自分の番に何回でも使える。自分の場のポケモンにのっているダメカンを1個選び、このポケモンにのせ替える。",
'zh-tw': "在自己的回合時可不限次數使用。選擇1個放置於自己的場上寶可夢身上的傷害指示物改放於這隻寶可夢身上。",
id: "Dapat digunakan berkali-kali pada giliran sendiri. Pilih 1 Token Kerusakan yang dimiliki Pokémon di Arena sendiri, lalu pindahkan ke Pokémon ini."
}
}],
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "バブルドレイン",
'zh-tw': "泡沫吸取",
id: "Bubble Drain"
},
damage: 60,
effect: {
ja: "このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP。",
id: "Pulihkan HP Pokémon ini sejumlah 30."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card