1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

72 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 Storm'
const card: Card = {
name: {
en: "Snorlax",
fr: "Ronflex",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 130,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Block",
fr: "Barrage",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponent's Active Pokémon can't retreat.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, le Pokémon Actif de votre adversaire ne peut pas battre en retraite.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Teampact",
fr: "Teampact",
},
effect: {
en: "Does 30 damage times the number of Team Plasma Pokémon you have in play.",
fr: "Inflige 30 dégâts multipliés par le nombre de Pokémon de la Team Plasma que vous avez en jeu.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card