mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +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
|
39
data/McDonald's Collection/Macdonald's Collection 2012/10.ts
Normal file
39
data/McDonald's Collection/Macdonald's Collection 2012/10.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Its skin has a rubbery elasticity, so it can reduce damage by defensively pulling its skin up to its neck."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Scraggy"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Darkness"]
|
||||
}
|
||||
|
||||
export default card
|
51
data/McDonald's Collection/Macdonald's Collection 2012/11.ts
Normal file
51
data/McDonald's Collection/Macdonald's Collection 2012/11.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Spinning minigears are rotated at high speed and repeatedly fired away. It is dangerous if the gears don’t return."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Metal Sound"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Confused."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Guard Press"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
effect: {
|
||||
en: "During your opponent’s next turn, any damage done to this Pokémon by attacks is reduced by 20 (after applying Weakness and Resistance)."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Klang"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 80,
|
||||
types: ["Metal"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2012/12.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2012/12.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Atsuko Nishida",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "They use their tusks to crush the berries they eat. Repeated regrowth makes their tusks strong and sharp."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Dual Chop"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 10 damage times the number of heads."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Axew"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Colorless"]
|
||||
}
|
||||
|
||||
export default card
|
47
data/McDonald's Collection/Macdonald's Collection 2012/2.ts
Normal file
47
data/McDonald's Collection/Macdonald's Collection 2012/2.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "This Pokémon dwells deep in the forest. Eating a leaf from its head whisks weariness away as if by magic."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Collect"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Pansage"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 70,
|
||||
types: ["Grass"]
|
||||
}
|
||||
|
||||
export default card
|
47
data/McDonald's Collection/Macdonald's Collection 2012/3.ts
Normal file
47
data/McDonald's Collection/Macdonald's Collection 2012/3.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "MAHOU",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "The Pokémon can easily melt holes in hard rocks with a liquid secreted from its mouth."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Withdraw"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent’s next turn."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Slash"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Dwebble"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Grass"]
|
||||
}
|
||||
|
||||
export default card
|
47
data/McDonald's Collection/Macdonald's Collection 2012/4.ts
Normal file
47
data/McDonald's Collection/Macdonald's Collection 2012/4.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "When its internal fire flares up, its movements grow sharper and faster. When in trouble, it emits smoke."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Flame Charge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Shuffle your deck afterward."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Heat Crash"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Pignite"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 100,
|
||||
types: ["Fire"]
|
||||
}
|
||||
|
||||
export default card
|
49
data/McDonald's Collection/Macdonald's Collection 2012/5.ts
Normal file
49
data/McDonald's Collection/Macdonald's Collection 2012/5.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Scalchop techniques differ from one Dewott to another. It never neglects maintaining its scalchops."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Water Gun"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
name: {
|
||||
en: "Razor Shell"
|
||||
},
|
||||
|
||||
damage: "40+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Dewott"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 90,
|
||||
types: ["Water"]
|
||||
}
|
||||
|
||||
export default card
|
53
data/McDonald's Collection/Macdonald's Collection 2012/6.ts
Normal file
53
data/McDonald's Collection/Macdonald's Collection 2012/6.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "The energy made in its cheeks’ electric pouches is stored inside its membranes and released while it is gliding."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thundershock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Acrobatics"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 20 more damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Emolga"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 70,
|
||||
types: ["Lightning"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2012/7.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2012/7.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Its habitat is dark forests and caves. It emits ultrasonic waves from its nose to learn about its surroundings."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psy Bolt"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Woobat"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Psychic"]
|
||||
}
|
||||
|
||||
export default card
|
41
data/McDonald's Collection/Macdonald's Collection 2012/8.ts
Normal file
41
data/McDonald's Collection/Macdonald's Collection 2012/8.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "match",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "It can dig through the ground at a speed of 30 mph. It could give a car running aboveground a good race."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Hone Claws"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, each of this Pokémon’s attacks does 30 more damage (before applying Weakness and Resistance).\nFighting"
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Drilbur"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 70,
|
||||
types: ["Fighting"]
|
||||
}
|
||||
|
||||
export default card
|
43
data/McDonald's Collection/Macdonald's Collection 2012/9.ts
Normal file
43
data/McDonald's Collection/Macdonald's Collection 2012/9.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Macdonald\'s Collection 2012'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
illustrator: "Atsuko Nishida",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "They steal from people for fun, but their victims can’t help but forgive them. Their deceptively cute act is perfect."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Knock Off"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard a random card from your opponent’s hand."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Purrloin"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
hp: 60,
|
||||
types: ["Darkness"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user