1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

71 lines
1021 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 '../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