1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-22 03:49:19 +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

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Snorlax V",
fr: "Ronflex V",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 220,
types: [
"Colorless",
],
suffix: "V",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Swallow",
fr: "Avale",
},
effect: {
en: "Heal from this Pokémon the same amount of damage you did to your opponents Active Pokémon.",
fr: "Soignez ce Pokémon du nombre de dégâts que vous avez infligés au Pokémon Actif de votre adversaire.",
},
damage: 60,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Falling Down",
fr: "Écroulement",
},
effect: {
en: "This Pokémon is now Asleep.",
fr: "Ce Pokémon est maintenant Endormi.",
},
damage: 170,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 4,
}
export default card