mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 11:09:19 +00:00
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
This commit is contained in:
63
data/Sword & Shield/SWSH Black Star Promos/SWSH119.ts
Normal file
63
data/Sword & Shield/SWSH Black Star Promos/SWSH119.ts
Normal file
@ -0,0 +1,63 @@
|
||||
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
|
Reference in New Issue
Block a user