1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

43 lines
921 B
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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Capsakid",
th: "แคปไซจิ"
},
illustrator: "Julie Hang",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
id: "Rasa masakan khas Paldea sangat pedas karena dibuat menggunakan gigi depan Capsakid yang lepas.",
th: "อาหารท้องถิ่นของพัลเดียมีรสชาติเผ็ดมาก เพราะใช้ฟันหน้าที่ร่วงหล่น ของแคปไซจิเป็นวัตถุดิบ"
},
stage: "Basic",
attacks: [{
name: {
id: "Sundulan Meloncat",
th: "กระโดดโหม่ง"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card