1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

98 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "pl2-4",
localId: 4,
// Card informations
name: {
en: "Floatzel GL",
fr: "Mustéflott Niv. 37",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 419,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/4/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/4/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/4/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/4/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
name: {
en: "Incite",
fr: "Inciter",
},
text: {
en: "Search your discard pile for up to 2 Supporter cards, show them to your opponent, and put them into your hand.",
fr: "Choisissez dans votre pile de défausse jusqu'à 2 cartes Supporter, montrez-les à votre adversaire et placez-les dans votre main.",
},
},{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Giant Wave",
fr: "Vague géante",
},
text: {
en: "Floatzel can't use Giant Wave during your next turn.",
fr: "Mustéflott ne peut pas utiliser Vague géante lors de votre prochain tour.",
},
damage: 50
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card