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

108
cards/col/col1/34.ts Normal file
View File

@ -0,0 +1,108 @@
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: "col1-34",
localId: 34,
// Card informations
name: {
en: "Tangrowth",
fr: "Bouldeneu",
},
hp: 110,
type: [
Type.GRASS,
],
dexId: 465,
image: {
low: {
en: "https://assets.tcgdex.net/en/col/col1/34/low.png",
fr: "https://assets.tcgdex.net/fr/col/col1/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/col/col1/34/high.png",
fr: "https://assets.tcgdex.net/fr/col/col1/34/high.png",
},
},
evolveFrom: {
en: "Tangela",
fr: "Saquedeneu",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 54,
name: "Hideaki Hakozaki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Grind",
fr: "Écrase",
},
text: {
en: "Does 20 damage times the amount of Energy attached to Tangrowth.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées à Bouldeneu.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Plow Over",
fr: "Labour",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, put 1 Energy card attached to the Defending Pokémon in the Lost Zone.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur est maintenant Paralysé. Si cest pile, placez 1 carte Énergie attachée au Pokémon Défenseur dans la Zone Perdue.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Call of Legends",
code: "col1"
}
}
export default card