mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
41
data-asia/SV/SV3s/174.ts
Normal file
41
data-asia/SV/SV3s/174.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Mantyke"
|
||||
},
|
||||
|
||||
illustrator: "rika",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
id: "Mantyke berenang bersama gerombolan Remoraid. Jika diserang musuh, Pokémon ini akan bertarung bersama gerombolan tersebut."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Penyembuhan Berapung-apung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pulihkan HP 1 Pokémon Cadangan sendiri sejumlah 120."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user