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

82 lines
1.2 KiB
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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Sceptile",
fr: "Jungko",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
254,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Grovyle",
fr: "Massko",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Energy Bloom",
fr: "Énergie Florissante",
},
effect: {
en: "Heal 20 damage from each of your Pokémon that has any Energy attached to it.",
fr: "Soignez 20 dégâts à chacun de vos Pokémon auquel de l'Énergie est attachée.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 2,
}
export default card