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

101
cards/xy/xy1/41.ts Normal file
View File

@ -0,0 +1,101 @@
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: "xy1-41",
localId: 41,
// Card informations
name: {
en: "Greninja",
fr: "Amphinobi",
},
hp: 130,
type: [
Type.WATER,
],
dexId: 658,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy1/41/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/41/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy1/41/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/41/high.png",
},
},
evolveFrom: {
en: "Frogadier",
fr: "Croâporal",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 82,
type: AbilityType.TALENT,
name: {
en: "Water Shuriken",
fr: "Sheauriken",
},
text: {
en: "Once during your turn (before your attack), you may discard a Water Energy card from your hand. If you do, put 3 damage counters on 1 of your opponent's Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte Énergie Water de votre main. Dans ce cas, placez 3 marqueurs de dégâts sur l'un des Pokémon de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Mist Slash",
fr: "Tranche-Brume",
},
text: {
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 50
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "XY",
code: "xy1"
}
}
export default card