1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

70
data/XY/Generations/58.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Generations'
const card: Card = {
name: {
en: "Snorlax",
fr: "Ronflex",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 130,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Stir and Snooze",
fr: "Sommeil Lourd",
},
effect: {
en: "If this Pokémon is Asleep, flip 2 coins instead of 1 between turns. If either of them is tails, this Pokémon is still Asleep.",
fr: "Si ce Pokémon est Endormi, lancez 2 pièces au lieu d'une entre chaque tour. Si vous obtenez au moins un côté pile, ce Pokémon reste Endormi.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Sleepy Press",
fr: "Pression Torpide",
},
effect: {
en: "Heal 20 damage from this Pokémon. This Pokémon is now Asleep.",
fr: "Soignez 20 dégâts à ce Pokémon. Ce Pokémon est maintenant Endormi.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 4,
}
export default card