Skip to content

kooriookami/yugioh-card

Repository files navigation

img.png Typing SVG

Static Badge

Static Badge

目前有 5 种卡片:🌹🌹🌹🌹🌹

1️⃣ 游戏王

2️⃣ 超速决斗

3️⃣ 游戏王卡背

4️⃣ 场地中心卡

5️⃣ 游戏王 2 期

🚩在线演示

在线演示

⚡快速开始

npm i yugioh-card

  import { YugiohCard } from 'yugioh-card';

  const card = new YugiohCard({
    view: '', // div 容器
    data: {
      ... // 参数见 packages/yugioh-card/src/yugioh-card/index.js => this.defaultData
    },
    resourcePath: 'src/assets/yugioh-card', // 静态资源路径
  });

例子demo :src/assets/demo/yugioh-demo.js

export default {
  language: 'sc',  //语言选项
  font: '',  //使用的字体
  name: '青眼白龙', //卡名
  color: '', //
  align: 'left', //对齐位置
  gradient: false, //是否渐变 ---卡名
  gradientColor1: '#999999', //渐变色1
  gradientColor2: '#ffffff', //渐变色2
  gradientPreset: 'silver', // 渐变预设
  type: 'monster', //卡片类型
  attribute: 'light', //卡片属性
  icon: '', //卡片图标
  image: blueEyes, //中心卡图
  cardType: 'normal', //卡类
  pendulumType: 'normal-pendulum', //灵摆卡特有的选项
  level: 8, //等级
  rank: 0, //阶级
  pendulumScale: 0,//灵摆刻度
  pendulumDescription: '', //灵摆效果
  monsterType: '龙族/通常', //怪兽类型
  atk: 3000, //攻击力
  def: 2500, //防御力
  arrowList: [], //link箭头
  description: '以高攻击力著称的传说之龙。任何对手都能将之粉碎,其破坏力不可估量。',
  firstLineCompress: false, //是否首行压缩
  descriptionAlign: false,//是否文本居中
  descriptionZoom: 1,//字号
  descriptionWeight: 0,//字重
  package: 'SD25-SC001',//卡包
  password: '89631139',//卡密
  copyright: '',//版权
  laser: '',//角标
  rare: '',//罕贵程度
  twentieth: false, //是否是20周年
  radius: true, //圆角
  scale: 1, //缩放
};

⚠️参数事项

参数 说明 类型 可选参数 备注
pendulumType 灵摆类型 string normal-pendulum
effect-pendulum
ritual-pendulum
fusion-pendulum
synchro-pendulum
xyz-pendulum
通常 / 灵摆
效果 / 灵摆
仪式 / 灵摆
融合 / 灵摆
同调 / 灵摆
超量 / 灵摆
cardType 卡片类型 string normal
effect
ritual
fusion
synchro
xyz
link
token
通常
效果
仪式
融合
同调
超量
连接
衍生物
icon 卡片图标 string equip
filed
quick-play
ritual
continuous
counter
装备
场地
速攻
仪式
永续
反击
attribute 属性 string dark
light
earth
water
fire
wind
divine
""







type 卡类 string monster
spell
trap
pendulum
怪兽
魔法
陷阱
灵摆
gradientPreset 预设字体 string silver
gold
red
white
black
blue
green
银字
金字
红字
白字
黑字
蓝字
绿字
language 语言 string sc
tc
jp
kr
en
astral
简体中文
繁体中文
日文
韩文
英文
星光界文

TODO

🔎示例代码

示例代码