mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
Added most Macdonald's sets (#100)
* Added most sets Signed-off-by: Avior <github@avior.me> * Fixed cards missing name Signed-off-by: Avior <github@avior.me>
This commit is contained in:
49
data/McDonald's Collection/Macdonald's Collection 2012/1.ts
Normal file
49
data/McDonald's Collection/Macdonald's Collection 2012/1.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "They avoid attacks by sinking into the shadows of thick foliage. They retaliate with masterful whipping techniques."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wrap"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Servine"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 80,
|
||||
types: ["Grass"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user