mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-21 03:29:17 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
57
data/Sword & Shield/Astral Radiance/131.ts
Normal file
57
data/Sword & Shield/Astral Radiance/131.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rufflet",
|
||||
fr: "Furaiglon",
|
||||
es: "Rufflet",
|
||||
it: "Rufflet",
|
||||
pt: "Rufflet",
|
||||
de: "Geronimatz"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Claw",
|
||||
fr: "Ergots",
|
||||
es: "Garra",
|
||||
it: "Artiglio",
|
||||
pt: "Garra",
|
||||
de: "Klaue"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user