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

62
data-asia/SV/SVDs/127.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "บัฟฟรอน",
id: "Bouffalant"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
th: "อยู่กันเป็นฝูงประมาณ 20 ตัว ขนบนหัวของบัฟฟรอนที่หักหลังฝูงจะร่วงโดยไม่รู้สาเหตุ",
id: "Pokémon ini hidup berkelompok dengan jumlah sekitar 20 ekor. Bouffalant yang mengkhianati kelompoknya entah kenapa rambut kepalanya rontok."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
th: "แอโฟรการ์ด",
id: "Afro Guard"
},
effect: {
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-20]",
id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 20."
}
}],
attacks: [{
name: {
th: "แดเมจรัช",
id: "Damage Rush"
},
effect: {
th: "ทอยเหรียญจนกว่าจะออกก้อย แดเมจจะเพิ่มตามจำนวนครั้งที่ออกหัว x30",
id: "Lempar koin hingga hasilnya sisi belakang. Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap lemparan dengan hasil sisi depan."
},
damage: "50+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card