1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +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:
2021-10-18 09:53:07 +02:00
committed by GitHub
parent 91e5cdd534
commit 6975dd8457
121 changed files with 3654 additions and 126 deletions

View File

@ -0,0 +1,38 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "kirisAki",
category: "Pokemon",
description: {
en: "While young, it has six gorgeous tails. When it grows, several new tails are sprouted."
},
stage: "Basic",
attacks: [{
name: {
en: "Roar"
},
effect: {
en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon."
}
}, {
name: {
en: "Gnaw"
},
damage: 10
}],
name: {
en: "Vulpix"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,42 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "5ban Graphics",
category: "Pokemon",
description: {
en: "Its whiskers serve as antennas. By sending and receiving electrical waves, it can communicate with others over vast distances."
},
stage: "Basic",
attacks: [{
name: {
en: "Nuzzle"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed."
}
}, {
name: {
en: "Spiral Drain"
},
damage: 60,
effect: {
en: "Heal 20 damage from this Pokémon."
}
}],
name: {
en: "Dedenne"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,34 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Kanako Eo",
category: "Pokemon",
description: {
en: "Adores round objects. It wanders the streets on a nightly basis to look for dropped loose change."
},
stage: "Basic",
attacks: [{
name: {
en: "Act Tough"
},
damage: "10+",
effect: {
en: "If this Pokémon has any Darkness Energy attached to it, this attack does 20 more damage."
}
}],
name: {
en: "Meowth"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,40 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Kouki Saitou",
category: "Pokemon",
description: {
en: "Thanks to its unstable genetic makeup, this special Pokémon conceals many different possible evolutions."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 10
}, {
name: {
en: "Lunge"
},
damage: 30,
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
}],
name: {
en: "Eevee"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,34 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "sui",
category: "Pokemon",
description: {
en: "A fire burns inside, so it feels very warm to hug. It launches fireballs of 1,800 degrees Fahrenheit."
},
stage: "Basic",
attacks: [{
name: {
en: "Ember"
},
damage: 20,
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to this Pokémon."
}
}],
name: {
en: "Torchic"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,30 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "5ban Graphics",
category: "Pokemon",
description: {
en: "Eating a twig fills it with energy, and its roomy ears give vent to air hotter than 390 degrees Fahrenheit."
},
stage: "Basic",
attacks: [{
name: {
en: "Will-O-Wisp"
},
damage: 20
}],
name: {
en: "Fennekin"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,34 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Akira Komayama",
category: "Pokemon",
description: {
en: "In the distant past, it was somewhat stronger than the horribly weak descendants that exist today."
},
stage: "Basic",
attacks: [{
name: {
en: "Epic Splash"
},
damage: 30,
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing."
}
}],
name: {
en: "Magikarp"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,34 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Kagemaru Himeno",
category: "Pokemon",
description: {
en: "It is small but rough and tough. It wont hesitate to take a bite out of anything that moves."
},
stage: "Basic",
attacks: [{
name: {
en: "Fury Strikes"
},
damage: "10×",
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads."
}
}],
name: {
en: "Totodile"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,38 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Naoki Saito",
category: "Pokemon",
description: {
en: "It raises its tail to check its surroundings. The tail is sometimes struck by lightning in this pose."
},
stage: "Basic",
attacks: [{
name: {
en: "Tail Whip"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon cant attack during your opponents next turn."
}
}, {
name: {
en: "Electro Ball"
},
damage: 30
}],
name: {
en: "Pikachu"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,30 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Tomokazu Komiya",
category: "Pokemon",
description: {
en: "Its skin has a rubbery elasticity, so it can reduce damage by defensively pulling it skin up to its neck."
},
stage: "Basic",
attacks: [{
name: {
en: "Corkscrew Punch"
},
damage: 30
}],
name: {
en: "Scraggy"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,38 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "Kanako Eo",
category: "Pokemon",
description: {
en: "It captivates foes with its huge, round eyes, then lulls them to sleep by singing a soothing melody."
},
stage: "Basic",
attacks: [{
name: {
en: "Rollout"
},
damage: 10
}, {
name: {
en: "Heartfelt Song"
},
effect: {
en: "Discard a Darkness Energy attached to your opponents Active Pokémon."
}
}],
name: {
en: "Jigglypuff"
},
rarity: "None"
}
export default card

View File

@ -0,0 +1,34 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2016'
const card: Card = {
set: Set,
illustrator: "HiRON",
category: "Pokemon",
description: {
en: "A proverb claims that happiness will come to anyone who can make a sleeping Togepi stand up."
},
stage: "Basic",
attacks: [{
name: {
en: "Sweet Kiss"
},
damage: 10,
effect: {
en: "Your opponent draws a card."
}
}],
name: {
en: "Togepi"
},
rarity: "None"
}
export default card