mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
69
data/Diamond & Pearl/Legends Awakened/36.ts
Normal file
69
data/Diamond & Pearl/Legends Awakened/36.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Legends Awakened'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Regice",
|
||||
fr: "Regice",
|
||||
},
|
||||
illustrator: "Kazuaki Aihara",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
378,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Regi Move",
|
||||
fr: "Regi-déplacement",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may use this power. Discard 2 cards from your hand and choose 1 of your opponent's Active Pokémon that isn't an Evolved Pokémon. Then, your opponent switches that Pokémon with 1 of his or her Benched Pokémon. This power can't be used if Regice is affected by a Special Condition.",
|
||||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez utiliser ce pouvoir. Défaussez 2 cartes de votre main et choisissez 1 des Pokémon Actifs non Évolués de votre adversaire. Ensuite, votre adversaire échange ce Pokémon avec 1 de ses Pokémon de Banc. Ce pouvoir ne peut pas être utilisé si Regice est affecté par un État Spécial.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Water",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Ice Reflect",
|
||||
fr: "Reflet glacé",
|
||||
},
|
||||
effect: {
|
||||
en: "If Regice was damaged by an attack during your opponent's last turn, the Defending Pokémon is now Paralyzed.",
|
||||
fr: "Si une attaque a infligé des dégâts à Regice lors du dernier tour de votre adversaire, le Pokémon Défenseur est maintenant Paralysé.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user