1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

69
data-asia/SV/SV2a/040.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "プクリンex",
'zh-tw': "胖可丁ex",
th: "พูคูรินex",
id: "Wigglytuff ex"
},
illustrator: "Saki Hayashiro",
rarity: "Double rare",
category: "Pokemon",
hp: 250,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ふくらむボディ",
'zh-tw': "膨脹之軀",
th: "ร่างพอง",
id: "Tubuh Menggelembung"
},
effect: {
ja: "このポケモンに特殊エネルギーがついているなら、このポケモンの最大HPは「+100」される。",
'zh-tw': "若這隻寶可夢身上附有特殊能量卡則這隻寶可夢的最大HP「+100」。",
th: "ถ้าโปเกมอนนี้มีพลังงานพิเศษติดอยู่ 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': "朋友衝撞",
th: "เฟรนด์แท็กเกิล",
id: "Friend Tackle"
},
damage: "90+",
effect: {
ja: "この番、手札からサポートを出して使っていたなら、90ダメージ追加。",
'zh-tw': "在這個回合若從手牌使出了支援者卡則增加90點傷害。",
th: "เทิร์นนี้ ถ้านำการ์ดซัพพอร์ตจากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 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