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

105
cards/xy/dc1/5.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: "dc1-5",
localId: 5,
// Card informations
name: {
en: "Team Aqua's Walrein",
fr: "Kaimorse de la Team Aqua",
},
hp: 140,
type: [
Type.WATER,
],
dexId: 365,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/dc1/5/low.png",
fr: "https://assets.tcgdex.net/fr/xy/dc1/5/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/dc1/5/high.png",
fr: "https://assets.tcgdex.net/fr/xy/dc1/5/high.png",
},
},
evolveFrom: {
en: "Team Aqua's Sealeo",
fr: "Phogleur de la Team Aqua",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 67,
name: "Hitoshi Ariga"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Power Blow",
fr: "Coup Puissant",
},
text: {
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d'Énergies attachées à ce Pokémon.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Dual Blizzard",
fr: "Double Blizzard",
},
text: {
en: "Discard 2 Water Energy attached to this Pokémon. This attack does 80 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez 2 Énergies Water attachées à ce Pokémon. Cette attaque inflige 80 dégâts à 2 des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
retreat: 4,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Double Crisis",
code: "dc1"
}
}
export default card