1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49: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

104
cards/xy/xy12/29.ts Normal file
View File

@ -0,0 +1,104 @@
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: "xy12-29",
localId: 29,
// Card informations
name: {
en: "Dewgong",
fr: "Lamantine",
},
hp: 120,
type: [
Type.WATER,
],
dexId: 87,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy12/29/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy12/29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy12/29/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy12/29/high.png",
},
},
evolveFrom: {
en: "Seel",
fr: "Otaria",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Super Deep Dive",
fr: "Super Gros Plongeon",
},
text: {
en: "Heal 40 damage from this Pokémon. Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Soignez 40 dégâts à ce Pokémon. Échangez ce Pokémon avec lun de vos Pokémon de Banc.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Take Down",
fr: "Bélier",
},
text: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon sinflige 20 dégâts.",
},
damage: 90
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Evolutions",
code: "xy12"
}
}
export default card