1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09: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

106
cards/bw/bw4/72.ts Normal file
View File

@ -0,0 +1,106 @@
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: "bw4-72",
localId: 72,
// Card informations
name: {
en: "Shiftry",
fr: "Tengalice",
},
hp: 130,
type: [
Type.DARKNESS,
],
dexId: 275,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw4/72/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/72/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw4/72/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/72/high.png",
},
},
evolveFrom: {
en: "Nuzleaf",
fr: "Pifeuil",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 28,
name: "match"
},
abilities: [{
id: 1436,
type: AbilityType.TALENT,
name: {
en: "Giant Fan",
fr: "Éventail Géant",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may flip a coin. If heads, choose 1 of your opponent's Pokémon. Your opponent shuffles that Pokémon and all cards attached to it into his or her deck.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez lancer une pièce. Si c'est face, choisissez 1 des Pokémon de votre adversaire. Votre adversaire mélange le Pokémon choisi et toutes les cartes qui lui sont attachées avec son deck.",
}
}],
attacks: [{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Whirlwind",
fr: "Cyclone",
},
text: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Next Destinies",
code: "bw4"
}
}
export default card