1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-29 15:29:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

94
cards/xy/xy7/30.ts Normal file
View File

@ -0,0 +1,94 @@
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: "xy7-30",
localId: 30,
// Card informations
name: {
en: "Unown",
fr: "Zarbi",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 201,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy7/30/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/30/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy7/30/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy7/30/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
abilities: [{
id: 1411,
type: AbilityType.TALENT,
name: {
en: "Farewell Letter",
fr: "Lettre d'Adieu",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may discard this Pokémon and all cards attached to it (this does not count as a Knock Out). If you do, draw a card.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez défausser ce Pokémon et toutes les cartes qui lui sont attachées (cela n'équivaut pas à un K.O.). Dans ce cas, piochez une carte.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Hidden Power",
fr: "Puissance Cachée",
},
damage: 10
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Ancient Origins",
code: "xy7"
}
}
export default card