mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
62 lines
806 B
TypeScript
62 lines
806 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Snorlax",
|
||
fr: "Ronflex"
|
||
},
|
||
|
||
illustrator: "Eri Yamaki",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Collect",
|
||
fr: "Collecte"
|
||
},
|
||
effect: {
|
||
en: "Draw 2 cards.",
|
||
fr: "Piochez 2 cartes."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Collapse",
|
||
fr: "Effondrement"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon is now Asleep.",
|
||
fr: "Ce Pokémon est maintenant Endormi."
|
||
},
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
hp: 150,
|
||
types: ["Colorless"]
|
||
}
|
||
|
||
export default card
|