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

71 lines
1.1 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 '../BREAKthrough'
const card: Card = {
name: {
en: "Snorlax",
fr: "Ronflex",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 120,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Plump Body",
fr: "Corps Dodu",
},
effect: {
en: "Any damage done to this Pokémon by attacks is reduced by 30 (after applying Weakness and Resistance).",
fr: "Tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Knock Away",
fr: "Asticotage",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card