1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

69
data/Base/Jungle/29.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Jungle'
const card: Card = {
name: {
en: "Venomoth",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
49,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Venonat",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Shift",
},
effect: {
en: "Once during your turn (before your attack), you may change the type of Venomoth to the type of any other Pokémon in play other than Colorless. This power can't be used if Venomoth is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Venom Powder",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card