1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +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/SV1S/068.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "パフュートンex",
'zh-tw': "飄香豚ex",
th: "เพอร์ฟูตงex",
id: "Oinkologne ex"
},
illustrator: "aky CG Works",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "きょうらんのかおり",
'zh-tw': "狂亂香氣",
th: "กลิ่นหอมชวนคลั่ง",
id: "Aroma Kekalutan"
},
damage: "10+",
effect: {
ja: "相手のベンチポケモンの数×30ダメージ追加。",
'zh-tw': "增加對手的備戰寶可夢的數量×30點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม x30",
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Pokémon Cadangan lawan."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "ヘビースタンプ",
'zh-tw': "重磅踩踏",
th: "เฮฟวีสแตมป์",
id: "Heavy Stomp"
},
damage: 210,
effect: {
ja: "コインを1回投げウラなら、次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card