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

56 lines
1.2 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 "../SVDs"
const card: Card = {
set: Set,
name: {
th: "เมลาร์วา",
id: "Larvesta"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
th: "เคยถูกเรียกว่าตัวอ่อนแมลงที่ขโมยพระอาทิตย์ไป ไฟที่พ่นออกมาจากเขาสามารถเผาได้กระทั่งแผ่นเหล็ก",
id: "Larvesta dikenal sebagai larva pencuri matahari. Api yang dikeluarkan dari tanduknya dapat memotong pelat besi."
},
stage: "Basic",
attacks: [{
name: {
th: "ไฟ",
id: "Api"
},
damage: 10,
cost: ["Fire"]
}, {
name: {
th: "พุ่งเข้าใส่",
id: "Menerjang"
},
effect: {
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 10."
},
damage: 40,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card