d20srd/generate.sh

18 lines
349 B
Bash
Raw Normal View History

2016-11-30 16:57:33 +01:00
#!/bin/sh
for i in $(seq 1 10); do
cat <<EOF >>wondrous/abilities.yml
- name: Resistance +$i
school: abjuration
grade: faint
spell: ["Resistance"]
feats: ["Craft Wondrous Item"]
price: $(echo "($i^2)*1000" | bc)
description: >-
This item grants a +$i enhancement bonus to all saving throws (fortitude,
reflex, will).
EOF
done