mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
feat: Add data for Promo-A cards 034-041 (#660)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
This commit is contained in:
parent
34dc55b1d7
commit
de13bb175a
44
data/Pokémon TCG Pocket/Promos-A/034.ts
Normal file
44
data/Pokémon TCG Pocket/Promos-A/034.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Piplup"
|
||||
},
|
||||
|
||||
illustrator: "Kariya",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "It doesn't like to be taken care of. It's difficult to bond with since it won't listen to its Trainer."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Nap"
|
||||
},
|
||||
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 20 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
40
data/Pokémon TCG Pocket/Promos-A/035.ts
Normal file
40
data/Pokémon TCG Pocket/Promos-A/035.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Turtwig"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "It uses its whole body to photosynthesize when exposed to sunlight. Its shell is made from hardened soil."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Promos-A/036.ts
Normal file
48
data/Pokémon TCG Pocket/Promos-A/036.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Electivire"
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Electabuzz"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "The amount of electrical energy this Pokémon produces is proportional to the rate of its pulse. The voltage jumps while Electivire is battling."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Exciting Voltage"
|
||||
},
|
||||
|
||||
damage: "40+",
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has at least 2 extra <span class=\"energy-text energy-text--type-lightning\"></span> Energy attached, this attack does 80 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Promos-A/037.ts
Normal file
48
data/Pokémon TCG Pocket/Promos-A/037.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cresselia ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Lunar Plumage"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Whenever you attach a <span class=\"energy-text energy-text--type-psychic\"></span> Energy from your Energy Zone to this Pokémon, heal 20 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psychic Flash"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
38
data/Pokémon TCG Pocket/Promos-A/038.ts
Normal file
38
data/Pokémon TCG Pocket/Promos-A/038.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Misdreavus"
|
||||
},
|
||||
|
||||
illustrator: "Miki Tanaka",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
description: {
|
||||
en: "This Pokémon startles people in the middle of the night. It gathers fear as its energy."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Confuse Ray"
|
||||
},
|
||||
|
||||
cost: ["Psychic"],
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Promos-A/039.ts
Normal file
44
data/Pokémon TCG Pocket/Promos-A/039.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Skarmory"
|
||||
},
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
en: "People fashion swords from Skarmory's shed feathers, so this Pokémon is a popular element in heraldic designs."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Metal Arms"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Metal"],
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has a Pokémon Tool attached, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Promos-A/040.ts
Normal file
40
data/Pokémon TCG Pocket/Promos-A/040.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chimchar"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "Its fiery rear end is fueled by gas made in its belly. Even rain can't extinguish the fire."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Promos-A/041.ts
Normal file
40
data/Pokémon TCG Pocket/Promos-A/041.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Togepi"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "The shell seems to be filled with joy. It is said that it will share good luck when treated kindly."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pound"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Loading…
x
Reference in New Issue
Block a user