1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 05:19:55 +00:00

57 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "แกลล็อป",
id: "Rapidash"
},
illustrator: "SIE NANAHARA",
category: "Pokemon",
hp: 110,
types: ["Fire"],
description: {
th: "ตัวที่วิ่งเร็วที่สุดจะเป็นจ่าฝูง จ่าฝูงจะเป็นผู้กำหนดจุดหมายรวมถึง ความเร็วในการวิ่งของฝูง",
id: "Rapidash tercepatlah yang menjadi pemimpin di kelompoknya. Pemimpin menentukan tempat tujuan dan kecepatan lari kelompok."
},
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