mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 13:29:55 +00:00
parent
bf27f42720
commit
2fc22cc4a5
48
data/E-Card/Best of game/1.ts
Normal file
48
data/E-Card/Best of game/1.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Electabuzz"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "Normally found near power plants, it can wander away and cause major blackouts in cities."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Thundershock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Thunderpunch"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage; if tails, the attack does 30 damage and Electabuzz does 10 damage to itself."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
40
data/E-Card/Best of game/2.ts
Normal file
40
data/E-Card/Best of game/2.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hitmonchan"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
description: {
|
||||
en: "While seeming to do nothing, it fires punches in lightning-fast volleys that are impossible to see."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Jab"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Special Punch"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
20
data/E-Card/Best of game/3.ts
Normal file
20
data/E-Card/Best of game/3.ts
Normal file
@ -0,0 +1,20 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Professor Elm"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 7 cards. You can’t play any more Trainer cards this turn."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
41
data/E-Card/Best of game/4.ts
Normal file
41
data/E-Card/Best of game/4.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rocket’s Scizor"
|
||||
},
|
||||
|
||||
illustrator: "K. Hoshiba",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Focus"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, Rocket’s Scizor’s Agility attack’s damage is doubled."
|
||||
}
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Agility"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent’s next turn, prevent all effects of attacks, including damage, done to Rocket’s Scizor."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
41
data/E-Card/Best of game/5.ts
Normal file
41
data/E-Card/Best of game/5.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rocket’s Sneasel"
|
||||
},
|
||||
|
||||
illustrator: "Katsura Tabata",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Entrap"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "The Defending Pokémon can’t retreat during your opponent’s next turn."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Continuous Scratch"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 4 coins. This attack does 10 damage times the number of heads."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
41
data/E-Card/Best of game/6.ts
Normal file
41
data/E-Card/Best of game/6.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dark Ivysaur"
|
||||
},
|
||||
|
||||
illustrator: "Shin-ichi Yoshida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Poke-BODY",
|
||||
|
||||
name: {
|
||||
en: "Vine Pull"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn when Dark Ivysaur retreats, choose 1 of your opponent’s Benched Pokémon and switch it with his or her Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Fury Strikes"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent puts 3 markers onto his or her Pokémon (divided as he or she chooses). (More than 1 marker can be put on the same Pokémon.) Then, this attack does 10 damage to each Pokémon for each marker on it. Don’t apply Weakness and Resistance. Remove the markers at the end of the turn."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
31
data/E-Card/Best of game/7.ts
Normal file
31
data/E-Card/Best of game/7.ts
Normal file
@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dark Venusaur"
|
||||
},
|
||||
|
||||
illustrator: "Shin-ichi Yoshida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Horrid Pollen"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. If 1 is heads, the Defending Pokémon is now Asleep and Poisoned. If both are heads, the Defending Pokémon is now Confused and Poisoned. If both are tails, the Defending Pokémon is now Paralyzed and Poisoned."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
49
data/E-Card/Best of game/8.ts
Normal file
49
data/E-Card/Best of game/8.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rocket’s Mewtwo"
|
||||
},
|
||||
|
||||
illustrator: "Shin-ichi Yoshida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Juxtapose"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, switch the number of damage counters on Rocket’s Mewtwo with the number of damage counters on the Defending Pokémon (even if it would Knock Out either Pokémon). (It’s okay if 1 of the Pokémon has no damage counters on it.)"
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Hypnoblast"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Psyburn"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
37
data/E-Card/Best of game/9.ts
Normal file
37
data/E-Card/Best of game/9.ts
Normal file
@ -0,0 +1,37 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rocket’s Hitmonchan"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Crosscounter"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If an attack does damage to Rocket’s Hitmonchan during your opponent’s next turn (even if Rocket’s Hitmonchan is Knocked Out), flip a coin. If heads, Rocket’s Hitmonchan attacks your opponent’s Active Pokémon for double that amount of damage. (If Rocket’s Hitmonchan takes 20 damage, it does 40 damage to that Pokémon.)"
|
||||
}
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Magnum Punch"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Loading…
x
Reference in New Issue
Block a user