1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

56
data-asia/SV/SV9s/145.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "แกลล็อป",
id: "Rapidash"
},
illustrator: "Rond",
category: "Pokemon",
hp: 110,
types: ["Fire"],
description: {
th: "ตัวที่วิ่งเร็วที่สุดจะเป็นจ่าฝูง จ่าฝูงจะเป็นผู้กำหนดจุดหมายรวมถึง ความเร็วในการวิ่งของฝูง"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "เร่งฝีเท้า",
id: "Kaki Bergegas"
},
effect: {
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Dapat digunakan 1 kali pada giliran sendiri. Ambil 1 kartu dari atas Deck sendiri."
}
}],
attacks: [{
name: {
th: "แผงคอไฟ",
id: "Surai Api"
},
damage: 60,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card