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

97 lines
1.5 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: "pl4-9",
localId: 9,
// Card informations
name: {
en: "Swalot",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 317,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/9/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/9/high.png",
},
},
evolveFrom: {
en: "Gulpin",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 43,
name: "Aya Kusube"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Damage Roller",
},
text: {
en: "Put damage counters on the Defending Pokémon until the Defending Pokémon has the same remaining HP as Swalot. (If the Defending Pokémon has the same or less remaining HP as Swalot, this attack does nothing.)",
},
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Entangle Tackle",
},
text: {
en: "You may do 50 damage plus 30 more damage. If you do, this attack does 30 damage to 1 of your Pokémon, and don't apply Weakness and Resistance to this damage.",
},
damage: 50
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "+20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card