1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00

56 lines
1.2 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: "Corvisquire <Hop>"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
th: "หัวดี ถ้าเป็นอุปกรณ์ที่สามารถใช้งานด้วยเท้าหรือจะงอยปากได้ แป๊บเดียวก็จำวิธีใช้ได้",
id: "Corvisquire sangat cerdas. Pokémon ini dengan mudahnya mengingat cara pemakaian alat yang dapat digunakan dengan paruh dan kakinya."
},
stage: "Stage1",
attacks: [{
name: {
th: "บินเร็วจี๋",
id: "Terbang Cepat"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
th: "ขนปีกแหลมคม",
id: "Bulu Tajam"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "I"
}
export default card