mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
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 |