1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32: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

103 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: "pl3-25",
localId: 25,
// Card informations
name: {
en: "Dodrio",
fr: "Dodrio",
},
hp: 80,
type: [
Type.COLORLESS,
],
dexId: 85,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/25/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/25/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/25/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/25/high.png",
},
},
evolveFrom: {
en: "Doduo",
fr: "Doduo",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 734,
type: AbilityType.POKEPOWER,
name: {
en: "Echo Draw",
fr: "Pioche renvoi",
},
text: {
en: "Once during your turn (before your attack), you may draw a card. This power can't be used if Dodrio is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez piocher une carte. Ce pouvoir ne peut pas être utilisé si Dodrio est affecté par un État Spécial.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Drill Peck",
fr: "Bec vrille",
},
damage: 50
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card