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

100
cards/xy/xy5/31.ts Normal file
View File

@ -0,0 +1,100 @@
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: "xy5-31",
localId: 31,
// Card informations
name: {
en: "Seadra",
fr: "Hypocéan",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 117,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy5/31/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy5/31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy5/31/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy5/31/high.png",
},
},
evolveFrom: {
en: "Horsea",
fr: "Hypotrempe",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 39,
name: "Sanosuke Sakuma"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Knockout Needle",
fr: "Aiguille Neutralisante",
},
text: {
en: "Flip 2 coins. If both of them are heads, this attack does 40 more damage.",
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés face, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 10
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Water Gun",
fr: "Pistolet à O",
},
damage: 30
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Primal Clash",
code: "xy5"
}
}
export default card