1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

101
cards/sm/sm9/123.ts Normal file
View File

@ -0,0 +1,101 @@
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