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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV4a/336.ts Normal file
View File

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