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

105
cards/sm/sm9/27.ts Normal file
View File

@ -0,0 +1,105 @@
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: "sm9-27",
localId: 27,
// Card informations
name: {
en: "Golduck",
fr: "Akwakwak",
},
hp: 110,
type: [
Type.WATER,
],
dexId: 55,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/27/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/27/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm9/27/high.png",
},
},
evolveFrom: {
en: "Psyduck",
fr: "Psykokwak",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Amnesia",
fr: "Amnésie",
},
text: {
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Swim",
fr: "Nager",
},
text: {
en: "If any of your opponent's Pokémon have any Water Energy attached to them, you may do 90 damage to 1 of your opponent's Benched Pokémon instead of their Active Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Si de lÉnergie Water est attachée à lun des Pokémon de votre adversaire, vous pouvez infliger 90 dégâts à lun des Pokémon de Banc de votre adversaire plutôt quà son Pokémon Actif. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 90
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card