1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +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

97
cards/xy/xy5/117.ts Normal file
View File

@ -0,0 +1,97 @@
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: "xy5-117",
localId: 117,
// Card informations
name: {
en: "Bidoof",
fr: "Keunotor",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 399,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy5/117/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy5/117/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy5/117/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy5/117/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 116,
name: "PLANETA"
},
abilities: [{
id: -1,
type: AbilityType.ANCIENTTRAIT,
name: {
fr: "Régénération α",
},
text: {
fr: "Lorsque ce Pokémon est soigné, doublez la quantité de soins.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Drench",
fr: "Trempage",
},
text: {
en: "If this Pokémon has any Water Energy attached to it, this attack does 20 more damage.",
fr: "Si de l'Énergie Water est attachée à ce Pokémon, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Primal Clash",
code: "xy5"
}
}
export default card