1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

64 lines
899 B
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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
illustrator: "Yuya Oka",
category: "Pokemon",
description: {
en: "This Pokémon's stomach is so strong, even eating moldy or rotten food will not affect it."
},
stage: "Basic",
name: {
en: "Snorlax"
},
rarity: "None",
dexId: [143],
hp: 140,
types: ["Colorless"],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Slap Push"
},
damage: 30
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Single Strike Tackle"
},
effect: {
en: "This Pokémon also does 30 damage to itself."
},
damage: 120
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "E"
}
export default card