mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
48
data/Pokémon TCG Pocket/Space-Time Smackdown/118.ts
Normal file
48
data/Pokémon TCG Pocket/Space-Time Smackdown/118.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Probopass"
|
||||
},
|
||||
|
||||
illustrator: "MAHOU",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nosepass"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Although it can control its units known as<br />Mini-Noses, they sometimes get lost and don't<br />come back."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Triple Nose"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Metal", "Metal", "Metal", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 50 more damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user