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

100
cards/sm/sm12/63.ts Normal file
View File

@ -0,0 +1,100 @@
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: "sm12-63",
localId: 63,
// Card informations
name: {
en: "Wishiwashi-GX",
fr: "Froussardine-GX",
},
hp: 130,
type: [
Type.WATER,
],
dexId: 746,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/63/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/63/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/63/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/63/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 140,
name: "sadaji"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "School Storm",
fr: "Banc Houleux",
},
text: {
en: "This attack does 20 damage for each of your Wishiwashi and Wishiwashi-GX in play.",
fr: "Cette attaque inflige 20 dégâts pour chacun de vos Froussardine et Froussardine-GX en jeu.",
},
damage: 20
},{
cost: [
Type.COLORLESS
],
name: {
en: "Massive Catch-GX",
fr: "Prise Massive-GX",
},
text: {
en: "Look at the top 12 cards of your deck and put any number of Basic Pokémon you find there onto your Bench. Shuffle the other cards back into your deck. (You can't use more than 1 GX attack in a game.)",
fr: "Regardez les 12 cartes du dessus de votre deck et placez autant de Pokémon de base trouvés que vous le voulez sur votre Banc. Mélangez les autres cartes avec votre deck. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHoloGX,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card