mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 21:09:54 +00:00
* Fix Triumphant Light card data and formatting Fix card data including attack damage modifiers, Palkia and Dalgia Origin forme names and incorrect weakness for Giratina. Also remove unnecessary HTML formatting from card descriptions * Remove HTML anchor tags around referenced Pokemon names --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
49 lines
693 B
TypeScript
49 lines
693 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Noctowl"
|
|
},
|
|
|
|
illustrator: "DOM",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Hoothoot"
|
|
},
|
|
|
|
description: {
|
|
en: "Its eyes are specially developed to enable it to see clearly even in murky darkness and minimal light."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Silent Wing"
|
|
},
|
|
|
|
damage: 50,
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
effect: {
|
|
en: "Your opponent reveals their hand."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|