mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
71
data/Sun & Moon/Ultra Prism/114.ts
Normal file
71
data/Sun & Moon/Ultra Prism/114.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Ultra Prism'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Oranguru",
|
||||
fr: "Gouroutan",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
765,
|
||||
],
|
||||
hp: 120,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Resource Management",
|
||||
fr: "Gestion des Ressources",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 3 cards from your discard pile on the bottom of your deck in any order.",
|
||||
fr: "Placez 3 cartes de votre pile de défausse en dessous de votre deck dans l’ordre de votre choix.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Profound Knowledge",
|
||||
fr: "Connaissance Profonde",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user