1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

69
data-asia/SV/SV8a/207.ts Normal file
View File

@ -0,0 +1,69 @@
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