1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 11:09:19 +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

96
cards/neo/neo1/34.ts Normal file
View File

@ -0,0 +1,96 @@
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: "neo1-34",
localId: 34,
// Card informations
name: {
en: "Flaaffy",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 180,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo1/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo1/34/high.png",
},
},
evolveFrom: {
en: "Mareep",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Discharge",
},
text: {
en: "Discard all Energy cards attached to Flaaffy in order to use this attack. Flip a number of coins equal to the number of Energy cards you discarded. This attack does 30 damage times the number of heads.",
},
damage: 30
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
en: "Electric Current",
},
text: {
en: "Take 1 Energy card attached to Flaaffy and attach it to 1 of your Benched Pokémon. If you have no Benched Pokémon, discard that Energy card.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Neo Genesis",
code: "neo1"
}
}
export default card