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

61
data-asia/SV/SVDs/131.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "เพอร์ฟูตง",
id: "Oinkologne"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
th: "ภูมิใจในผิวที่เนียนสวยของตัวเอง ปล่อยกลิ่นหอมที่กลั่นออกมาจากปลายหางของมัน",
id: "Kulit halus dan berkilaunya adalah kebanggaan Oinkologne. Pokémon ini mengeluarkan aroma harum yang terkonsentrasi dari ujung ekornya."
},
stage: "Stage1",
attacks: [{
name: {
th: "เพอร์ฟูมโซเซ",
id: "Parfum Pusing"
},
effect: {
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
th: "เตะเข้าเนื้อ",
id: "Tendangan Pemenyok"
},
effect: {
th: "ทอยเหรียญ 1 ครั้งถ้าออกก้อย โปเกมอนนี้ก็จะได้รับแดเมจ 60 ด้วย",
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, Pokémon ini juga menerima kerusakan sejumlah 60."
},
damage: 160,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card