mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
92 lines
1.6 KiB
TypeScript
92 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../FireRed & LeafGreen'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Venomoth",
|
||
fr: "Aéromite",
|
||
de: "Omot"
|
||
},
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
49,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Venonat",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Protective Dust",
|
||
fr: "Poussière Protectrice",
|
||
de: "Protective Dust"
|
||
},
|
||
effect: {
|
||
en: "Prevent all effects of attacks, except damage, done to Venomoth by the Attacking Pokémon.",
|
||
fr: "Prévenez tous les effets d'une attaque, dégâts exclus, infligés à Aéromite par le Pokémon Attaquant.",
|
||
de: "Prevent all effects of attacks, except damage, done to Venomoth by the Attacking Pokémon."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Sleep Poison",
|
||
fr: "Poison dodo",
|
||
de: "Sleep Poison"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Asleep and Poisoned.",
|
||
fr: "Le Pokémon Défenseur est maintenant Endormi et Empoisonné.",
|
||
de: "The Defending Pokémon is now Asleep and Poisoned."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Razor Wind",
|
||
fr: "Coupe-vent",
|
||
de: "Razor Wind"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If tails, this attack does nothing.",
|
||
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
|
||
de: "Flip a coin. If tails, this attack does nothing."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|