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

102 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm9-123",
localId: 123,
// Card informations
name: {
en: "Pidgeotto",
fr: "Roucoups",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 17,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/123/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/123/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/123/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/123/high.png",
},
},
evolveFrom: {
en: "Pidgey",
fr: "Roucool",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 3,
name: "Mizue"
},
abilities: [{
id: 1323,
type: AbilityType.TALENT,
name: {
en: "Air Mail",
fr: "Courrier Aérien",
},
text: {
en: "Once during your turn (before your attack), you may look at the top 2 cards of your deck and put 1 of them into your hand. Put the other card on the bottom of your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez regarder les 2 cartes du dessus de votre deck, puis ajouter lune dentre elles à votre main. Placez lautre carte en dessous de votre deck.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Gust",
fr: "Tornade",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card