import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Sceptile ex δ", }, illustrator: "Shizurow", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 254, ], hp: 140, types: [ "Psychic", ], evolveFrom: { en: "Grovyle", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Extra Liquid", }, effect: { en: "Each player's Pokémon-ex can't use any Poké-Powers and pays Colorless more Energy to use its attacks. Each Pokémon can't be affected by more than 1 Extra Liquid Poké-Body.", }, }, ], attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Power Revenge", }, effect: { en: "Does 60 damage plus 10 more damage for each Prize card your opponent has taken.", }, damage: 60, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card