mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09: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:
43
data/McDonald's Collection/Macdonald's Collection 2019/1.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/1.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Sekio",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "When attacked by bird Pokémon, it resists by releasing a terrifically strong odor from its antennae, but it often becomes their prey."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Surprise Attack"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Caterpie"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 50,
|
||||
types: ["Grass"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/10.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/10.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Akira Komayama",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "When its delicate pride is wounded, or when the gold coin on its forehead is dirtied, it flies into a hysterical rage."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spoil the Fun"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
en: "If you go second, this attack does 60 more damage during your first turn."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Alolan Meowth"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Darkness"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/11.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/11.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Megumi Mizutani",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "These Pokémon are cherished in the Alola region, where they are thought to be feminine deities of the land incarnate."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gold Rush"
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
effect: {
|
||||
en: "Discard any number of Metal Energy cards from your hand. This attack does 30 damage for each card you discarded in this way."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Alolan Dugtrio"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Metal"]
|
||||
}
|
||||
|
||||
export default card
|
39
data/McDonald's Collection/Macdonald's Collection 2019/12.ts
Normal file
39
data/McDonald's Collection/Macdonald's Collection 2019/12.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Atsuko Nishida",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Current studies show it can evolve into an incredible eight different species of Pokémon."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gnaw"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Eevee"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Colorless"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/2.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/2.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Satoshi Shirai",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "As it grew taller and taller, it outgrew its reliance on psychic powers, while within it awakened the power of the sleeping dragon."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tropical Shake"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each type of basic Energy card in your discard pile. You can’t add more than 100 damage in this way."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Alolan Exeggutor"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 160,
|
||||
types: ["Grass"]
|
||||
}
|
||||
|
||||
export default card
|
51
data/McDonald's Collection/Macdonald's Collection 2019/3.ts
Normal file
51
data/McDonald's Collection/Macdonald's Collection 2019/3.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Yumi",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "When angered, it spouts brilliant fire from all over its body. It doesn’t calm down until its opponent has burned to ash."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Controlled Burn"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard the top card of your opponent’s deck."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Flamethrower"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Magmar"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 80,
|
||||
types: ["Fire"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/4.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/4.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Shin Nagasawa",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "An ancient tradition of Alolan festivals, still carried on to this day, is a competition to slide Sandshrew across ice as far as one can."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fury Swipes"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Alolan Sandshrew"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Water"]
|
||||
}
|
||||
|
||||
export default card
|
53
data/McDonald's Collection/Macdonald's Collection 2019/5.ts
Normal file
53
data/McDonald's Collection/Macdonald's Collection 2019/5.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Saya Tsuruta",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "These Pokémon were once near extinction due to poaching. Following protective regulations, there is now an overabundance of them."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Aqua Bullet"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)"
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Hydro Pump"
|
||||
},
|
||||
|
||||
damage: "70+",
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 more damage times the amount of Water Energy attached to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Lapras"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 120,
|
||||
types: ["Water"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/6.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/6.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "A plan was recently announced to gather many Pikachu and make an electric power plant."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Iron Tail"
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 20 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Lightning"]
|
||||
}
|
||||
|
||||
export default card
|
41
data/McDonald's Collection/Macdonald's Collection 2019/7.ts
Normal file
41
data/McDonald's Collection/Macdonald's Collection 2019/7.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Shibuzoh.",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Should a strange light be seen flickering in an abandoned building, Gastly is lurking there."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ominous Eyes"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put 1 damage counter on 1 of your opponent’s Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Gastly"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 50,
|
||||
types: ["Psychic"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2019/8.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2019/8.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Miki Tanaka",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "It can spontaneously become enraged. Everyone near it clears out as it rampages and the resulting loneliness makes it angrier still."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Three-Step Strike"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Mankey"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 50,
|
||||
types: ["Fighting"]
|
||||
}
|
||||
|
||||
export default card
|
51
data/McDonald's Collection/Macdonald's Collection 2019/9.ts
Normal file
51
data/McDonald's Collection/Macdonald's Collection 2019/9.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2019'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "It usually lives underground. It searches for food while boring its way through the ground at 50 miles per hour."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Screech"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, the Defending Pokémon takes 20 more damage from attacks (after applying Weakness and Resistance)."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Rage"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Onix"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 100,
|
||||
types: ["Fighting"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user