1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00

71 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Celestial Storm'
const card: Card = {
name: {
en: "Sceptile",
fr: "Jungko",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
254,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Grovyle",
fr: "Massko",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Power of Nature",
fr: "Puissance de la Nature",
},
effect: {
en: "Prevent all damage done to your Pokémon that have any Grass Energy attached to them by attacks from your opponent's Ultra Beasts.",
fr: "Évitez tous les dégâts infligés par les attaques des Ultra-Chimères de votre adversaire à vos Pokémon auxquels de lÉnergie Grass est attachée.",
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Powerful Storm",
fr: "Tempête Puissante",
},
effect: {
en: "This attack does 20 damage times the amount of Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées à tous vos Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card