mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
41
data/Scarlet & Violet/Paradox Rift/130.ts
Normal file
41
data/Scarlet & Violet/Paradox Rift/130.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Honedge",
|
||||
fr: "Monorpale",
|
||||
es: "Honedge",
|
||||
it: "Honedge",
|
||||
pt: "Honedge",
|
||||
de: "Gramokles"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Cut Up",
|
||||
fr: "Découpage",
|
||||
es: "Trocear",
|
||||
it: "Tagliuzzamento",
|
||||
pt: "Dilacerar",
|
||||
de: "Zerhäckseln"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user