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

106
cards/pl/pl1/27.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: "pl1-27",
localId: 27,
// Card informations
name: {
en: "Giratina",
fr: "Giratina",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 487,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/27/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/27/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/27/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Strafe",
fr: "Bombarder",
},
text: {
en: "You may switch Giratina with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger Giratina avec 1 de vos Pokémon de Banc.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Broken-space Blow",
fr: "Coup espace-brisé",
},
text: {
en: "If the Defending Pokémon is Knocked Out by this attack, put the Defending Pokémon and all cards attached to it in the Lost Zone instead of discarding them.",
fr: "Si le Pokémon Défenseur est mis K.O par cette attaque, placez le Pokémon Défenseur ainsi que toutes les cartes qui lui sont attachées dans la Zone Perdue au lieu de les défausser.",
},
damage: 50
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card