mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
103 lines
1.8 KiB
TypeScript
103 lines
1.8 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: "dp1-51",
|
|
localId: 51,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Hippopotas",
|
|
fr: "Hippopotas",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 449,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/51/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/51/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp1/51/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp1/51/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 9,
|
|
name: "Mitsuhiro Arita"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Yawn",
|
|
fr: "Baillement",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING
|
|
],
|
|
name: {
|
|
en: "Sand Attack",
|
|
fr: "Jet de sable",
|
|
},
|
|
text: {
|
|
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
|
fr: "Si le Pokémon Défenseur essaye d'attaquer lors du prochain tour de votre adversaire, votre adversaire lance une pièce. Si c'est pile, cette attaque est sans effet.",
|
|
},
|
|
damage: 10
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.WATER,
|
|
value: "+10"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.LIGHTNING,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Diamond & Pearl",
|
|
code: "dp1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|