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

69 lines
1.6 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "イルカマンex",
id: "Palafin ex",
'zh-tw': "海豚俠ex",
'zh-cn': "海豚俠ex"
},
illustrator: "Tetsuo Hara",
rarity: "None",
category: "Pokemon",
hp: 340,
types: ["Water"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "マイティソウル",
id: "Jiwa Perkasa",
'zh-tw': "全能靈魂",
'zh-cn': "全能靈魂"
},
effect: {
ja: "このカードは、「イルカマン」の特性「マイティチェンジ」の効果によってしか場に出せない。",
id: "Kartu ini hanya dapat dimasukkan ke Arena menggunakan efek dari Ability Menjadi Perkasa Palafin.",
'zh-tw': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。",
'zh-cn': "這張卡只可依據「海豚俠」的特性「全能變身」的效果放置於場上。"
}
}],
attacks: [{
cost: ["Water"],
name: {
ja: "ギガインパクト",
id: "Giga Impact",
'zh-tw': "終極衝擊",
'zh-cn': "終極衝擊"
},
damage: 250,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card