1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 66d8e43a43
Removed Extension on pictures
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-22 00:11:26 +01:00

100 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: "dp5-27",
localId: 27,
// Card informations
name: {
en: "Phione",
fr: "Phione",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 489,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/27/low",
fr: "https://assets.tcgdex.net/fr/dp/dp5/27/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/27/high",
fr: "https://assets.tcgdex.net/fr/dp/dp5/27/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Charm",
fr: "Charme",
},
text: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 20 (avant application de la Faiblesse et de la Résistance).",
},
},{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Whirlpool",
fr: "Siphon",
},
text: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur.",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+10"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card