mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
103
cards/xy/xy8/115.ts
Normal file
103
cards/xy/xy8/115.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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: "xy8-115",
|
||||
localId: 115,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Doduo",
|
||||
fr: "Doduo",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 84,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/115/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/115/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/115/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/115/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Simultaneous Peck",
|
||||
fr: "Picpic Simultané",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
|
||||
fr: "Lancez 2 pièces. Si vous obtenez au moins un côté pile, cette attaque ne fait rien.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Doduo Delivery",
|
||||
fr: "Livraison Doduo",
|
||||
},
|
||||
text: {
|
||||
en: "Draw 2 cards.",
|
||||
fr: "Piochez 2 cartes.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "BREAKthrough",
|
||||
code: "xy8"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user