1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

109 lines
1.7 KiB
TypeScript

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: "pl1-39",
localId: 39,
// Card informations
name: {
en: "Torterra",
fr: "Torterra",
},
hp: 140,
type: [
Type.GRASS,
],
dexId: 389,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/39/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/39/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/39/high.png",
},
},
evolveFrom: {
en: "Grotle",
fr: "Boskara",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Green Blast",
fr: "Explosion verte",
},
text: {
en: "Does 40 damage plus 10 more damage for each Grass Energy attached to all of your Pokémon.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.",
},
damage: 40
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Soothing Scent",
fr: "Senteur apaisante",
},
text: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card