mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* 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
64 lines
899 B
TypeScript
64 lines
899 B
TypeScript
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
|