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

104 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: "dp3-61",
localId: 61,
// Card informations
name: {
en: "Raticate",
fr: "Rattatac",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 20,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/61/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/61/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/61/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/61/high.png",
},
},
evolveFrom: {
en: "Rattata",
fr: "Rattata",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Gnaw Off",
fr: "Ronger jusqu'au bout",
},
text: {
en: "Flip a coin. If heads, this attack does 10 damage plus 60 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 60 dégâts supplémentaires.",
},
damage: 10
},{
cost: [
Type.COLORLESS
],
name: {
en: "Sucker Punch",
fr: "Coup Bas",
},
text: {
en: "If Raticate has any Darkness Energy attached to it, this attack does 20 damage plus 20 more damage.",
fr: "Si Rattatac possède de l'Énergie Darkness, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card