1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 16:51:59 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

104
cards/ex/ex3/7.ts Normal file
View File

@@ -0,0 +1,104 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "ex3-7",
localId: 7,
// Card informations
name: {
en: "Minun",
},
hp: 50,
type: [
Type.LIGHTNING,
],
dexId: 312,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex3/7/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex3/7/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
abilities: [{
id: 53,
type: AbilityType.POKEBODY,
name: {
en: "Chain of Events",
},
text: {
en: "As long as Minun is your Active Pokémon, whenever your other Active Pokémon, if any, attacks, you may use Cheer On after the first attack (you still need the necessary Energy to use Cheer On). You can't use Cheer On more than once in this way even if your other Active Pokémon has the Chain of Events Poké-Body.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Cheer On",
},
text: {
en: "Remove 1 damage counter from each of your Pokémon (including Minun).",
},
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Special Circuit",
},
text: {
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. If you choose Pokémon that has a Poké-Power or Poké-Body, this attack does 40 damage instead. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-30"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dragon",
code: "ex3"
}
}
export default card