1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

96 lines
1.6 KiB
TypeScript

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: "dp3-106",
localId: 106,
// Card informations
name: {
en: "Shellos East Sea",
fr: "Sancoki Mer Orient",
},
hp: 60,
type: [
Type.WATER,
],
dexId: 422,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/106/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/106/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/106/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/106/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Shell Hunting",
fr: "Chasse au coquillage",
},
text: {
en: "Search your deck for up to 2 in any combination of Shellos West Sea and Shellos East Sea and put them onto your Bench. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une combinaison de jusqu'à 2 Sancoki Mer Occident\net Sancoki Mer Orient et placez-les sur votre Banc. Ensuite, mélangez votre deck.",
},
},{
cost: [
Type.WATER
],
name: {
en: "Sprinkle Water",
fr: "Eau aspergeante",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+10"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card