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/pl/pl2/4.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: "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