1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
988 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Toedscruel"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
id: "Toedscruel melilit lawan dengan 10 tentakelnya, menyerap nutrisi mereka, dan membuat mereka menderita. Lipatan di tepi kepala Pokémon ini populer karena kelezatannya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Koloni Jamur Lendir"
},
effect: {
id: "Selama Pokémon ini ada di Arena, kartu yang ada di Trash lawan tidak dapat ditambahkan ke Kartu Pegangan menggunakan efek Ability atau Trainer lawan."
}
}],
attacks: [{
name: {
id: "Jamur Penyerap"
},
effect: {
id: "Pulihkan HP Pokémon ini sejumlah 30."
},
damage: 80,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card