1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

51 lines
1.1 KiB
TypeScript
Raw Permalink 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: "Larvesta",
th: "เมลาร์วา"
},
illustrator: "MARINA Chikazawa",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
id: "Zaman dahulu kala, orang-orang memuja Larvesta sebagai utusan matahari, tetapi ia dibenci karena sering menyebabkan kebakaran gunung.",
th: "ในอดีตเคยถูกเคารพบูชาในฐานะบริวารของพระอาทิตย์ แต่เพราะ ชอบทำให้เกิดไฟป่าอยู่บ่อย ๆ เลยถูกเกลียดชังด้วยเช่นกัน"
},
stage: "Basic",
attacks: [{
name: {
id: "Menyeruduk",
th: "กระแทก"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
id: "Memuntahkan Api",
th: "พ่นอัคคี"
},
damage: 20,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card