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

109 lines
1.8 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: "pl3-16",
localId: 16,
// Card informations
name: {
en: "Articuno",
fr: "Artikodin",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 144,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/16/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/16/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/16/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/16/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sharp Beak",
fr: "Bec aiguisé",
},
text: {
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ice Beam",
fr: "Laser glace",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 50
}],
weaknesses: [{
type: Type.METAL,
value: "+30"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card