mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
61
data-asia/SV/SVDs/085.ts
Normal file
61
data-asia/SV/SVDs/085.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVDs"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
th: "พัลเดีย เคนเทารอส",
|
||||
id: "Paldean Tauros"
|
||||
},
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
th: "จุดเด่นคือกล้ามเนื้อหนาอันทรงพลังและอารมณ์ที่รุนแรง เรียกกันว่าพันธุ์ประจัญบาน",
|
||||
id: "Otot tebal bertenaga dan sifatnya yang kasar adalah karakteristiknya. Pokémon ini dikenal sebagai Tauros Varian Tempur."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
th: "เขาพิโรธ",
|
||||
id: "Tanduk Kemarahan"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
|
||||
id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
th: "คอมแบตแท็กเกิล",
|
||||
id: "Combat Tackle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
|
||||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user