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

63 lines
1.4 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: "プクリンex",
'zh-tw': "胖可丁ex",
id: "Wigglytuff ex"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 250,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ふくらむボディ",
'zh-tw': "膨脹之軀",
id: "Tubuh Menggelembung"
},
effect: {
ja: "このポケモンに特殊エネルギーがついているなら、このポケモンの最大HPは「100」される。",
'zh-tw': "若這隻寶可夢身上附有特殊能量卡則這隻寶可夢的最大HP「+100」。",
id: "Jika Pokémon ini mengenakan Energi Spesial, HP maksimal Pokémon ini bertambah sejumlah 100."
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "フレンドタックル",
'zh-tw': "朋友衝撞",
id: "Friend Tackle"
},
damage: "90+",
effect: {
ja: "この番、手札からサポートを出して使っていたなら、90ダメージ追加。",
'zh-tw': "在這個回合若從手牌使出了支援者卡則增加90點傷害。",
id: "Jika pada giliran ini, Supporter telah dimainkan dari Kartu Pegangan, kerusakan yang diberikan bertambah sejumlah 90."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card