1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +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/xy/xy1/74.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: "xy1-74",
localId: 74,
// Card informations
name: {
en: "Inkay",
fr: "Sepiatop",
},
hp: 60,
type: [
Type.DARKNESS,
],
dexId: 686,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy1/74/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/74/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy1/74/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/74/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1432,
type: AbilityType.TALENT,
name: {
en: "Upside-Down Evolution",
fr: "Évolution Tête en Bas",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is Confused, you may search your deck for a card that evolves from this Pokémon and put it onto this Pokémon. (This counts as evolving this Pokémon.) Shuffle your deck afterward.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est Confus, vous pouvez chercher dans votre deck une carte Évolution de ce Pokémon et la placer sur ce Pokémon. (Cela équivaut à faire évoluer ce Pokémon.) Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.DARKNESS
],
name: {
en: "Confusion Wave",
fr: "Vague de Confusion",
},
text: {
en: "Both Active Pokémon are now Confused.",
fr: "Les deux Pokémon Actifs sont maintenant Confus.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "XY",
code: "xy1"
}
}
export default card