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

View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Exeggutor",
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
103,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Exeggcute",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Super Eggsplosion",
},
effect: {
en: "Discard any number of Energy cards attached to any of your Pokémon. Flip a number of coins equal to the number of Energy cards discarded this way. This attack does 40 damage times the number of heads.",
},
damage: 40,
},
{
cost: [
"Grass",
],
name: {
en: "Called Shot",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage times the amount of Grass Energy to Exeggutor. (Don't apply Weakness or Resistance for Benched Pokémon.)",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card